/* ============================================================
   GOATZ — Landing page
   Palette: deep navy + premium gold
   ============================================================ */

:root {
  --navy-900: #0c0906;
  --navy-800: #15100b;
  --navy-700: #1e1810;
  --navy-600: #2c2318;
  --gold:     #f8bd48;
  --gold-2:   #e89200;
  --gold-3:   #fff0c2;
  --blue:     #4b7bf5;
  --txt:      #eaf1fb;
  --txt-dim:  #8ea0b8;
  --radius:   20px;
  --maxw:     1180px;
  --gold-grad: linear-gradient(135deg, #fff0c2 0%, #f8bd48 35%, #e89200 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--navy-900);
  color: var(--txt);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3 { line-height: 1.05; letter-spacing: -0.5px; }

.grad {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ Animated background ============ */
.bg-orbs { position: fixed; inset: 0; z-index: -2; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .5;
  animation: drift 18s ease-in-out infinite;
}
.orb--gold  { width: 480px; height: 480px; top: -120px; left: -80px;
  background: radial-gradient(circle, #e8920088, transparent 70%); }
.orb--blue  { width: 520px; height: 520px; top: 40%; right: -140px;
  background: radial-gradient(circle, #6e3f1577, transparent 70%); animation-delay: -6s; }
.orb--gold2 { width: 420px; height: 420px; bottom: -120px; left: 30%;
  background: radial-gradient(circle, #f8bd4855, transparent 70%); animation-delay: -12s; }

@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(60px,-40px) scale(1.1); }
  66%     { transform: translate(-40px,30px) scale(.95); }
}

.bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(var(--navy-900) 0 0);
  background: linear-gradient(180deg, transparent, var(--navy-900) 90%),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(248,189,72,.03) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(248,189,72,.03) 39px 40px);
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: 999px;
  cursor: pointer; border: none;
  transition: transform .25s, box-shadow .25s, background .25s;
  white-space: nowrap;
}
.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--gold {
  background: var(--gold-grad); color: #1a1207;
  box-shadow: 0 8px 30px rgba(232,146,0,.35);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(232,146,0,.5); }
.btn--ghost {
  background: rgba(255,255,255,.05); color: var(--txt);
  border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }

/* ============ Navbar ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 18px clamp(18px, 5vw, 48px);
  transition: background .3s, padding .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(16,12,8,.78); backdrop-filter: blur(16px);
  padding-top: 12px; padding-bottom: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
  border-bottom: 1px solid rgba(248,189,72,.12);
}
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__logo { width: 38px; height: 38px; }
.nav__logo--shield { width: auto; height: 46px; filter: drop-shadow(0 4px 10px rgba(232,146,0,.35)); }
.nav.scrolled .nav__logo--shield { height: 40px; }
.nav__name { font-family: 'Anton', sans-serif; font-size: 24px; letter-spacing: 1px; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { color: var(--txt-dim); font-size: 15px; font-weight: 500; position: relative; transition: color .2s; }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold-grad); transition: width .25s;
}
.nav__links a:hover { color: var(--txt); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 4px; }
.lang { display: inline-flex; align-items: center; gap: 8px; margin-left: auto;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  color: var(--txt); border-radius: 999px; padding: 7px 12px; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px;
  transition: border-color .2s, background .2s; }
.lang:hover { border-color: rgba(248,189,72,.45); background: rgba(248,189,72,.06); }
.lang__flag { font-size: 17px; line-height: 1; }
.lang__name { white-space: nowrap; }
.lang__caret { color: var(--txt-dim); }
.nav__links { margin-left: auto; }
.lang { margin-left: 18px; }
.nav__burger { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; margin-left: auto; }
.menu-cta { display: none; }
.nav__burger span { width: 26px; height: 2px; background: var(--txt); border-radius: 2px; transition: .3s; }

/* ============ Hero ============ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px clamp(18px,5vw,48px) 60px; }
.hero__inner {
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); background: rgba(248,189,72,.08);
  border: 1px solid rgba(248,189,72,.25); padding: 7px 14px; border-radius: 999px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 rgba(248,189,72,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70%,100% { box-shadow: 0 0 0 10px rgba(248,189,72,0); } }

.hero__title {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: clamp(40px, 6vw, 76px); line-height: .98; margin: 22px 0 18px;
  text-transform: uppercase; letter-spacing: 0;
}
.hero__and { display: block; font-family: 'Poppins', sans-serif; font-weight: 700;
  font-style: normal; text-transform: uppercase; letter-spacing: 5px;
  font-size: .4em; color: var(--gold); margin: .3em 0; }
.hero__sub { color: var(--txt-dim); font-size: clamp(15px,1.4vw,18px); max-width: 520px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 36px; }
.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat b { font-family: 'Anton', sans-serif; font-size: 38px; display: block; line-height: 1;
  margin-bottom: 6px; font-variant-numeric: tabular-nums; letter-spacing: 1px;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--txt-dim); font-size: 13px; display: block; }

/* Hero art */
.hero__art { position: relative; display: grid; place-items: center; min-height: 460px; }
.halo {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(248,189,72,.28), transparent 65%);
  filter: blur(10px); animation: breathe 5s ease-in-out infinite;
}
@keyframes breathe { 0%,100%{transform:scale(1);opacity:.8} 50%{transform:scale(1.12);opacity:1} }
.hero__logo { width: min(380px, 80%); filter: drop-shadow(0 30px 60px rgba(0,0,0,.6)); position: relative; z-index: 2; }
.hero__trophy { width: min(440px, 92%); filter: drop-shadow(0 26px 50px rgba(232,146,0,.45)) drop-shadow(0 10px 30px rgba(0,0,0,.55)); }
.float { animation: float 5s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }

.floatcard {
  position: absolute; width: 120px; z-index: 3;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.55));
  animation: floatcard 6s ease-in-out infinite;
}
.floatcard--match { border-radius: 16px; border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 34px rgba(0,0,0,.6); }
.floatcard--1 { top: -7%; left: -11%; width: 212px; z-index: 4; animation: floatA 6.5s ease-in-out infinite; }
.floatcard--2 { bottom: -5%; left: -7%; width: 188px; z-index: 4; animation: floatC 7.6s ease-in-out infinite; }
.floatcard--3 { top: 13%; right: -11%; width: 202px; z-index: 4; animation: floatB 7s ease-in-out infinite; }
.floatcard--4 { bottom: 6%; right: 0%; width: 104px; z-index: 5; animation: floatcard 5.5s ease-in-out infinite; animation-delay: -2s; }
@keyframes floatcard { 0%,100%{transform:translateY(0) rotate(-4deg)} 50%{transform:translateY(-22px) rotate(4deg)} }
@keyframes floatA { 0%,100%{transform:translateY(0) rotate(-6deg) scale(1)}   50%{transform:translateY(-30px) rotate(-1deg) scale(1.05)} }
@keyframes floatB { 0%,100%{transform:translateY(0) rotate(6deg) scale(1)}    50%{transform:translateY(-34px) rotate(1deg) scale(1.05)} }
@keyframes floatC { 0%,100%{transform:translateY(0) rotate(4deg) scale(1)}    50%{transform:translateY(-24px) rotate(-4deg) scale(1.06)} }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.25); border-radius: 14px; }
.scroll-cue span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 2px; background: var(--gold); animation: wheel 1.6s infinite; }
@keyframes wheel { 0%{opacity:0;top:8px} 40%{opacity:1} 80%{opacity:0;top:22px} }

/* ============ Generic section ============ */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(70px,10vw,120px) clamp(18px,5vw,48px); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section__head h2, .who h2, .split h2 { font-size: clamp(30px,4vw,48px); }
.kicker { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section__lead { color: var(--txt-dim); margin-top: 14px; font-size: 17px; }
.card { background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); backdrop-filter: blur(6px); }

/* ============ Who we are ============ */
.who { max-width: var(--maxw); margin: 0 auto; padding: 40px clamp(18px,5vw,48px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.who__media { position: relative; }
.who__media img { border-radius: var(--radius); border: 1px solid rgba(248,189,72,.18);
  box-shadow: 0 30px 70px rgba(0,0,0,.5); }
.who__glow { position: absolute; inset: -20px; z-index: -1; border-radius: 30px;
  background: radial-gradient(circle at 30% 30%, rgba(248,189,72,.25), transparent 60%); filter: blur(20px); }
.who__title { text-align: center; }
.who__copy p { color: var(--txt-dim); margin: 18px 0 22px; }
.checklist { list-style: none; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 32px; color: var(--txt); }
.checklist li::before { content: '✓'; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%; background: var(--gold-grad);
  color: #1a1207; font-weight: 700; font-size: 13px; display: grid; place-items: center; }

/* ============ Features ============ */
/* Floating sport icons around the hero trophy */
.sport-float { position: absolute; width: 84px; height: auto; z-index: 6;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.55)); }
.sport-float--1 { top: -2%;  right: 20%; width: 80px; animation: floatA 6.2s ease-in-out infinite; }
.sport-float--2 { top: 40%;  right: -8%; width: 92px; animation: floatB 7.2s ease-in-out infinite; }
.sport-float--3 { bottom: 8%; right: 20%; width: 78px; animation: floatC 6.8s ease-in-out infinite; }
.sport-float--4 { top: 44%;  left: -7%;  width: 88px; animation: floatB 7.6s ease-in-out infinite; }
.sport-float--5 { top: -3%;  left: 22%;  width: 82px; animation: floatC 6.4s ease-in-out infinite; }
.sport-float--6 { bottom: 12%; left: 16%; width: 84px; animation: floatA 7.4s ease-in-out infinite; }

/* Alternating showcase — big iPhone on one side, text on the other */
.showcase { max-width: var(--maxw); margin: 0 auto;
  padding: clamp(50px,8vw,90px) clamp(18px,5vw,48px);
  display: flex; flex-direction: column; gap: clamp(56px,9vw,110px); }
.show-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,6vw,72px); align-items: center; }
.show-row--rev .show-phone { order: 2; }
.show-phone { display: flex; justify-content: center; }
.show-phone .phone { width: min(290px, 78%); }
.show-phone .phone:hover { transform: translateY(-6px) scale(1.02); }
.show-copy { max-width: 480px; }
.show-row--rev .show-copy { justify-self: end; }
.show-copy .feature__tag { font-size: 13px; letter-spacing: 3px; margin-bottom: 10px; }
.show-copy h3 { font-size: clamp(26px,3.4vw,40px); line-height: 1.08; margin: 0 0 16px; }
.show-copy p { color: var(--txt-dim); font-size: clamp(15px,1.5vw,17px); line-height: 1.65; margin: 0; }

/* iPhone mockup — full app screen */
.phone { position: relative; width: 100%; aspect-ratio: 1284 / 2778; margin: 0 auto 22px;
  border-radius: 30px; padding: 7px;
  background: linear-gradient(150deg, #34343a, #0c0c0f);
  box-shadow: 0 26px 50px rgba(0,0,0,.55), inset 0 0 0 1.5px rgba(255,255,255,.09);
  transition: transform .5s ease, box-shadow .5s ease; }
.show-phone .phone { margin: 0; }
.phone__screen { position: relative; width: 100%; height: 100%; border-radius: 23px; overflow: hidden;
  background: #14100b; }
.phone__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.phone__island { position: absolute; top: 13px; left: 50%; transform: translateX(-50%);
  width: 32%; height: 11px; background: #05070b; border-radius: 8px; z-index: 3;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); }
/* wide screenshot: show the full screen (no side cropping) */
.phone__screen:has(.fit-contain) { background: #0b1622; }
.phone__screen img.fit-contain { object-fit: contain; }
.feature__tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.feature h3 { font-size: 18px; margin: 0 0 8px; line-height: 1.2; }
.feature p { color: var(--txt-dim); font-size: 13.5px; margin: 0; line-height: 1.5; }

/* ============ Sports ============ */
.sports__track { display: grid; grid-auto-flow: column; grid-auto-columns: 200px;
  gap: 20px; overflow-x: auto; padding: 10px 4px 26px; scroll-snap-type: x mandatory; }
.sports__track::-webkit-scrollbar { height: 8px; }
.sports__track::-webkit-scrollbar-thumb { background: rgba(248,189,72,.3); border-radius: 8px; }
.sportcard { scroll-snap-align: center; text-align: center; transition: transform .3s; }
.sportcard img { height: 180px; width: auto; margin: 0 auto;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.5)); transition: transform .3s; }
.sportcard:hover { transform: translateY(-10px); }
.sportcard:hover img { transform: scale(1.08) rotate(-3deg); }
.sportcard figcaption { margin-top: 14px; font-weight: 600; color: var(--txt); }

/* ============ Split sections ============ */
.split { max-width: var(--maxw); margin: 0 auto; padding: clamp(60px,8vw,100px) clamp(18px,5vw,48px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__copy p { color: var(--txt-dim); margin: 18px 0 26px; }
.split__media { position: relative; display: grid; place-items: center; }
.split__media img { border-radius: var(--radius); }
.tilt { transition: transform .5s; box-shadow: 0 30px 70px rgba(0,0,0,.5);
  border: 1px solid rgba(248,189,72,.15); }
.tilt:hover { transform: perspective(900px) rotateY(-8deg) rotateX(4deg) scale(1.02); }
.reward-badge { position: absolute; width: 120px; bottom: -20px; right: -10px;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.6)); }
.mini-stats { display: flex; gap: 16px; flex-wrap: wrap; }
.mini { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 16px 20px; flex: 1; min-width: 150px; }
.mini img { width: 40px; margin-bottom: 8px; }
.mini b { display: block; font-size: 16px; }
.mini span { color: var(--txt-dim); font-size: 13px; }

/* ============ Ranks / podium ============ */
.podium { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: end;
  max-width: 760px; margin: 0 auto 26px; }
.pod { text-align: center; }
.pod img { width: 70px; margin: 0 auto 12px; }
.pod__bar { border-radius: 16px 16px 0 0; padding: 18px 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1); border-bottom: none; }
.pod__rank { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  font-family: 'Anton'; background: var(--gold-grad); color: #1a1207; margin-bottom: 8px; }
.pod__bar b { display: block; font-size: 15px; }
.pod__bar i { color: var(--gold); font-style: normal; font-size: 13px; font-weight: 600; }
.pod--1 .pod__bar { padding-top: 40px; border-color: rgba(248,189,72,.5);
  box-shadow: 0 -10px 40px rgba(248,189,72,.18); }
.pod--1 img { width: 90px; }
.board { list-style: none; max-width: 600px; margin: 0 auto; display: grid; gap: 10px; }
.board li { display: grid; grid-template-columns: 40px 1fr auto; align-items: center;
  padding: 14px 20px; border-radius: 14px; background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07); transition: transform .2s, border-color .2s; }
.board li:hover { transform: translateX(6px); border-color: rgba(248,189,72,.35); }
.board__pos { font-family: 'Anton'; color: var(--txt-dim); }
.board__name { font-weight: 600; }
.board__pts { color: var(--gold); font-weight: 600; font-size: 14px; }

/* ============ Legal page ============ */
.legal-back { margin-left: auto; padding: 9px 18px; font-size: 14px; }
.legal { max-width: 820px; margin: 0 auto; padding: 130px clamp(18px,5vw,48px) 80px; }
.legal__title { font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: clamp(34px,6vw,60px); margin: 12px 0 8px; letter-spacing: 0; }
.legal__updated { color: var(--txt-dim); font-size: 14px; margin-bottom: 36px;
  padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.1); }
.legal__sec { margin-bottom: 30px; }
.legal__sec h2 { font-size: clamp(18px,2.2vw,23px); margin-bottom: 12px; color: var(--txt); }
.legal__sec h3 { font-size: 16px; margin: 16px 0 6px; color: var(--gold); }
.legal__sec p { color: var(--txt-dim); font-size: 15.5px; line-height: 1.7; margin-bottom: 12px; }
.legal__contact { color: var(--txt); }
.legal__contact strong { color: var(--gold); }
.legal-bottom-back { margin-top: 26px; }

/* ============ FAQ ============ */
.faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; overflow: hidden; transition: border-color .25s, background .25s; }
.faq__item[open] { border-color: rgba(248,189,72,.35); background: rgba(248,189,72,.05); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; padding: 18px 22px;
  font-weight: 600; font-size: clamp(15px,1.6vw,17px); color: var(--txt); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold); }
.faq__chev { flex: none; position: relative; width: 20px; height: 20px; }
.faq__chev::before, .faq__chev::after { content: ''; position: absolute; background: var(--gold);
  border-radius: 2px; transition: transform .3s, opacity .3s; }
.faq__chev::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq__chev::after  { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq__item[open] .faq__chev::after { opacity: 0; }
.faq__a { padding: 0 22px 20px; }
.faq__a p { color: var(--txt-dim); font-size: 15px; line-height: 1.65; margin: 0; }

/* ============ CTA ============ */
.cta { padding: clamp(60px,8vw,110px) clamp(18px,5vw,48px); }
.cta__card { max-width: 760px; margin: 0 auto; text-align: center; padding: clamp(40px,6vw,70px) 30px;
  border-radius: 32px; position: relative; overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(248,189,72,.16), rgba(255,255,255,.03) 55%);
  border: 1px solid rgba(248,189,72,.3); box-shadow: 0 40px 90px rgba(0,0,0,.5); }
.cta__logo { width: 110px; margin: 0 auto 20px; }
.cta__card h2 { font-size: clamp(28px,4vw,46px); }
.cta__card p { color: var(--txt-dim); margin: 14px auto 30px; max-width: 460px; }
.cta__stores { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.store { display: inline-flex; align-items: center; gap: 12px; padding: 12px 22px;
  border-radius: 14px; background: #0c1825; border: 1px solid rgba(255,255,255,.14);
  transition: transform .25s, border-color .25s; }
.store:hover { transform: translateY(-4px); border-color: var(--gold); }
.store span { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store small { font-size: 11px; color: var(--txt-dim); }
.store b { font-size: 16px; }

/* ============ Footer ============ */
.footer { border-top: 1px solid rgba(255,255,255,.08); padding: 48px clamp(18px,5vw,48px) 30px;
  max-width: var(--maxw); margin: 0 auto; }
.footer__top { display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap; padding-bottom: 26px; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a { color: var(--txt-dim); font-size: 14px; transition: color .2s; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.06); color: var(--txt-dim); font-size: 13px; }

/* ============ Scroll reveal ============ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE — all devices
   ============================================================ */

/* Never allow horizontal scroll */
html, body { max-width: 100%; overflow-x: hidden; }
img, svg { max-width: 100%; }

/* ---- Large desktop: cap content width nicely ---- */
@media (min-width: 1400px) {
  :root { --maxw: 1280px; }
}

/* ---- Laptop / small desktop ---- */
@media (max-width: 1080px) {
  .nav__links { gap: 18px; }
  .nav__links a { font-size: 14px; }
  .hero__inner { gap: 28px; }
}

/* ---- Tablet (≤ 920px): switch to mobile nav + single column ---- */
@media (max-width: 920px) {
  .nav { gap: 14px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .lang { margin-left: auto; }

  /* slide-down mobile menu */
  .nav.open .nav__links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: rgba(16,12,8,.98); backdrop-filter: blur(16px);
    padding: 22px clamp(18px,5vw,48px) 28px; gap: 20px;
    border-bottom: 1px solid rgba(248,189,72,.15);
    box-shadow: 0 20px 40px rgba(0,0,0,.5);
  }
  .nav.open .nav__links a { font-size: 17px; }
  .nav.open .menu-cta { display: inline-flex; margin-top: 6px; color: #1a1207; }

  .hero__inner, .who, .split, .split--reverse { grid-template-columns: 1fr; }

  /* showcase → stacked, phone on top, centered */
  .show-row, .show-row--rev { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .show-row .show-phone, .show-row--rev .show-phone { order: -1; }
  .show-phone .phone { width: min(258px, 68%); }
  .show-copy, .show-row--rev .show-copy { max-width: 540px; margin-inline: auto; justify-self: center; }

  .hero { padding-top: 110px; text-align: center; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .hero__sub { margin-inline: auto; }
  .hero__actions, .hero__stats { justify-content: center; }
  .hero__and { margin-inline: auto; }
  .hero__art { order: -1; min-height: 320px; margin-bottom: 10px; }

  .who { text-align: center; }
  .who__media { order: -1; max-width: 560px; margin-inline: auto; }
  .checklist { display: inline-grid; text-align: left; }

  .split { text-align: center; }
  .split__media { order: -1; max-width: 520px; margin-inline: auto; }
  .mini-stats { justify-content: center; }

}

/* ---- Large phone (≤ 680px) ---- */
@media (max-width: 680px) {
  .feature { flex-basis: 168px; max-width: 180px; }
  .hero__title { font-size: clamp(34px, 9vw, 52px); }
  .section__head { margin-bottom: 40px; }
  .floatcard--1 { width: 128px; }
  .floatcard--2 { width: 112px; }
  .floatcard--3 { width: 120px; }
  .floatcard--4 { width: 72px; }
  .sport-float { width: 56px !important; }
  .hero__logo { width: min(280px, 70%); }
  .halo { width: 300px; height: 300px; }
  .footer__top { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* ---- Phone (≤ 520px) ---- */
@media (max-width: 520px) {
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { gap: 18px; width: 100%; justify-content: space-around; }
  .stat b { font-size: 30px; }
  .stat span { font-size: 12px; }

  .podium { gap: 8px; }
  .pod img { width: 46px; } .pod--1 img { width: 60px; }
  .pod__bar { padding: 14px 6px; } .pod--1 .pod__bar { padding-top: 30px; }
  .pod__bar b { font-size: 13px; } .pod__bar i { font-size: 12px; }

  .cta__stores { flex-direction: column; }
  .store { justify-content: center; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: left; }

  .sportcard img { height: 150px; }
  .sports__track { grid-auto-columns: 160px; }
}

/* ---- Small phone (≤ 380px) ---- */
@media (max-width: 380px) {
  .nav__name { font-size: 20px; }
  .nav__logo { width: 32px; height: 32px; }
  .hero__title { font-size: clamp(28px, 9vw, 40px); }
  .hero__stats { gap: 10px; }
  .stat b { font-size: 26px; }
  .pod__bar b { font-size: 12px; }
  .feature { padding: 28px 22px; }
}

/* ---- Short landscape phones: tighten vertical space ---- */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 50px; }
  .hero__inner { grid-template-columns: 1fr 1fr; text-align: left; }
  .hero__copy { align-items: flex-start; }
  .hero__art { order: 0; min-height: 240px; }
  .scroll-cue { display: none; }
}

/* ---- Respect reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
