/* ==========================================================================
   MOBIDICK · Liquidity Provider
   Visual concept: a descent. The page starts at the sunlit surface (light)
   and gets deeper and darker as you scroll, down to the abyss (footer).
   ========================================================================== */

:root {
  --navy: #061328;
  --ink: #0b1b33;
  --muted: #53698a;
  --blue: #2f9bf0;
  --blue-2: #1c6fd1;
  --deep: #0b3a78;
  --abyss: #020b1c;
  --cyan: #6fd3ff;
  --foam: #eaf4fd;
  --line: rgba(6, 19, 40, 0.1);

  --grad-brand: linear-gradient(135deg, #0a2a5c 0%, #1c6fd1 55%, #2f9bf0 100%);
  --grad-text: linear-gradient(100deg, #1c6fd1 0%, #2f9bf0 60%, #58b6f7 100%);
  --grad-text-dark: linear-gradient(100deg, #6fd3ff 0%, #2f9bf0 70%, #7cc4f7 100%);

  --f-display: "Michroma", "Segoe UI", sans-serif;
  --f-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --f-num: "Manrope", "Segoe UI", system-ui, sans-serif;

  --radius: 22px;
  --shadow-soft: 0 20px 60px -24px rgba(8, 40, 90, 0.28);
  --shadow-card: 0 30px 80px -30px rgba(8, 40, 90, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--foam);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; }

.ico { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 22px;
}
.eyebrow__line { width: 36px; height: 1px; background: currentColor; opacity: 0.6; }

.title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 22px;
}
.title em {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.body { font-size: 17px; color: var(--muted); max-width: 560px; margin-bottom: 30px; }

.section { position: relative; padding: 104px 0; z-index: 1; }
.title--sm { font-size: clamp(22px, 2.3vw, 34px); }
.section__head { margin-bottom: 64px; }
.section__head.center { text-align: center; }
.section__head.center .body { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  height: 52px; padding: 0 28px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid transparent; white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { height: 42px; padding: 0 20px; font-size: 12px; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--grad-brand); color: #fff;
  box-shadow: 0 14px 34px -14px rgba(28, 111, 209, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn--primary:hover { box-shadow: 0 18px 44px -12px rgba(47, 155, 240, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.35); }
.btn--ghost { color: var(--navy); padding: 0 8px; }
.btn__play {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--navy);
  display: grid; place-items: center; transition: background 0.3s, color 0.3s;
}
.btn__play svg { width: 16px; height: 16px; fill: currentColor; margin-left: 2px; }
.btn--ghost:hover .btn__play { background: var(--navy); color: #fff; }
.btn--outline { border-color: rgba(6, 19, 40, 0.25); color: var(--navy); }
.btn--outline:hover { border-color: var(--blue-2); color: var(--blue-2); }
.btn--glass { border-color: rgba(255, 255, 255, 0.28); color: #fff; background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(8px); }
.btn--glass:hover { background: rgba(255, 255, 255, 0.14); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav__inner {
  max-width: 1320px; margin: 0 auto; padding: 0 24px; height: 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: height 0.4s var(--ease);
}
.nav__logo { position: relative; width: 170px; flex-shrink: 0; }
.nav__logo img { width: 100%; transition: opacity 0.4s; }
.nav__logo .logo-white { position: absolute; inset: 0; opacity: 0; }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  position: relative; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy); opacity: 0.75; padding: 6px 0; transition: opacity 0.3s, color 0.3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; border-radius: 2px;
  background: var(--blue); transform: scaleX(0); transition: transform 0.4s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { opacity: 1; }
.nav__links a.is-active::after, .nav__links a:hover::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: 14px; }

.lang { display: flex; padding: 3px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.5); }
.lang button {
  border: 0; background: transparent; color: var(--navy); font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  height: 30px; min-width: 38px; border-radius: 999px; transition: background 0.3s, color 0.3s;
}
.lang button.is-active { background: var(--navy); color: #fff; }

.nav__burger { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.6); position: relative; }
.nav__burger span { position: absolute; left: 13px; right: 13px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.3s, top 0.3s; }
.nav__burger span:first-child { top: 17px; }
.nav__burger span:last-child { top: 25px; }
.nav.is-open .nav__burger span:first-child { top: 21px; transform: rotate(45deg); }
.nav.is-open .nav__burger span:last-child { top: 21px; transform: rotate(-45deg); }

.nav--scrolled { background: rgba(245, 250, 255, 0.72); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); box-shadow: 0 10px 40px -20px rgba(8, 40, 90, 0.35); }
.nav--scrolled .nav__inner { height: 68px; }

.nav--dark { background: rgba(3, 14, 32, 0.62); box-shadow: 0 10px 40px -20px rgba(0, 0, 0, 0.8); }
.nav--dark .logo-color { opacity: 0; }
.nav--dark .logo-white { opacity: 1; }
.nav--dark .nav__links a { color: #e6f1ff; }
.nav--dark .lang { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.05); }
.nav--dark .lang button { color: #e6f1ff; }
.nav--dark .lang button.is-active { background: #fff; color: var(--navy); }
.nav--dark .nav__burger { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); }
.nav--dark .nav__burger span { background: #fff; }

/* ==========================================================================
   AMBIENT + DEPTH GAUGE
   ========================================================================== */
#ambient { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 3; opacity: 0; mix-blend-mode: screen; }

.depth {
  position: fixed; left: 26px; bottom: 34px; z-index: 40;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
  transition: color 0.5s, opacity 0.5s; opacity: 0;
}
.depth.is-visible { opacity: 1; }
.depth__label { writing-mode: vertical-rl; transform: rotate(180deg); }
.depth__track { width: 2px; height: 110px; background: rgba(83, 105, 138, 0.25); border-radius: 2px; position: relative; overflow: hidden; }
.depth__fill { position: absolute; left: 0; right: 0; top: 0; height: 0; background: linear-gradient(#2f9bf0, #6fd3ff); }
.depth__value { font-family: var(--f-display); letter-spacing: 0.05em; font-size: 10px; }
.depth__value b { font-weight: 400; }
body.is-deep .depth { color: rgba(214, 233, 255, 0.7); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: max(100vh, 760px); overflow: hidden;
  display: flex; align-items: center;
  background:
    radial-gradient(ellipse 70% 60% at 72% 18%, #ffffff 0%, rgba(255,255,255,0) 70%),
    radial-gradient(ellipse 90% 80% at 20% 100%, #d6e9fa 0%, rgba(214,233,250,0) 70%),
    linear-gradient(180deg, #f6fbff 0%, #e6f2fc 100%);
}
.hero__rays {
  position: absolute; inset: -20% -10% 0 20%; pointer-events: none; z-index: 0;
  background:
    linear-gradient(105deg, transparent 38%, rgba(255,255,255,.75) 40%, transparent 44%),
    linear-gradient(112deg, transparent 50%, rgba(255,255,255,.6) 52%, transparent 57%),
    linear-gradient(98deg, transparent 60%, rgba(255,255,255,.55) 62%, transparent 65%),
    linear-gradient(118deg, transparent 70%, rgba(255,255,255,.5) 72%, transparent 76%);
  filter: blur(6px);
  animation: rays 12s ease-in-out infinite alternate;
  transform-origin: 70% 0%;
}
@keyframes rays { from { transform: rotate(-3deg); opacity: .75; } to { transform: rotate(3deg); opacity: 1; } }

.hero__whale { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero__fade { position: absolute; left: 0; right: 0; bottom: 0; height: 220px; z-index: 2; background: linear-gradient(180deg, rgba(234,244,253,0) 0%, var(--foam) 100%); pointer-events: none; }

.hero__content { z-index: 4; padding-top: 110px; padding-bottom: 140px; }
.hero__content > * { max-width: 560px; }
.hero__logo { margin: 4px 0 30px; max-width: 580px; }
.hero__logo img { width: 100%; filter: drop-shadow(0 18px 30px rgba(8, 40, 90, .12)); }
.hero__lead { font-size: 18px; line-height: 1.65; color: #2c4466; margin-bottom: 38px; max-width: 520px; }
.hero__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; margin-bottom: 36px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 12px; border-radius: 999px;
  background: rgba(255,255,255,.65); border: 1px solid rgba(6,19,40,.08); backdrop-filter: blur(10px);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: #2fd6a8; box-shadow: 0 0 0 0 rgba(47,214,168,.6); animation: ping 2s infinite; display: inline-block; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(47,214,168,.55); } 80%,100% { box-shadow: 0 0 0 10px rgba(47,214,168,0); } }

.hero__side, .hero__scroll {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 14px;
  writing-mode: vertical-rl; font-size: 10px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted);
}
.hero__side { right: 34px; top: 50%; transform: translateY(-50%); }
.hero__side .line, .hero__scroll .line { width: 1px; height: 60px; background: currentColor; opacity: .5; }
.hero__scroll { left: 30px; bottom: 150px; transform: rotate(180deg); }
.hero__scroll .line { position: relative; overflow: hidden; opacity: 1; background: rgba(83,105,138,.3); }
.hero__scroll .line::after { content: ""; position: absolute; left: 0; right: 0; height: 20px; background: var(--blue-2); animation: drip 2.2s var(--ease) infinite; }
@keyframes drip { from { bottom: 100%; } to { bottom: -30%; } }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats {
  position: relative; z-index: 5; margin-top: -96px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,.82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.9); border-radius: 26px; box-shadow: var(--shadow-card);
}
.stat { display: flex; align-items: center; gap: 18px; padding: 30px 28px; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat__ico { width: 40px; height: 40px; flex-shrink: 0; fill: none; stroke: var(--blue-2); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.stat strong { display: block; font-family: var(--f-num); font-weight: 800; font-size: clamp(18px, 1.9vw, 26px); color: var(--navy); letter-spacing: 0.02em; }
.stat span { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); line-height: 1.4; margin-top: 4px; }

/* ==========================================================================
   MISSION
   ========================================================================== */
.mission { background: linear-gradient(180deg, var(--foam) 0%, #e2eefa 100%); padding-top: 150px; }
.mission__grid { display: grid; grid-template-columns: 1.1fr minmax(280px, 420px) 0.8fr; gap: 56px; align-items: center; }

.porthole { position: relative; width: 100%; aspect-ratio: 1; }
.porthole__ring { position: absolute; inset: -22px; border-radius: 50%; border: 1px solid rgba(6,19,40,.12); }
.porthole__ring::before { content: ""; position: absolute; inset: -26px; border-radius: 50%; border: 1px dashed rgba(28,111,209,.22); animation: spin 60s linear infinite; }
.porthole__glass {
  position: absolute; inset: 0; border-radius: 50%; overflow: hidden;
  box-shadow: var(--shadow-card), inset 0 0 0 6px rgba(255,255,255,.7);
  background: linear-gradient(180deg, #cfe8fb 0%, #4f97d8 45%, #0b3a78 100%);
}
.porthole__glass::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: inset 0 0 60px rgba(2,20,50,.45), inset 0 0 0 6px rgba(255,255,255,.55); pointer-events: none; }
.porthole__glass canvas { width: 100%; height: 100%; display: block; }
.porthole__dot { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 6px rgba(47,155,240,.15); }
.porthole__dot.d1 { top: 8%; right: 6%; }
.porthole__dot.d2 { bottom: 9%; left: 5%; background: var(--navy); box-shadow: 0 0 0 6px rgba(6,19,40,.1); }
@keyframes spin { to { transform: rotate(360deg); } }

.mission__features { display: flex; flex-direction: column; gap: 34px; }
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature__ico {
  flex-shrink: 0; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; box-shadow: var(--shadow-soft); border: 1px solid rgba(6,19,40,.06);
}
.feature__ico svg { width: 26px; height: 26px; fill: none; stroke: var(--blue-2); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 13px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); margin-bottom: 4px; }
.feature p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how { background: linear-gradient(180deg, #e2eefa 0%, #d7e8f8 100%); }
.flow { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-bottom: 96px; }
.flow__current {
  position: absolute; top: 68px; left: 12.5%; right: 12.5%; height: 2px; z-index: 0;
  background: rgba(28,111,209,.18); overflow: hidden; border-radius: 2px;
}
.flow__current span {
  position: absolute; top: 0; bottom: 0; width: 30%;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  animation: current 3.2s linear infinite;
}
@keyframes current { from { left: -30%; } to { left: 100%; } }

.flow__step {
  position: relative; z-index: 1; text-align: center; padding: 30px 24px 34px;
  background: rgba(255,255,255,.6); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.9); border-radius: var(--radius); box-shadow: var(--shadow-soft);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.flow__step:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.flow__num { position: absolute; top: 18px; left: 22px; font-family: var(--f-display); font-size: 11px; color: var(--blue-2); opacity: .7; }
.flow__ico {
  width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-brand); box-shadow: 0 16px 34px -12px rgba(28,111,209,.7), 0 0 0 8px rgba(255,255,255,.8);
}
.flow__ico svg { width: 32px; height: 32px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.flow__step h3 { font-size: 14px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; }
.flow__step p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

.flow__loop { position: absolute; left: 0; right: 0; bottom: 0; height: 80px; }
.flow__loop svg { position: absolute; inset: 0 0 10px 0; width: 100%; height: 70px; overflow: visible; }
.flow__loop path { fill: none; stroke: var(--blue); stroke-width: 2; stroke-dasharray: 6 8; vector-effect: non-scaling-stroke; animation: dash 1.4s linear infinite; }
@keyframes dash { to { stroke-dashoffset: 28; } }
.flow__loop-label {
  position: absolute; left: 50%; bottom: -8px; transform: translateX(-50%);
  padding: 8px 18px; border-radius: 999px; background: #fff; box-shadow: var(--shadow-soft);
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-2); white-space: nowrap;
}

/* ==========================================================================
   PRESALE
   ========================================================================== */
.presale { background: linear-gradient(180deg, #d7e8f8 0%, #c9def3 100%); }
.presale__grid { display: grid; grid-template-columns: 1fr 480px; gap: 64px; align-items: center; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips li {
  padding: 9px 16px; border-radius: 999px; background: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.9);
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--navy);
}
.coin-stage { position: relative; height: 380px; margin-top: 10px; }
.coin-stage canvas { width: 100%; height: 100%; display: block; position: relative; z-index: 1; }
.coin-stage__shadow { position: absolute; left: 50%; bottom: 18px; width: 220px; height: 30px; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(closest-side, rgba(8,40,90,.35), transparent); filter: blur(4px); }

.phase-card {
  position: relative; padding: 34px; border-radius: 30px;
  background: rgba(255,255,255,.92); border: 1px solid #fff; box-shadow: var(--shadow-card);
}
.phase-card::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(160deg, rgba(47,155,240,.6), transparent 40%, transparent 60%, rgba(11,58,120,.4)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.phase-card__head { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.pill--live { background: rgba(47,214,168,.12); color: #0d7f63; }
.pill--discount { background: var(--navy); color: #fff; }
.phase-card__price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.phase-card__price strong { font-family: var(--f-display); font-weight: 400; font-size: clamp(34px, 4vw, 46px); color: var(--navy); letter-spacing: .01em; }
.phase-card__per { font-size: 15px; font-weight: 700; color: var(--muted); }
.phase-card__meta { display: flex; flex-wrap: wrap; gap: 6px 22px; font-size: 13.5px; color: var(--muted); margin-bottom: 26px; }
.phase-card__meta b { color: var(--blue-2); }
.phase-card__meta s { color: var(--navy); opacity: .6; }

.progress { margin-bottom: 26px; }
.progress__labels, .progress__foot { display: flex; justify-content: space-between; gap: 12px; font-size: 12.5px; color: var(--muted); }
.progress__labels b { color: var(--navy); }
.progress__bar { height: 14px; margin: 10px 0; border-radius: 999px; background: #e3eef9; overflow: hidden; box-shadow: inset 0 1px 3px rgba(8,40,90,.12); }
.progress__fill { position: relative; height: 100%; min-width: 14px; width: 0; border-radius: inherit; background: var(--grad-brand); transition: width 1.6s var(--ease); overflow: hidden; }
.progress__wave { position: absolute; inset: 0; background: repeating-linear-gradient(115deg, rgba(255,255,255,.0) 0 10px, rgba(255,255,255,.28) 10px 18px); animation: slide 1.2s linear infinite; }
@keyframes slide { from { background-position: 0 0; } to { background-position: 42px 0; } }
.progress__foot span:first-child { font-weight: 800; color: var(--blue-2); }
.progress__foot span:last-child { text-align: right; }

.calc { display: grid; gap: 10px; margin-bottom: 22px; padding: 20px; border-radius: 20px; background: #f1f7fd; border: 1px solid #e1ecf8; }
.calc__field > span { display: block; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.calc__input, .calc__output { display: flex; align-items: center; justify-content: space-between; gap: 10px; height: 56px; padding: 0 18px; border-radius: 14px; background: #fff; border: 1px solid #dbe7f4; }
.calc__input:focus-within { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47,155,240,.15); }
.calc__input input { border: 0; outline: 0; width: 100%; min-width: 0; font: 600 20px var(--f-body); color: var(--navy); background: transparent; }
.calc__output { background: linear-gradient(135deg, #0a2a5c, #134d9c); border-color: transparent; }
.calc__output strong { font-family: var(--f-display); font-weight: 400; font-size: 20px; color: #fff; overflow: hidden; text-overflow: ellipsis; }
.calc__output .calc__unit { color: var(--cyan); }
.calc__unit { font-size: 12px; font-weight: 800; letter-spacing: .1em; color: var(--muted); }
.calc__arrow { display: grid; place-items: center; }
.calc__arrow svg { width: 22px; height: 22px; fill: none; stroke: var(--blue-2); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.calc__presets { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 6px; }
.calc__presets button { height: 36px; border-radius: 10px; border: 1px solid #dbe7f4; background: #fff; font-size: 13px; font-weight: 700; color: var(--navy); transition: all .25s; }
.calc__presets button:hover, .calc__presets button.is-active { border-color: var(--blue-2); color: #fff; background: var(--blue-2); }
.phase-card__note { margin-top: 14px; font-size: 12.5px; color: var(--muted); text-align: center; }
.phase-card__aff { margin-top: 14px; padding: 12px 16px; border-radius: 14px; background: rgba(47,155,240,.08); font-size: 13px; color: var(--navy); text-align: center; }

/* ==========================================================================
   WHY NOW
   ========================================================================== */
.why { background: linear-gradient(180deg, #c9def3 0%, #b8d4ef 100%); padding-bottom: 90px; }
.why__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.why__card {
  position: relative; padding: 28px 22px 30px; border-radius: var(--radius); overflow: hidden;
  background: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.85); backdrop-filter: blur(10px);
  transition: transform .5s var(--ease), background .5s;
}
.why__card:hover { transform: translateY(-6px); background: rgba(255,255,255,.85); }
.why__card::after { content: ""; position: absolute; left: 22px; right: 22px; bottom: 0; height: 3px; border-radius: 3px 3px 0 0; background: var(--grad-brand); transform: scaleX(.25); transform-origin: left; transition: transform .6s var(--ease); }
.why__card:hover::after { transform: scaleX(1); }
.why__big { display: block; font-family: var(--f-num); font-weight: 800; font-size: 38px; letter-spacing: -0.01em; line-height: 1; margin-bottom: 20px; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.why__card h3 { font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.why__card p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ==========================================================================
   WAVE DIVIDER (surface → deep)
   ========================================================================== */
.wave-divider { position: relative; height: 160px; margin-top: -1px; background: #b8d4ef; overflow: hidden; z-index: 1; }
.wave-divider svg { position: absolute; left: -5%; width: 110%; height: 100%; }
.wave-divider .w1 { fill: #5f9ddb; opacity: .45; animation: sway 9s ease-in-out infinite alternate; }
.wave-divider .w2 { fill: #1f5fa8; opacity: .75; animation: sway 7s ease-in-out infinite alternate-reverse; }
.wave-divider .w3 { fill: #0b3a78; }
@keyframes sway { from { transform: translateX(-2.5%); } to { transform: translateX(2.5%); } }

/* ==========================================================================
   DARK SECTIONS
   ========================================================================== */
.dark { color: #d6e6fb; }
.dark .title { color: #fff; }
.dark .title em { background: var(--grad-text-dark); -webkit-background-clip: text; background-clip: text; color: transparent; }
.dark .eyebrow { color: #8fb4de; }
.dark .body { color: #a9c2e2; }

.tokenomics { background: linear-gradient(180deg, #0b3a78 0%, #082d62 100%); padding-top: 80px; }
.tok__grid { display: grid; grid-template-columns: 420px 1fr; gap: 70px; align-items: center; margin-bottom: 60px; }
.donut { position: relative; width: 100%; max-width: 420px; aspect-ratio: 1; margin: 0 auto; }
.donut svg { width: 100%; height: 100%; transform: rotate(-90deg); overflow: visible; }
.donut circle.seg { fill: none; stroke-width: 22; cursor: pointer; transition: stroke-width .35s var(--ease), opacity .35s; }
.donut circle.seg.is-dim { opacity: .35; }
.donut circle.seg.is-active { stroke-width: 30; }
.donut circle.track { fill: none; stroke: rgba(255,255,255,.06); stroke-width: 22; }
.donut__center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; pointer-events: none; padding: 0 70px; }
.donut__center span { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #8fb4de; line-height: 1.4; }
.donut__center strong { font-family: var(--f-num); font-weight: 800; font-size: clamp(34px, 4.4vw, 52px); letter-spacing: -0.01em; color: #fff; margin: 6px 0 2px; }
.donut__center em { font-style: normal; font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--cyan); }

.legend { display: grid; gap: 6px; }
.legend li {
  display: grid; grid-template-columns: 14px 1fr auto auto; align-items: center; gap: 16px;
  padding: 13px 18px; border-radius: 14px; cursor: pointer; transition: background .3s;
  border: 1px solid transparent;
}
.legend li:hover, .legend li.is-active { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.08); }
.legend__sw { width: 14px; height: 14px; border-radius: 4px; }
.legend__name { font-size: 14.5px; font-weight: 600; color: #e6f1ff; }
.legend__amt { font-size: 12.5px; color: #8fb4de; font-variant-numeric: tabular-nums; }
.legend__pct { font-family: var(--f-num); font-weight: 800; font-size: 16px; color: #fff; min-width: 48px; text-align: right; }

.tok__lower { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.glass { padding: 32px; border-radius: 26px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(12px); }
.glass__title { font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #8fb4de; margin-bottom: 22px; }
.bars { display: grid; gap: 16px; margin-bottom: 26px; }
.bars li { display: grid; gap: 8px; }
.bars__top { display: flex; justify-content: space-between; font-size: 14px; color: #e6f1ff; }
.bars__top b { font-family: var(--f-num); font-weight: 800; font-size: 14px; color: #fff; }
.bars__track { height: 8px; border-radius: 8px; background: rgba(255,255,255,.07); overflow: hidden; }
.bars__fill { height: 100%; width: 0; border-radius: inherit; background: linear-gradient(90deg, #1c6fd1, #6fd3ff); transition: width 1.4s var(--ease); }
.fdv { padding: 16px 18px; border-radius: 14px; background: rgba(111,211,255,.07); border: 1px dashed rgba(111,211,255,.3); font-size: 13.5px; color: #cfe2fb; }
.fdv strong { color: #fff; }
.checks { display: grid; gap: 4px; }
.checks li { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 14.5px; color: #e6f1ff; }
.checks li:last-child { border-bottom: 0; }
.checks li span { display: flex; align-items: center; gap: 12px; }
.checks li span::before { content: ""; width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.25); }
.checks li.is-done span::before { border-color: #2fd6a8; background: #2fd6a8 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23062a22' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center/12px no-repeat; }
.checks li.is-prog span::before { border-color: var(--cyan); border-right-color: transparent; animation: spin 1.6s linear infinite; }
.checks em { font-style: normal; font-size: 10.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.checks .is-done em { color: #2fd6a8; background: rgba(47,214,168,.1); }
.checks .is-prog em { color: var(--cyan); background: rgba(111,211,255,.1); }
.checks .is-soon em { color: #8fb4de; background: rgba(255,255,255,.05); }

/* ECOSYSTEM */
.ecosystem { background: linear-gradient(180deg, #082d62 0%, #06224c 100%); }
.eco__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.eco__card {
  position: relative; display: flex; flex-direction: column; gap: 14px; min-height: 250px; padding: 30px 26px; border-radius: var(--radius);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s, background .5s;
}
.eco__card::before { content: ""; position: absolute; width: 260px; height: 260px; right: -120px; top: -120px; border-radius: 50%; background: radial-gradient(closest-side, rgba(47,155,240,.25), transparent); transition: transform .8s var(--ease); }
.eco__card:hover { transform: translateY(-6px); border-color: rgba(111,211,255,.35); background: rgba(255,255,255,.07); }
.eco__card:hover::before { transform: scale(1.4); }
.eco__card h3 { font-family: var(--f-display); font-weight: 400; font-size: 20px; color: #fff; letter-spacing: .03em; margin-top: auto; }
.eco__card p { font-size: 14.5px; color: #a9c2e2; line-height: 1.55; }
.eco__tag { font-family: var(--f-display); font-size: 11px; color: #6c93c4; }
.eco__card--here { background: linear-gradient(160deg, rgba(47,155,240,.28), rgba(11,58,120,.35)); border-color: rgba(111,211,255,.45); box-shadow: 0 30px 70px -30px rgba(47,155,240,.6); }
.eco__tag--here { align-self: flex-start; font-family: var(--f-body); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); background: var(--cyan); padding: 5px 10px; border-radius: 999px; font-size: 10px; }
.eco__logo { width: 88%; margin-top: auto; }

/* ROADMAP */
.roadmap { background: linear-gradient(180deg, #06224c 0%, #051a3b 100%); }
.ladder { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: end; height: 380px; padding-bottom: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.rung { position: relative; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
.rung__info { padding: 0 6px 16px; }
.rung__label { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #8fb4de; }
.rung__price { display: block; font-family: var(--f-display); font-size: clamp(18px, 2vw, 26px); color: #fff; margin: 6px 0 4px; }
.rung__goal { font-size: 13px; color: #a9c2e2; }
.rung__bar {
  position: relative; border-radius: 16px 16px 0 0; height: 0; transition: height 1.4s var(--ease);
  background: linear-gradient(180deg, rgba(47,155,240,.55), rgba(47,155,240,.06)); border: 1px solid rgba(111,211,255,.25); border-bottom: 0; overflow: hidden;
}
.rung__bar::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.rung.is-now .rung__bar { background: linear-gradient(180deg, #2f9bf0, rgba(28,111,209,.15)); box-shadow: 0 0 60px -10px rgba(47,155,240,.7); }
.rung.is-list .rung__bar { background: repeating-linear-gradient(135deg, rgba(111,211,255,.1) 0 8px, transparent 8px 16px); border-style: dashed; }
.rung__now { position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); background: var(--cyan); padding: 4px 9px; border-radius: 999px; }
.rung__bubbles span { position: absolute; bottom: -10px; width: 6px; height: 6px; border-radius: 50%; border: 1px solid rgba(255,255,255,.6); animation: rise 4s linear infinite; }
@keyframes rise { from { transform: translateY(0); opacity: 0; } 15% { opacity: 1; } to { transform: translateY(-260px); opacity: 0; } }
.ladder__total { margin: 22px 0 80px; font-size: 15px; color: #a9c2e2; }
.ladder__total strong { color: #fff; font-family: var(--f-display); font-weight: 400; }

.stages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.1); }
.stage { position: relative; padding: 30px 28px 34px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.stage::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: #1b3f70; border: 1px solid rgba(255,255,255,.25); }
.stage.is-active::before { background: var(--cyan); box-shadow: 0 0 0 5px rgba(111,211,255,.15), 0 0 16px var(--cyan); border: 0; }
.stage__n { font-family: var(--f-display); font-size: 11px; color: #6c93c4; }
.stage h3 { font-size: 14px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin: 10px 0 8px; }
.stage p { font-size: 14.5px; color: #a9c2e2; max-width: 320px; }
.stages__note { margin-top: 26px; font-size: 13px; color: #6c93c4; }

/* MANIFESTO */
.manifesto { position: relative; z-index: 1; display: grid; grid-template-columns: 1.35fr 1fr; min-height: 600px; background: #041630; }
.manifesto__panel { position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 70px 60px; min-height: 600px; }
.manifesto__panel--whale { background: radial-gradient(ellipse 80% 70% at 60% 30%, #0f4c96 0%, #072a5a 45%, #041630 100%); }
.manifesto__panel--whale canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.manifesto__panel--whale::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(4,22,48,.85) 100%); pointer-events: none; }
.manifesto__panel--text { background: linear-gradient(200deg, #0c3f7e 0%, #06224c 55%, #04142c 100%); border-left: 1px solid rgba(255,255,255,.06); }
.manifesto__rays { position: absolute; inset: -20% -30% 20% -10%; background: repeating-linear-gradient(100deg, transparent 0 40px, rgba(140,200,255,.07) 40px 70px, transparent 70px 130px); filter: blur(10px); animation: rays 10s ease-in-out infinite alternate; transform-origin: 50% 0; }
.manifesto__copy { position: relative; z-index: 2; max-width: 440px; }
.manifesto__copy .body { margin-bottom: 26px; }
.rule { display: block; width: 60px; height: 2px; background: var(--grad-text-dark); }

/* FAQ */
.faq { background: linear-gradient(180deg, #04152f 0%, #031026 100%); }
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.4fr; gap: 60px; align-items: start; }
.faq__grid .section__head { position: sticky; top: 120px; }
.faq__item { border-bottom: 1px solid rgba(255,255,255,.1); }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 0; font-size: 17px; font-weight: 600; color: #fff; transition: color .3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--cyan); }
.faq__plus { position: relative; flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); transition: transform .4s var(--ease), background .3s; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; background: currentColor; transform: translate(-50%, -50%); }
.faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .4s var(--ease); }
.faq__item[open] .faq__plus { background: var(--blue-2); border-color: var(--blue-2); }
.faq__item[open] .faq__plus::after { transform: translate(-50%, -50%) rotate(0); }
.faq__item p { padding: 0 60px 26px 0; font-size: 15.5px; color: #a9c2e2; line-height: 1.7; }

/* CTA */
.cta { background: linear-gradient(180deg, #031026 0%, #020b1c 100%); padding: 140px 0; overflow: hidden; }
.cta__inner { text-align: center; position: relative; }
.cta__inner .body { margin: 0 auto 36px; }
.cta__btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.cta__sonar { position: absolute; left: 50%; top: 50%; width: 1px; height: 1px; pointer-events: none; }
.cta__sonar span { position: absolute; left: 50%; top: 50%; width: 700px; height: 700px; margin: -350px 0 0 -350px; border-radius: 50%; border: 1px solid rgba(111,211,255,.25); animation: sonar 6s linear infinite; opacity: 0; }
.cta__sonar span:nth-child(2) { animation-delay: 2s; }
.cta__sonar span:nth-child(3) { animation-delay: 4s; }
@keyframes sonar { 0% { transform: scale(.1); opacity: 0; } 15% { opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }

/* FOOTER */
.footer { position: relative; z-index: 1; background: linear-gradient(180deg, #020b1c 0%, #01060f 100%); padding: 80px 0 40px; border-top: 1px solid rgba(255,255,255,.06); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__brand img { width: 220px; margin-bottom: 20px; }
.footer__brand p { font-size: 14.5px; color: #8fb4de; max-width: 340px; margin-bottom: 24px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); color: #d6e6fb; transition: all .3s; }
.socials a:hover { background: var(--blue-2); border-color: var(--blue-2); }
.socials svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #6c93c4; margin-bottom: 6px; }
.footer__col a { font-size: 14.5px; color: #d6e6fb; transition: color .3s; }
.footer__col a:hover { color: var(--cyan); }
.footer__disc { margin: 30px 0 14px; font-size: 12.5px; color: #6c86a8; max-width: 900px; line-height: 1.6; }
.footer__rights { font-size: 12.5px; color: #4f6a8e; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1180px) {
  .nav__links { gap: 20px; }
  .nav__links a { font-size: 11px; letter-spacing: .12em; }
  .mission__grid { grid-template-columns: 1fr 1fr; }
  .mission__features { grid-column: 1 / -1; flex-direction: row; }
  .why__grid { grid-template-columns: repeat(3, 1fr); }
  .presale__grid { grid-template-columns: 1fr 440px; gap: 40px; }
}

@media (max-width: 1020px) {
  .nav__links {
    position: absolute; top: 100%; left: 16px; right: 16px; flex-direction: column; gap: 0;
    padding: 12px; border-radius: 20px; background: rgba(245,250,255,.97); box-shadow: var(--shadow-card);
    opacity: 0; transform: translateY(-10px); pointer-events: none; transition: opacity .3s, transform .3s var(--ease);
  }
  .nav__links a { padding: 14px 12px; font-size: 13px; color: var(--navy) !important; }
  .nav__links a::after { display: none; }
  .nav.is-open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav__burger { display: block; }
  .nav.is-open:not(.nav--scrolled) { background: rgba(245,250,255,.9); backdrop-filter: blur(14px); }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }

  .flow { grid-template-columns: repeat(2, 1fr); padding-bottom: 0; }
  .flow__current, .flow__loop svg { display: none; }
  .flow__loop { position: relative; grid-column: 1 / -1; height: auto; text-align: center; }
  .flow__loop-label { position: static; transform: none; display: inline-block; white-space: normal; }

  .presale__grid, .tok__grid, .faq__grid { grid-template-columns: 1fr; }
  .phase-card { max-width: 560px; width: 100%; margin: 0 auto; }
  .coin-stage { height: 300px; }
  .tok__lower { grid-template-columns: 1fr; }
  .eco__grid { grid-template-columns: repeat(2, 1fr); }
  .stages { grid-template-columns: repeat(2, 1fr); }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto__panel { min-height: 480px; padding: 50px 32px; }
  .faq__grid .section__head { position: static; margin-bottom: 20px; }
  .hero__side { display: none; }
  .depth { display: none; }
}

@media (max-width: 720px) {
  .container { padding: 0 16px; }
  .nav__inner { padding: 0 16px; height: 68px; }
  .nav__logo { width: 128px; }
  .nav__actions .btn--sm { display: none; }
  .section { padding: 84px 0; }
  .section__head { margin-bottom: 44px; }
  .body { font-size: 16px; }
  .hero { min-height: 100svh; align-items: flex-end; }
  .hero__content { padding-top: 120px; padding-bottom: 150px; }
  .hero__lead { font-size: 16px; }
  .hero__scroll { display: none; }
  .stats { grid-template-columns: 1fr 1fr; margin-top: -80px; border-radius: 20px; }
  .stat { flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px 16px; }
  .stat__ico { width: 30px; height: 30px; }
  .stat span { font-size: 10px; letter-spacing: .1em; }
  .mission { padding-top: 100px; }
  .mission__grid { grid-template-columns: 1fr; gap: 60px; }
  .porthole { max-width: 320px; margin: 0 auto; }
  .mission__features { flex-direction: column; }
  .flow { grid-template-columns: 1fr; }
  .phase-card { padding: 24px 18px; border-radius: 24px; }
  .calc { padding: 14px; }
  .calc__presets { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .why__card:last-child { grid-column: 1 / -1; }
  .legend li { grid-template-columns: 12px 1fr auto; gap: 12px; padding: 12px 10px; }
  .legend__amt { display: none; }
  .donut__center { padding: 0 50px; }
  .glass { padding: 22px 18px; }
  .eco__grid { grid-template-columns: 1fr; }
  .eco__card { min-height: 200px; }
  .ladder { gap: 8px; height: 340px; }
  .rung__info { padding: 0 2px 12px; }
  .rung__goal { font-size: 11px; }
  .rung__now { left: 6px; top: 8px; }
  .stages { grid-template-columns: 1fr; }
  .manifesto__panel { min-height: 420px; padding: 40px 20px; }
  .faq__item summary { font-size: 15.5px; }
  .faq__item p { padding-right: 0; }
  .cta { padding: 100px 0; }
  .cta__sonar span { width: 420px; height: 420px; margin: -210px 0 0 -210px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
