/* ===== Tokens ===== */
:root{
  --bg: oklch(0.16 0.006 60);
  --bg-elev: oklch(0.215 0.008 60);
  --bg-elev-2: oklch(0.27 0.01 60);
  --line: oklch(0.32 0.012 60);
  --text: oklch(0.97 0.008 60);
  --text-muted: oklch(0.72 0.02 60);
  --pink: oklch(0.72 0.20 345);
  --green: oklch(0.83 0.19 148);
  --header-h: 84px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; overscroll-behavior-x: none; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, sans-serif;
  padding-top: var(--header-h);
  overscroll-behavior-x: none;
}

h1, h2, h3, .display{
  font-family: 'Lilita One', 'Manrope', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin: 0;
}

a{ color: var(--pink); text-decoration: none; }
a:hover{ color: var(--green); }

img{ max-width: 100%; display: block; }

.wrap{ max-width: 1180px; margin: 0 auto; padding-inline: 32px; }

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--pink);
  color: oklch(0.14 0.02 45);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  font-weight: 700;
  z-index: 100;
}
.skip-link:focus{ left: 0; }

/* ===== Reusable ===== */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--green);
  margin: 0;
}
.eyebrow-center{ justify-content: center; display: flex; }

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  border: none;
}
.btn-primary{
  background: linear-gradient(135deg, var(--pink), oklch(0.68 0.21 355));
  color: oklch(0.14 0.02 45);
  box-shadow: 0 0 0 1px oklch(0.72 0.20 345 / 0.4), 0 8px 30px oklch(0.72 0.20 345 / 0.35);
}
.btn-outline{
  background: transparent;
  color: var(--text);
  border: 2px solid var(--line);
}

.card{
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.section-title{
  font-size: clamp(32px, 4vw, 46px);
  margin: 14px 0 0;
  text-align: center;
}
.section-title-left{ text-align: left; margin: 14px 0 20px; }

.logo-oh{ color: var(--pink); }
.logo-haxx{ color: var(--green); }

/* ===== Header ===== */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: oklch(0.14 0.02 45 / 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo{
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: 'Lilita One', sans-serif;
  font-size: 24px;
}

.primary-nav{
  display: flex;
  align-items: center;
  gap: 28px;
}
.primary-nav a{
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
}
.primary-nav a:hover{ color: var(--pink); }
.nav-cta{ padding: 11px 20px; font-size: 14px; }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero{
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(600px 400px at 15% 20%, oklch(0.72 0.20 345 / 0.22), transparent 60%),
    radial-gradient(700px 500px at 85% 75%, oklch(0.83 0.19 148 / 0.18), transparent 60%),
    var(--bg);
}
.hero-inner{ text-align: center; padding-block: 96px; }
.hero-title{
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.95;
  margin-top: 24px;
}
.hero-title .logo-oh{ text-shadow: 0 0 18px oklch(0.72 0.20 345 / 0.65), 0 0 46px oklch(0.72 0.20 345 / 0.35); }
.hero-title .logo-haxx{ text-shadow: 0 0 18px oklch(0.83 0.19 148 / 0.65), 0 0 46px oklch(0.83 0.19 148 / 0.35); }
.hero-sub{
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 24px auto 0;
  font-weight: 600;
}
.hero-actions{
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-note{
  margin-top: 22px;
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
}

/* ===== Stats bar ===== */
.stats-bar{
  padding-block: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
}
.stats-bar-label{
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 24px;
}
.stats-bar-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.stats-bar-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.stats-bar-num{ font-family: 'Lilita One', sans-serif; font-size: 30px; }
.stats-bar-text{ font-size: 13px; color: var(--text-muted); font-weight: 700; }

/* ===== Videos ===== */
.videos{ padding-block: 100px; }
.section-head{ text-align: center; max-width: 640px; margin: 0 auto 44px; }

.video-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.video-card{
  display: block;
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--text);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.video-card:hover{ color: var(--text); border-color: var(--pink); transform: translateY(-2px); }
.video-thumb{
  aspect-ratio: 16 / 9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elev-2);
}
.video-thumb img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn{
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: oklch(1 0 0 / 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.duration-badge{
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: oklch(0.1 0 0 / 0.85);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}
.video-body{ padding: 20px; }
.video-body h3{
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 8px;
}
.video-meta{ margin: 0; color: var(--text-muted); font-size: 13px; font-weight: 600; }

/* ===== About ===== */
.about{ padding-block: 100px; }
.about-text{ color: var(--text-muted); font-size: 17px; line-height: 1.7; margin: 0 0 20px; max-width: 640px; margin-inline: auto; }
.stat-pink{ color: var(--pink); }
.stat-green{ color: var(--green); }

.about-highlights{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.about-highlight{ padding: 26px 22px; }
.about-highlight svg{ margin-bottom: 14px; }
.about-highlight h3{
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 8px;
}
.about-highlight p{ margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.6; }

.social-block{ margin-top: 72px; text-align: center; }
.social-row{
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.social-icon{
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.social-icon:hover{ transform: translateY(-2px); border-color: var(--pink); }

.social-row--compact{
  justify-content: center;
  margin-top: 20px;
  gap: 12px;
}
.social-row--compact .social-icon{ width: 44px; height: 44px; border-radius: 14px; }

/* ===== Kooperation ===== */
.kooperation{
  padding-block: 100px;
  background:
    radial-gradient(500px 350px at 80% 30%, oklch(0.83 0.19 148 / 0.14), transparent 60%),
    var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.kooperation-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.kooperation-text{ color: var(--text-muted); font-size: 17px; line-height: 1.7; margin: 0 0 28px; max-width: 480px; }
.kooperation-list{ display: flex; flex-direction: column; gap: 16px; }
.kooperation-item{
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.kooperation-item svg{ flex-shrink: 0; }
.kooperation-item span{ font-weight: 700; font-size: 15px; }

/* ===== Footer ===== */
.site-footer{ padding: 64px 0 40px; }
.footer-top{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-top .logo{ font-size: 22px; }
.footer-tagline{ color: var(--text-muted); font-size: 14px; max-width: 280px; margin-top: 12px; line-height: 1.6; }
.footer-cols{ display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col-title{
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-col{ display: flex; flex-direction: column; gap: 10px; }
.footer-col a{ color: var(--text); font-size: 14px; font-weight: 600; }
.footer-bottom{
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p{ color: var(--text-muted); font-size: 13px; margin: 0; }
.footer-bottom a{ color: var(--text-muted); }

/* ===== Responsive ===== */
@media (max-width: 900px){
  .kooperation-grid{ grid-template-columns: 1fr; }
  .video-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-bar-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 28px; }
  .about-highlights{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px){
  .primary-nav{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: oklch(0.14 0.02 45 / 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    display: none;
  }
  .primary-nav.is-open{ display: flex; }
  .primary-nav a{ padding: 14px 0; border-bottom: 1px solid var(--line); }
  .primary-nav a:last-child{ border-bottom: none; }
  .nav-cta{ margin-top: 16px; justify-content: center; }
  .nav-toggle{ display: flex; }
}

@media (max-width: 560px){
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-actions .btn{ justify-content: center; }
  .about-highlights{ grid-template-columns: 1fr; }

  .video-grid{ gap: 14px; }
  .video-body{ padding: 14px; }
  .video-body h3{ font-size: 14px; margin: 0 0 6px; }
  .video-meta{ font-size: 11px; }
  .play-btn{ width: 40px; height: 40px; }
  .play-btn svg{ width: 15px; height: 15px; }
  .duration-badge{ font-size: 10px; padding: 2px 6px; bottom: 6px; right: 6px; }
}

@media (max-width: 400px){
  .wrap{ padding-inline: 20px; }
  .hero-title{ font-size: 44px; }
  .btn{ padding: 13px 20px; font-size: 15px; }
}
