:root {
  color-scheme: dark;
  --background: #010937;
  --background-deep: #050812;
  --surface: #111620;
  --raised: #181e2a;
  --line: #293141;
  --text: #f8fafc;
  --muted: #a5adba;
  --lime: #b7ff2a;
  --lime-dark: #7cac20;
  --purple: #9c7dff;
  --blue: #40c7ff;
  --orange: #ffa342;
  --ink: #111704;
  --shell: 1180px;
  --radius: 30px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 7%, rgba(183, 255, 42, 0.1), transparent 25rem),
    var(--background);
  color: var(--text);
  font-family: Inter, ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 5px;
  border-radius: 8px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  text-wrap: balance;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5.2vw, 5.25rem);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--lime);
  font-style: normal;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(92px, 12vw, 164px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(1, 9, 55, 0.76);
  backdrop-filter: blur(18px) saturate(130%);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand img {
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav-links a,
.site-footer nav a {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.nav-links a:hover,
.site-footer nav a:hover,
.site-footer p a:hover {
  color: var(--text);
}

.nav-status {
  justify-self: end;
  padding: 8px 13px;
  border: 1px solid rgba(183, 255, 42, 0.3);
  border-radius: 999px;
  background: rgba(183, 255, 42, 0.08);
  color: var(--lime);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  top: 5%;
  right: -14rem;
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  background: var(--lime);
  content: "";
  filter: blur(180px);
  opacity: 0.07;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(410px, 0.94fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
  min-height: min(880px, calc(100vh - 82px));
  padding-block: clamp(72px, 8vw, 110px);
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 34px;
  font-size: clamp(4.5rem, 8.7vw, 7.8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.84;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 34px;
  color: #c7cdd6;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  gap: 10px;
  padding: 9px 18px 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: #f8fafc;
  color: #080b10;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.05;
}

.store-badge svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.store-badge span {
  display: grid;
  gap: 2px;
}

.store-badge small {
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 9px;
  border-bottom: 1px solid rgba(183, 255, 42, 0.35);
  color: var(--lime);
  font-size: 0.9rem;
  font-weight: 800;
  transition: border-color 160ms ease, color 160ms ease;
}

.text-link:hover {
  border-color: var(--lime);
  color: #cbff65;
}

.platform-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
}

.platform-note svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 680px;
  place-items: center;
}

.phone {
  position: relative;
  z-index: 2;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 58px;
  background: linear-gradient(145deg, #727681, #11131b 25%, #05060a 80%, #5b5f68);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(0, 0, 0, 0.7),
    inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.phone img {
  width: 100%;
  border-radius: 50px;
  background: var(--background-deep);
}

.phone-hero {
  width: min(76%, 340px);
  transform: rotate(2.3deg);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(183, 255, 42, 0.18);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  top: 17%;
  left: 4%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 28px var(--lime);
  content: "";
}

.orbit-one {
  width: 560px;
  height: 560px;
}

.orbit-two {
  width: 430px;
  height: 430px;
  border-color: rgba(255, 255, 255, 0.08);
  transform: rotate(140deg);
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(24, 30, 42, 0.9);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.floating-card-top {
  top: 14%;
  right: -2%;
  display: grid;
  min-width: 184px;
  gap: 4px;
  padding: 14px 17px;
  transform: rotate(-2deg);
}

.floating-label,
.floating-card small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-card-top strong {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.sound-bars {
  display: flex;
  align-items: center;
  height: 18px;
  gap: 2px;
}

.sound-bars i {
  display: block;
  width: 3px;
  border-radius: 3px;
  background: var(--lime);
}

.sound-bars i:nth-child(1) { height: 8px; }
.sound-bars i:nth-child(2) { height: 17px; }
.sound-bars i:nth-child(3) { height: 12px; }

.activity-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 18, 0.28);
}

.activity-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 16px;
  color: #d6dae1;
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.activity-list i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

.promise {
  background:
    linear-gradient(180deg, rgba(5, 8, 18, 0.05), rgba(5, 8, 18, 0.42)),
    var(--background);
}

.promise-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  align-items: end;
  gap: clamp(60px, 10vw, 140px);
}

.promise h2 {
  max-width: 700px;
  margin-bottom: 0;
}

.promise-copy > p {
  margin-bottom: 42px;
  color: #c4cad3;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.stat-row div {
  display: grid;
  gap: 4px;
}

.stat-row strong {
  color: var(--lime);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 760;
  letter-spacing: -0.05em;
  line-height: 1;
}

.stat-row span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.35;
}

.features {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--background-deep);
}

.features-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(44px, 9vw, 120px);
  padding-bottom: clamp(58px, 8vw, 92px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.features-heading > p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.75;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(430px, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(64px, 10vw, 130px);
  min-height: 780px;
  padding-block: clamp(70px, 9vw, 124px);
}

.feature-row + .feature-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-row-cues {
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1fr);
}

.feature-copy {
  position: relative;
  z-index: 3;
}

.feature-number {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.feature-copy h2 {
  max-width: 610px;
  font-size: clamp(2.7rem, 5vw, 4.75rem);
}

.feature-copy > p {
  max-width: 560px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.75;
}

.check-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #d7dbe2;
  font-size: 0.86rem;
  font-weight: 700;
}

.check-list li::before {
  display: grid;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(183, 255, 42, 0.42);
  border-radius: 50%;
  color: var(--lime);
  content: "✓";
  font-size: 0.68rem;
  place-items: center;
}

.feature-visual {
  position: relative;
  display: grid;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 30%, rgba(183, 255, 42, 0.12), transparent 42%),
    var(--surface);
  place-items: center;
}

.feature-visual::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent);
}

.phone-feature {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 50%;
  width: min(46%, 250px);
  border-radius: 48px;
  transform: translateX(-50%);
}

.phone-feature img {
  border-radius: 42px;
}

.phase-stack {
  position: absolute;
  z-index: 3;
  top: 86px;
  left: 32px;
  display: grid;
  width: 198px;
  gap: 8px;
}

.phase-stack span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  background: rgba(5, 8, 18, 0.82);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  color: #dfe3e9;
  font-size: 0.66rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.phase-stack span::before {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
}

.phase-stack b {
  margin-left: auto;
  font-variant-numeric: tabular-nums;
}

.phase-stack .phase-ready::before { background: var(--purple); }
.phase-stack .phase-work::before { background: var(--lime); }
.phase-stack .phase-rest::before { background: var(--blue); }
.phase-stack .phase-reset::before { background: var(--orange); }

.feature-visual-cues {
  background:
    radial-gradient(circle at 25% 40%, rgba(64, 199, 255, 0.12), transparent 35%),
    radial-gradient(circle at 65% 20%, rgba(183, 255, 42, 0.11), transparent 40%),
    var(--surface);
}

.cue-types {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.cue-types > span {
  display: flex;
  align-items: center;
  min-height: 38px;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: var(--surface);
  color: #dce0e6;
  font-size: 0.73rem;
  font-weight: 750;
}

.cue-icon {
  position: relative;
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(183, 255, 42, 0.14);
}

.cue-icon::before,
.cue-icon::after {
  position: absolute;
  content: "";
}

.cue-icon-beep::before {
  top: 4px;
  left: 5px;
  width: 3px;
  height: 9px;
  border-radius: 2px;
  background: var(--lime);
  box-shadow: 4px 2px 0 -1px var(--lime), 8px -1px 0 -1px var(--lime);
}

.cue-icon-voice {
  background:
    linear-gradient(var(--blue), var(--blue)) center 13px / 2px 2px no-repeat,
    linear-gradient(var(--blue), var(--blue)) center 15px / 7px 1.5px no-repeat,
    rgba(64, 199, 255, 0.13);
}

.cue-icon-voice::before {
  top: 2px;
  left: 6px;
  width: 5px;
  height: 8px;
  border: 1.5px solid var(--blue);
  border-radius: 4px;
}

.cue-icon-voice::after {
  top: 6px;
  left: 4px;
  width: 9px;
  height: 7px;
  border: 1.5px solid var(--blue);
  border-top: 0;
  border-radius: 0 0 7px 7px;
}

.cue-icon-silent::before {
  top: 8px;
  left: 4px;
  width: 9px;
  height: 1px;
  background: var(--muted);
  transform: rotate(-45deg);
}

.cue-wave {
  position: absolute;
  top: 98px;
  left: 24px;
  display: flex;
  align-items: center;
  height: 94px;
  gap: 7px;
  opacity: 0.55;
}

.cue-wave span {
  display: block;
  width: 4px;
  border-radius: 5px;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(183, 255, 42, 0.35);
}

.cue-wave span:nth-child(1),
.cue-wave span:nth-child(9) { height: 17px; }
.cue-wave span:nth-child(2),
.cue-wave span:nth-child(8) { height: 36px; }
.cue-wave span:nth-child(3),
.cue-wave span:nth-child(7) { height: 61px; }
.cue-wave span:nth-child(4),
.cue-wave span:nth-child(6) { height: 84px; }
.cue-wave span:nth-child(5) { height: 48px; }

.cue-popover {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 88px;
  display: grid;
  min-width: 190px;
  gap: 2px;
  padding: 15px 17px;
  border: 1px solid rgba(183, 255, 42, 0.25);
  border-radius: 17px;
  background: rgba(5, 8, 18, 0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.cue-popover small {
  color: var(--lime);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cue-popover strong {
  font-size: 0.8rem;
}

.cue-popover span {
  color: var(--muted);
  font-size: 0.67rem;
}

.feature-visual-library {
  background:
    radial-gradient(circle at 70% 30%, rgba(156, 125, 255, 0.12), transparent 40%),
    var(--surface);
}

.library-card {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 176px;
  gap: 2px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(24, 30, 42, 0.9);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.library-card span {
  font-size: 0.78rem;
  font-weight: 800;
}

.library-card small {
  color: var(--muted);
  font-size: 0.64rem;
}

.library-card-one {
  top: 95px;
  right: 24px;
  transform: rotate(3deg);
}

.library-card-two {
  bottom: 90px;
  left: 24px;
  transform: rotate(-3deg);
}

.flow-section {
  background:
    radial-gradient(circle at 15% 50%, rgba(183, 255, 42, 0.06), transparent 28rem),
    var(--background);
}

.flow-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
  padding: clamp(36px, 6vw, 76px);
  border: 1px solid rgba(183, 255, 42, 0.18);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(183, 255, 42, 0.07), transparent 45%),
    var(--surface);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.flow-copy h2 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.flow-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.timeline {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(5, 8, 18, 0.65);
}

.timeline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.timeline-head strong {
  color: var(--text);
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
}

.timeline-track {
  display: flex;
  height: 74px;
  overflow: hidden;
  gap: 4px;
  border-radius: 13px;
}

.timeline-track > span {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 9px;
  overflow: hidden;
}

.timeline-track i {
  position: relative;
  z-index: 2;
  color: rgba(4, 8, 13, 0.78);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.track-ready {
  flex: 0.42;
  background: var(--purple);
}

.track-work {
  flex: 1.4;
  background: var(--lime);
}

.track-rest {
  flex: 1;
  background: var(--blue);
}

.cue-tick {
  position: absolute;
  top: 0;
  width: 2px;
  height: 35px;
  background: var(--ink);
  opacity: 0.65;
}

.cue-tick::after {
  position: absolute;
  top: 4px;
  left: -3px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.tick-one { right: 18%; }
.tick-two { right: 34%; }
.tick-three { right: 50%; }
.tick-rest { right: 12%; }

.timeline-legend {
  display: flex;
  flex-wrap: wrap;
  margin-top: 18px;
  gap: 9px 16px;
}

.timeline-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
}

.timeline-legend i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.timeline-legend .legend-cue {
  border: 1px solid var(--lime);
  background: transparent;
}

.legend-ready { background: var(--purple); }
.legend-work { background: var(--lime); }
.legend-rest { background: var(--blue); }

.questions-section {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 82% 18%, rgba(183, 255, 42, 0.07), transparent 26rem),
    var(--background-deep);
}

.questions-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(44px, 9vw, 120px);
}

.questions-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.questions-heading > p {
  max-width: 450px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.75;
}

.questions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(54px, 8vw, 88px);
  gap: 16px;
}

.question-card {
  min-height: 310px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 48%),
    var(--surface);
}

.question-number {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--lime);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.question-card h3 {
  max-width: 470px;
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.12;
  text-wrap: balance;
}

.question-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.privacy-section {
  padding-top: 0;
}

.privacy-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid rgba(183, 255, 42, 0.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 28%, rgba(183, 255, 42, 0.13), transparent 18rem),
    linear-gradient(135deg, rgba(183, 255, 42, 0.07), rgba(183, 255, 42, 0.015) 58%),
    var(--surface);
  color: var(--text);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.privacy-lock {
  display: grid;
  width: clamp(72px, 8vw, 100px);
  height: clamp(72px, 8vw, 100px);
  border: 1px solid rgba(183, 255, 42, 0.24);
  border-radius: 28px;
  background: rgba(183, 255, 42, 0.08);
  color: var(--lime);
  place-items: center;
}

.privacy-lock svg {
  width: 52%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.privacy-card .eyebrow {
  margin-bottom: 18px;
  color: var(--lime);
}

.privacy-card h2 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
}

.privacy-card p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: #c7cdd6;
  font-weight: 600;
}

.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 9px;
  padding: 12px 17px;
  border: 1px solid rgba(183, 255, 42, 0.38);
  border-radius: 13px;
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 850;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
}

.outline-link:hover {
  background: var(--lime);
  color: var(--ink);
}

.outline-link:focus-visible {
  outline-color: var(--lime);
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 110%, rgba(183, 255, 42, 0.16), transparent 35rem),
    var(--background-deep);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  top: 50%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(183, 255, 42, 0.12);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.final-cta::before { left: -230px; }
.final-cta::after { right: -230px; }

.final-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-inner > img {
  margin-bottom: 26px;
  filter: drop-shadow(0 18px 34px rgba(183, 255, 42, 0.15));
}

.final-inner .eyebrow {
  margin-bottom: 28px;
}

.final-inner h2 {
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 8vw, 7.6rem);
  line-height: 0.88;
}

.final-inner > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.06rem;
}

.store-badge-light {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.32);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--background-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 112px;
  gap: 24px;
  color: var(--muted);
  font-size: 0.75rem;
}

.footer-inner p {
  margin: 0;
  text-align: center;
}

.footer-inner nav {
  display: flex;
  justify-self: end;
  gap: 22px;
}

.footer-brand {
  color: var(--text);
  font-size: 0.83rem;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(4.3rem, 9vw, 6.3rem);
  }

  .floating-card-top { right: -3%; }

  .feature-row,
  .feature-row-cues {
    grid-template-columns: minmax(380px, 0.95fr) minmax(0, 0.8fr);
    gap: 60px;
  }

  .feature-row-cues {
    grid-template-columns: minmax(0, 0.8fr) minmax(380px, 0.95fr);
  }

  .feature-visual {
    min-height: 590px;
  }

  .phone-feature {
    width: 230px;
  }

  .privacy-card {
    grid-template-columns: auto 1fr;
  }

  .privacy-card .outline-link {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 88px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero .eyebrow,
  .hero-actions,
  .platform-note {
    justify-content: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 690px;
  }

  .phone-hero {
    width: 320px;
  }

  .floating-card-top { right: 12%; }

  .promise-grid,
  .features-heading,
  .feature-row,
  .feature-row-cues,
  .flow-card,
  .questions-heading {
    grid-template-columns: 1fr;
  }

  .promise-grid {
    align-items: start;
    gap: 48px;
  }

  .promise-copy {
    max-width: 620px;
  }

  .feature-row {
    gap: 54px;
  }

  .features-heading,
  .questions-heading {
    gap: 30px;
  }

  .feature-copy {
    max-width: 680px;
  }

  .feature-row-cues .feature-copy {
    order: 2;
  }

  .feature-row-cues .feature-visual {
    order: 1;
  }

  .feature-visual {
    min-height: 650px;
  }

  .phone-feature {
    width: 250px;
  }

  .flow-card {
    gap: 44px;
  }

  .flow-copy {
    max-width: 620px;
  }

  .questions-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding-block: 28px;
  }

  .footer-inner p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section-pad {
    padding-block: 88px;
  }

  .site-header {
    background: rgba(1, 9, 55, 0.9);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav-status {
    padding: 7px 10px;
    font-size: 0.59rem;
  }

  .hero-grid {
    padding-block: 70px 52px;
  }

  .hero h1 {
    margin-bottom: 28px;
    font-size: clamp(3.55rem, 18.5vw, 5.2rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .platform-note {
    margin-top: 18px;
  }

  .hero-visual {
    min-height: 600px;
    margin-inline: -12px;
  }

  .phone-hero {
    width: 264px;
  }

  .orbit-one {
    width: 430px;
    height: 430px;
  }

  .orbit-two {
    width: 330px;
    height: 330px;
  }

  .floating-card-top {
    top: 10%;
    right: 0;
    min-width: 156px;
    padding: 11px 13px;
  }

  .activity-list {
    justify-content: center;
    min-height: 100px;
    padding-block: 22px;
    flex-wrap: wrap;
    gap: 12px 16px;
    font-size: 0.61rem;
  }

  .promise-grid {
    gap: 38px;
  }

  .promise h2 {
    font-size: 3.2rem;
  }

  .promise-copy > p {
    margin-bottom: 34px;
  }

  .stat-row {
    gap: 16px;
  }

  .stat-row span {
    font-size: 0.57rem;
  }

  .feature-row {
    min-height: 0;
    padding-block: 70px;
    gap: 44px;
  }

  .features-heading h2,
  .questions-heading h2 {
    font-size: 3.2rem;
  }

  .feature-visual {
    min-height: 520px;
    border-radius: 28px;
  }

  .phone-feature {
    bottom: 24px;
    width: 205px;
    padding: 5px;
    border-radius: 42px;
  }

  .phone-feature img {
    border-radius: 37px;
  }

  .phase-stack {
    top: 55px;
    left: 14px;
    width: 154px;
  }

  .phase-stack span {
    padding: 8px 10px;
    font-size: 0.55rem;
  }

  .cue-wave {
    top: 55px;
    left: 14px;
    transform: scale(0.8);
    transform-origin: left center;
  }

  .cue-popover {
    right: 10px;
    bottom: 50px;
    min-width: 162px;
    padding: 11px 13px;
  }

  .library-card {
    min-width: 145px;
    padding: 10px 12px;
  }

  .library-card-one {
    top: 58px;
    right: 8px;
  }

  .library-card-two {
    bottom: 52px;
    left: 8px;
  }

  .flow-card {
    width: min(calc(100% - 24px), var(--shell));
    padding: 30px 20px;
    border-radius: 28px;
  }

  .timeline {
    margin-inline: -4px;
    padding: 16px;
  }

  .timeline-track {
    height: 66px;
  }

  .timeline-track > span {
    padding: 6px;
  }

  .timeline-track i {
    font-size: 0.48rem;
  }

  .timeline-legend {
    gap: 8px 11px;
  }

  .questions-grid {
    margin-top: 48px;
  }

  .question-card {
    min-height: 0;
    padding: 28px 24px;
    border-radius: 24px;
  }

  .question-number {
    margin-bottom: 40px;
  }

  .privacy-section {
    padding-top: 0;
  }

  .privacy-card {
    grid-template-columns: 1fr;
    border-radius: 27px;
  }

  .privacy-lock {
    width: 72px;
    height: 72px;
    border-radius: 22px;
  }

  .privacy-card .outline-link {
    grid-column: auto;
  }

  .final-inner h2 {
    font-size: clamp(3.5rem, 17vw, 5.3rem);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-inner nav {
    justify-self: start;
  }

  .footer-inner p {
    grid-column: auto;
    grid-row: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
