:root {
  color-scheme: light;
  --blue: #1268ff;
  --blue-bright: #1d82ff;
  --blue-soft: #dce9ff;
  --navy: #061b41;
  --navy-2: #0a2456;
  --ink: #0a1427;
  --ink-soft: #465269;
  --paper: #f4f1ea;
  --paper-2: #e9e5dc;
  --white: #ffffff;
  --line: rgba(10, 20, 39, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --display: ui-rounded, "SF Pro Rounded", "Arial Rounded MT Bold", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1240px, calc(100vw - 64px));
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid #ffcb4b;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.section-number,
.eyebrow,
.panel-label,
.story-kicker {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-number {
  color: var(--blue);
}

.section-number-light {
  color: #79b4ff;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(28px, calc((100vw - 1380px) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 260ms ease, background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  color: var(--ink);
  background: rgba(244, 241, 234, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 40px rgba(6, 27, 65, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav-brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(15, 108, 255, 0.24);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 640;
}

.nav-menu > a:not(.nav-download) {
  position: relative;
  opacity: 0.78;
  transition: opacity 160ms ease;
}

.nav-menu > a:not(.nav-download)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-menu > a:not(.nav-download):hover {
  opacity: 1;
}

.nav-menu > a:not(.nav-download):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding-inline: 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled .nav-download,
.site-header.is-menu-open .nav-download {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.nav-download:hover {
  transform: translateY(-2px);
  background: var(--white);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-label {
  font-size: 13px;
  font-weight: 700;
}

.menu-lines {
  position: relative;
  width: 24px;
  height: 18px;
}

.menu-lines i {
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease;
}

.menu-lines i:first-child { top: 5px; }
.menu-lines i:last-child { top: 12px; }

.menu-toggle[aria-expanded="true"] .menu-lines i:first-child {
  top: 9px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines i:last-child {
  top: 9px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 71% 38%, rgba(22, 119, 255, 0.46), transparent 26%),
    radial-gradient(circle at 56% 78%, rgba(10, 75, 184, 0.42), transparent 34%),
    linear-gradient(135deg, #04132f 0%, var(--navy) 50%, #071e4c 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 82px 82px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 72%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 72%, transparent);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate3d(0, calc(var(--scroll-y, 0) * -0.08px), 0);
}

.hero-orbit-one {
  top: -36vw;
  right: -18vw;
  width: 78vw;
  aspect-ratio: 1;
}

.hero-orbit-two {
  right: 4vw;
  bottom: -39vw;
  width: 70vw;
  aspect-ratio: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100vw - 64px));
  min-height: 100svh;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(30px, 5vw, 86px);
  padding-block: calc(var(--header-height) + 42px) 64px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  min-width: 0;
  max-width: 680px;
  padding-left: clamp(0px, 2vw, 30px);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: #a8cbff;
  animation: hero-copy-in 720ms 80ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6aabff;
  box-shadow: 0 0 0 6px rgba(106, 171, 255, 0.14);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 820;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.hero-brand,
.hero-promise {
  display: block;
}

.hero-brand {
  margin-left: -0.055em;
  font-size: clamp(86px, 11vw, 176px);
  color: var(--white);
  animation: hero-copy-in 820ms 140ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-promise {
  margin-top: 26px;
  font-size: clamp(43px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: #a8cbff;
  animation: hero-copy-in 820ms 220ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
  animation: hero-copy-in 820ms 300ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
  animation: hero-copy-in 820ms 380ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 8px 18px 8px 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.app-store-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.app-store-button > img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 11px;
}

.app-store-button span {
  display: grid;
  line-height: 1.05;
}

.app-store-button small {
  font-size: 10px;
  letter-spacing: 0.01em;
}

.app-store-button strong {
  margin-top: 3px;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -0.03em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 9px;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 720;
  transition: gap 180ms ease, opacity 180ms ease;
}

.text-link:hover {
  gap: 15px;
  opacity: 0.72;
}

.hero .text-link {
  color: var(--white);
}

.hero-trust {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  animation: hero-copy-in 820ms 440ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-trust span {
  margin-right: 6px;
  color: #6aabff;
}

.hero-visual {
  position: relative;
  min-height: min(820px, calc(100svh - 116px));
  perspective: 1200px;
}

.hero-product {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: clamp(286px, 25vw, 370px);
  margin: 0;
  filter: drop-shadow(0 35px 48px rgba(0, 7, 24, 0.48));
  transform: translate(-44%, -47%) rotate(1.4deg);
  animation: hero-phone-in 1100ms 160ms both cubic-bezier(0.18, 0.78, 0.18, 1);
}

.real-device-shell {
  position: relative;
  overflow: hidden;
  background: #030814;
  border: 9px solid #030814;
  border-radius: clamp(46px, 4.4vw, 64px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 24px 70px rgba(0, 4, 18, 0.42);
}

.real-device-shell img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-product figcaption {
  position: absolute;
  right: -24%;
  bottom: 5%;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(3, 8, 20, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-product figcaption span {
  width: 6px;
  height: 6px;
  background: #68d7a9;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(104, 215, 169, 0.13);
}

.raw-shot {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: clamp(190px, 18vw, 278px);
  height: min(560px, 61svh);
  overflow: hidden;
  background: #f6f8fb;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(0, 4, 20, 0.34);
}

.raw-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.raw-shot-left {
  left: 0;
  transform: translate(3%, -48%) rotate(-11deg);
  animation: raw-left-in 1050ms 320ms both cubic-bezier(0.18, 0.78, 0.18, 1);
}

.raw-shot-right {
  right: -1%;
  transform: translate(0, -44%) rotate(10deg);
  animation: raw-right-in 1050ms 390ms both cubic-bezier(0.18, 0.78, 0.18, 1);
}

.raw-label {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 50%;
  white-space: nowrap;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(6, 27, 65, 0.8);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-action-note {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  padding: 12px 16px 12px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(0, 8, 35, 0.34);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.note-calendar {
  top: 20%;
  right: 0;
  animation: note-in-right 720ms 920ms both cubic-bezier(0.18, 0.78, 0.18, 1);
}

.note-reminder {
  bottom: 19%;
  left: 2%;
  animation: note-in-left 720ms 1040ms both cubic-bezier(0.18, 0.78, 0.18, 1);
}

.note-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.hero-action-note > span:last-child {
  display: grid;
  line-height: 1.15;
}

.hero-action-note small {
  margin-bottom: 3px;
  color: #748096;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-action-note strong {
  font-size: 12px;
}

.scroll-mark {
  position: absolute;
  z-index: 8;
  bottom: 26px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-mark i {
  position: relative;
  width: 38px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-mark i::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 1px;
  background: var(--white);
  animation: scroll-line 1700ms infinite ease-in-out;
}

.problem {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.problem .section-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: clamp(60px, 9vw, 144px);
  align-items: end;
}

.problem-intro h2,
.demo-head h2,
.story-heading h2,
.action-band h2,
.privacy h2,
.faq h2,
.final-cta h2 {
  margin: 26px 0 0;
  font-family: var(--display);
  font-size: clamp(52px, 7.2vw, 112px);
  font-weight: 810;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.problem-intro h2 em {
  color: var(--blue);
  font-style: normal;
}

.problem-copy {
  padding-bottom: 8px;
  color: var(--ink-soft);
  font-size: 17px;
}

.problem-copy p {
  margin: 0 0 20px;
}

.problem-copy .problem-lead {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.thought-stream {
  width: 100%;
  margin-top: clamp(72px, 9vw, 132px);
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  border-block: 1px solid rgba(255, 255, 255, 0.2);
}

.thought-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-block: 18px;
  animation: thought-scroll 38s linear infinite;
}

.thought-track span {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 740;
  letter-spacing: -0.035em;
}

.thought-track i {
  width: 7px;
  height: 7px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0.48;
}

.demo {
  background: #fbfaf6;
  border-top: 1px solid var(--line);
}

.demo-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  align-items: end;
  gap: 60px;
}

.demo-head h2 {
  font-size: clamp(48px, 6.5vw, 92px);
}

.demo-head > p {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 17px;
}

.demo-shell {
  width: var(--shell);
  margin: clamp(62px, 8vw, 110px) auto 0;
}

.scenario-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scenario-tab {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  color: #758095;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 730;
  text-align: left;
  transition: color 180ms ease, background 180ms ease;
}

.scenario-tab:last-child {
  border-right: 0;
}

.scenario-tab span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.scenario-tab:hover {
  color: var(--ink);
  background: rgba(18, 104, 255, 0.05);
}

.scenario-tab.is-active {
  color: var(--white);
  background: var(--blue);
}

.scenario-stage {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) 150px minmax(0, 1.12fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.source-panel,
.result-panel {
  position: relative;
  min-width: 0;
  padding: clamp(28px, 4vw, 58px);
}

.source-panel {
  overflow: hidden;
  background: var(--paper-2);
}

.panel-label {
  color: #6e788c;
}

.source-phone {
  position: absolute;
  top: 92px;
  right: clamp(28px, 5vw, 74px);
  bottom: -134px;
  left: clamp(28px, 5vw, 74px);
  overflow: hidden;
  background: #f6f8fb;
  border: 10px solid var(--ink);
  border-radius: 44px;
  box-shadow: 0 26px 50px rgba(10, 20, 39, 0.18);
  transition: opacity 180ms ease, transform 180ms ease;
}

.source-phone.is-switching {
  opacity: 0;
  transform: translateY(10px) rotate(-1deg);
}

.source-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.source-stamp {
  position: absolute;
  right: 24px;
  bottom: 22px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(6, 27, 65, 0.76);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.scenario-connector {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: var(--blue);
  background: #fbfaf6;
}

.scenario-connector span {
  display: grid;
  place-items: center;
  width: 76px;
  aspect-ratio: 1;
  border: 1px solid rgba(18, 104, 255, 0.35);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 760;
  box-shadow: 0 0 0 12px rgba(18, 104, 255, 0.05);
}

.scenario-connector i {
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, var(--blue), transparent);
}

.result-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 18%, rgba(40, 135, 255, 0.74), transparent 35%),
    var(--navy);
}

.result-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 310px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(255, 255, 255, 0.028), 0 0 0 104px rgba(255, 255, 255, 0.018);
}

.result-panel .panel-label {
  position: absolute;
  top: clamp(28px, 4vw, 58px);
  left: clamp(28px, 4vw, 58px);
  color: #8dbbff;
}

.result-category {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 11px;
  color: #b9d6ff;
  border: 1px solid rgba(137, 187, 255, 0.34);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-panel h3 {
  position: relative;
  z-index: 2;
  max-width: 590px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.result-panel > p:not(.panel-label) {
  position: relative;
  z-index: 2;
  max-width: 570px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.result-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.result-actions span {
  padding: 9px 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 670;
}

.result-ready {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
  color: #b9d6ff;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.result-ready span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #b9d6ff;
  border-radius: 50%;
}

.result-panel.is-switching > :not(.panel-label) {
  animation: result-switch 330ms both ease;
}

.story {
  position: relative;
  overflow: clip;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 42%, rgba(18, 104, 255, 0.24), transparent 25%),
    linear-gradient(160deg, #020b1d, var(--navy) 58%, #071c47);
}

.story-heading h2 {
  max-width: 1020px;
  font-size: clamp(58px, 8vw, 118px);
}

.story-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(50px, 8vw, 128px);
  margin-top: clamp(80px, 10vw, 150px);
}

.story-step {
  min-height: 68svh;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  align-content: center;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  transition: color 320ms ease;
}

.story-step:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.story-step.is-active {
  color: var(--white);
}

.story-index {
  padding-top: 7px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.story-kicker {
  margin-bottom: 18px;
  color: currentColor;
}

.story-step h3 {
  max-width: 600px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4.5vw, 66px);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1;
}

.story-step p:last-child {
  max-width: 520px;
  margin: 24px 0 0;
  color: currentColor;
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.72;
}

.story-stage-wrap {
  position: relative;
  align-self: stretch;
}

.story-stage {
  position: sticky;
  top: calc(var(--header-height) + 5svh);
  height: min(78svh, 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.story-glow {
  position: absolute;
  width: min(35vw, 520px);
  aspect-ratio: 1;
  background: var(--blue);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  transform: translateZ(0);
}

.story-device-shell {
  position: relative;
  z-index: 3;
  width: auto;
  height: min(92%, 720px);
  aspect-ratio: 1206 / 2622;
  overflow: hidden;
  background: #030814;
  border: 9px solid #030814;
  border-radius: clamp(48px, 5vw, 62px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.09),
    0 38px 70px rgba(0, 0, 0, 0.48);
  transform: rotate(1deg);
}

.story-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateY(24px) scale(1.035);
  transition: opacity 420ms ease 180ms, transform 620ms cubic-bezier(0.18, 0.78, 0.18, 1) 140ms;
}

.story-image.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.story-snap-layer {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
}

.story-snap {
  position: absolute;
  top: 27%;
  left: 0;
  width: min(232px, 47%);
  display: grid;
  gap: 10px;
  padding: 18px;
  color: var(--ink);
  background: #fbfcff;
  border: 1px solid rgba(18, 104, 255, 0.23);
  border-radius: 19px;
  box-shadow: 0 24px 60px rgba(0, 3, 18, 0.42);
  opacity: 0;
  transform: translate(-120px, 80px) rotate(-9deg) scale(0.8);
}

.story-snap span,
.story-snap em {
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-snap span { color: var(--blue); }
.story-snap em { color: #78849a; }

.story-snap strong {
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 25px);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.story-snap.is-active.is-snapping {
  animation: snap-into-phone 1080ms both cubic-bezier(0.2, 0.74, 0.18, 1);
}

.story-outcomes {
  position: absolute;
  z-index: 6;
  right: 4%;
  bottom: 8%;
  min-width: 230px;
}

.story-outcome {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  padding: 10px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(12px) scale(0.94);
  transition: opacity 260ms ease 660ms, transform 360ms cubic-bezier(0.18, 0.78, 0.18, 1) 620ms;
}

.story-outcome.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.story-outcome i {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
}

.story-progress {
  position: absolute;
  z-index: 4;
  right: 4px;
  display: grid;
  gap: 9px;
}

.story-progress i {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  transition: background 240ms ease, transform 240ms ease;
}

.story-progress i.is-active {
  background: var(--white);
  transform: scale(1.5);
}

.action-band {
  padding-block: clamp(100px, 12vw, 170px);
  background: var(--paper);
}

.action-band h2 {
  font-size: clamp(56px, 8vw, 116px);
}

.action-band-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.55;
}

.note-proof {
  display: block;
  margin-top: clamp(72px, 9vw, 126px);
}

.note-action-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
  border-top: 1px solid var(--ink);
}

.note-action-row {
  min-height: 210px;
  display: block;
  padding: 24px 24px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.note-action-row:last-child {
  border-right: 0;
}

.note-action-row > span {
  display: block;
  margin-bottom: clamp(34px, 4vw, 56px);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.note-action-row strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(25px, 2.2vw, 34px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.note-action-row p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.note-action-row:hover {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-6px);
}

.note-action-row:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.action-list {
  margin-top: clamp(72px, 9vw, 126px);
  border-top: 1px solid var(--ink);
}

.action-row {
  min-height: 126px;
  display: grid;
  grid-template-columns: 54px minmax(280px, 0.9fr) minmax(260px, 1.1fr) 30px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  transition: color 200ms ease, padding 200ms ease, background 200ms ease;
}

.action-row > span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.action-row strong {
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 42px);
  letter-spacing: -0.045em;
}

.action-row p {
  margin: 0;
  color: var(--ink-soft);
}

.action-row i {
  font-style: normal;
  font-size: 24px;
  transition: transform 200ms ease;
}

.action-row:hover {
  padding-inline: 18px;
  color: var(--white);
  background: var(--blue);
}

.action-row:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.action-row:hover i {
  transform: translate(4px, -4px);
}

.privacy {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #020815;
}

.privacy::before {
  content: "";
  position: absolute;
  top: -22vw;
  right: -12vw;
  width: 62vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.018), 0 0 0 180px rgba(255, 255, 255, 0.012);
}

.privacy-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

.privacy h2 {
  max-width: 760px;
  font-size: clamp(58px, 8vw, 116px);
}

.privacy-lead {
  max-width: 630px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.55;
}

.privacy-points {
  max-width: 680px;
  margin-top: 58px;
  border-top: 1px solid var(--line-light);
}

.privacy-points > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line-light);
}

.privacy-points span {
  padding-top: 3px;
  color: #74adff;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.privacy-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.privacy-points strong {
  color: var(--white);
}

.text-link-light {
  margin-top: 36px;
  color: var(--white);
}

.privacy-visual {
  position: relative;
  min-height: min(82svh, 850px);
  margin: 0;
  display: grid;
  place-items: center;
}

.privacy-visual img {
  position: relative;
  z-index: 2;
  width: min(480px, 88%);
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 38px 70px rgba(0, 0, 0, 0.55));
  transform: rotate(1.5deg);
}

.privacy-ring {
  position: absolute;
  width: min(46vw, 600px);
  aspect-ratio: 1;
  border: 1px solid rgba(96, 165, 250, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(18, 104, 255, 0.04), 0 0 0 110px rgba(18, 104, 255, 0.025);
}

.privacy-visual figcaption {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 12%;
  padding: 10px 14px;
  color: #cce1ff;
  background: rgba(6, 27, 65, 0.84);
  border: 1px solid rgba(130, 184, 255, 0.26);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.privacy-visual figcaption span {
  margin-right: 7px;
  color: #64a5ff;
}

.faq {
  background: #fbfaf6;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.faq h2 {
  font-size: clamp(50px, 6vw, 82px);
}

.faq-heading > p:last-child {
  max-width: 390px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 730;
  letter-spacing: -0.04em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  flex: 0 0 auto;
  color: var(--blue);
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 720px;
  margin: -4px 0 0;
  padding: 0 70px 30px 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.final-cta {
  position: relative;
  min-height: min(900px, 90svh);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 50% 115%, rgba(126, 190, 255, 0.74), transparent 42%),
    var(--blue);
}

.final-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(84vw, 1100px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(255, 255, 255, 0.035), 0 0 0 200px rgba(255, 255, 255, 0.025), 0 0 0 300px rgba(255, 255, 255, 0.015);
  transform: translate(-50%, -42%);
}

.final-inner {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100vw - 40px));
  display: grid;
  justify-items: center;
}

.final-inner > img {
  width: 88px;
  height: 88px;
  margin-bottom: 24px;
  border-radius: 22px;
  box-shadow: 0 22px 55px rgba(0, 29, 100, 0.34);
}

.final-cta h2 {
  font-size: clamp(64px, 10vw, 142px);
}

.final-cta .final-inner > p:not(.section-number) {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 2vw, 24px);
}

.app-store-button-light {
  margin-top: 34px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 36px max(32px, calc((100vw - 1240px) / 2));
  color: rgba(255, 255, 255, 0.6);
  background: #020815;
  font-size: 13px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 770;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.site-footer > p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.site-footer a {
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-meta {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html.has-js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

html.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-phone-in {
  from { opacity: 0; transform: translate(-44%, -38%) scale(0.88) rotate(5deg); }
  to { opacity: 1; transform: translate(-44%, -47%) scale(1) rotate(1.4deg); }
}

@keyframes raw-left-in {
  from { opacity: 0; transform: translate(38%, -42%) rotate(-2deg) scale(0.9); }
  to { opacity: 1; transform: translate(3%, -48%) rotate(-11deg) scale(1); }
}

@keyframes raw-right-in {
  from { opacity: 0; transform: translate(-38%, -40%) rotate(1deg) scale(0.9); }
  to { opacity: 1; transform: translate(0, -44%) rotate(10deg) scale(1); }
}

@keyframes note-in-right {
  from { opacity: 0; transform: translate(24px, 12px) scale(0.92); }
  to { opacity: 1; transform: translate(0, 0) scale(1); }
}

@keyframes note-in-left {
  from { opacity: 0; transform: translate(-24px, 12px) scale(0.92); }
  to { opacity: 1; transform: translate(0, 0) scale(1); }
}

@keyframes scroll-line {
  0% { transform: translateX(-16px); }
  100% { transform: translateX(42px); }
}

@keyframes thought-scroll {
  to { transform: translateX(-50%); }
}

@keyframes result-switch {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes snap-into-phone {
  0% { opacity: 0; transform: translate(-130px, 84px) rotate(-10deg) scale(0.78); }
  32% { opacity: 1; transform: translate(6px, 0) rotate(-6deg) scale(1); }
  68% { opacity: 1; transform: translate(88px, 12px) rotate(-1deg) scale(0.8); }
  100% { opacity: 0; transform: translate(180px, 34px) rotate(0) scale(0.42); }
}

@media (max-width: 1180px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
  }

  .hero-brand {
    font-size: clamp(86px, 12vw, 140px);
  }

  .hero-promise {
    font-size: clamp(42px, 5.8vw, 63px);
  }

  .hero-action-note {
    min-width: 190px;
  }

  .note-calendar { right: -3%; }
  .note-reminder { left: -1%; }

  .scenario-stage {
    grid-template-columns: minmax(0, 0.9fr) 100px minmax(0, 1.1fr);
  }

  .scenario-connector span {
    width: 64px;
  }
}

@media (max-width: 960px) {
  :root {
    --shell: min(100% - 40px, 760px);
    --header-height: 68px;
  }

  .site-header {
    padding-inline: 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    height: calc(100svh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 26px 20px 44px;
    color: var(--ink);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu > a:not(.nav-download) {
    display: flex;
    align-items: center;
    min-height: 70px;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 25px;
    font-weight: 760;
    letter-spacing: -0.04em;
    opacity: 1;
  }

  .nav-menu > a:not(.nav-download)::after {
    display: none;
  }

  .nav-download {
    min-height: 58px;
    justify-content: center;
    margin-top: auto;
    color: var(--white);
    background: var(--blue);
    border-color: var(--blue);
    border-radius: 12px;
  }

  .hero-inner {
    width: var(--shell);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: calc(var(--header-height) + 60px) 100px;
  }

  .hero-copy {
    max-width: 720px;
    padding-left: 0;
  }

  .hero-brand {
    font-size: clamp(94px, 20vw, 150px);
  }

  .hero-promise {
    font-size: clamp(47px, 9vw, 70px);
  }

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

  .hero-product {
    width: min(370px, 54vw);
    transform: translate(-48%, -48%) rotate(1deg);
  }

  .raw-shot {
    width: min(250px, 32vw);
  }

  .raw-shot-left { left: 2%; }
  .raw-shot-right { right: 2%; }
  .note-calendar { right: 2%; }
  .note-reminder { left: 2%; }

  .scroll-mark {
    display: none;
  }

  .problem .section-shell,
  .demo-head,
  .privacy-shell,
  .faq-shell {
    grid-template-columns: 1fr;
  }

  .problem-copy,
  .demo-head > p {
    max-width: 620px;
  }

  .scenario-stage {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .source-panel {
    min-height: 650px;
  }

  .scenario-connector {
    min-height: 130px;
    grid-template-columns: auto 1fr;
    padding-inline: 32px;
  }

  .scenario-connector i {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--blue), transparent);
  }

  .result-panel {
    min-height: 560px;
  }

  .story-shell {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .story-stage-wrap {
    position: sticky;
    z-index: 3;
    top: var(--header-height);
    order: -1;
    align-self: start;
    background: linear-gradient(to bottom, var(--navy) 80%, transparent);
  }

  .story-stage {
    position: relative;
    top: auto;
    height: min(62svh, 660px);
  }

  .story-device-shell {
    width: auto;
    height: min(92%, 600px);
  }

  .story-step {
    min-height: 64svh;
    padding-block: 70px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  }

  .note-proof {
    margin-top: 64px;
  }

  .note-action-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .note-action-row:nth-child(2n) {
    border-right: 0;
  }

  .action-row {
    grid-template-columns: 42px 1fr auto;
    min-height: 136px;
  }

  .action-row p {
    grid-column: 2 / 3;
    margin-top: -16px;
  }

  .action-row i {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .privacy-visual {
    min-height: 720px;
  }

  .privacy-visual img {
    width: min(480px, 72vw);
  }

  .privacy-ring {
    width: min(620px, 80vw);
  }

  .faq-list {
    margin-top: 28px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > p:not(.footer-meta) {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100vw - 32px);
  }

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

  .hero-inner {
    padding-top: calc(var(--header-height) + 46px);
  }

  .hero-eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
  }

  .hero-brand {
    font-size: clamp(86px, 27vw, 120px);
  }

  .hero-promise {
    margin-top: 18px;
    font-size: clamp(42px, 11.8vw, 56px);
  }

  .hero-lead {
    width: 100%;
    margin-top: 24px;
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .app-store-button {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    line-height: 1.5;
  }

  .hero-visual {
    min-height: 560px;
    margin-inline: -16px;
  }

  .hero-product {
    width: min(302px, 72vw);
    transform: translate(-50%, -48%) rotate(1deg);
  }

  .real-device-shell {
    border-width: 7px;
    border-radius: 48px;
  }

  .hero-product figcaption {
    right: -8%;
    bottom: 3%;
  }

  .raw-shot {
    width: 142px;
    height: 340px;
    border-width: 5px;
    border-radius: 25px;
  }

  .raw-shot-left { left: -7%; }
  .raw-shot-right { right: -7%; }

  .raw-label {
    display: none;
  }

  .hero-action-note {
    min-width: 172px;
    padding: 9px 11px 9px 9px;
  }

  .note-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .note-calendar {
    top: 17%;
    right: -1%;
  }

  .note-reminder {
    bottom: 15%;
    left: -1%;
  }

  .problem-intro h2,
  .demo-head h2,
  .story-heading h2,
  .action-band h2,
  .privacy h2,
  .faq h2 {
    margin-top: 20px;
    font-size: clamp(45px, 14vw, 66px);
  }

  .problem-copy {
    font-size: 16px;
  }

  .thought-stream {
    margin-top: 72px;
  }

  .scenario-tabs {
    grid-template-columns: 1fr;
  }

  .scenario-tab {
    min-height: 60px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .scenario-tab:last-child {
    border-bottom: 0;
  }

  .source-panel {
    min-height: 550px;
    padding: 24px;
  }

  .source-phone {
    top: 74px;
    right: 34px;
    bottom: -102px;
    left: 34px;
    border-width: 7px;
    border-radius: 34px;
  }

  .scenario-connector {
    min-height: 104px;
    padding-inline: 24px;
  }

  .scenario-connector span {
    width: 58px;
  }

  .result-panel {
    min-height: 540px;
    padding: 78px 24px 36px;
  }

  .result-panel .panel-label {
    top: 28px;
    left: 24px;
  }

  .result-panel h3 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .result-panel > p:not(.panel-label) {
    font-size: 16px;
  }

  .story-heading h2 {
    font-size: clamp(49px, 15vw, 70px);
  }

  .story-stage-wrap {
    margin-inline: -16px;
  }

  .story-stage {
    height: 56svh;
  }

  .story-device-shell {
    width: auto;
    height: 92%;
    border-width: 7px;
    border-radius: 44px;
  }

  .story-snap {
    top: 25%;
    left: 2%;
    width: 172px;
    gap: 8px;
    padding: 14px;
    border-radius: 15px;
  }

  .story-snap strong {
    font-size: 18px;
  }

  .story-outcomes {
    right: 1%;
    bottom: 27%;
    min-width: 196px;
  }

  .story-outcome {
    padding: 8px 10px;
    font-size: 8px;
  }

  .story-progress {
    right: 20px;
  }

  .story-step {
    min-height: 60svh;
    grid-template-columns: 36px 1fr;
    gap: 10px;
  }

  .story-step h3 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .story-step p:last-child {
    font-size: 16px;
  }

  .action-band-lead {
    font-size: 17px;
  }

  .note-proof {
    margin-top: 46px;
  }

  .note-action-list {
    grid-template-columns: 1fr;
  }

  .note-action-row {
    min-height: 0;
    padding: 20px 0 24px;
    border-right: 0;
  }

  .note-action-row > span {
    margin-bottom: 18px;
  }

  .note-action-row strong {
    font-size: 30px;
  }

  .note-action-row p {
    font-size: 14px;
  }

  .note-action-row:hover {
    padding-inline: 14px;
    transform: none;
  }

  .action-row {
    min-height: 126px;
    grid-template-columns: 28px 1fr 22px;
    gap: 12px;
  }

  .action-row strong {
    font-size: 29px;
  }

  .action-row p {
    font-size: 14px;
  }

  .action-row:hover {
    padding-inline: 8px;
  }

  .privacy-lead {
    font-size: 18px;
  }

  .privacy-points > div {
    grid-template-columns: 34px 1fr;
  }

  .privacy-visual {
    min-height: 580px;
    margin-inline: -16px;
  }

  .privacy-visual img {
    width: min(350px, 78vw);
  }

  .privacy-visual figcaption {
    right: 2%;
    bottom: 9%;
  }

  .faq-list summary {
    min-height: 92px;
    font-size: 23px;
  }

  .faq-list details > p {
    padding-right: 18px;
    font-size: 16px;
  }

  .final-cta {
    min-height: 740px;
  }

  .final-cta h2 {
    font-size: clamp(60px, 18vw, 84px);
  }

  .final-inner > img {
    width: 72px;
    height: 72px;
  }

  .final-cta .app-store-button {
    width: min(100%, 320px);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-inline: 20px;
  }

  .site-footer > p:not(.footer-meta) {
    grid-column: 1;
    grid-row: auto;
  }

  .site-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

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

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

  .thought-track {
    animation: none;
  }

  .story-snap.is-active {
    opacity: 1;
    transform: translate(-24px, 8px) rotate(-5deg) scale(0.88);
  }

  .story-outcome {
    transition-delay: 0ms;
  }
}
