/* ==========================================================================
   Keel — landing site
   Light / pastel design system: white canvas, vivid colour blocks, navy ink.
   ========================================================================== */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

/* ---- Tokens (from the real palette) ---- */
:root {
  /* Canvas + ink */
  --bg:        #ffffff;
  --bg-soft:   #fcfbff;
  --ink:       #1c1640;   /* warm deep indigo */
  --ink-soft:  #5b5570;
  --ink-mute:  #938da6;
  --line:        rgba(28, 22, 64, 0.10);
  --line-strong: rgba(28, 22, 64, 0.16);

  /* Soft section tints */
  --lavender:  #f0dbfa;
  --lavender-2:#f7edfc;
  --ice:       #f5f9ff;
  --ice-2:     #ecf2fa;
  --mint:      #c3f1fd;
  --cream:     #fff9f2;

  /* Vivid accents */
  --violet:    #b34de5;
  --violet-2:  #d194ef;
  --violet-3:  #9d20da;
  --blue:      #567ef4;
  --blue-2:    #3061f2;
  --lime:      #e3e1a7;
  --lime-2:    #cac65a;
  --lime-3:    #bfba3d;
  --orange:    #ff9317;
  --orange-2:  #ffad4f;
  --orange-ink:#ff7a1a;
  --coral:     #fc6a76;
  --navy:      #181235;   /* deep indigo for dark blocks */
  --lilac:     #e3c8fb;
  --lilac-ink: #3a2960;

  --grad-aurora: linear-gradient(110deg, #b34de5 0%, #567ef4 55%, #3061f2 100%);
  --grad-warm:   linear-gradient(110deg, #ff9317 0%, #fc6a76 100%);
  --grad-lime:   linear-gradient(135deg, #e3e1a7 0%, #cac65a 100%);

  /* Type */
  --font-display: "Fredoka", "Inter", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "Fragment Mono", "DM Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Shape */
  --radius-sm: 14px;
  --radius:    20px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);

  --shadow-xs: 0 1px 2px rgba(28, 22, 64, 0.05);
  --shadow-sm: 0 2px 6px -2px rgba(28, 22, 64, 0.1), 0 10px 26px -16px rgba(28, 22, 64, 0.22);
  --shadow:    0 1px 2px rgba(28, 22, 64, 0.05), 0 20px 46px -26px rgba(28, 22, 64, 0.26);
  --shadow-lg: 0 1px 2px rgba(28, 22, 64, 0.05), 0 36px 66px -30px rgba(28, 22, 64, 0.32);
  --shadow-color: 0 22px 56px -28px rgba(179, 77, 229, 0.45);
}

/* ---- Base ---- */
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---- Layout helpers ---- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(54px, 7vw, 100px); position: relative; }

/* full-bleed colour blocks */
.block { position: relative; }
.block-ice   { background: var(--ice); }
.block-lav   { background: var(--lavender); }
.block-cream { background: var(--cream); }
.block-navy  { background: var(--navy); color: #eef1f8; }
.block-navy .eyebrow { color: var(--violet-2); }
.block-navy .lede, .block-navy p { color: #b6bdd0; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-3);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--violet); }
.block-navy .eyebrow { color: var(--violet-2); }

.section-head { max-width: 700px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { margin-inline: auto; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.04; letter-spacing: -0.01em; font-weight: 600; }
.h-display { font-size: clamp(2.6rem, 5.4vw, 4.6rem); font-weight: 600; letter-spacing: -0.012em; line-height: 1.07; text-wrap: balance; }
.h-section { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 600; margin-top: 16px; text-wrap: balance; }
.lede {
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  color: var(--ink-soft);
  margin-top: 20px;
  max-width: 56ch;
  line-height: 1.5;
}

/* coloured text underline-ish highlight */
.hl { position: relative; white-space: nowrap; }
.hl-violet { color: var(--violet); }
.hl-blue   { color: var(--blue-2); }
.hl-orange { color: var(--orange); }
.grad-text {
  background: var(--grad-aurora);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---- Buttons ---- */
.btn {
  --pad-y: 0.82rem; --pad-x: 1.4rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-weight: 560; font-size: 0.97rem; letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.2s ease;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn svg { width: 1.15em; height: 1.15em; }

.btn-primary { color: #fff; background: var(--navy); box-shadow: var(--shadow-sm); font-weight: 560; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(28, 22, 64, 0.5); }

/* friendly lilac pill (primary CTA) */
.btn-lilac { color: var(--lilac-ink); background: var(--lilac); font-weight: 600; box-shadow: 0 12px 28px -14px rgba(179, 77, 229, 0.55); }
.btn-lilac:hover { transform: translateY(-2px); background: #d9b6f9; box-shadow: 0 18px 38px -16px rgba(179, 77, 229, 0.7); }

.btn-accent { color: #fff; background: var(--grad-aurora); background-size: 150% 150%; box-shadow: var(--shadow-color); font-weight: 600; }
.btn-accent:hover { transform: translateY(-2px); background-position: 100% 0; }

.btn-ghost { color: var(--ink); border: 1.5px solid var(--line-strong); background: #fff; }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.block-navy .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.28); background: transparent; }
.block-navy .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

.btn-lg { --pad-y: 1.02rem; --pad-x: 1.85rem; font-size: 1.04rem; }

/* ---- Header / nav ---- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom-color: var(--line);
}
.nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 72px; }
.nav .nav-links { justify-self: center; }
.nav .nav-actions { justify-self: end; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 700; font-size: 1.2rem; letter-spacing: -0.04em; }
.brand img { height: 30px; width: auto; }

.nav-links { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2.1rem); }
.nav-links a { font-size: 0.95rem; color: var(--ink-soft); font-weight: 500; transition: color 0.2s ease; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; border-radius: 2px; background: var(--grad-aurora); transition: width 0.25s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.7rem; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1.5px solid var(--line-strong); align-items: center; justify-content: center; }
.nav-toggle span { position: relative; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: background 0.2s ease; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---- Hero ---- */
.hero { position: relative; padding-top: clamp(116px, 14vh, 168px); padding-bottom: clamp(28px, 5vw, 60px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; z-index: -1;
  width: 56vw; height: 56vw; max-width: 700px; max-height: 700px;
  right: -6%; top: -6%; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(216,176,250,0.5), rgba(216,176,250,0) 70%);
  filter: blur(6px);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: clamp(20px, 3.5vw, 44px); align-items: center; min-height: min(70vh, 620px); }
.hero-copy { max-width: 600px; }

.pill {
  display: inline-flex; align-items: center; gap: 0.55em;
  padding: 0.42rem 0.95rem 0.42rem 0.5rem;
  border-radius: 999px; border: 1px solid var(--line-strong);
  background: #fff; box-shadow: var(--shadow-sm);
  font-size: 0.82rem; color: var(--ink-soft); font-weight: 500; margin-bottom: 26px;
}
.pill .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--grad-aurora); display: grid; place-items: center; font-size: 0.66rem; color: #fff; }

/* hand-drawn scribble accent over a word (stretches to the word box) */
.scribbled { position: relative; display: inline-block; white-space: nowrap; }
.scribbled .scribble { position: absolute; left: -8%; top: -10%; width: 116%; height: 104%; pointer-events: none; z-index: -1; }

.hero .lede { margin-top: 24px; max-width: 50ch; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem; margin-top: 34px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.3rem; margin-top: 28px; font-size: 0.88rem; color: var(--ink-mute); }
.hero-meta span { display: inline-flex; align-items: center; gap: 0.5em; }
.hero-meta svg { width: 18px; height: 18px; color: var(--violet); }

.hero-visual { position: relative; justify-self: center; width: 100%; max-width: 620px; }
.hero-visual img { width: 100%; height: auto; filter: drop-shadow(0 26px 34px rgba(28, 22, 64, 0.24)); animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* scroll hint */
.scroll-hint { display: inline-flex; align-items: center; gap: 0.6em; margin-top: clamp(16px, 2.5vw, 28px); font-size: 0.82rem; color: var(--ink-mute); font-weight: 500; }
.scroll-hint .mouse { width: 20px; height: 30px; border: 2px solid var(--ink-mute); border-radius: 11px; position: relative; flex: none; }
.scroll-hint .mouse::before { content: ""; position: absolute; left: 50%; top: 6px; width: 3px; height: 6px; border-radius: 2px; background: var(--ink-mute); transform: translateX(-50%); animation: scrolly 1.6s ease-in-out infinite; }
@keyframes scrolly { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 8px); } }

/* discipline marquee */
.marquee { margin-top: clamp(26px, 3.5vw, 46px); border-block: 1px solid var(--line); padding-block: 20px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: marquee 34s linear infinite; }
.marquee-track span { font-family: var(--font-sans); font-weight: 500; font-size: 0.95rem; color: var(--ink-mute); display: inline-flex; align-items: center; gap: 0.7em; white-space: nowrap; }
.marquee-track span::before { content: "●"; color: var(--orange-ink); font-size: 0.5em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- Value props ---- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { position: relative; display: flex; flex-direction: column; padding: 34px 32px 36px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); transition: transform 0.3s ease, box-shadow 0.3s ease; }
/* cards stay clean white — colour comes from the icon chip, not pastel fills */
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card .ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px; box-shadow: 0 10px 22px -10px rgba(28, 22, 64, 0.45); }
.card .ic img { width: 28px; height: 28px; filter: brightness(0) invert(1); }
.value-grid .card:nth-child(1) .ic { background: var(--violet); }
.value-grid .card:nth-child(2) .ic { background: var(--orange-ink); }
.value-grid .card:nth-child(3) .ic { background: var(--violet-3); }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: #45405e; font-size: 0.98rem; }
.card .accent-bar { display: none; }

/* ---- How it works ---- */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 70px); align-items: center; }
.how-visual { border-radius: var(--radius-xl); background: radial-gradient(120% 100% at 25% 15%, #f6ecfe, #ffffff 62%); border: 1px solid var(--line); padding: clamp(16px, 2.4vw, 26px); box-shadow: 0 1px 2px rgba(28,22,64,.05), 0 30px 60px -30px rgba(28,22,64,.28); }
.how-visual img { width: 100%; height: auto; }
.steps { display: grid; gap: 12px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 20px 22px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.step:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.step .num { font-family: var(--font-mono); font-size: 0.82rem; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #b34de5, #9d20da); align-self: start; }
.step:nth-child(2) .num { background: var(--grad-warm); }
.step:nth-child(3) .num { background: linear-gradient(135deg, #b34de5, #9d20da); }
.step:nth-child(4) .num { background: var(--grad-warm); }
.step h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; letter-spacing: -0.02em; }
.step p { font-size: 0.94rem; color: #45405e; }

/* ---- Sports ---- */
.sports-block { text-align: center; }
.sports-primary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 34px; }
.sport { padding: 44px 28px 38px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.sport:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.sport .badge { width: 88px; height: 88px; margin: 0 auto 24px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 16px 30px -12px rgba(179, 77, 229, 0.5); }
.sport .badge img { width: 40px; height: 40px; filter: brightness(0) invert(1); }
.sport:nth-child(1) .badge { background: linear-gradient(135deg, #b34de5, #9d20da); }
.sport:nth-child(2) .badge { background: linear-gradient(135deg, #ff9f45, #ff7a1a); box-shadow: 0 16px 30px -12px rgba(255, 122, 26, 0.5); }
.sport:nth-child(3) .badge { background: linear-gradient(135deg, #8b6cf0, #5b4bd6); box-shadow: 0 16px 30px -12px rgba(91, 75, 214, 0.5); }
.sport h3 { font-size: 1.34rem; }
.sport p { color: var(--ink-soft); font-size: 0.94rem; margin-top: 8px; }

.sports-more { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 780px; margin: 0 auto; }
.tag { font-family: var(--font-sans); font-weight: 500; font-size: 0.9rem; padding: 0.55rem 1.1rem; border-radius: 999px; border: 1px solid var(--line-strong); background: #fff; color: var(--ink-soft); transition: border-color 0.25s ease, color 0.25s ease, transform 0.2s ease, background 0.25s ease; }
.tag:hover { border-color: transparent; color: #fff; background: var(--violet); transform: translateY(-2px); }
.sports-note { margin-top: 26px; color: var(--ink-mute); font-size: 0.92rem; }

/* ---- Quote band (navy) ---- */
.band { border-radius: var(--radius-xl); background: var(--navy); color: #fff; padding: clamp(40px, 7vw, 84px); text-align: center; position: relative; overflow: hidden; }
.band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 100% at 100% 0%, rgba(179,77,229,0.35), transparent 55%), radial-gradient(60% 100% at 0% 100%, rgba(86,126,244,0.3), transparent 55%); }
.band blockquote { position: relative; font-size: clamp(1.6rem, 3.4vw, 2.6rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1.16; max-width: 20ch; margin: 0 auto; }
.band .grad-text { background: var(--grad-lime); -webkit-background-clip: text; background-clip: text; color: transparent; }
.band cite { position: relative; display: block; margin-top: 24px; font-style: normal; font-family: var(--font-sans); font-weight: 500; font-size: 0.85rem; letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.64); text-transform: uppercase; }

/* ---- FAQ ---- */
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 6vw, 70px); align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line-strong); border-radius: var(--radius); background: #fff; overflow: hidden; transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.faq-item.open { border-color: var(--violet-2); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; text-align: left; font-size: 1.06rem; font-weight: 560; letter-spacing: -0.02em; }
.faq-q .chev { flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease; }
.faq-q .chev::before { content: ""; width: 8px; height: 8px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(45deg) translate(-1px, -1px); transition: transform 0.3s ease, border-color 0.3s ease; }
.faq-item.open .chev { background: var(--grad-aurora); border-color: transparent; }
.faq-item.open .chev::before { border-color: #fff; transform: rotate(-135deg) translate(-2px, -2px); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 24px 24px; color: var(--ink-soft); font-size: 0.98rem; }
.faq-aside { margin-top: 28px; padding: 24px 26px; border-radius: var(--radius); background: linear-gradient(135deg, #f6ecfe, #fff 80%); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.faq-aside p { color: var(--ink); font-weight: 560; font-size: 1rem; margin-bottom: 6px; }
.faq-aside small { color: var(--ink-mute); font-size: 0.88rem; display: block; margin-bottom: 14px; }
.faq-aside a { color: var(--violet-3); font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.4em; }
.faq-aside a svg { width: 1em; height: 1em; transition: transform 0.2s ease; }
.faq-aside a:hover svg { transform: translateX(3px); }

/* ---- Download CTA (navy block) ---- */
.cta { position: relative; border-radius: var(--radius-xl); overflow: hidden; background: var(--navy); color: #fff; padding: clamp(40px, 7vw, 84px); display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(55% 120% at 85% 0%, rgba(179,77,229,0.4), transparent 58%), radial-gradient(55% 120% at 5% 100%, rgba(86,126,244,0.34), transparent 58%); }
.cta > * { position: relative; }
.cta h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.cta p { color: #b6bdd0; margin-top: 16px; max-width: 44ch; }
.store-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.store-btn { display: inline-flex; align-items: center; gap: 0.7em; padding: 0.7rem 1.25rem; border-radius: 14px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); transition: transform 0.2s ease, background 0.2s ease; }
.store-btn:hover { transform: translateY(-3px); background: rgba(255,255,255,0.12); }
.store-btn svg { width: 26px; height: 26px; }
.store-btn .sb-sub { font-size: 0.66rem; color: #9aa3bd; line-height: 1; }
.store-btn .sb-main { font-size: 1.02rem; font-weight: 600; line-height: 1.2; }
.cta-art { justify-self: center; max-width: 270px; }
.cta-art img { width: 100%; filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.45)); }

/* ---- Footer (navy) ---- */
.site-footer { background: var(--navy); color: #c3cadb; padding-block: clamp(54px, 7vw, 84px) 38px; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; margin-bottom: 52px; }
.footer-brand .brand { color: #fff; }
.footer-brand p { color: #8d96ad; font-size: 0.92rem; margin-top: 16px; max-width: 32ch; }
.footer-col h5 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: #6f7895; margin-bottom: 14px; }
.footer-col a { display: block; color: #c3cadb; font-size: 0.94rem; padding-block: 6px; transition: color 0.2s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1); color: #8d96ad; font-size: 0.86rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: grid; place-items: center; color: #c3cadb; transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.footer-social a:hover { border-color: #fff; color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---- Legal / content ---- */
.doc { padding-top: clamp(116px, 15vh, 168px); padding-bottom: clamp(56px, 9vw, 104px); }
.doc-wrap { max-width: 760px; }
.doc h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 10px; }
.doc .updated { font-family: var(--font-mono); font-size: 0.82rem; color: var(--ink-mute); margin-bottom: 38px; }
.doc h2 { font-size: 1.4rem; margin-top: 42px; margin-bottom: 14px; }
.doc p, .doc li { color: var(--ink-soft); font-size: 1rem; margin-bottom: 14px; }
.doc ul { padding-left: 1.2em; list-style: disc; }
.doc li { margin-bottom: 8px; }
.doc a { color: var(--violet-3); text-decoration: underline; text-underline-offset: 3px; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 340px; }
  .how-grid, .faq-grid, .cta { grid-template-columns: 1fr; }
  .cta-art { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.mobile { display: flex; position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; padding: 12px var(--gutter) 24px; background: rgba(255,255,255,0.97); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform 0.28s ease, opacity 0.28s ease; }
  .nav-links.mobile.show { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links.mobile a { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-links.mobile a::after { display: none; }
  .value-grid, .sports-primary { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .band blockquote { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .hero-visual img, .scroll-hint .mouse::before { animation: none; }
  html { scroll-behavior: auto; }
}
