/* ===================================================================
   Gymen landing — brand tokens mirror packages/shared/src/theme/tokens.ts
   =================================================================== */
:root {
  /* ---- Dark theme (DEFAULT) — mirrors the app's espresso dark palette ---- */
  color-scheme: dark;

  --primary: #FF5F1F;
  --primary-deep: #E14A0B;
  --accent: #FF9057;
  --primary-soft: #3A2417;

  --ink: #F6F1EB;
  --ink2: #CFC6BD;
  --ink3: #9C8F82;
  --ink4: #6E635A;

  --bg: #15110E;
  --surface: #2A231E;
  --surface2: #1E1815;
  --surface3: #342C26;
  --hairline: #3A322B;

  --nav-bg: rgba(21, 17, 14, .82);
  --footer-bg: #100D0B;

  --positive: #34D399;
  --white: #FFFFFF;

  --espresso-1: #241E1A;
  --espresso-2: #3B322B;

  --grad-primary: linear-gradient(135deg, #FF5F1F 0%, #FF9057 100%);
  --grad-espresso: linear-gradient(135deg, #2A2320 0%, #14100D 100%);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .3);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, .38);
  --shadow-lg: 0 28px 64px rgba(0, 0, 0, .5);
  --glow: 0 20px 60px rgba(255, 95, 31, .35);

  --maxw: 1140px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---- Light theme (opt-in via toggle) ---- */
:root[data-theme="light"] {
  color-scheme: light;

  --primary-soft: #FFF0E8;

  --ink: #1C1917;
  --ink2: #44403C;
  --ink3: #78716C;
  --ink4: #A8A29E;

  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface2: #FAF8F6;
  --surface3: #F5F1ED;
  --hairline: #EAE4DE;

  --nav-bg: rgba(255, 255, 255, .82);
  --footer-bg: #1C1917;

  --positive: #10B981;

  --grad-espresso: linear-gradient(135deg, #241E1A 0%, #3B322B 100%);

  --shadow-sm: 0 1px 2px rgba(28, 25, 23, .06);
  --shadow-md: 0 8px 24px rgba(28, 25, 23, .08);
  --shadow-lg: 0 24px 60px rgba(28, 25, 23, .14);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ---------- Buttons ---------- */
.btn {
  --btn-fg: var(--white);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 15px;
  padding: 12px 20px; border-radius: var(--r-md);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--primary); color: var(--white); box-shadow: 0 6px 18px rgba(255, 95, 31, .32); }
.btn--primary:hover { background: var(--primary-deep); box-shadow: var(--glow); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--hairline); }
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }
.btn--ghost { background: transparent; color: var(--ink2); padding: 10px 14px; }
.btn--ghost:hover { color: var(--primary); }
.btn--lg { padding: 15px 26px; font-size: 16px; border-radius: var(--r-md); }
.btn--block { width: 100%; }

.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 16px;
}
.eyebrow--ink { color: var(--primary); }
.eyebrow--onDark { color: var(--accent); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.is-scrolled { border-bottom-color: var(--hairline); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; gap: 24px; height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); }
/* Height-driven: the icon asset is 90.16 x 77.42, so the width follows. */
.brand__mark { height: 28px; flex-shrink: 0; }
/* Nav + footer wear the full-colour app icon straight from the asset file, so
   they match the hero lockup. The mono glyph is still inlined inside the app
   mockups, where it stands in for the in-app brand mark. */
.brand__mark img { width: auto; height: 100%; display: block; }
.brand__mark svg { width: 100%; height: 100%; fill: currentColor; display: block; }
.brand__word { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.brand__word span { color: var(--primary); }
@media (min-width: 721px) { .brand__mark { height: 30px; } .brand__word { font-size: 20px; } }

.nav__links { display: flex; gap: 28px; margin-left: 12px; }
.nav__links a { font-weight: 600; font-size: 15px; color: var(--ink2); transition: color .15s ease; }
.nav__links a:hover { color: var(--primary); }
.nav__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.nav__toggle { display: none; margin-left: auto; width: 42px; height: 42px; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 20px; border-bottom: 1px solid var(--hairline); background: var(--surface); }
.nav__mobile a { padding: 12px 4px; font-weight: 600; color: var(--ink2); border-bottom: 1px solid var(--surface3); }
.nav__mobile .btn { margin-top: 12px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 72px 0 40px; background: radial-gradient(120% 90% at 80% -10%, var(--primary-soft) 0%, var(--bg) 55%); }
.hero__glow { position: absolute; top: -160px; right: -120px; width: 520px; height: 520px; background: var(--grad-primary); filter: blur(90px); opacity: .28; border-radius: 50%; pointer-events: none; }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero__title { font-size: clamp(38px, 6vw, 60px); margin-bottom: 22px; }
.hero__lede { font-size: clamp(17px, 2.2vw, 20px); color: var(--ink2); max-width: 30em; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.hero__note { font-size: 14px; color: var(--ink3); font-weight: 500; }

.hero__logo { display: block; width: min(400px, 82%); margin-bottom: 26px; text-decoration: none; }
.hero__logo-img { width: 100%; height: auto; display: block; }
/* Dark is the default theme (no data-theme attr) → show the white-wordmark
   variant; the light theme swaps to the black-wordmark one. */
.hero__logo-img--light { display: none; }
:root[data-theme="light"] .hero__logo-img--dark { display: none; }
:root[data-theme="light"] .hero__logo-img--light { display: block; }

.logos { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--hairline); }
.logos span { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink4); }

/* ---------- Phone mockup ---------- */
.hero__device { display: flex; justify-content: center; }
.phone {
  position: relative; width: 300px; max-width: 78vw; aspect-ratio: 300 / 620;
  background: #0d0b0a; border-radius: 44px; padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(28,25,23,.06);
}
.phone__notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 120px; height: 26px; background: #0d0b0a; border-radius: 0 0 16px 16px; z-index: 3; }
.phone__screen { width: 100%; height: 100%; border-radius: 33px; overflow: hidden; background: var(--surface2); display: flex; flex-direction: column; }

.apphero { background: var(--grad-primary); color: var(--white); padding: 40px 20px 20px; }
.apphero__brand { display: flex; align-items: center; gap: 5px; opacity: .92; margin-bottom: 22px; }
.apphero__mark { width: 15px; height: 15px; }
.apphero__mark svg { width: 100%; height: 100%; fill: var(--white); }
.apphero__word { font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.apphero__title { font-size: 22px; font-weight: 800; }
.apphero__sub { font-size: 13px; opacity: .9; }

.appbody { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.applist { display: flex; flex-direction: column; gap: 8px; }
.appitem { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 10px 12px; }
.avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--a, var(--primary)); color: #fff; font-size: 12px; font-weight: 700; display: grid; place-items: center; flex-shrink: 0; }
.appitem__t { flex: 1; min-width: 0; }
.appitem__t b { display: block; font-size: 13px; }
.appitem__t small { font-size: 11px; color: var(--ink3); }
.pill { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: var(--surface3); color: var(--ink2); }
.pill--up { background: rgba(16, 185, 129, .14); color: var(--positive); }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section--alt { background: var(--surface2); }
.section__head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section__head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.section__head p { font-size: 18px; color: var(--ink2); }

/* FAQ — <details> accordion; also feeds FAQPage structured data */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 4px 22px; box-shadow: var(--shadow-sm); }
.faq__item summary { list-style: none; cursor: pointer; padding: 18px 30px 18px 0; font-size: 17px; font-weight: 700; color: var(--ink); position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 22px; font-weight: 400; color: var(--primary); transition: transform .2s ease; }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 0 20px; font-size: 16px; line-height: 1.6; color: var(--ink2); }
/* Stagger each item's reveal-on-scroll */
.faq .faq__item:nth-child(2) { transition-delay: .05s; }
.faq .faq__item:nth-child(3) { transition-delay: .10s; }
.faq .faq__item:nth-child(4) { transition-delay: .15s; }
.faq .faq__item:nth-child(5) { transition-delay: .20s; }
.faq .faq__item:nth-child(6) { transition-delay: .25s; }
.faq .faq__item:nth-child(7) { transition-delay: .30s; }

.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.pricing--two { max-width: 780px; margin: 0 auto; }

/* ---------- Language switch ---------- */
.lang { display: inline-flex; align-items: center; border: 1.5px solid var(--hairline); border-radius: 999px; overflow: hidden; }
.lang__opt { font-size: 13px; font-weight: 700; letter-spacing: .02em; padding: 6px 12px; color: var(--ink3); transition: background .15s ease, color .15s ease; }
.lang__opt:hover { color: var(--primary); }
.lang__opt.is-active { background: var(--primary); color: #fff; }
.lang--foot { border-color: rgba(255,255,255,.22); }
.lang--foot .lang__opt { color: rgba(255,255,255,.6); }
.lang--foot .lang__opt:hover { color: #fff; }
.lang--foot .lang__opt.is-active { background: var(--primary); color: #fff; }

/* ---------- Theme toggle ---------- */
.themetoggle { width: 40px; height: 40px; border-radius: 999px; border: 1.5px solid var(--hairline); background: transparent; color: var(--ink2); cursor: pointer; display: grid; place-items: center; transition: color .15s ease, border-color .15s ease; }
.themetoggle:hover { color: var(--primary); border-color: var(--primary); }
.themetoggle svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.themetoggle .i-sun { display: block; }
.themetoggle .i-moon { display: none; }
:root[data-theme="light"] .themetoggle .i-sun { display: none; }
:root[data-theme="light"] .themetoggle .i-moon { display: block; }

/* ---------- Pricing trial line ---------- */
.price__trial { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--primary); background: var(--primary-soft); padding: 6px 12px; border-radius: 999px; margin: 0 auto 4px; }

/* ---------- Feature cards ---------- */
.feature { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature__icon { width: 48px; height: 48px; border-radius: 14px; background: var(--primary-soft); display: grid; place-items: center; margin-bottom: 18px; }
.feature__icon svg { width: 24px; height: 24px; fill: none; stroke: var(--primary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.feature p { color: var(--ink2); font-size: 15px; }

/* ---------- Dark band ---------- */
.band { background: var(--grad-espresso); color: #F6F1EB; padding: 96px 0; }
.band__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.band__grid--rev .showcase { order: -1; }
.band__copy h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 18px; }
.band .band__copy h2 { color: #fff; }
.band__lede { font-size: 18px; color: rgba(246, 241, 235, .78); margin-bottom: 24px; }
.section--alt .band__lede { color: var(--ink2); }

.ticks { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.ticks li { position: relative; padding-left: 32px; font-size: 16px; color: rgba(246, 241, 235, .9); }
.ticks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--primary); }
.ticks li::after { content: ""; position: absolute; left: 6px; top: 8px; width: 8px; height: 5px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }
.ticks--ink li { color: var(--ink2); }

/* ---------- Report visual ---------- */
.band__visual { display: flex; justify-content: center; }
.report { width: 360px; max-width: 100%; background: var(--surface); color: var(--ink); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.report__masthead { background: var(--grad-primary); color: #fff; padding: 20px 22px; display: flex; align-items: center; gap: 8px; }
.report__mark { width: 20px; height: 20px; }
.report__mark svg { width: 100%; height: 100%; fill: #fff; }
.report__word { font-weight: 800; font-size: 17px; }
.report__tag { margin-left: auto; font-size: 12px; font-weight: 600; opacity: .9; }
.report__client { padding: 20px 22px 6px; }
.report__client b { display: block; font-size: 17px; }
.report__client small { color: var(--ink3); font-size: 13px; }
.report__rows { padding: 12px 22px 8px; display: flex; flex-direction: column; }
.rrow { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--surface3); }
.rrow:last-child { border-bottom: none; }
.rrow span { flex: 1; color: var(--ink2); font-size: 14px; }
.rrow b { font-size: 16px; font-weight: 800; }
.rrow em { font-style: normal; font-size: 13px; font-weight: 700; color: var(--ink3); min-width: 56px; text-align: right; }
.rrow em.up { color: var(--positive); }
.report__foot { display: flex; align-items: center; gap: 6px; padding: 14px 22px; background: var(--surface2); border-top: 1px solid var(--hairline); font-size: 12px; font-weight: 600; color: var(--primary); }
.report__mark--sm { width: 15px; height: 15px; }
.report__mark--sm svg { fill: var(--primary); }

/* ---------- Progress showcase ---------- */
.showcase { display: flex; flex-direction: column; gap: 18px; }
.chart { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-md); }
.chart__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.chart__head b { font-size: 15px; }
.chart__svg { width: 100%; height: 150px; }
.chart__area { fill: rgba(255, 95, 31, .10); stroke: none; }
.chart__line { fill: none; stroke: var(--primary); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.chart__x { display: flex; justify-content: space-between; margin-top: 8px; font-size: 12px; color: var(--ink4); font-weight: 600; }
.showcase__mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mini { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 16px; text-align: center; box-shadow: var(--shadow-sm); }
.mini__k { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--ink3); }
.mini__v { display: block; font-size: 24px; font-weight: 800; color: var(--primary); margin-top: 4px; }

/* ---------- Pricing ---------- */
.pricing { align-items: start; }
.price { position: relative; background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-xl); padding: 32px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.price--feature { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-8px); background: linear-gradient(180deg, var(--surface), var(--primary-soft)); }
.price__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 999px; box-shadow: 0 6px 16px rgba(255,95,31,.35); white-space: nowrap; }
.price__head { text-align: center; padding-bottom: 20px; border-bottom: 1px solid var(--hairline); margin-bottom: 20px; }
.price__head h3 { font-size: 20px; font-weight: 700; }
.price__amt { font-size: 52px; font-weight: 800; letter-spacing: -.03em; margin: 8px 0 4px; }
.price__cur { font-size: 26px; font-weight: 700; vertical-align: super; margin-right: 2px; }
.price__per { font-size: 16px; font-weight: 600; color: var(--ink3); }
.price__for { font-size: 14px; color: var(--ink3); }
.price__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; flex: 1; }
.price__list li { position: relative; padding-left: 28px; font-size: 15px; color: var(--ink2); }
.price__list li::before { content: ""; position: absolute; left: 4px; top: 7px; width: 8px; height: 5px; border-left: 2px solid var(--primary); border-bottom: 2px solid var(--primary); transform: rotate(-45deg); }
.pricing__note { text-align: center; margin-top: 28px; font-size: 14px; color: var(--ink3); }

/* ---------- CTA ---------- */
.cta { padding: 88px 0; }
.cta__inner { background: var(--grad-espresso); color: #fff; border-radius: var(--r-xl); padding: 64px 32px; text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta__inner::before { content: ""; position: absolute; top: -80px; right: -60px; width: 320px; height: 320px; background: var(--grad-primary); filter: blur(80px); opacity: .4; border-radius: 50%; }
.cta__inner h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 12px; position: relative; }
.cta__inner p { font-size: 18px; color: rgba(246,241,235,.82); margin-bottom: 30px; position: relative; }
.store { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
/* The CTA card is espresso in BOTH themes, so these badges carry fixed ink:
   var(--ink) is near-white in the dark default, i.e. invisible on the white pill. */
.store__btn { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: #1C1917; padding: 12px 20px; border-radius: 14px; box-shadow: 0 6px 18px rgba(0, 0, 0, .28); transition: transform .15s ease, box-shadow .2s ease; }
.store__btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 0, 0, .34); }
.store__btn svg { width: 26px; height: 26px; fill: #1C1917; }
.store__btn span { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store__btn small { font-size: 11px; color: #78716C; }
.store__btn b { font-size: 16px; font-weight: 700; }

/* Hero store badges: left-aligned, inverted for contrast on both themes. */
.store--hero { justify-content: flex-start; margin-bottom: 16px; }
.store--hero .store__btn { background: var(--ink); color: var(--bg); box-shadow: var(--shadow-md); }
.store--hero .store__btn:hover { box-shadow: var(--shadow-lg); }
.store--hero .store__btn svg { fill: var(--bg); }
.store--hero .store__btn small { color: var(--bg); opacity: .7; }
@media (max-width: 760px) { .store--hero { justify-content: center; } }

/* ---------- Footer ---------- */
.footer { background: var(--footer-bg); color: rgba(255,255,255,.72); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.brand--foot .brand__mark { height: 34px; }
.footer__brand p { margin-top: 14px; font-size: 14px; max-width: 28em; }
.footer__col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.footer__col a { display: block; padding: 6px 0; font-size: 14px; color: rgba(255,255,255,.7); transition: color .15s ease; }
.footer__col a:hover { color: var(--primary); }
.footer__base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,.5); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__copy { text-align: center; margin: 0 auto; }
  .hero__lede { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__logo { margin-left: auto; margin-right: auto; width: min(320px, 82%); }
  .band__grid, .band__grid--rev { grid-template-columns: 1fr; gap: 40px; }
  .band__grid--rev .showcase { order: 0; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .price--feature { transform: none; }
}

@media (max-width: 720px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__mobile { display: flex; }
  .section, .band, .cta { padding: 64px 0; }
  .grid--3 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 420px) {
  .footer__grid { grid-template-columns: 1fr; }
  .cta__inner { padding: 48px 22px; }
}
