:root {
  --navy: #050c1d;
  --ink: #0a1733;
  --panel: #102551;
  --mint: #50ebc6;
  --coral: #ff775d;
  --sky: #72b5ff;
  --paper: #f2f5f7;
  --muted: #a9b5c8;
  --line: rgba(255, 255, 255, .11);
  --radius: 30px;
  --shell: min(1200px, calc(100% - 48px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: clip;
  background: var(--navy);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--mint);
  color: var(--navy);
}

.skip-link:focus { top: 12px; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 2px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--mint), var(--sky), var(--coral));
  box-shadow: 0 0 14px rgba(80, 235, 198, .55);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(5, 12, 29, .1);
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s, transform .35s;
}

.site-header.scrolled {
  background: rgba(5, 12, 29, .74);
  border-color: var(--line);
  backdrop-filter: blur(22px) saturate(130%);
}

.nav-shell {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 760;
  letter-spacing: -.6px;
}

.brand img { border-radius: 11px; box-shadow: 0 8px 24px rgba(0, 0, 0, .22); }

.site-header nav,
.footer-grid nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #d3dae5;
  font-size: 14px;
}

.site-header nav > a:not(.nav-cta) { transition: color .2s; }
.site-header nav > a:not(.nav-cta):hover { color: #fff; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 99px;
  background: rgba(255, 255, 255, .075);
  backdrop-filter: blur(12px);
  transition: transform .2s, background .2s;
}

.nav-cta:hover { transform: translateY(-2px); background: rgba(255, 255, 255, .13); }

.hero {
  --hero-art-y: 0px;
  --hero-art-scale: 1.06;
  --hero-copy-y: 0px;
  --hero-phone-y: 0px;
  position: relative;
  min-height: max(820px, 100svh);
  display: grid;
  align-items: center;
  overflow: clip;
  isolation: isolate;
  background: #061027;
}

.hero-backdrop { position: absolute; inset: 0; z-index: -3; overflow: hidden; }

.hero-art {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: 50% 52%;
  filter: saturate(1.04) contrast(1.04);
  transform: translate3d(0, var(--hero-art-y), 0) scale(var(--hero-art-scale));
  transform-origin: 54% 50%;
  will-change: transform;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 12, 29, .96) 0%, rgba(5, 12, 29, .79) 34%, rgba(5, 12, 29, .18) 68%, rgba(5, 12, 29, .38) 100%),
    linear-gradient(180deg, rgba(5, 12, 29, .3), transparent 48%, rgba(5, 12, 29, .86));
}

.hero-glow {
  position: absolute;
  width: 52vw;
  height: 52vw;
  right: -12vw;
  top: 4vh;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 231, 201, .16), transparent 66%);
  filter: blur(18px);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, black, transparent 65%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 4vw;
  min-height: inherit;
  padding-block: 130px 100px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 720px;
  transform: translate3d(0, var(--hero-copy-y), 0);
  will-change: transform;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 1.8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(80, 235, 198, .11), 0 0 18px rgba(80, 235, 198, .7);
  animation: breathe 2.4s ease-in-out infinite;
}

@keyframes breathe {
  50% { box-shadow: 0 0 0 10px rgba(80, 235, 198, .03), 0 0 26px rgba(80, 235, 198, .8); }
}

h1 {
  max-width: 800px;
  margin: 26px 0 30px;
  font-size: clamp(62px, 7.2vw, 108px);
  line-height: .89;
  letter-spacing: -.07em;
  font-weight: 780;
  text-wrap: balance;
}

h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(100deg, #fff 0%, var(--mint) 46%, #87bfff 84%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lede {
  max-width: 620px;
  margin: 0;
  color: #c2cad8;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.primary-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 21px 13px 17px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 17px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
  transition: transform .25s, box-shadow .25s;
}

.primary-button:hover { transform: translateY(-3px); box-shadow: 0 25px 70px rgba(0, 0, 0, .4); }
.primary-button .soon-icon { width: 46px; height: 46px; margin: -6px 0 -6px -10px; border-radius: 12px; box-shadow: 0 7px 18px rgba(4, 18, 44, .22); }
.primary-button span { display: flex; flex-direction: column; }
.primary-button small { font-size: 10px; text-transform: uppercase; letter-spacing: .5px; }
.primary-button strong { font-size: 17px; }
.microcopy { color: #8f9caf; font-size: 12px; line-height: 1.55; }

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: grid;
  place-items: center;
  transform: translate3d(0, var(--hero-phone-y), 0);
  will-change: transform;
  perspective: 1200px;
}

.hero-halo {
  position: absolute;
  width: 490px;
  height: 490px;
  border: 1px solid rgba(104, 188, 255, .22);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(68, 188, 255, .04), 0 0 120px rgba(53, 219, 185, .06);
}

.hero-halo::before,
.hero-halo::after {
  content: "";
  position: absolute;
  inset: 52px;
  border: 1px solid rgba(80, 235, 198, .12);
  border-radius: inherit;
}

.hero-halo::after { inset: -54px; border-color: rgba(255, 119, 93, .1); }

.phone-shadow {
  position: absolute;
  width: 310px;
  height: 90px;
  bottom: 4%;
  border-radius: 50%;
  background: rgba(0, 0, 0, .55);
  filter: blur(26px);
  transform: rotate(-5deg);
}

.phone {
  position: relative;
  width: 324px;
  min-height: 622px;
  padding: 14px 17px 22px;
  border: 7px solid #182640;
  border-radius: 52px;
  background: linear-gradient(160deg, rgba(12, 29, 62, .98), rgba(5, 14, 34, .98) 68%);
  box-shadow: 0 60px 110px rgba(0, 0, 0, .48), 0 0 0 1px rgba(255, 255, 255, .2), inset 0 0 0 1px rgba(255, 255, 255, .04);
  transform: rotate(3deg) rotateY(-6deg);
  transform-style: preserve-3d;
}

.phone::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 44px;
  background: linear-gradient(115deg, rgba(255, 255, 255, .08), transparent 28% 72%, rgba(91, 192, 255, .06));
}

.phone-top { height: 30px; display: flex; align-items: flex-start; justify-content: space-between; padding-inline: 8px; font-size: 10px; font-weight: 700; }
.island { width: 92px; height: 24px; border-radius: 20px; background: #02050d; }
.phone-heading { display: flex; justify-content: space-between; align-items: center; padding: 7px 3px 16px; }
.phone-heading div { display: flex; flex-direction: column; }
.phone-heading small { color: #9eabbc; font-size: 9px; }
.phone-heading strong { font-size: 22px; }
.phone-heading button { width: 34px; height: 34px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .08); color: #fff; }

.signal-card {
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(26, 59, 123, .92), rgba(10, 27, 61, .96));
  box-shadow: 0 22px 40px rgba(0, 0, 0, .27), inset 0 1px rgba(255, 255, 255, .08);
  transition: opacity .22s, transform .22s;
}

.signal-card.changing { opacity: .18; transform: translateY(8px) scale(.985); }
.signal-label { display: flex; align-items: center; gap: 7px; color: var(--mint); font-size: 9px; font-weight: 800; letter-spacing: 1.2px; }
.signal-label i { width: 6px; height: 6px; margin-left: auto; border-radius: 50%; background: var(--mint); box-shadow: 0 0 9px var(--mint); }
.signal-card h2 { margin: 18px 0 10px; font-size: 28px; line-height: 1.05; letter-spacing: -1px; }
.signal-card p { min-height: 36px; color: #aeb9c9; font-size: 12px; line-height: 1.5; }
.signal-card button { width: 100%; margin-top: 11px; padding: 12px 14px; border: 0; border-radius: 13px; background: var(--mint); color: var(--navy); font-size: 12px; font-weight: 800; text-align: left; }
.signal-card button span { float: right; }
.context-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 12px; }
.context-row > div { display: grid; grid-template-columns: 25px 1fr; align-items: center; padding: 12px; border: 1px solid rgba(255, 255, 255, .04); border-radius: 15px; background: rgba(255, 255, 255, .055); }
.context-row > div > span { grid-row: 1 / 3; color: var(--mint); }
.context-row strong { font-size: 14px; }
.context-row small { color: #8795a9; font-size: 8px; }
.later { margin-top: 17px; }
.later h3 { font-size: 15px; }
.later > div { display: grid; grid-template-columns: 55px 1fr; padding: 11px 4px; border-top: 1px solid rgba(255, 255, 255, .07); }
.later time { color: var(--mint); font-size: 9px; font-weight: 700; }
.later span { display: flex; flex-direction: column; }
.later b { font-size: 11px; }
.later small { margin-top: 3px; color: #7e8ca0; font-size: 8px; }

.scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i { position: relative; width: 1px; height: 34px; overflow: hidden; background: rgba(255, 255, 255, .22); }
.scroll-cue i::after { content: ""; position: absolute; inset: -100% 0 auto; height: 100%; background: #fff; animation: scroll-line 2s ease-in-out infinite; }
@keyframes scroll-line { 70%, 100% { transform: translateY(200%); } }

.trust-strip { border-block: 1px solid var(--line); background: rgba(255, 255, 255, .025); }
.trust-grid { min-height: 88px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; color: #91a0b4; font-size: 12px; font-weight: 650; letter-spacing: .3px; text-align: center; }
.trust-grid span + span { border-left: 1px solid var(--line); }

.section { padding-block: 150px; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; column-gap: 70px; align-items: end; margin-bottom: 62px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: 22px; }
.section-heading h2,
.glance-copy h2,
.privacy-card h2,
.final-card h2,
.story-chapter h2 { margin: 0; font-size: clamp(44px, 5vw, 72px); line-height: .96; letter-spacing: -.055em; }
.section-heading p { margin: 0; color: #9ba9bb; font-size: 17px; line-height: 1.72; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 350px; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(155deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .02)); transition: transform .35s, border-color .35s, background .35s; }
.feature-card::before { content: ""; position: absolute; width: 210px; height: 210px; right: -100px; top: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(80, 235, 198, .15), transparent 68%); opacity: 0; transition: opacity .35s; }
.feature-card:hover { transform: translateY(-8px); border-color: rgba(80, 235, 198, .28); background: linear-gradient(155deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .025)); }
.feature-card:hover::before { opacity: 1; }
.feature-number { position: absolute; right: 26px; top: 26px; color: #5e6e86; font: 600 11px ui-monospace, monospace; }
.feature-icon { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(80, 235, 198, .12); border-radius: 19px; background: rgba(80, 235, 198, .075); color: var(--mint); font-size: 25px; }
.feature-card h3 { margin: 78px 0 13px; font-size: 24px; letter-spacing: -.5px; }
.feature-card p { margin: 0; color: #9daabd; line-height: 1.67; }
.card-line { position: absolute; inset: auto 30px 24px; height: 1px; background: linear-gradient(90deg, rgba(80, 235, 198, .65), transparent); transform: scaleX(.18); transform-origin: left; transition: transform .45s; }
.feature-card:hover .card-line { transform: scaleX(1); }

.motion-story {
  --story-x: 0px;
  --story-y: 0px;
  --story-scale: 1.08;
  --story-rotate: 0deg;
  --story-rotate-reverse: 0deg;
  --machine-y: 0px;
  --calendar-x: 0px;
  --calendar-y: 0px;
  --weather-x: 0px;
  --weather-y: 0px;
  position: relative;
  height: 300vh;
  border-block: 1px solid rgba(255, 255, 255, .08);
  background: #050c1d;
}

.story-sticky { position: sticky; top: 0; min-height: 100svh; display: grid; align-items: center; overflow: clip; isolation: isolate; }
.story-atmosphere { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.story-atmosphere img { width: 115%; height: 115%; object-fit: cover; object-position: 63% 50%; opacity: .64; filter: saturate(.85) brightness(.7); transform: translate3d(var(--story-x), var(--story-y), 0) scale(var(--story-scale)); will-change: transform; }
.story-wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 12, 29, .98) 0%, rgba(5, 12, 29, .87) 40%, rgba(5, 12, 29, .36) 75%, rgba(5, 12, 29, .72)), linear-gradient(180deg, rgba(5, 12, 29, .64), transparent 48%, rgba(5, 12, 29, .78)); }
.story-orbit { position: absolute; border: 1px solid rgba(80, 235, 198, .16); border-radius: 50%; transform: rotate(var(--story-rotate)); will-change: transform; }
.orbit-a { width: 62vw; height: 62vw; right: -19vw; top: -18vw; }
.orbit-b { width: 42vw; height: 42vw; right: 2vw; bottom: -19vw; border-color: rgba(108, 181, 255, .16); transform: rotate(var(--story-rotate-reverse)); }

.story-grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 6vw; min-height: 100svh; padding-block: 110px 70px; }
.story-copy { position: relative; min-height: 470px; display: flex; align-items: center; }
.story-kicker { position: absolute; left: 0; top: 0; display: flex; align-items: center; gap: 12px; color: #8391a7; font: 650 11px ui-monospace, monospace; }
.story-kicker i { width: 70px; height: 1px; background: linear-gradient(90deg, var(--mint), rgba(255, 255, 255, .14)); }
.story-chapter { position: absolute; inset: 90px 0 auto; opacity: 0; transform: translateY(34px); pointer-events: none; transition: opacity .55s ease, transform .65s cubic-bezier(.2, .8, .2, 1); }
.story-chapter.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.story-chapter .eyebrow { margin-bottom: 24px; }
.story-chapter p { max-width: 480px; margin: 28px 0 0; color: #b6c0ce; font-size: 18px; line-height: 1.7; }

.context-machine { position: relative; width: min(540px, 46vw); aspect-ratio: 1; margin-left: auto; display: grid; place-items: center; transform: translate3d(0, var(--machine-y), 0); will-change: transform; }
.machine-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .12); box-shadow: inset 0 0 70px rgba(80, 235, 198, .025); }
.ring-outer { inset: 3%; border-color: rgba(80, 235, 198, .22); box-shadow: 0 0 90px rgba(80, 235, 198, .07), inset 0 0 100px rgba(80, 235, 198, .04); }
.ring-outer::after { content: ""; position: absolute; width: 9px; height: 9px; top: 17%; right: 10%; border-radius: 50%; background: var(--mint); box-shadow: 0 0 18px var(--mint); }
.ring-inner { inset: 24%; border-color: rgba(114, 181, 255, .24); }
.machine-core { position: absolute; z-index: 2; width: 88px; height: 88px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .2); border-radius: 28px; background: linear-gradient(145deg, rgba(25, 56, 117, .94), rgba(8, 25, 57, .97)); color: var(--mint); font-size: 46px; font-weight: 800; box-shadow: 0 26px 70px rgba(0, 0, 0, .38), 0 0 50px rgba(80, 235, 198, .08); transform: rotate(-6deg); }
.source-chip { position: absolute; z-index: 3; min-width: 190px; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 18px; background: rgba(11, 26, 58, .72); box-shadow: 0 18px 50px rgba(0, 0, 0, .28); backdrop-filter: blur(18px); will-change: transform; }
.source-chip > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: rgba(80, 235, 198, .09); color: var(--mint); }
.source-chip div { display: flex; flex-direction: column; gap: 4px; }
.source-chip small { color: #7f8da2; font-size: 8px; font-weight: 750; letter-spacing: 1.4px; }
.source-chip strong { font-size: 13px; }
.calendar-chip { left: -4%; top: 24%; transform: translate3d(var(--calendar-x), var(--calendar-y), 0); }
.weather-chip { right: -3%; top: 48%; transform: translate3d(var(--weather-x), var(--weather-y), 0); }
.weather-chip > span { background: rgba(114, 181, 255, .1); color: var(--sky); }
.focus-cue { position: absolute; z-index: 4; right: 5%; bottom: 0; width: 278px; padding: 23px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 26px; background: linear-gradient(145deg, rgba(28, 61, 127, .9), rgba(9, 25, 58, .95)); box-shadow: 0 30px 90px rgba(0, 0, 0, .42); backdrop-filter: blur(18px); transform: translate3d(0, var(--machine-y), 0) rotate(2deg); }
.focus-cue small { color: var(--mint); font-size: 9px; font-weight: 800; letter-spacing: 1.4px; }
.focus-cue h3 { margin: 20px 0 10px; font-size: 29px; line-height: 1.02; letter-spacing: -.9px; }
.focus-cue p { min-height: 36px; margin: 0 0 18px; color: #aab6c8; font-size: 12px; line-height: 1.5; }
.focus-cue > div { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid rgba(255, 255, 255, .1); color: var(--mint); font-size: 11px; font-weight: 720; }
.focus-cue b { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--navy); }

.glance-section { position: relative; overflow: hidden; padding-block: 150px; background: var(--paper); color: var(--navy); }
.glance-grid { display: grid; grid-template-columns: .83fr 1.17fr; gap: 8vw; align-items: center; }
.glance-copy .eyebrow { color: #148c75; }
.glance-copy h2 { margin: 24px 0; }
.glance-copy p { color: #536078; font-size: 17px; line-height: 1.72; }
.glance-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 28px; padding: 0; list-style: none; }
.glance-copy li { color: #2d3d5a; font-size: 14px; }
.glance-copy li::before { content: "✓"; margin-right: 8px; color: #148c75; }
.widget-stage { position: relative; min-height: 570px; display: grid; place-items: center; }
.widget-backdrop { position: absolute; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #dffbf3, #dce7f2 52%, transparent 72%); filter: blur(2px); }
.widget-backdrop::after { content: ""; position: absolute; inset: 44px; border: 1px solid rgba(9, 24, 52, .08); border-radius: inherit; }
.widget-stack { position: relative; z-index: 2; width: min(520px, 100%); display: grid; gap: 16px; transform: rotate(-2deg); }
.widget { border: 1px solid rgba(255, 255, 255, .1); border-radius: 30px; background: linear-gradient(145deg, #163370, #081733); color: #fff; box-shadow: 0 35px 80px rgba(20, 40, 75, .22), inset 0 1px rgba(255, 255, 255, .11); }
.widget-wide { min-height: 195px; display: flex; flex-direction: column; padding: 29px; }
.widget span { color: var(--mint); font-size: 10px; font-weight: 800; letter-spacing: 1.4px; }
.widget strong { margin-top: 30px; font-size: 29px; }
.widget small { margin-top: 8px; color: #a5b2c5; }
.widget-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.widget-small { aspect-ratio: 1; display: flex; flex-direction: column; padding: 23px; }
.widget-small strong { margin-top: auto; font-size: 22px; }
.lock-widget { aspect-ratio: 1; display: grid; place-content: center; gap: 12px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 30px; background: linear-gradient(145deg, #283243, #111827); color: #fff; box-shadow: 0 30px 70px rgba(20, 40, 75, .2); text-align: center; }
.lock-widget span { width: 58px; height: 58px; display: grid; place-items: center; margin: auto; border: 3px solid var(--mint); border-radius: 50%; color: var(--mint); font-size: 25px; }

.privacy-section { padding-block: 140px; }
.privacy-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; padding: 62px; border: 1px solid var(--line); border-radius: 38px; background: linear-gradient(130deg, #112b5d, #081834); }
.privacy-card::before { content: ""; position: absolute; width: 460px; height: 460px; right: -210px; bottom: -260px; border-radius: 50%; background: radial-gradient(circle, rgba(80, 235, 198, .18), transparent 68%); }
.privacy-card .eyebrow { margin-bottom: 25px; }
.privacy-card p { margin-top: 2px; color: #b1bccb; font-size: 17px; line-height: 1.8; }
.privacy-card a { display: inline-block; margin-top: 18px; color: var(--mint); font-weight: 700; }
.privacy-orb { position: absolute; right: 34px; bottom: 30px; width: 70px; height: 70px; display: grid; place-items: center; border: 1px solid rgba(80, 235, 198, .24); border-radius: 50%; background: rgba(80, 235, 198, .08); box-shadow: 0 0 50px rgba(80, 235, 198, .08); }
.privacy-orb span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--navy); font-weight: 900; }

.final-cta { padding-bottom: 130px; }
.final-card { position: relative; overflow: hidden; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; padding: 45px; border-radius: 36px; background: linear-gradient(105deg, #52ebc7, #7ee6dc 56%, #86bfff); color: var(--navy); box-shadow: 0 34px 90px rgba(0, 0, 0, .2); }
.final-card::after { content: ""; position: absolute; width: 260px; height: 260px; right: 18%; top: -160px; border: 1px solid rgba(7, 19, 47, .14); border-radius: 50%; }
.final-card img { position: relative; z-index: 1; border-radius: 25px; box-shadow: 0 15px 35px rgba(5, 16, 39, .2); }
.final-card .eyebrow { margin-bottom: 14px; color: #126e61; }
.final-card h2 { font-size: 43px; letter-spacing: -.045em; }
.price { display: flex; flex-direction: column; padding-left: 35px; border-left: 1px solid rgba(7, 19, 47, .2); }
.price strong { font-size: 46px; letter-spacing: -2px; }
.price span { font-size: 13px; line-height: 1.35; }

footer { padding-block: 42px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; }
.footer-grid p { color: #7f8da1; }
.footer-grid small { grid-column: 1 / -1; margin-top: 22px; color: #596a83; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .85s cubic-bezier(.2, .8, .2, 1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr .68fr; gap: 0; }
  .hero-copy { max-width: 670px; }
  .hero h1 { font-size: clamp(62px, 8.5vw, 88px); }
  .phone { transform: scale(.86) rotate(3deg) rotateY(-6deg); }
  .hero-halo { width: 400px; height: 400px; }
  .story-grid { grid-template-columns: .9fr 1.1fr; gap: 20px; }
  .context-machine { width: min(480px, 49vw); }
  .source-chip { min-width: 172px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 36px, 1200px); }
  .site-header nav a:not(.nav-cta) { display: none; }
  .hero { min-height: 1100px; }
  .hero-backdrop::after { background: linear-gradient(180deg, rgba(5, 12, 29, .95) 0%, rgba(5, 12, 29, .72) 50%, rgba(5, 12, 29, .8) 100%); }
  .hero-art { width: 140%; max-width: none; margin-left: -40%; object-position: 65% 50%; }
  .hero-grid { grid-template-columns: 1fr; align-content: center; gap: 8px; padding-top: 120px; }
  .hero-copy { max-width: 700px; }
  .hero h1 { max-width: 620px; }
  .hero-visual { min-height: 610px; }
  .section-heading,
  .glance-grid,
  .privacy-card { grid-template-columns: 1fr; }
  .section-heading p { margin-top: 26px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 270px; }
  .feature-card h3 { margin-top: 48px; }
  .motion-story { height: 330vh; }
  .story-grid { grid-template-columns: 1fr; align-content: center; gap: 5vh; padding-top: 96px; }
  .story-copy { min-height: 320px; }
  .story-chapter { inset: 65px 0 auto; }
  .story-chapter h2 { font-size: clamp(42px, 8vw, 62px); }
  .story-chapter p { font-size: 16px; }
  .context-machine { width: min(480px, 82vw); margin-inline: auto; }
  .glance-grid { gap: 60px; }
  .privacy-card { gap: 36px; padding: 42px; }
  .final-card { grid-template-columns: auto 1fr; }
  .price { grid-column: 2; padding: 0; border: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid nav { justify-content: flex-start; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px; padding-block: 26px; }
  .trust-grid span + span { border: 0; }
}

@media (max-width: 560px) {
  :root { --shell: min(100% - 28px, 1200px); }
  .nav-shell { height: 68px; }
  .brand { font-size: 19px; }
  .brand img { width: 34px; height: 34px; }
  .nav-cta { padding: 9px 13px; }
  .hero { min-height: 1030px; }
  .hero-grid { padding-block: 105px 60px; }
  .hero h1 { margin-top: 22px; font-size: 54px; letter-spacing: -.06em; }
  .hero-lede { font-size: 16px; }
  .microcopy { display: none; }
  .hero-visual { min-height: 555px; margin-top: -5px; }
  .phone { transform: scale(.79) rotate(2deg); }
  .hero-halo { width: 340px; height: 340px; }
  .phone-shadow { width: 250px; bottom: 7%; }
  .scroll-cue { display: none; }
  .section { padding-block: 98px; }
  .section-heading h2,
  .glance-copy h2,
  .privacy-card h2 { font-size: 43px; }
  .section-heading { margin-bottom: 42px; }
  .motion-story { height: 300vh; }
  .story-grid { padding-top: 86px; gap: 2vh; }
  .story-copy { min-height: 340px; }
  .story-chapter h2 { font-size: 42px; }
  .story-chapter p { margin-top: 20px; font-size: 15px; }
  .context-machine { width: 94vw; max-width: 390px; }
  .source-chip { min-width: 152px; padding: 10px 12px; }
  .source-chip strong { font-size: 11px; }
  .calendar-chip { left: -3%; }
  .weather-chip { right: -3%; }
  .focus-cue { right: 2%; width: 235px; padding: 18px; }
  .focus-cue h3 { font-size: 24px; }
  .glance-section { padding-block: 100px; }
  .glance-copy ul { grid-template-columns: 1fr; }
  .widget-stage { min-height: 520px; }
  .widget-backdrop { width: 420px; height: 420px; }
  .widget-row { grid-template-columns: 1fr 1fr; }
  .widget-small strong { font-size: 18px; }
  .privacy-card { padding: 30px 26px 90px; }
  .privacy-orb { right: 24px; bottom: 20px; }
  .final-card { grid-template-columns: 1fr; padding: 30px; }
  .final-card h2 { font-size: 34px; }
  .price { grid-column: auto; }
  .footer-grid nav { gap: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-art,
  .hero-copy,
  .hero-visual,
  .story-atmosphere img,
  .context-machine,
  .calendar-chip,
  .weather-chip,
  .focus-cue { transform: none !important; }
  .motion-story { height: auto; }
  .story-sticky { position: relative; min-height: auto; }
  .story-grid { padding-block: 110px; }
  .story-copy { display: grid; gap: 44px; }
  .story-kicker { display: none; }
  .story-chapter { position: relative; inset: auto; opacity: 1; transform: none; }
}
