/* ════════════════════════════════════════════════════════════════
   fytbay — landing page
   Semantic, SEO-friendly. Same DNA as the app (Geist + warm ink +
   electric lime) but pushed for marketing: bigger type, higher
   contrast, lime blocks, dark bands.
   ════════════════════════════════════════════════════════════════ */

:root {
  /* Surfaces — warm */
  --bg:        oklch(0.97 0.007 95);
  --bg-2:      oklch(0.95 0.008 95);
  --surface:   #ffffff;
  --surface-2: oklch(0.955 0.008 95);
  --surface-3: oklch(0.93 0.01 95);

  /* Ink */
  --ink:       oklch(0.19 0.012 95);
  --ink-2:     oklch(0.33 0.012 95);
  --muted:     oklch(0.52 0.012 95);
  --muted-2:   oklch(0.66 0.01 95);

  /* Lines */
  --border:    oklch(0.9 0.01 95);
  --border-2:  oklch(0.85 0.012 95);

  /* Electric lime — punchier than the app for marketing energy */
  --lime:      oklch(0.87 0.21 124);
  --lime-2:    oklch(0.8 0.2 124);
  --lime-deep: oklch(0.62 0.17 128);
  --lime-ink:  oklch(0.27 0.09 128);
  --lime-soft: oklch(0.95 0.07 124);

  /* On-dark */
  --d-bg:      oklch(0.2 0.012 95);
  --d-bg-2:    oklch(0.25 0.014 95);
  --d-text:    oklch(0.96 0.006 95);
  --d-muted:   oklch(0.7 0.01 95);
  --d-border:  oklch(1 0 0 / 0.1);

  /* Status */
  --success:   oklch(0.65 0.15 150);
  --warning:   oklch(0.74 0.14 75);
  --danger:    oklch(0.6 0.18 25);

  /* Radius */
  --r-xs: 5px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-pill: 999px;

  --font-sans: "Geist", "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", monospace;

  --maxw: 1200px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; color: var(--ink); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
strong { font-weight: 600; }

/* ── i18n toggle ────────────────────────────────────────────── */
/* Spanish is the shipped/default content (fully indexable). EN is
   swapped in by JS via data-i18n. No layout dependency. */
.lang-en-only { display: none; }
html[data-lang="en"] .lang-es-only { display: none; }
html[data-lang="en"] .lang-en-only { display: inline; }

/* ── Helpers ────────────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--font-mono); font-feature-settings: "tnum"; }
.num  { font-family: var(--font-mono); font-feature-settings: "tnum", "zero"; letter-spacing: -0.02em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--lime-deep);
  font-weight: 500;
}
.eyebrow::before {
  content: ""; width: 18px; height: 1.5px; background: var(--lime-deep);
}
.eyebrow--light { color: var(--lime); }
.eyebrow--light::before { background: var(--lime); }

.section { padding: 96px 0; position: relative; }
.section__head { max-width: 720px; margin-bottom: 56px; }
.section__title {
  font-size: clamp(32px, 4.4vw, 52px);
  margin-top: 18px;
  letter-spacing: -0.035em;
}
.section__lede {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--muted);
  margin-top: 18px;
  max-width: 620px;
  text-wrap: pretty;
}

mark, .hl {
  background: linear-gradient(180deg, transparent 58%, var(--lime) 58%);
  color: inherit;
  padding: 0 2px;
}
.hl--solid { background: var(--lime); border-radius: 4px; padding: 0 6px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 550;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--lime {
  background: var(--lime);
  color: var(--lime-ink);
  border-color: var(--lime);
}
.btn--lime:hover { background: var(--lime-2); border-color: var(--lime-2); }

.btn--ink {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--ink:hover { background: oklch(0.28 0.014 95); }

.btn--ghost {
  background: transparent;
  border-color: var(--border-2);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--surface); }

.btn--ghost-d {
  background: transparent;
  border-color: var(--d-border);
  color: var(--d-text);
}
.btn--ghost-d:hover { border-color: var(--lime); color: var(--lime); }

.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }

/* ── Pills / chips ──────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
.chip--lime { background: var(--lime-soft); border-color: oklch(0.86 0.12 124); color: var(--lime-ink); }

/* ════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: oklch(0.97 0.007 95 / 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.is-stuck { border-bottom-color: var(--border); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 650; font-size: 19px; letter-spacing: -0.04em; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--lime);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.brand__mark svg {
  width: 19px; height: 19px;
  stroke: var(--ink); fill: none;
  stroke-width: 12.5; stroke-linecap: round; stroke-linejoin: round;
}
.brand { letter-spacing: -0.06em; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: 12px; }
.nav__link {
  padding: 8px 14px; border-radius: var(--r-pill);
  font-size: 15px; font-weight: 480; color: var(--ink-2);
  transition: background .15s, color .15s;
}
.nav__link:hover { background: var(--surface-2); color: var(--ink); }
.nav__spacer { flex: 1; }
.nav__actions { display: flex; align-items: center; gap: 10px; }

.lang {
  display: inline-flex; align-items: center;
  border: 1px solid var(--border-2); border-radius: var(--r-pill);
  overflow: hidden; font-family: var(--font-mono); font-size: 12px;
}
.lang button {
  padding: 6px 11px; color: var(--muted); font-weight: 500; transition: background .15s, color .15s;
}
.lang button.active { background: var(--ink); color: #fff; }

.nav__burger { display: none; }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero { position: relative; padding: 72px 0 90px; overflow: hidden; }
.hero__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.hero__title {
  font-size: clamp(40px, 6.4vw, 78px);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin-top: 22px;
}
.hero__sub {
  font-size: clamp(17px, 1.7vw, 21px);
  color: var(--ink-2);
  margin-top: 26px; max-width: 520px; text-wrap: pretty;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__trust {
  margin-top: 22px; display: flex; align-items: center; gap: 16px;
  font-size: 14px; color: var(--muted);
}
.hero__trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted-2); }
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--bg); margin-left: -8px;
  display: grid; place-items: center; font-size: 11px; font-weight: 600; color: #fff;
  font-family: var(--font-mono);
}

/* lime glow behind the device */
.hero__stage { position: relative; display: grid; place-items: center; }
.hero__glow {
  position: absolute; width: 115%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, var(--lime) 0%, oklch(0.9 0.16 124 / 0.4) 38%, transparent 66%);
  filter: blur(8px); opacity: 0.55; z-index: 0;
}

/* ════════════════════════════════════════════════════════════
   DEVICE / MOCKUP PRIMITIVES  (recreated app UI)
   ════════════════════════════════════════════════════════════ */
.phone {
  position: relative; z-index: 1;
  width: 300px; aspect-ratio: 300 / 620;
  background: var(--ink);
  border-radius: 42px;
  padding: 9px;
  box-shadow: 0 30px 70px -20px oklch(0.2 0.02 95 / 0.45), 0 0 0 1px oklch(0.2 0.02 95 / 0.1);
}
.phone__screen {
  position: relative; height: 100%; width: 100%;
  background: var(--bg); border-radius: 34px; overflow: hidden;
  display: flex; flex-direction: column;
}
.phone__notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 38%; height: 22px; background: var(--ink);
  border-radius: 0 0 14px 14px; z-index: 4;
}
.phone--float { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .phone--float { animation: none; } }

.browser {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 24px 60px -28px oklch(0.2 0.02 95 / 0.4);
}
.browser__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px; border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.browser__dots { display: flex; gap: 6px; }
.browser__dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--border-2); }
.browser__url {
  flex: 1; margin: 0 8px; height: 24px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 12px;
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
}

/* Mini app components (scaled-down versions of the real UI) */
.mini { font-size: 12px; color: var(--ink); }
.mini .eyebrow-s {
  font-family: var(--font-mono); font-size: 9px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); font-weight: 500;
}
.mini-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
}
.mini-pill {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-mono); font-size: 9.5px; padding: 2px 7px;
  border-radius: var(--r-pill); background: var(--surface-3); color: var(--ink-2);
}
.mini-pill::before { content:""; width:4px; height:4px; border-radius:50%; background: var(--muted); }
.mini-pill--lime { background: var(--lime-soft); color: var(--lime-ink); }
.mini-pill--lime::before { background: var(--lime-deep); }
.mini-pill--ok { background: oklch(0.95 0.05 150); color: oklch(0.4 0.12 150); }
.mini-pill--ok::before { background: var(--success); }
.mini-pill--warn { background: oklch(0.96 0.06 80); color: oklch(0.44 0.11 70); }
.mini-pill--warn::before { background: var(--warning); }

.mini-bar { height: 4px; border-radius: 2px; background: var(--surface-3); overflow: hidden; }
.mini-bar > i { display: block; height: 100%; background: var(--ink-2); }
.mini-bar > i.lime { background: var(--lime-deep); }
.mini-bar > i.warn { background: var(--warning); }

/* set rows (workout logger) */
.set {
  display: grid; grid-template-columns: 18px 1fr 1fr 1fr; gap: 6px; align-items: center;
  padding: 6px 8px; border-radius: 7px; border: 1px solid var(--border);
  background: var(--surface); margin-bottom: 4px; font-family: var(--font-mono); font-size: 10.5px;
}
.set__n { width: 16px; height: 16px; border-radius: 4px; background: var(--surface-3); display: grid; place-items: center; font-size: 9px; font-weight: 600; color: var(--muted); }
.set--done { background: var(--surface); }
.set--done .set__n { background: var(--ink); color: #fff; }
.set--cur { background: var(--lime-soft); border-color: var(--lime); }
.set--cur .set__n { background: var(--lime-deep); color: #fff; }
.set b { color: var(--ink); font-weight: 600; }
.set s { color: var(--muted); }

/* timer ring */
.ring { position: relative; width: 96px; height: 96px; margin: 0 auto; }
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring__c { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }

/* mini sidebar */
.mini-side { display: flex; flex-direction: column; gap: 2px; }
.mini-side a {
  display: flex; align-items: center; gap: 7px; padding: 6px 8px; border-radius: 6px;
  font-size: 11px; color: var(--ink-2);
}
.mini-side a.on { background: var(--ink); color: #fff; }
.mini-side a.on .ic-d { background: var(--lime); }
.ic-d { width: 12px; height: 12px; border-radius: 3px; background: var(--muted-2); flex-shrink: 0; }

/* mini table */
.mini-table { width: 100%; border-collapse: collapse; font-size: 10.5px; }
.mini-table th {
  text-align: left; font-family: var(--font-mono); font-size: 8.5px; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--muted); font-weight: 500; padding: 6px 8px;
  border-bottom: 1px solid var(--border); background: var(--surface-2);
}
.mini-table td { padding: 7px 8px; border-bottom: 1px solid var(--border); }
.mini-table tr:last-child td { border-bottom: 0; }
.mini-av { width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, var(--ink), oklch(0.45 0.04 95)); color: #fff; display: grid; place-items: center; font-size: 8px; font-weight: 600; font-family: var(--font-mono); }

/* ════════════════════════════════════════════════════════════
   STATS BAND
   ════════════════════════════════════════════════════════════ */
.stats {
  background: var(--ink); color: var(--d-text);
  border-radius: var(--r-xl); margin: 0 auto;
  max-width: calc(var(--maxw) - 0px);
}
.stats__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 8px;
}
.stat { padding: 26px 28px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 24px; bottom: 24px; width: 1px; background: var(--d-border); }
.stat__n { font-family: var(--font-mono); font-size: clamp(28px, 3.2vw, 40px); letter-spacing: -0.04em; color: #fff; }
.stat__n b { color: var(--lime); font-weight: inherit; }
.stat__l { font-size: 13px; color: var(--d-muted); margin-top: 6px; }

/* ════════════════════════════════════════════════════════════
   ECOSYSTEM (dark band)
   ════════════════════════════════════════════════════════════ */
.eco { background: var(--ink); color: var(--d-text); }
.eco .section__title { color: #fff; }
.eco .section__lede { color: var(--d-muted); }

.role-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 64px;
}
.role {
  background: var(--d-bg-2); border: 1px solid var(--d-border);
  border-radius: var(--r-md); padding: 22px;
  display: flex; flex-direction: column; gap: 10px; min-height: 180px;
  transition: border-color .2s, transform .2s;
}
.role:hover { border-color: var(--lime); transform: translateY(-3px); }
.role__icon {
  width: 38px; height: 38px; border-radius: 10px; background: var(--d-bg);
  display: grid; place-items: center; color: var(--lime); border: 1px solid var(--d-border);
}
.role__icon svg { width: 20px; height: 20px; }
.role__name { font-size: 17px; color: #fff; font-weight: 600; }
.role__desc { font-size: 13.5px; color: var(--d-muted); line-height: 1.45; }
.role__tag {
  margin-top: auto; font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--lime); display: inline-flex; align-items: center; gap: 6px;
}

/* referral chain */
.chain {
  background: var(--d-bg-2); border: 1px solid var(--d-border);
  border-radius: var(--r-lg); padding: 36px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
}
.chain__title { font-size: 26px; color: #fff; letter-spacing: -0.03em; }
.chain__lede { color: var(--d-muted); margin-top: 14px; font-size: 15.5px; max-width: 420px; }
.chain__note { margin-top: 18px; font-size: 13px; color: var(--muted-2); display:flex; gap:8px; align-items:center; }

.flow { display: flex; flex-direction: column; gap: 10px; }
.flow__row {
  display: flex; align-items: center; gap: 14px;
  background: var(--d-bg); border: 1px solid var(--d-border); border-radius: var(--r-md);
  padding: 13px 16px;
}
.flow__node {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: grid; place-items: center; font-family: var(--font-mono); font-weight: 600; font-size: 13px;
  background: var(--d-bg-2); color: var(--lime); border: 1px solid var(--d-border);
}
.flow__row:nth-child(1) .flow__node { background: var(--lime); color: var(--lime-ink); border-color: var(--lime); }
.flow__name { font-size: 14.5px; color: #fff; font-weight: 550; }
.flow__earn {
  margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--lime);
  background: oklch(0.87 0.21 124 / 0.12); padding: 3px 9px; border-radius: var(--r-pill);
}
.flow__connect { height: 14px; width: 2px; background: var(--d-border); margin-left: 32px; }

/* ════════════════════════════════════════════════════════════
   AUDIENCE SECTIONS (atletas / trainers / centros)
   ════════════════════════════════════════════════════════════ */
.aud { position: relative; }
.aud__split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.aud__split--rev .aud__media { order: -1; }

.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 28px; margin-top: 8px; }
.feature {
  display: flex; gap: 12px; padding: 14px 0; border-top: 1px solid var(--border);
}
.feature__ic {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  background: var(--lime-soft); color: var(--lime-deep);
  display: grid; place-items: center; border: 1px solid oklch(0.88 0.1 124);
}
.feature__ic svg { width: 16px; height: 16px; }
.feature__t { font-size: 15px; font-weight: 550; letter-spacing: -0.015em; }
.feature__d { font-size: 13.5px; color: var(--muted); margin-top: 2px; line-height: 1.4; text-wrap: pretty; }

.feature--span { grid-column: 1 / -1; }
.feature--hot .feature__ic { background: var(--lime); color: var(--lime-ink); border-color: var(--lime); }

.aud__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.badge-store {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 18px; border-radius: var(--r-md);
  background: var(--ink); color: #fff;
}
.badge-store small { display: block; font-size: 10px; color: var(--d-muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; }
.badge-store strong { display: block; font-size: 15px; font-weight: 550; margin-top: 1px; }

/* web-app install CTA (no stores) */
.webapp-cta { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.webapp-hint {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--muted); max-width: 420px; text-wrap: pretty;
}
.webapp-hint svg { color: var(--lime-deep); flex: none; }

.aud__media { position: relative; display: grid; place-items: center; min-height: 480px; }
.media-glow {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, var(--lime-soft) 0%, transparent 65%); z-index: 0;
}

/* floating stat cards next to phone */
.float-card {
  position: absolute; z-index: 3;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 12px 14px;
  box-shadow: 0 16px 36px -16px oklch(0.2 0.02 95 / 0.3);
}

/* ════════════════════════════════════════════════════════════
   CENTROS / WHITE-LABEL
   ════════════════════════════════════════════════════════════ */
.centros { background: var(--bg-2); }

.wl-stack { position: relative; }
.wl-swatches { display: flex; gap: 8px; margin-top: 20px; }
.wl-swatch { width: 30px; height: 30px; border-radius: 8px; border: 2px solid var(--surface); box-shadow: 0 0 0 1px var(--border); cursor: pointer; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; }
.mini-feature {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 22px;
}
.mini-feature__ic { width: 34px; height: 34px; border-radius: 9px; background: var(--ink); color: var(--lime); display: grid; place-items: center; margin-bottom: 14px; }
.mini-feature__ic svg { width: 18px; height: 18px; }
.mini-feature h4 { font-size: 16px; }
.mini-feature p { font-size: 13.5px; color: var(--muted); margin-top: 6px; line-height: 1.45; }

/* ════════════════════════════════════════════════════════════
   MANAGER DE ZONA (subtle)
   ════════════════════════════════════════════════════════════ */
.manager {
  border: 1px dashed var(--border-2); border-radius: var(--r-lg);
  padding: 30px 34px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  background: var(--surface);
}
.manager__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--lime-soft); color: var(--lime-deep); display: grid; place-items: center; flex-shrink: 0; }
.manager__icon svg { width: 24px; height: 24px; }
.manager__body { flex: 1; min-width: 260px; }
.manager__body h3 { font-size: 19px; }
.manager__body p { color: var(--muted); font-size: 14.5px; margin-top: 5px; }
.manager__mail {
  font-family: var(--font-mono); font-size: 14px; font-weight: 500;
  color: var(--ink); border-bottom: 2px solid var(--lime);
}

/* ════════════════════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════════════════════ */
.final {
  background: var(--ink); color: var(--d-text);
  border-radius: var(--r-xl); padding: 64px; text-align: center; position: relative; overflow: hidden;
}
.final__grid-bg {
  position: absolute; inset: 0; opacity: 0.5;
  background-image: linear-gradient(oklch(1 0 0 / 0.04) 1px, transparent 1px), linear-gradient(90deg, oklch(1 0 0 / 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}
.final h2 { font-size: clamp(30px, 4.6vw, 54px); color: #fff; letter-spacing: -0.04em; position: relative; }
.final p { color: var(--d-muted); font-size: 18px; margin-top: 16px; position: relative; }
.final__paths { position: relative; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer { padding: 64px 0 40px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.footer__brandblock { max-width: 280px; }
.footer__brandblock p { color: var(--muted); font-size: 14px; margin-top: 14px; }
.footer__col h5 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 14px; font-weight: 500; }
.footer__col a { display: block; padding: 5px 0; font-size: 14px; color: var(--ink-2); }
.footer__col a:hover { color: var(--ink); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 12px; }
.footer__bottom span { font-size: 13px; color: var(--muted); font-family: var(--font-mono); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__stage { order: -1; }
  .aud__split { grid-template-columns: 1fr; gap: 40px; }
  .aud__split--rev .aud__media { order: 0; }
  .chain { grid-template-columns: 1fr; gap: 28px; }
  .role-grid { grid-template-columns: repeat(2, 1fr); }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before, .stat:nth-child(odd)::before { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .nav__links { display: none; }
  .nav__burger { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border-2); }
  .feature-list { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: 1fr; }
  .final { padding: 44px 24px; }
  .final__paths { flex-direction: column; }
  .final__paths .btn { width: 100%; }
  .footer__top { grid-template-columns: 1fr; gap: 24px; }
  .stat + .stat::before { display: none; }
}
@media (max-width: 460px) {
  .role-grid { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
}

/* ── Under Construction View ───────────────────────────────── */
.uc-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.uc-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lime-deep) 0%, transparent 70%);
  opacity: 0.15;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.uc-content {
  position: relative;
  z-index: 1;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: ucFadeIn 0.8s ease-out;
}
@keyframes ucFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
.uc-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.uc-brand-name {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: #fff;
}
.uc-title {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
  font-weight: 600;
}
.uc-subtitle {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--d-muted);
  line-height: 1.6;
  text-wrap: pretty;
}
.uc-contact {
  margin-top: 12px;
}
.uc-lang-switch {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
}
