@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --paper: #f7f7f4;
  --white: #fff;
  --ink: #0b0d10;
  --ink-2: #15191f;
  --muted: #687280;
  --line: #dfe2e5;
  --line-dark: #2b3138;
  --lime: #c6ff00;
  --lime-accessible: #6fae00;
  --teal: #00e5c2;
  --teal-dark: #00aa97;
  --blue: #2979ff;
  --amber: #ffb800;
  --red: #ff4d3d;
  --signal: linear-gradient(100deg, var(--lime) 0%, var(--teal) 52%, var(--blue) 100%);
  --shadow: 0 28px 80px rgba(10, 18, 25, .14);
  --display: "Space Grotesk", "Arial Narrow", sans-serif;
  --body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .13;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  line-height: .98;
  letter-spacing: -.05em;
}
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed;
  left: 18px; top: -80px;
  z-index: 1000;
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
}
.skip-link:focus { top: 18px; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background .3s ease, border .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled {
  background: rgba(247,247,244,.88);
  border-bottom: 1px solid rgba(11,13,16,.08);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.04em;
  text-decoration: none;
}
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a {
  color: #303740;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.site-nav a:hover { color: var(--teal-dark); }
.header-cta { justify-self: end; }
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.language-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.language-picker select {
  min-width: 68px;
  height: 42px;
  padding: 0 28px 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  color: var(--ink);
  font: 800 12px/1 var(--body);
  letter-spacing: .08em;
  cursor: pointer;
}
.nav-toggle { display: none; }

/* Buttons */
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding-inline: 18px; font-size: 14px; }
.button-signal { background: var(--lime); box-shadow: 0 12px 34px rgba(198,255,0,.2); }
.button-signal:hover { box-shadow: 0 18px 42px rgba(198,255,0,.32); }
.button-outline { border-color: #9aa0a8; background: rgba(255,255,255,.45); }
.button-outline:hover { background: white; border-color: var(--ink); }
.button-ink { background: var(--ink); color: white; }
.button-ink:hover { box-shadow: 0 14px 34px rgba(11,13,16,.2); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 24px; }

/* Shared type */
.kicker, .eyebrow {
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.kicker { display: flex; align-items: center; gap: 10px; }
.kicker span { width: 8px; height: 8px; background: var(--lime-accessible); border-radius: 50%; }
.eyebrow { color: var(--lime-accessible); }
.eyebrow.light { color: var(--lime); }
.section-intro h2 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(46px, 6vw, 84px);
  font-weight: 700;
}
.section-intro > p:last-child {
  max-width: 610px;
  color: var(--muted);
  font-size: 19px;
}
.section-intro.centered { text-align: center; }
.section-intro.centered h2,
.section-intro.centered > p:last-child { margin-inline: auto; }

/* Hero */
.hero {
  position: relative;
  min-height: 940px;
  padding: 154px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(0,229,194,.1), transparent 26%),
    radial-gradient(circle at 68% 48%, rgba(198,255,0,.09), transparent 30%),
    var(--paper);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 84px 24px auto;
  border-top: 1px solid rgba(11,13,16,.13);
}
.hero-grid {
  min-height: 670px;
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  align-items: center;
  gap: 50px;
}
.hero-copy { position: relative; z-index: 2; padding-bottom: 45px; }
.hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(62px, 7vw, 108px);
  font-weight: 700;
}
.hero h1 em {
  position: relative;
  font-style: normal;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 1%; right: 0; bottom: -3px;
  height: 8px;
  background: var(--signal);
  border-radius: 20px;
  transform: skewX(-18deg);
}
.hero-lede { max-width: 600px; color: #3f4751; font-size: clamp(19px, 2vw, 23px); }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.trust-list li::before { content: "✓"; margin-right: 7px; color: var(--teal-dark); font-weight: 900; }
.hero-device-wrap {
  position: relative;
  min-height: 670px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(0,191,165,.18);
  border-radius: 50%;
  transform: rotate(-12deg);
}
.orbit-one { width: 540px; height: 540px; }
.orbit-two { width: 430px; height: 430px; border-color: rgba(41,121,255,.15); }
.signal-node {
  position: absolute;
  width: 15px; height: 15px;
  border-radius: 50%;
  box-shadow: 0 0 24px currentColor;
}
.node-lime { left: 9%; top: 54%; color: var(--lime); background: currentColor; }
.node-blue { right: 6%; top: 35%; color: var(--blue); background: currentColor; }
.hero-signal {
  position: absolute;
  left: 37%; top: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: .26;
}
.hero-signal span {
  display: block;
  width: 5px;
  height: var(--h, 80px);
  border-radius: 8px;
  background: var(--signal);
}
.hero-signal span:nth-child(1) { --h: 40px; }
.hero-signal span:nth-child(2) { --h: 82px; }
.hero-signal span:nth-child(3) { --h: 128px; }
.hero-signal span:nth-child(4) { --h: 170px; }
.hero-signal span:nth-child(5) { --h: 122px; }
.hero-signal span:nth-child(6) { --h: 78px; }
.hero-signal span:nth-child(7) { --h: 42px; }
.hero-signal i {
  position: absolute;
  width: 440px; height: 120px;
  left: -190px;
  border-bottom: 4px solid var(--teal);
  border-radius: 50%;
  transform: rotate(-5deg);
}

/* Phone system */
.phone {
  position: relative;
  width: 300px;
  padding: 9px;
  border: 1px solid #59606a;
  border-radius: 48px;
  background: linear-gradient(135deg, #1e2227, #050608 42%, #333941);
  box-shadow: 0 35px 70px rgba(0,0,0,.25), inset 0 0 0 2px #0a0c0e;
  color: white;
}
.phone::before {
  content: "";
  position: absolute;
  top: 122px; left: -4px;
  width: 3px; height: 76px;
  border-radius: 4px 0 0 4px;
  background: #2c3138;
}
.phone-camera {
  position: absolute;
  z-index: 3;
  width: 86px; height: 25px;
  left: 50%; top: 15px;
  border-radius: 18px;
  background: #000;
  transform: translateX(-50%);
}
.phone-screen {
  min-height: 620px;
  padding: 18px 17px 20px;
  overflow: hidden;
  border-radius: 39px;
  background:
    radial-gradient(circle at 82% 4%, rgba(0,229,194,.08), transparent 25%),
    linear-gradient(160deg, #0b1014, #05070a 65%);
}
.phone-hero { width: 332px; transform: rotate(4deg); }
.phone-hero .phone-screen { min-height: 660px; }
.app-status, .app-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-status { padding: 0 7px 20px; font-size: 10px; font-weight: 800; }
.app-titlebar { padding: 7px 0 17px; font-size: 13px; }
.app-titlebar strong { font-size: 15px; }
.score-ring {
  --ring-color: var(--lime);
  width: 172px; height: 172px;
  display: grid;
  place-content: center;
  margin: 12px auto;
  border-radius: 50%;
  text-align: center;
  background:
    radial-gradient(circle, #080b0e 60%, transparent 62%),
    conic-gradient(from -32deg, var(--lime), var(--teal) 52%, var(--blue) 85%, #222 85% 100%);
}
.score-ring strong { font-family: var(--display); font-size: 68px; line-height: .8; }
.score-ring small { margin-top: 10px; color: var(--lime); font-size: 10px; font-weight: 900; }
.score-ring.compact { width: 142px; height: 142px; }
.score-ring.compact strong { font-size: 56px; }
.score-copy { margin: 10px 0 19px; text-align: center; color: #c5cbd1; font-size: 12px; }
.offer-summary, .score-metrics {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 8px;
  padding: 15px 0;
  border-block: 1px solid #20262d;
}
.offer-summary div, .score-metrics div { min-width: 0; }
.offer-summary small, .score-metrics small, .phone-screen > small {
  display: block;
  margin-bottom: 4px;
  color: #7f8993;
  font-size: 7px;
  letter-spacing: .08em;
}
.offer-summary strong, .score-metrics strong { display: block; font-size: 12px; }
.offer-summary div:first-child strong { color: var(--lime); font-size: 20px; }
.breakdown { padding: 14px 0; }
.breakdown div {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid #1d2329;
  color: #aeb6bf;
  font-size: 11px;
}
.breakdown strong { color: white; }
.breakdown strong.deduct { color: var(--teal); }
.breakdown .breakdown-total { padding-top: 11px; color: white; font-weight: 800; }
.breakdown .breakdown-total strong { color: var(--lime); font-size: 14px; }
.app-action {
  margin-top: 10px;
  padding: 13px;
  border-radius: 7px;
  background: var(--lime);
  color: var(--ink);
  text-align: center;
  font-size: 11px;
  font-weight: 900;
}
.proof-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid rgba(11,13,16,.16);
}
.proof-rail div { padding: 25px 28px; border-right: 1px solid rgba(11,13,16,.14); }
.proof-rail div:last-child { border-right: 0; }
.proof-rail strong { display: block; font-family: var(--display); font-size: 28px; letter-spacing: -.05em; }
.proof-rail span { color: var(--muted); font-size: 12px; }

/* Calculator */
.math-section { padding: 150px 0 120px; background: white; }
.math-intro {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
}
.math-intro .eyebrow { grid-column: 1 / -1; }
.math-intro > p:last-child { padding: 0 0 24px 50px; border-left: 1px solid #9299a0; }
.calculator { margin-top: 70px; }
.calculator-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 700px;
  margin-bottom: 26px;
  border: 1px solid var(--line);
}
.calc-field {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 4px;
  padding: 13px 16px;
  border-right: 1px solid var(--line);
}
.calc-field:last-child { border-right: 0; }
.calc-field label { grid-column: 1 / -1; color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.calc-field input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
}
.equation {
  display: grid;
  grid-template-columns: 1.15fr auto 1fr auto 1fr auto 1.45fr;
  align-items: stretch;
  gap: 18px;
}
.equation-start, .equation-result {
  min-height: 230px;
  padding: 24px;
  border-radius: 14px;
  background: var(--ink);
  color: white;
}
.equation-start {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(rgba(8,10,12,.86), rgba(8,10,12,.96)),
    repeating-linear-gradient(34deg, transparent 0 22px, rgba(255,255,255,.08) 23px 24px);
}
.platform { align-self: flex-start; margin-bottom: auto; font-size: 19px; font-weight: 800; }
.equation-start small, .equation-result small, .equation-cost small { color: #929ba4; font-size: 9px; letter-spacing: .1em; }
.equation-start strong { font-family: var(--display); font-size: 44px; }
.operator { display: grid; place-items: center; font-family: var(--display); font-size: 34px; }
.equation-cost {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cost-icon {
  width: 70px; height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  font-size: 26px;
}
.cost-fuel .cost-icon { border-color: var(--lime-accessible); }
.equation-cost strong { margin: 8px 0 2px; font-family: var(--display); font-size: 28px; }
.equation-cost p { margin: 0; color: var(--muted); font-size: 10px; }
.equation-result {
  display: grid;
  grid-template-columns: 1fr 1fr 76px;
  align-content: center;
  gap: 16px;
  background: var(--lime);
  color: var(--ink);
}
.equation-result small { color: rgba(11,13,16,.58); }
.equation-result strong { display: block; margin-top: 5px; font-family: var(--display); font-size: 27px; }
.mini-score {
  width: 66px; height: 66px;
  display: grid;
  place-items: center;
  grid-row: span 2;
  border: 4px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 700;
}
.equation-result > p { grid-column: 1 / -1; margin: 7px 0 0; font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.assumptions {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr .7fr;
  align-items: center;
  margin-top: 28px;
  border: 1px solid transparent;
  border-image: var(--signal) 1;
}
.assumptions > * { min-height: 92px; display: flex; align-items: center; padding: 18px 24px; border-right: 1px solid var(--line); }
.assumptions > *:last-child { border-right: 0; }
.assumptions-title { gap: 12px; }
.assumptions-title strong, .assumptions-title small { display: block; }
.assumptions-title small { color: var(--muted); font-size: 10px; }
.person-icon { font-size: 27px; }
.assumptions label { display: flex; flex-direction: column; align-items: flex-start; color: var(--muted); font-size: 10px; font-weight: 700; }
.inline-input { display: flex; align-items: baseline; margin-top: 3px; color: var(--ink); }
.inline-input input {
  width: 58px;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
}
.inline-input b { font-size: 12px; }
.refresh-note { gap: 9px; }
.refresh-note span { color: var(--blue); font-size: 25px; }
.refresh-note small { color: var(--muted); line-height: 1.3; }
.fine-print { margin-top: 16px; color: var(--muted); font-size: 11px; }

/* Product gallery */
.product-section { padding: 150px 0; overflow: hidden; }
.product-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 55px; align-items: center; }
.product-copy h2 { font-size: clamp(54px, 6vw, 86px); }
.product-copy > p:last-of-type { max-width: 480px; color: var(--muted); font-size: 18px; }
.signal-key { margin-top: 45px; border-top: 1px solid var(--line); }
.signal-key > div {
  display: grid;
  grid-template-columns: 18px 60px 1fr;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.signal-key strong { font-size: 11px; letter-spacing: .08em; }
.signal-key p { margin: 0; color: var(--muted); font-size: 12px; }
.key-dot { width: 12px; height: 12px; border: 3px solid; border-radius: 50%; }
.key-dot.take { border-color: var(--lime-accessible); }
.key-dot.wait { border-color: var(--teal-dark); }
.key-dot.skip { border-color: var(--blue); }
.phone-gallery {
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  perspective: 1400px;
}
.phone-gallery .phone { width: 250px; border-radius: 40px; }
.phone-gallery .phone-screen { min-height: 540px; border-radius: 32px; padding: 16px 13px; }
.phone-score { z-index: 2; transform: translateY(-25px); }
.phone-feed { transform: rotateY(8deg) translateY(20px); }
.phone-insights { transform: rotateY(-8deg) translateY(28px); }
.live-label { display: flex; align-items: center; gap: 5px; color: #a6afb8; font-size: 8px; letter-spacing: .1em; }
.live-label i { width: 5px; height: 5px; background: var(--lime); border-radius: 50%; }
.feed-card {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid #1e252c;
  border-radius: 10px;
  background: #11171d;
}
.feed-card div { display: flex; min-width: 0; flex-direction: column; }
.feed-card b { font-size: 14px; }
.feed-card small { margin: 5px 0; color: #87919c; font-size: 8px; }
.feed-card strong { font-size: 10px; }
.feed-score {
  flex: 0 0 54px;
  width: 54px; height: 54px;
  display: grid;
  place-content: center;
  border: 3px solid;
  border-radius: 50%;
  text-align: center;
  font-family: var(--display);
  font-size: 18px;
}
.feed-score small { margin: 0; font-family: var(--body); font-size: 5px; font-weight: 800; }
.take-score { color: var(--lime); }
.wait-score { color: var(--teal); }
.skip-score { color: var(--blue); }
.small-breakdown { padding-block: 8px; }
.weekly-total { display: flex; align-items: center; justify-content: space-between; margin: 8px 0 20px; font-size: 25px; }
.weekly-total i { color: var(--lime); font-family: var(--body); font-size: 9px; font-style: normal; }
.bar-chart {
  height: 135px;
  display: flex;
  align-items: end;
  gap: 9px;
  padding: 18px 6px 0;
  border-bottom: 1px solid #252b31;
}
.bar-chart i { flex: 1; height: var(--h); background: linear-gradient(#394149, #171c21); }
.bar-chart i.active { background: var(--signal); }
.insight-rows { margin-top: 18px; }
.insight-rows div { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #20262c; color: #a8b0b8; font-size: 9px; }
.insight-rows b { color: white; }
.insight-rows .highlight { color: var(--lime); font-size: 11px; }
.insight-rows .highlight b { color: var(--lime); }

/* Setup */
.setup-section { padding: 145px 0 0; background: white; }
.setup-flow {
  display: grid;
  grid-template-columns: 1fr .48fr 1fr .48fr 1fr 1.1fr;
  align-items: center;
  margin-top: 75px;
}
.setup-step { position: relative; min-height: 250px; text-align: center; }
.step-number {
  position: absolute;
  left: 20px; top: 0;
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  border: 2px solid;
  border-radius: 50%;
  font-weight: 800;
}
.step-lime { border-color: var(--lime-accessible); }
.step-teal { border-color: var(--teal-dark); }
.step-blue { border-color: var(--blue); }
.step-icon {
  width: 84px; height: 84px;
  display: grid;
  place-items: center;
  margin: 42px auto 19px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 35px;
}
.setup-step h3 { margin-bottom: 8px; font-size: 22px; }
.setup-step p { margin-bottom: 4px; color: var(--muted); font-size: 12px; }
.setup-step strong { font-size: 14px; }
.setup-line { position: relative; height: 2px; background: var(--signal); transform: translateY(-12px); }
.setup-line i {
  position: absolute;
  left: 42%; top: -8px;
  width: 18px; height: 18px;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--teal);
}
.setup-result {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  border-radius: 32px;
  background: var(--ink);
  color: white;
  text-align: center;
  box-shadow: var(--shadow);
}
.setup-result span { margin: 18px 0 10px; font-family: var(--display); font-size: 20px; font-weight: 700; }
.setup-result strong {
  width: 110px; height: 110px;
  display: grid;
  place-items: center;
  border: 6px solid var(--teal);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 48px;
}
.setup-result small { margin-top: 10px; color: var(--lime); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.monthly-note {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 680px;
  margin: 65px auto 0;
  padding: 25px 0 100px;
  border-top: 1px solid var(--line);
}
.monthly-note > span { color: var(--blue); font-size: 35px; }
.monthly-note strong { display: block; }
.monthly-note p { margin: 3px 0 0; color: var(--muted); font-size: 13px; }

/* Results */
.results-section { padding: 145px 0; background: var(--ink); color: white; }
.results-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.results-section .section-intro > p:last-of-type { color: #a9b1ba; }
.results-caveat { color: #69737d !important; font-size: 11px !important; }
.results-chart { padding-left: 50px; border-left: 1px solid var(--line-dark); }
.result-bar { margin-bottom: 30px; }
.result-bar div { display: flex; justify-content: space-between; align-items: baseline; }
.result-bar span { color: #b1b8bf; font-size: 13px; }
.result-bar strong { font-family: var(--display); font-size: 27px; }
.result-bar i {
  display: block;
  width: var(--w); height: 14px;
  margin: 9px 0;
  background: #394149;
}
.result-bar small { color: #68727c; font-size: 10px; }
.result-bar.gut i { background: var(--teal-dark); }
.result-bar.signal i { background: var(--signal); box-shadow: 0 0 25px rgba(198,255,0,.2); }
.result-bar.signal strong { color: var(--lime); }
.result-foot { display: flex; align-items: baseline; gap: 12px; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--line-dark); }
.result-foot strong { color: var(--lime); font-family: var(--display); font-size: 25px; }
.result-foot span { color: #818b95; font-size: 11px; }

/* Features / trust */
.feature-section { padding: 140px 0; }
.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-block: 1px solid var(--line);
}
.feature { min-height: 290px; padding: 32px; border-right: 1px solid var(--line); }
.feature:last-child { border-right: 0; }
.feature-icon {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 50px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--lime-accessible);
  box-shadow: 0 12px 24px rgba(11,13,16,.06);
  font-family: var(--display);
  font-weight: 700;
}
.feature h3 { font-size: 22px; }
.feature p { color: var(--muted); font-size: 13px; }
.trust-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: #070a0d;
  color: white;
}
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; }
.trust-section .section-intro > p:last-child { color: #98a2ac; }
.privacy-points { padding: 0; margin: 0; list-style: none; }
.privacy-points li { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line-dark); }
.privacy-points li > span { color: var(--teal); font-family: var(--display); font-size: 13px; }
.privacy-points strong { display: block; margin-bottom: 5px; font-size: 17px; }
.privacy-points p { margin: 0; color: #7f8993; font-size: 12px; }
.signal-watermark {
  position: absolute;
  width: 620px; height: 620px;
  right: -290px; top: -180px;
  border: 1px solid rgba(0,229,194,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(41,121,255,.035), 0 0 0 140px rgba(198,255,0,.025);
}

/* Pricing + FAQ */
.pricing-section { padding: 145px 0; background: white; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr .9fr;
  max-width: 1040px;
  margin: 65px auto 0;
  border: 1px solid var(--line);
}
.price-plan { min-height: 355px; display: flex; flex-direction: column; padding: 35px; border-right: 1px solid var(--line); }
.price-plan > p { display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.price-plan > p b { color: var(--lime-accessible); font-size: 8px; }
.price-plan > strong { margin: 35px 0 5px; font-family: var(--display); font-size: 62px; line-height: 1; letter-spacing: -.06em; }
.price-plan sup { font-size: 22px; }
.price-plan strong small { font-family: var(--body); font-size: 12px; font-weight: 500; letter-spacing: 0; }
.price-plan > span { color: var(--muted); font-size: 12px; }
.price-plan .button { margin-top: auto; }
.featured-plan { background: var(--ink); color: white; }
.featured-plan > span, .featured-plan > p { color: #a4adb5; }
.plan-includes { display: flex; flex-direction: column; justify-content: center; gap: 17px; padding: 35px; margin: 0; list-style: none; }
.plan-includes li { color: #4c5661; font-size: 12px; }
.plan-includes li::before { content: "✓"; margin-right: 10px; color: var(--teal-dark); font-weight: 900; }
.faq-section { padding: 145px 0; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--blue); font-size: 24px; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { max-width: 680px; padding: 0 40px 22px 0; margin: 0; color: var(--muted); font-size: 14px; }

/* CTA and footer */
.final-cta { position: relative; padding: 100px 0; overflow: hidden; background: var(--ink); color: white; }
.cta-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 80px; }
.final-cta h2 { max-width: 780px; margin-bottom: 16px; font-size: clamp(48px, 6vw, 82px); }
.final-cta p { color: #9ba4ad; font-size: 18px; }
.cta-action { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.cta-action .button { width: 100%; }
.cta-action small { color: #78828d; font-size: 10px; }
.cta-wave {
  position: absolute;
  inset: auto -10% -130px;
  height: 320px;
  opacity: .22;
  background:
    repeating-radial-gradient(ellipse at 50% 100%, transparent 0 12px, rgba(0,229,194,.38) 13px 14px, transparent 15px 23px);
}
.site-footer { padding: 70px 0 28px; background: #030506; color: white; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 60px; padding-bottom: 50px; }
.footer-brand { color: white; }
.footer-grid > div > p { margin: 13px 0 0; color: #6f7983; font-size: 12px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.footer-links a, .footer-contact a { color: #9ba5ae; font-size: 12px; text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover { color: var(--lime); }
.footer-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer-contact span { color: #5d6771; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.legal-line { display: flex; justify-content: space-between; gap: 40px; padding-top: 24px; border-top: 1px solid #22272d; color: #58616a; font-size: 9px; }
.legal-line p:first-child { max-width: 800px; }

/* Motion */
.js .reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  .js .reveal.is-visible {
    animation: reveal-in .8s cubic-bezier(.16,1,.3,1) var(--delay, 0s) both;
  }
  @keyframes reveal-in {
    from { opacity: .45; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
  }
}

@media (max-width: 1050px) {
  .site-nav { gap: 20px; }
  .hero-grid { grid-template-columns: 1fr .85fr; }
  .phone-hero { width: 290px; }
  .equation { grid-template-columns: 1fr auto 1fr auto 1fr; }
  .equation-result { grid-column: 1 / -1; min-height: 150px; }
  .equation .equals { display: none; }
  .assumptions { grid-template-columns: 1.3fr 1fr 1fr; }
  .assumptions > * { border-bottom: 1px solid var(--line); }
  .refresh-note { grid-column: span 2; }
  .product-grid { grid-template-columns: 1fr; }
  .product-copy { max-width: 720px; }
  .phone-gallery { min-height: 650px; }
  .setup-flow { grid-template-columns: 1fr .25fr 1fr .25fr 1fr; }
  .setup-result { grid-column: 2 / 5; margin-top: 30px; min-height: 250px; }
  .feature-list { grid-template-columns: 1fr 1fr; }
  .feature:nth-child(2) { border-right: 0; }
  .feature:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .plan-includes { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 30px), var(--shell)); }
  .header-inner { min-height: 72px; grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .nav-toggle {
    display: flex;
    width: 44px; height: 44px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.7);
  }
  .nav-toggle span:not(.sr-only) { width: 100%; height: 2px; background: var(--ink); transition: transform .2s; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 22px 26px;
    background: rgba(247,247,244,.98);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { width: 100%; padding: 13px 0; border-bottom: 1px solid var(--line); }
  .site-nav .language-picker { margin-top: 16px; }
  .site-nav .language-picker select { min-width: 86px; }
  .header-actions { gap: 7px; }
  .header-actions .button { min-height: 42px; padding-inline: 12px; }
  .hero { min-height: auto; padding-top: 118px; }
  .hero::after { top: 72px; left: 15px; right: 15px; }
  .hero-grid { display: block; min-height: auto; }
  .hero h1 { font-size: clamp(55px, 17vw, 78px); }
  .hero h1 em::after { height: 5px; }
  .hero-lede { font-size: 18px; }
  .button-row .button { width: 100%; }
  .trust-list { display: grid; }
  .hero-device-wrap { min-height: 610px; margin-top: 15px; }
  .phone-hero { width: 285px; }
  .orbit-one { width: 390px; height: 390px; }
  .orbit-two { width: 310px; height: 310px; }
  .hero-signal { display: none; }
  .proof-rail { grid-template-columns: 1fr 1fr; margin-bottom: 0; }
  .proof-rail div:nth-child(2) { border-right: 0; }
  .proof-rail div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .proof-rail div { padding: 18px 12px; }
  .proof-rail strong { font-size: 23px; }
  .math-section, .product-section, .results-section, .feature-section, .trust-section, .pricing-section, .faq-section { padding: 100px 0; }
  .section-intro h2 { font-size: clamp(44px, 13vw, 66px); }
  .math-intro { display: block; }
  .math-intro > p:last-child { padding: 15px 0 0; border: 0; }
  .calculator { margin-top: 42px; }
  .calculator-inputs { grid-template-columns: 1fr; }
  .calc-field { border-right: 0; border-bottom: 1px solid var(--line); }
  .calc-field:last-child { border-bottom: 0; }
  .equation { grid-template-columns: 1fr; gap: 12px; }
  .equation, .equation > * { min-width: 0; max-width: 100%; }
  .equation-start, .equation-result { min-height: 180px; }
  .operator { min-height: 24px; }
  .equals { display: grid !important; }
  .equation-result { grid-column: auto; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 60px; }
  .equation-result strong,
  .equation-cost small { overflow-wrap: anywhere; }
  .mini-score { width: 54px; height: 54px; font-size: 22px; }
  .assumptions { grid-template-columns: 1fr; }
  .assumptions > *, .refresh-note { grid-column: auto; min-height: 70px; border-right: 0; }
  .product-copy h2 { font-size: clamp(48px, 14vw, 70px); }
  .phone-gallery {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 50px;
  }
  .phone-gallery .phone { width: min(295px, 88vw); margin-inline: auto; transform: none; }
  .setup-section { padding-top: 100px; }
  .setup-flow { display: block; margin-top: 45px; }
  .setup-step { min-height: 220px; }
  .setup-line { width: 2px; height: 70px; margin: -25px auto 12px; }
  .setup-line i { left: -8px; top: 45%; }
  .setup-result { width: min(300px, 90%); min-height: 260px; margin: 10px auto 0; }
  .monthly-note { padding-bottom: 80px; }
  .results-grid, .trust-grid, .faq-grid, .cta-grid { grid-template-columns: 1fr; gap: 55px; }
  .results-chart { padding: 0; border: 0; }
  .feature-list { grid-template-columns: 1fr; }
  .feature { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-icon { margin-bottom: 35px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-plan { border-right: 0; border-bottom: 1px solid var(--line); }
  .plan-includes { grid-column: auto; grid-template-columns: 1fr; }
  .final-cta { padding: 90px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-contact { align-items: flex-start; }
  .legal-line { display: block; }
}

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

/* Legal pages */
.legal-main {
  padding: 156px 0 96px;
  min-height: 78vh;
}
.legal-shell { max-width: 900px; }
.legal-main h1 {
  max-width: 760px;
  margin: 20px 0 12px;
  font-size: clamp(3.5rem, 9vw, 7.2rem);
}
.legal-updated {
  color: var(--muted);
  margin-bottom: 48px;
}
.legal-summary {
  padding: 28px 32px;
  margin-bottom: 56px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--lime);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(10, 18, 25, .06);
}
.legal-summary strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 1.08rem;
}
.legal-summary p { margin: 0; color: #38424d; }
.legal-body { max-width: 760px; }
.legal-body h2 {
  margin: 54px 0 14px;
  padding-top: 4px;
  font-size: clamp(1.65rem, 4vw, 2.2rem);
  letter-spacing: -.035em;
  scroll-margin-top: 110px;
}
.legal-body p,
.legal-body li {
  color: #3f4954;
  font-size: 1.02rem;
}
.legal-body li + li { margin-top: 9px; }
.legal-body a {
  color: #215cc0;
  text-underline-offset: 3px;
}
.legal-independent {
  max-width: 760px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}
.legal-footer { padding-top: 0; }
@media (max-width: 680px) {
  .legal-main { padding-top: 120px; }
  .legal-summary { padding: 22px; }
}
