/* Moby Dick: Big Catch — landing page */
@font-face { font-family: "Archivo"; src: url("assets/fonts/archivo.woff2") format("woff2"); font-weight: 100 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Big Shoulders Display"; src: url("assets/fonts/big-shoulders-display.woff2") format("woff2"); font-weight: 100 900; font-style: normal; font-display: swap; }

:root {
  --ink: #070d12;
  --deep: #0b1720;
  --sea: #0f3444;
  --sea-2: #145064;
  --bone: #e9ece6;
  --bone-2: #b9c2c0;
  --muted: #7f9197;
  --rust: #e2622b;
  --rust-2: #c44d1a;
  --gold: #f0a63f;
  --line: rgba(233, 236, 230, 0.12);
  --line-2: rgba(233, 236, 230, 0.22);
  --display: "Big Shoulders Display", Impact, "Arial Narrow", sans-serif;
  --body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --nav-h: 64px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* film grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 900; }
p { margin: 0; }
.hidden { display: none !important; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--rust); color: #fff; padding: 10px 14px; border-radius: 8px;
}
.skip:focus { top: 12px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-weight: 800; letter-spacing: 1.2px;
  font-size: 15px;
  text-decoration: none;
  border: 0; border-radius: 10px;
  padding: 14px 22px;
  cursor: pointer;
  transition: transform .12s ease, filter .15s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn--rust { background: var(--rust); color: #140600; box-shadow: 0 10px 30px -10px rgba(226,98,43,.7), inset 0 -3px 0 rgba(0,0,0,.18); }
.btn--rust:hover { filter: brightness(1.08); box-shadow: 0 14px 36px -10px rgba(226,98,43,.85), inset 0 -3px 0 rgba(0,0,0,.18); }
.btn--gold { background: var(--gold); color: #1a0e00; box-shadow: inset 0 -3px 0 rgba(0,0,0,.18); }
.btn--gold:hover { filter: brightness(1.07); }
.btn--lg { font-size: 17px; padding: 18px 28px; }
.btn--sm { font-size: 13px; padding: 10px 16px; }
.btn--block { width: 100%; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  background: rgba(7,13,18,.72);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(7,13,18,.9); }
.nav__inner {
  max-width: var(--wrap); height: 100%; margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__mark { width: 34px; height: 21px; fill: var(--bone); }
.brand__text { font-family: var(--display); font-weight: 900; font-size: 22px; letter-spacing: 1px; line-height: 1; }
.brand__text em { font-style: normal; color: var(--rust); }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { text-decoration: none; font-size: 14px; font-weight: 600; color: var(--bone-2); }
.nav__links a:hover { color: var(--bone); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(28px, 5vw, 64px) 0 clamp(48px, 7vw, 96px);
  overflow: hidden;
  isolation: isolate;
}
.hero__sea {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 18% 18%, rgba(226,98,43,.16), transparent 70%),
    radial-gradient(80% 60% at 80% 100%, rgba(20,80,100,.55), transparent 70%),
    linear-gradient(180deg, var(--ink) 0%, #0a1a24 55%, #0c2733 100%);
}
.hero__whale {
  position: absolute; left: -8%; bottom: 4%;
  width: min(1100px, 110%);
  fill: rgba(233,236,230,.035);
  animation: swim 22s ease-in-out infinite alternate;
}
@keyframes swim { from { transform: translateX(0) translateY(0); } to { transform: translateX(6%) translateY(-10px); } }

.hero__grid {
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.hero__copy { display: flex; flex-direction: column; gap: 22px; min-width: 0; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 2.4px; color: var(--bone-2);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rust); box-shadow: 0 0 0 0 rgba(226,98,43,.6); animation: ping 1.8s infinite; flex-shrink: 0; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(226,98,43,.55); } 70% { box-shadow: 0 0 0 10px rgba(226,98,43,0); } 100% { box-shadow: 0 0 0 0 rgba(226,98,43,0); } }

.hero__title {
  font-family: var(--display);
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: .92;
  letter-spacing: .3px;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero__kg {
  color: var(--rust);
  display: inline-block;
  position: relative;
}
.hero__kg::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .07em;
  background: repeating-linear-gradient(90deg, var(--rust) 0 8px, transparent 8px 14px);
  opacity: .6;
}
.hero__sub { font-size: clamp(16px, 1.4vw, 19px); color: var(--bone-2); max-width: 36em; }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.badge-android {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 14px;
  border: 1px solid var(--line-2); border-radius: 10px;
  text-decoration: none;
  background: rgba(233,236,230,.03);
  transition: border-color .2s, background .2s;
}
.badge-android:hover { border-color: var(--bone-2); background: rgba(233,236,230,.06); }
.badge-android svg { width: 26px; height: 26px; fill: #9ccf6b; }
.badge-android span { display: flex; flex-direction: column; line-height: 1.1; font-weight: 700; font-size: 16px; }
.badge-android small { font-size: 10px; letter-spacing: 1.8px; color: var(--muted); font-weight: 700; }

.hero__facts {
  list-style: none; padding: 18px 0 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  border-top: 1px solid var(--line);
  font-size: 14px; color: var(--bone-2);
}
.hero__facts strong { font-family: var(--display); font-size: 26px; color: var(--bone); margin-right: 4px; vertical-align: -2px; }

.record {
  border: 1px solid rgba(240,166,63,.35);
  background: linear-gradient(100deg, rgba(240,166,63,.1), rgba(240,166,63,.02));
  border-radius: 12px;
  padding: 14px 16px;
  max-width: 460px;
  animation: rise .5s ease-out;
}
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.record__label { font-size: 11px; font-weight: 800; letter-spacing: 2px; color: var(--gold); }
.record__row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.record__value { font-family: var(--display); font-size: 34px; font-weight: 900; line-height: 1.1; }
.record__gap { font-size: 13px; color: var(--bone-2); }
.record__bar { height: 6px; background: rgba(255,255,255,.08); border-radius: 4px; overflow: hidden; margin-top: 8px; }
.record__fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--rust), var(--gold)); transition: width .8s ease; }

/* ---------- demo frame ---------- */
.demo { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.demo__frame {
  position: relative;
  border-radius: 20px;
  padding: 8px;
  background: linear-gradient(160deg, #1a2c36, #0b151c);
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(0,0,0,.6), 0 0 120px -40px rgba(20,120,150,.6);
}
.demo__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 8px 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 2px; color: var(--bone-2);
}
.demo__live { display: inline-flex; align-items: center; gap: 8px; }
.demo__tool {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 1px solid var(--line); color: var(--bone-2);
  font: 700 11px/1 var(--body); letter-spacing: 1px;
  padding: 6px 10px; border-radius: 7px; cursor: pointer;
}
.demo__tool:hover { color: var(--bone); border-color: var(--line-2); }
.demo__tool svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
.demo__screen {
  position: relative;
  border-radius: 13px;
  overflow: hidden;
  background: #051826;
  height: min(780px, calc(100svh - var(--nav-h) - 110px));
  min-height: 600px;
}
.demo__screen iframe { width: 100%; height: 100%; border: 0; }
.demo__screen:fullscreen { border-radius: 0; height: 100%; }
.demo__screen:-webkit-full-screen { border-radius: 0; height: 100%; }
.demo.is-pulse .demo__frame { animation: frame-pulse .9s ease-out; }
@keyframes frame-pulse { 0% { box-shadow: 0 0 0 0 rgba(226,98,43,.7); } 100% { box-shadow: 0 0 0 22px rgba(226,98,43,0); } }

.howto {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  font-size: 13px; color: var(--bone-2); line-height: 1.4;
}
.howto li { display: flex; gap: 10px; align-items: flex-start; }
.howto li > span {
  flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  font: 800 12px/1 var(--body); color: var(--bone);
}
.howto strong { color: var(--bone); }

/* ---------- ticker ---------- */
.ticker {
  border-block: 1px solid var(--line);
  background: #0a141b;
  overflow: hidden;
  padding: 14px 0;
}
.ticker__track {
  display: flex; gap: 28px; width: max-content;
  font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: 3px;
  animation: ticker 40s linear infinite;
}
.ticker__track i { font-style: normal; color: var(--muted); font-family: var(--body); font-size: 12px; letter-spacing: 1px; align-self: center; }
.ticker__hot { color: var(--rust); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--dark { background: #0a141b; border-block: 1px solid var(--line); }
.section__head { display: flex; flex-direction: column; gap: 14px; max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 3px; color: var(--rust); }
.eyebrow--gold { color: var(--gold); }
.section__title {
  font-family: var(--display);
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: .95;
  text-transform: uppercase;
  text-wrap: balance;
}
.section__lead { font-size: clamp(16px, 1.3vw, 19px); color: var(--bone-2); max-width: 40em; }

/* ---------- features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.feature {
  background: var(--ink);
  padding: clamp(22px, 2.6vw, 34px);
  display: flex; flex-direction: column; gap: 12px;
  min-width: 0;
}
.feature--wide {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: auto 1fr minmax(260px, 420px); align-items: center; gap: clamp(20px, 3vw, 44px);
  background: linear-gradient(100deg, #0c1c25, var(--ink) 60%);
}
.feature__body { display: flex; flex-direction: column; gap: 12px; }
.feature__num { font-family: var(--display); font-weight: 800; font-size: 15px; color: var(--rust); letter-spacing: 2px; }
.feature--wide .feature__num { font-size: 64px; line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--rust); }
.feature h3 { font-family: var(--display); font-size: clamp(26px, 2.4vw, 34px); line-height: 1; text-transform: uppercase; letter-spacing: .3px; }
.feature--wide h3 { font-size: clamp(32px, 3.4vw, 48px); }
.feature p { color: var(--bone-2); font-size: 15.5px; }
.feature strong { color: var(--bone); }

.tension {
  border: 1px solid var(--line-2); border-radius: 14px;
  padding: 18px; background: rgba(0,0,0,.35);
  display: flex; flex-direction: column; gap: 12px;
}
.tension__row { display: flex; flex-direction: column; gap: 6px; font-size: 10px; font-weight: 800; letter-spacing: 2px; color: var(--bone-2); }
.tension__bar { height: 14px; border-radius: 8px; background: rgba(255,255,255,.06); overflow: hidden; border: 1px solid var(--line); }
.tension__fill { display: block; height: 100%; }
.tension__fill--line { background: linear-gradient(90deg, #4fb286, #f0a63f 60%, #ff5d5d); animation: strain 3.2s ease-in-out infinite; }
.tension__fill--fish { background: linear-gradient(90deg, #2fb2c4, #14778a); animation: tire 3.2s ease-in-out infinite; }
@keyframes strain { 0% { width: 12%; } 45% { width: 82%; } 60% { width: 94%; } 75% { width: 40%; } 100% { width: 12%; } }
@keyframes tire { 0% { width: 92%; } 45% { width: 60%; } 60% { width: 64%; } 100% { width: 38%; } }
.tension__alert {
  align-self: flex-start;
  font-family: var(--display); font-weight: 900; font-size: 22px; letter-spacing: 1px; color: #ff6b5b;
  animation: alert 3.2s steps(1) infinite;
}
@keyframes alert { 0%, 44% { opacity: 0; } 45%, 70% { opacity: 1; } 71%, 100% { opacity: 0; } }

.stats { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 8px; }
.stats li { display: grid; grid-template-columns: 78px 1fr; align-items: center; gap: 10px; font-size: 10px; font-weight: 800; letter-spacing: 1.6px; color: var(--muted); }
.stats b { height: 6px; border-radius: 3px; background: linear-gradient(90deg, #2fb2c4 calc(var(--v) * 100%), rgba(255,255,255,.07) 0); }

.casts { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.casts span { font-size: 11px; font-weight: 800; letter-spacing: 1.2px; padding: 7px 10px; border-radius: 8px; border: 1px solid var(--line-2); color: var(--bone-2); }
.casts em { font-style: normal; color: var(--muted); margin-left: 4px; }
.casts .is-hot { border-color: var(--rust); color: var(--bone); background: rgba(226,98,43,.1); }

/* ---------- locations ---------- */
.spots {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  counter-reset: spot;
}
.spot {
  position: relative;
  min-height: 320px;
  border-radius: 16px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.55)),
    linear-gradient(165deg, var(--g1), var(--g2));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s;
}
.spot::before {
  /* horizon line */
  content: ""; position: absolute; left: 0; right: 0; top: 46%;
  height: 1px; background: rgba(255,255,255,.18);
}
.spot:hover { transform: translateY(-4px); border-color: var(--a); }
.spot__top { display: flex; justify-content: space-between; gap: 8px; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; }
.spot__lvl { color: var(--a); }
.spot__coord { color: rgba(233,236,230,.55); font-weight: 600; letter-spacing: .5px; }
.spot h3 { margin-top: auto; font-family: var(--display); font-size: 30px; line-height: 1; text-transform: uppercase; }
.spot p { font-size: 14px; color: rgba(233,236,230,.8); line-height: 1.45; }
.spot__meta { display: flex; gap: 12px; font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--a); text-transform: uppercase; }
.spot--legend { border-color: rgba(240,166,63,.5); box-shadow: inset 0 0 60px -20px rgba(240,166,63,.35); }

/* ---------- legend ---------- */
.legend {
  position: relative;
  padding: clamp(72px, 10vw, 140px) 0;
  background:
    radial-gradient(70% 60% at 75% 50%, rgba(20,80,100,.45), transparent 70%),
    linear-gradient(180deg, var(--ink), #06131a);
  overflow: hidden;
}
.legend__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.legend__copy { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.legend__title {
  font-family: var(--display);
  font-size: clamp(72px, 11vw, 168px);
  line-height: .85;
  letter-spacing: 1px;
  color: var(--bone);
}
.legend__lead { font-size: clamp(18px, 1.6vw, 22px); color: var(--bone); line-height: 1.5; }
.legend__copy > p:not(.eyebrow):not(.legend__lead) { color: var(--bone-2); }
.legend__copy .btn { margin-top: 8px; }

.dossier {
  margin: 0;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 28px),
    rgba(0,0,0,.25);
  padding: clamp(18px, 3vw, 34px);
}
.dossier__poster {
  width: 100%; height: auto; aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(240,166,63,.45);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.8), 0 0 80px -20px rgba(240,166,63,.35);
}
.dossier__whale > path:first-child { fill: #d9dfdd; stroke: #0b1720; stroke-width: 3; }
.dossier__jaw { stroke: rgba(11,23,32,.55); stroke-width: 3; fill: none; }
.dossier__fin { fill: #b9c2c0; stroke: #0b1720; stroke-width: 3; }
.dossier__eye { fill: #0b1720; }
.dossier__scars path { stroke: rgba(40,50,55,.5); stroke-width: 3; fill: none; stroke-linecap: round; }
.dossier__harpoon { stroke: #6a4a2c; stroke-width: 6; stroke-linecap: round; }
.dossier__specs {
  margin: 20px 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-2);
}
.dossier__specs div { padding: 14px 12px 4px 0; border-bottom: 1px dashed var(--line); }
.dossier__specs dt { font-size: 10px; font-weight: 800; letter-spacing: 1.8px; color: var(--gold); }
.dossier__specs dd { margin: 4px 0 0; font-family: var(--display); font-size: 22px; font-weight: 800; line-height: 1.05; text-transform: uppercase; }

/* ---------- android ---------- */
.android { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.android__copy .section__head { margin-bottom: 0; }
.android__copy { display: flex; flex-direction: column; gap: 14px; }
.checklist { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 10px; }
.checklist li { position: relative; padding-left: 30px; color: var(--bone-2); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .3em;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(156,207,107,.15) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12.5l4.5 4.5L19 7.5' fill='none' stroke='%239ccf6b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat;
}

.signup {
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(170deg, #0f2029, #0a141b);
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.8);
}
.signup__head { display: flex; flex-direction: column; gap: 6px; }
.signup__tag { align-self: flex-start; font-size: 10px; font-weight: 800; letter-spacing: 2px; color: #9ccf6b; border: 1px solid rgba(156,207,107,.4); padding: 4px 8px; border-radius: 6px; }
.signup h3 { font-family: var(--display); font-size: 34px; text-transform: uppercase; line-height: 1; }
.signup__head p { font-size: 14px; color: var(--muted); }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--bone-2); }
.field input {
  font: 500 16px/1.2 var(--body); color: var(--bone);
  background: rgba(0,0,0,.35);
  border: 1px solid var(--line-2); border-radius: 10px;
  padding: 14px;
}
.field input::placeholder { color: #5b6d73; }
.field input[aria-invalid="true"] { border-color: #ff6b5b; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--bone-2); line-height: 1.4; cursor: pointer; }
.check input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--rust); flex-shrink: 0; }
.check a { color: var(--bone); }
.signup__msg { font-size: 14px; min-height: 1.4em; }
.signup__msg.is-ok { color: #9ccf6b; }
.signup__msg.is-err { color: #ff8a7a; }
.signup.is-done .field, .signup.is-done .check, .signup.is-done button { display: none; }

/* ---------- faq ---------- */
.faq { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(24px, 5vw, 80px); align-items: start; }
.faq__list { border-top: 1px solid var(--line-2); }
.faq details { border-bottom: 1px solid var(--line-2); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 0;
  font-weight: 700; font-size: 18px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font: 400 28px/1 var(--body); color: var(--rust); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 20px; color: var(--bone-2); max-width: 44em; }
kbd { font: 700 12px/1 var(--body); border: 1px solid var(--line-2); border-bottom-width: 2px; border-radius: 5px; padding: 2px 6px; }

/* ---------- final ---------- */
.final {
  padding: clamp(64px, 9vw, 120px) 0;
  background:
    radial-gradient(60% 80% at 50% 120%, rgba(226,98,43,.28), transparent 70%),
    var(--ink);
  text-align: center;
}
.final__inner { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.final__title { font-family: var(--display); font-size: clamp(48px, 8vw, 120px); line-height: .9; text-transform: uppercase; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 56px 0 28px; background: #05090d; font-size: 14px; color: var(--bone-2); }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 40px; }
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__brand p { max-width: 30em; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { text-decoration: none; }
.footer__links a:hover { color: var(--bone); text-decoration: underline; }
.footer__legal { display: flex; gap: 16px; align-items: flex-start; }
.age {
  flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--rust); color: var(--bone);
  display: grid; place-items: center;
  font: 900 18px/1 var(--display); letter-spacing: .5px;
}
.footer__bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
}

/* ---------- sticky mobile CTA ---------- */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(7,13,18,0), rgba(7,13,18,.92) 35%);
  transform: translateY(110%);
  transition: transform .25s ease;
  display: none;
}
.dock.is-on { transform: none; }

/* ---------- reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .spots { grid-template-columns: repeat(3, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .feature--wide { grid-template-columns: 1fr; }
  .feature--wide .feature__num { font-size: 44px; }
}
@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__inner > .btn { margin-left: auto; }
  .hero__grid, .legend__grid, .android, .faq { grid-template-columns: 1fr; }
  .demo__screen { height: min(760px, calc(100svh - var(--nav-h) - 70px)); min-height: 560px; }
  .dock { display: block; }
  .footer { padding-bottom: 96px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .brand__text { font-size: 19px; }
  .brand__mark { width: 28px; }
  .nav__inner > .btn { padding: 9px 12px; font-size: 12px; }
  .hero__ctas .btn { width: 100%; }
  .badge-android { width: 100%; justify-content: center; }
  .hero__facts { gap: 8px 20px; }
  .demo__frame { padding: 5px; border-radius: 16px; margin-inline: calc(var(--gutter) * -0.5); }
  .demo__bar { padding: 4px 6px 8px; }
  .demo__tool span { display: none; }
  .howto { grid-template-columns: 1fr; gap: 10px; }
  .features { grid-template-columns: 1fr; }
  .spots { grid-template-columns: 1fr; }
  .spot { min-height: 220px; }
  .dossier__specs { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .ticker__track { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__whale, .ticker__track, .dot, .tension__fill--line, .tension__fill--fish, .tension__alert { animation: none; }
  .tension__fill--line { width: 70%; } .tension__fill--fish { width: 55%; } .tension__alert { opacity: 1; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- legal pages ---------- */
.doc { max-width: 820px; padding-top: 56px; padding-bottom: 80px; display: flex; flex-direction: column; gap: 16px; }
.doc .section__title { font-size: clamp(40px, 6vw, 64px); margin-bottom: 8px; }
.doc__lead { font-size: 19px; color: var(--bone); }
.doc h2 { font-family: var(--display); font-size: 26px; text-transform: uppercase; margin-top: 18px; letter-spacing: .3px; }
.doc p, .doc li { color: var(--bone-2); }
.doc ul { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.doc a { color: var(--bone); }
.doc__back { margin-top: 24px; }
