:root {
  --navy-950: #051426;
  --navy-900: #07192f;
  --navy-800: #0b2748;
  --navy-700: #113a5d;
  --teal-700: #006c66;
  --teal-600: #007f78;
  --teal-500: #139f96;
  --mint: #77d7ce;
  --gold: #e5b94b;
  --cream: #fff8ea;
  --mist: #f3f7f8;
  --ice: #eaf4f4;
  --ink: #132232;
  --slate: #4c5c69;
  --muted: #71808d;
  --line: #dce6e9;
  --white: #ffffff;
  --page: min(1180px, calc(100% - 40px));
  --shadow-sm: 0 12px 34px rgba(5, 20, 38, 0.08);
  --shadow-lg: 0 34px 90px rgba(5, 20, 38, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  min-width: 280px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.copy-protected, body.copy-protected img { -webkit-user-select: none; user-select: none; -webkit-user-drag: none; }

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }
figure, p { margin: 0; }
.container { width: var(--page); margin-inline: auto; }
.narrow { max-width: 770px; }
.centered { margin-inline: auto; text-align: center; }
.section { padding: 108px 0; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 15px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
  font-weight: 800;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(11, 39, 72, 0.08);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}
.site-header.scrolled { background: rgba(255, 255, 255, 0.95); box-shadow: 0 8px 30px rgba(5, 20, 38, 0.07); }
.nav { min-height: 74px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--navy-900); font-weight: 850; letter-spacing: -0.025em; }
.brand img { width: 42px; height: 42px; border-radius: 13px; box-shadow: 0 8px 22px rgba(0, 127, 120, 0.18); }
.brand span { font-size: 19px; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; color: var(--slate); font-size: 14px; font-weight: 700; }
.nav-links a { padding: 9px 2px; }
.nav-links a:hover { color: var(--teal-600); }
.menu-button { display: none; width: 44px; height: 44px; margin-left: auto; padding: 11px; border: 0; border-radius: 12px; background: transparent; }
.menu-button span { display: block; width: 22px; height: 2px; margin: 4px auto; border-radius: 2px; background: var(--navy-900); transition: 180ms ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 820;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover:not([aria-disabled="true"]) { transform: translateY(-2px); }
.button-small { min-height: 40px; padding: 9px 15px; border-radius: 12px; font-size: 13px; }
.button-outline { border-color: rgba(11, 39, 72, 0.16); color: var(--navy-800); background: rgba(255, 255, 255, 0.7); }
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--teal-600), var(--teal-700)); box-shadow: 0 14px 30px rgba(0, 127, 120, 0.25); }
.button-core-features { cursor: pointer; color: var(--white); background: linear-gradient(135deg, var(--navy-900), #174f69); box-shadow: 0 14px 30px rgba(7, 25, 47, 0.2); }
.button-video { color: var(--navy-950); border-color: rgba(205, 159, 42, 0.36); background: linear-gradient(135deg, #f4cf68, var(--gold)); box-shadow: 0 14px 30px rgba(205, 159, 42, 0.22); }
.play-mark { display: grid; width: 25px; height: 25px; place-items: center; padding-left: 2px; border-radius: 50%; background: var(--navy-950); color: var(--white); font-size: 9px; }
.button-quiet { color: var(--navy-800); border-color: rgba(11, 39, 72, 0.09); background: rgba(255, 255, 255, 0.78); }
.button-gold { color: var(--navy-950); background: var(--gold); white-space: nowrap; }
.button[aria-disabled="true"] { cursor: not-allowed; opacity: 0.62; filter: saturate(0.6); }

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  padding: 154px 0 92px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbfa 68%, #ffffff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(11, 39, 72, 0.08) 1px, transparent 1px);
  background-size: 27px 27px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb-one { width: 560px; height: 560px; top: 70px; right: -230px; background: rgba(119, 215, 206, 0.23); }
.hero-orb-two { width: 340px; height: 340px; bottom: -60px; left: -160px; background: rgba(229, 185, 75, 0.12); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 70px; align-items: center; }
.eyebrow, .kicker { margin: 0 0 18px; color: var(--teal-600); font-size: 12px; font-weight: 900; letter-spacing: 0.17em; }
.kicker-light { color: var(--mint); }
h1, h2, h3 { margin: 0; line-height: 1.06; letter-spacing: -0.045em; text-wrap: balance; }
h1 { max-width: 720px; color: var(--navy-950); font-size: clamp(3.4rem, 6vw, 5.1rem); }
h1 em { color: var(--teal-600); font-style: normal; }
h2 { color: var(--navy-900); font-size: clamp(2.45rem, 4.3vw, 3.65rem); }
h3 { color: var(--navy-900); font-size: 1.52rem; }
.lede { max-width: 680px; margin: 27px 0 29px; color: var(--slate); font-size: 18px; line-height: 1.72; }
.audience-panel { width: min(680px, 100%); margin: -7px 0 27px; padding: 24px; border: 1px solid rgba(0, 127, 120, 0.2); border-radius: 22px; background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(226, 247, 243, 0.92)); box-shadow: 0 18px 46px rgba(5, 20, 38, 0.08); }
.audience-heading { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 6px 16px; margin-bottom: 16px; }
.audience-heading span { color: var(--teal-700); font-size: 15px; font-weight: 950; letter-spacing: 0.11em; }
.audience-heading strong { color: var(--navy-900); font-size: 16px; }
.audience-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.audience-list a { display: grid; grid-template-columns: 9px 1fr auto; min-height: 50px; align-items: center; gap: 9px; padding: 10px 12px; border: 1px solid rgba(11, 39, 72, 0.1); border-radius: 12px; background: rgba(255, 255, 255, 0.9); color: var(--navy-800); font-size: 12px; font-weight: 850; line-height: 1.3; transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.audience-list a::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(145deg, var(--teal-500), var(--teal-700)); box-shadow: 0 0 0 3px rgba(19, 159, 150, 0.1); }
.audience-list a::after { content: "↘"; color: var(--teal-700); font-size: 14px; }
.audience-list a:hover { transform: translateY(-2px); border-color: rgba(0, 127, 120, 0.32); box-shadow: 0 10px 25px rgba(5, 20, 38, 0.08); }
.audience-panel > p { margin-top: 14px; color: var(--slate); font-size: 11px; font-weight: 750; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.release-note { margin-top: 13px; color: var(--muted); font-size: 12px; }
.platform-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 13px; }
.platform-badge { display: inline-grid; grid-template-columns: 34px auto; align-items: center; gap: 9px; min-width: 142px; padding: 8px 11px; border: 1px solid rgba(11, 39, 72, 0.11); border-radius: 14px; background: rgba(255, 255, 255, 0.78); color: var(--navy-900); box-shadow: 0 8px 22px rgba(5, 20, 38, 0.045); font-size: 13px; font-weight: 850; line-height: 1.15; text-align: left; }
.platform-badge small { display: block; margin-bottom: 2px; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.platform-mark { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; color: var(--white); font-size: 13px; font-weight: 950; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25); }
.platform-android { background: linear-gradient(145deg, #2f8f67, #17644d); }
.platform-ios { background: linear-gradient(145deg, #34475c, #0b1727); font-family: Georgia, serif; font-size: 16px; }
.proof-row { display: flex; gap: 34px; margin: 42px 0 0; padding: 27px 0 0; border-top: 1px solid rgba(11, 39, 72, 0.1); list-style: none; }
.proof-row li { display: flex; max-width: 140px; flex-direction: column; }
.proof-row strong { color: var(--navy-800); font-size: 27px; line-height: 1.2; }
.proof-row span { margin-top: 4px; color: var(--muted); font-size: 11px; line-height: 1.38; }

.hero-visual { position: relative; min-height: 625px; }
.device { position: absolute; overflow: hidden; margin: 0; border: 7px solid #102238; border-radius: 41px; background: #eaf2f4; box-shadow: var(--shadow-lg); }
.device img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.device-main { z-index: 2; top: 0; right: 68px; width: 300px; height: 650px; transform: rotate(1.3deg); }
.device-back { top: 58px; left: 4px; width: 254px; height: 560px; transform: rotate(-5.5deg); opacity: 0.88; }
.floating-note { position: absolute; z-index: 4; display: flex; max-width: 242px; align-items: center; gap: 11px; padding: 13px 15px; border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 18px; background: rgba(255, 255, 255, 0.94); box-shadow: 0 20px 55px rgba(5, 20, 38, 0.15); backdrop-filter: blur(14px); }
.floating-note > span { display: grid; width: 36px; height: 36px; flex: 0 0 36px; place-items: center; border-radius: 11px; background: var(--ice); color: var(--teal-700); font-size: 11px; font-weight: 900; }
.floating-note p { color: var(--ink); font-size: 12px; font-weight: 800; line-height: 1.3; }
.floating-note small { display: block; margin-bottom: 2px; color: var(--muted); font-size: 10px; font-weight: 600; }
.floating-note-one { top: 110px; right: -8px; }
.floating-note-two { bottom: 12px; left: 2px; }

.trust-strip { padding: 18px 0; border-block: 1px solid rgba(11, 39, 72, 0.08); background: var(--white); }
.trust-items { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 17px; color: #667480; font-size: 10px; font-weight: 850; letter-spacing: 0.13em; text-transform: uppercase; }
.trust-items i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.video-tour { position: relative; overflow: hidden; padding: 86px 0; background: var(--navy-950); }
.video-tour::before { content: ""; position: absolute; width: 720px; height: 720px; top: -310px; right: -250px; border-radius: 50%; background: radial-gradient(circle, rgba(19, 159, 150, 0.27), transparent 68%); pointer-events: none; }
.video-tour::after { content: ""; position: absolute; width: 540px; height: 540px; bottom: -330px; left: -150px; border-radius: 50%; background: radial-gradient(circle, rgba(229, 185, 75, 0.17), transparent 70%); pointer-events: none; }
.video-tour-card { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 0.78fr; gap: 84px; align-items: center; }
.video-tour-copy h2 { max-width: 680px; color: var(--white); font-size: clamp(2.5rem, 4.5vw, 4rem); }
.video-tour-copy > p:not(.kicker):not(.video-note) { max-width: 650px; margin-top: 24px; color: rgba(232, 243, 245, 0.76); font-size: 17px; }
.video-tour-copy ul { display: grid; gap: 11px; margin: 30px 0 0; padding: 0; list-style: none; }
.video-tour-copy li { display: grid; grid-template-columns: 46px 108px 1fr; min-height: 68px; align-items: center; gap: 14px; padding: 11px 16px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 17px; background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(119, 215, 206, 0.055)); }
.video-tour-copy li > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; background: linear-gradient(145deg, var(--teal-500), var(--teal-700)); color: var(--white); font-size: 10px; font-weight: 950; }
.video-tour-copy li strong { color: var(--white); font-size: 14px; }
.video-tour-copy li small { color: rgba(224, 238, 241, 0.68); font-size: 11px; line-height: 1.45; }
.video-note { margin-top: 18px; color: var(--mint); font-size: 11px; font-weight: 750; }
.promo-device { position: relative; width: min(390px, 100%); margin-inline: auto; padding: 12px 12px 54px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 48px; background: linear-gradient(155deg, #344355, #0a1726 55%, #06111d); box-shadow: 0 42px 95px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.18); }
.promo-device::before { content: ""; position: absolute; z-index: 2; width: 92px; height: 22px; top: 21px; left: 50%; border-radius: 999px; background: #030914; transform: translateX(-50%); pointer-events: none; }
.promo-device video { display: block; width: 100%; aspect-ratio: 9 / 16; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 36px; background: #07192f; object-fit: cover; }
.promo-device-label { position: absolute; right: 0; bottom: 17px; left: 0; display: flex; align-items: center; justify-content: center; gap: 8px; color: rgba(232, 243, 245, 0.7); font-size: 8px; font-weight: 900; letter-spacing: 0.13em; }
.promo-device-label i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(229, 185, 75, 0.11); }

.use-cases { overflow: hidden; padding: 86px 0 92px; background: linear-gradient(145deg, #f4fbfa 0%, #ffffff 52%, #fff9ed 100%); }
.use-case-heading { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 80px; align-items: end; }
.use-case-heading h2 { max-width: 620px; font-size: clamp(2.25rem, 4vw, 3.45rem); }
.use-case-heading > p { padding-bottom: 5px; color: var(--slate); font-size: 16px; }
.use-case-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 40px; }
.use-case { position: relative; overflow: hidden; min-height: 218px; padding: 26px 24px; border: 1px solid rgba(11, 39, 72, 0.1); border-radius: 22px; background: rgba(255, 255, 255, 0.86); box-shadow: 0 15px 42px rgba(5, 20, 38, 0.055); }
.use-case::after { content: ""; position: absolute; width: 95px; height: 95px; right: -42px; bottom: -42px; border-radius: 50%; background: radial-gradient(circle, rgba(119, 215, 206, 0.2), transparent 68%); }
.use-case > span { display: inline-flex; min-height: 28px; align-items: center; padding: 5px 9px; border: 1px solid rgba(0, 127, 120, 0.14); border-radius: 9px; background: linear-gradient(145deg, #e5f7f4, #f8fcfb); color: var(--teal-700); font-size: 8px; font-weight: 950; letter-spacing: 0.12em; }
.use-case h3 { margin: 20px 0 10px; font-size: 18px; line-height: 1.25; letter-spacing: -0.025em; }
.use-case p { color: var(--slate); font-size: 12px; line-height: 1.62; }

.audience-showcase { overflow: hidden; padding-top: 94px; background: var(--white); }
.audience-showcase .narrow > p:last-child { color: var(--slate); font-size: 16px; }
.audience-screen-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 42px; }
.audience-screen { overflow: hidden; border: 1px solid rgba(11, 39, 72, 0.1); border-radius: 23px; background: linear-gradient(145deg, #f4fbfa, #ffffff); box-shadow: 0 18px 48px rgba(5, 20, 38, 0.1); transition: transform 180ms ease, box-shadow 180ms ease; }
.audience-screen:hover { transform: translateY(-4px); box-shadow: 0 25px 58px rgba(5, 20, 38, 0.15); }
.audience-screen img { width: 100%; height: 470px; object-fit: cover; object-position: top; background: var(--ice); }
.audience-screen > span { display: grid; gap: 4px; min-height: 94px; align-content: center; padding: 16px 18px; }
.audience-screen strong { color: var(--navy-900); font-size: 14px; }
.audience-screen small { color: var(--slate); font-size: 10px; line-height: 1.5; }

.intro h2, .opportunity-section h2, .stay-sharp h2, .all-features h2, .faq h2 { margin-bottom: 20px; }
.intro .narrow > p:last-child, .opportunity-section .narrow > p:last-child, .all-features .narrow > p:last-child { color: var(--slate); font-size: 18px; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.pillar { position: relative; overflow: hidden; padding: 34px; border: 1px solid var(--line); border-radius: 25px; background: linear-gradient(145deg, #ffffff, #f8fbfb); box-shadow: 0 15px 48px rgba(5, 20, 38, 0.055); }
.pillar-number { position: absolute; top: 10px; right: 18px; color: #edf2f3; font-size: 44px; font-weight: 900; }
.pillar-mark { display: grid; width: 51px; height: 51px; margin-bottom: 24px; place-items: center; border-radius: 15px; background: linear-gradient(135deg, var(--navy-800), var(--teal-600)); color: var(--white); font-weight: 900; }
.pillar p { margin: 14px 0 20px; color: var(--slate); font-size: 14px; }
.pillar a { color: var(--teal-700); font-size: 13px; font-weight: 850; }

.story { overflow: hidden; color: var(--white); }
.story-navy { background: linear-gradient(145deg, var(--navy-950), var(--navy-800) 55%, #0d4b54); }
.story-teal { background: linear-gradient(145deg, #063b42, var(--teal-700) 58%, var(--navy-800)); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 82px; align-items: center; }
.story-reverse .story-copy { order: 2; }
.story-reverse .screen-stack { order: 1; }
.story-copy h2 { color: var(--white); margin-bottom: 24px; }
.story-copy > p:not(.kicker) { color: rgba(255, 255, 255, 0.75); font-size: 17px; }
.check-list { display: grid; gap: 4px; margin: 27px 0 30px; padding: 0; list-style: none; }
.check-list li { position: relative; display: flex; flex-direction: column; padding: 8px 0 8px 28px; color: rgba(255, 255, 255, 0.75); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 8px; color: var(--gold); font-weight: 900; }
.check-list strong { color: var(--white); }
.check-list span { font-size: 13px; }
.text-link { color: var(--mint); font-weight: 850; }

.screen-stack { position: relative; min-height: 650px; }
.screen-card { overflow: hidden; margin: 0; padding: 8px 8px 5px; border: 1px solid rgba(11, 39, 72, 0.08); border-radius: 28px; background: rgba(255, 255, 255, 0.96); box-shadow: 0 30px 72px rgba(0, 0, 0, 0.18); }
.screen-card img { width: 100%; height: calc(100% - 30px); border-radius: 21px; background: var(--ice); object-fit: cover; object-position: top; }
.screen-card figcaption { padding: 7px 8px 2px; color: var(--navy-800); font-size: 11px; font-weight: 850; }
.screen-large { position: absolute; top: 0; left: 38px; width: 318px; height: 630px; transform: rotate(-2deg); }
.screen-small { position: absolute; right: 4px; bottom: -12px; width: 242px; height: 500px; transform: rotate(4.5deg); }

.study-tools { background: var(--mist); }
.split-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 105px; align-items: center; }
.study-visual { position: relative; min-height: 610px; }
.study-main { position: absolute; top: 0; left: 0; width: 315px; height: 610px; }
.study-mini { position: absolute; right: 0; bottom: 56px; width: 220px; height: 325px; transform: rotate(4deg); }
.section-copy h2 { margin-bottom: 22px; }
.section-copy > p:not(.kicker) { color: var(--slate); font-size: 17px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.chip-row span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, 0.82); color: var(--ink); font-size: 12px; font-weight: 750; }

.vault-section { overflow: hidden; background: linear-gradient(145deg, #f4fbfa 0%, #ffffff 46%, #fff8ea 100%); }
.vault-section .narrow > p:last-child { color: var(--slate); font-size: 17px; }
.vault-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 38px; }
.vault-badges span { display: grid; min-height: 76px; place-content: center; padding: 14px 18px; border: 1px solid rgba(11, 39, 72, 0.1); border-radius: 18px; background: rgba(255, 255, 255, 0.8); color: var(--slate); box-shadow: 0 12px 32px rgba(5, 20, 38, 0.045); font-size: 11px; text-align: center; }
.vault-badges strong { display: block; color: var(--navy-800); font-size: 17px; }
.vault-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 32px; }
.vault-shot { overflow: hidden; margin: 0; border: 1px solid rgba(11, 39, 72, 0.1); border-radius: 24px; background: rgba(255, 255, 255, 0.94); box-shadow: 0 24px 58px rgba(5, 20, 38, 0.13); }
.vault-shot img { width: 100%; height: 500px; object-fit: cover; object-position: top; background: var(--ice); }
.vault-shot figcaption { display: grid; gap: 3px; min-height: 100px; padding: 17px 18px 19px; }
.vault-shot figcaption strong { color: var(--navy-900); font-size: 14px; }
.vault-shot figcaption span { color: var(--slate); font-size: 11px; line-height: 1.5; }
.vault-note { margin-top: 22px; color: var(--muted); font-size: 11px; text-align: center; }

.opportunity-section { background: var(--white); }
.opportunity-section .narrow > p:last-child { color: var(--slate); font-size: 17px; }
.directory-proof-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px; margin-top: 50px; }
.directory-proof-card { grid-column: span 2; overflow: hidden; border: 1px solid rgba(11, 39, 72, 0.1); border-radius: 25px; background: var(--white); box-shadow: 0 19px 52px rgba(5, 20, 38, 0.1); transition: transform 180ms ease, box-shadow 180ms ease; }
.directory-proof-card:nth-child(4) { grid-column: 2 / span 2; }
.directory-proof-card:nth-child(5) { grid-column: 4 / span 2; }
.directory-proof-card:hover { transform: translateY(-4px); box-shadow: 0 26px 66px rgba(5, 20, 38, 0.15); }
.directory-proof-open { display: flex; width: 100%; height: 100%; flex-direction: column; padding: 0; cursor: zoom-in; border: 0; background: transparent; color: inherit; text-align: left; }
.directory-proof-media { position: relative; display: block; height: 365px; overflow: hidden; border-bottom: 1px solid rgba(11, 39, 72, 0.08); background: linear-gradient(145deg, #edf7f6, #f8fbfb); }
.directory-proof-media::after { content: ""; position: absolute; inset: auto 0 0; height: 34%; background: linear-gradient(to bottom, transparent, rgba(5, 20, 38, 0.12)); pointer-events: none; }
.directory-proof-media img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 360ms ease; }
.directory-proof-card:hover .directory-proof-media img { transform: scale(1.018); }
.directory-proof-count { position: absolute; z-index: 1; right: 13px; bottom: 13px; padding: 7px 10px; border: 1px solid rgba(255, 255, 255, 0.34); border-radius: 999px; background: rgba(5, 20, 38, 0.88); color: var(--white); box-shadow: 0 8px 22px rgba(5, 20, 38, 0.2); font-size: 9px; font-weight: 850; letter-spacing: 0.02em; backdrop-filter: blur(10px); }
.directory-proof-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; min-height: 190px; padding: 22px; }
.directory-proof-kicker { color: var(--teal-700); font-size: 9px; font-weight: 950; letter-spacing: 0.14em; text-transform: uppercase; }
.directory-proof-body strong { margin: 7px 0 9px; color: var(--navy-900); font-size: 19px; line-height: 1.28; }
.directory-proof-body small { color: var(--slate); font-size: 14px; line-height: 1.55; }
.directory-proof-cta { display: inline-flex; gap: 7px; align-items: center; margin-top: auto; padding-top: 18px; color: var(--teal-700); font-size: 11px; font-weight: 900; }
.directory-proof-cta b { font-size: 15px; }
.directory-courses { background: linear-gradient(155deg, #ffffff 56%, #eef9f7); }
.directory-jobs { background: linear-gradient(155deg, #ffffff 56%, #eef4fb); }
.directory-community { background: linear-gradient(155deg, #ffffff 56%, #f5f1fb); }
.directory-funding { background: linear-gradient(155deg, #ffffff 56%, #fff7e6); }
.directory-proof-note { margin-top: 25px; color: var(--muted); font-size: 10px; line-height: 1.55; text-align: center; }

.alerts-section { overflow: hidden; background: linear-gradient(145deg, #eef9f7, #ffffff 48%, #edf3fa); }
.alerts-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 82px; align-items: center; }
.alert-points { display: grid; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.alert-points li { display: grid; grid-template-columns: 14px 1fr; column-gap: 12px; padding: 14px 16px; border: 1px solid rgba(11, 39, 72, 0.08); border-radius: 15px; background: rgba(255, 255, 255, 0.72); }
.alert-points li::before { content: ""; width: 10px; height: 10px; margin-top: 5px; border: 3px solid #c9eee9; border-radius: 50%; background: var(--teal-600); }
.alert-points strong, .alert-points span { grid-column: 2; }
.alert-points strong { color: var(--navy-900); font-size: 13px; }
.alert-points span { margin-top: 2px; color: var(--slate); font-size: 11px; line-height: 1.55; }
.notification-preview { width: min(480px, 100%); margin-inline: auto; }
.preview-label { margin-bottom: 10px; color: var(--teal-700); font-size: 9px; font-weight: 900; letter-spacing: 0.14em; text-align: center; text-transform: uppercase; }
.notification-screen { position: relative; overflow: hidden; min-height: 440px; padding: 28px 22px; border: 7px solid #102238; border-radius: 38px; background: radial-gradient(circle at 78% 4%, rgba(119, 215, 206, 0.4), transparent 30%), linear-gradient(155deg, #12385b, #07192f 62%, #0a4d55); box-shadow: 0 32px 72px rgba(5, 20, 38, 0.22); }
.notification-screen::after { content: ""; position: absolute; width: 230px; height: 230px; right: -90px; bottom: -100px; border-radius: 50%; background: rgba(229, 185, 75, 0.12); }
.notification-time { display: flex; justify-content: space-between; margin: 0 7px 58px; color: rgba(255, 255, 255, 0.78); font-size: 10px; font-weight: 800; }
.notification-card { position: relative; z-index: 1; display: grid; grid-template-columns: 38px 1fr; gap: 11px; margin-top: 11px; padding: 15px; border: 1px solid rgba(255, 255, 255, 0.42); border-radius: 19px; background: rgba(255, 255, 255, 0.92); box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16); backdrop-filter: blur(18px); }
.notification-logo { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 12px; background: linear-gradient(145deg, var(--teal-500), var(--navy-800)); color: var(--white); font-size: 10px; font-weight: 950; }
.notification-card p { display: flex; gap: 8px; justify-content: space-between; color: var(--navy-900); font-size: 11px; line-height: 1.4; }
.notification-card time { flex: 0 0 auto; color: var(--muted); font-size: 8px; font-weight: 700; }
.notification-card div:last-child > span { display: block; margin-top: 4px; color: var(--slate); font-size: 10px; line-height: 1.45; }
.notification-news { transform: translateX(11px); }
.notification-controls { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 30px; }
.notification-controls span { display: flex; justify-content: space-between; padding: 10px 12px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 12px; background: rgba(5, 20, 38, 0.38); color: rgba(255, 255, 255, 0.72); font-size: 9px; }
.notification-controls b { color: var(--mint); }
.preview-note { max-width: 430px; margin: 13px auto 0; color: var(--muted); font-size: 9px; line-height: 1.5; text-align: center; }

.build-section { overflow: hidden; background: linear-gradient(145deg, #fff8e6, #ffffff 53%, #eaf7f5); }
.build-section .screen-card { box-shadow: 0 28px 68px rgba(11, 39, 72, 0.18); }
.stat-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.stat-row div { min-width: 125px; padding: 15px 19px; border: 1px solid #ebe1c8; border-radius: 16px; background: rgba(255, 255, 255, 0.88); }
.stat-row strong { display: block; color: var(--navy-800); font-size: 23px; }
.stat-row span { color: var(--slate); font-size: 11px; }
.dark-link { color: var(--teal-700); }

.stay-sharp { background: var(--white); }
.lifestyle-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 70px; align-items: center; }
.mini-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mini-gallery figure { overflow: hidden; margin: 0; padding: 7px; border: 1px solid var(--line); border-radius: 19px; background: linear-gradient(150deg, #f0f7f7, #ffffff); }
.mini-gallery img { width: 100%; height: 360px; border-radius: 14px; object-fit: cover; object-position: top; }
.mini-gallery figcaption { padding: 7px 5px 3px; color: var(--navy-800); font-size: 11px; font-weight: 850; }

.all-features { background: #f7fafb; }
.filter-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 40px auto 28px; }
.filter { min-height: 42px; padding: 9px 17px; cursor: pointer; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--slate); font-weight: 800; }
.filter:hover { border-color: var(--teal-500); color: var(--teal-700); }
.filter.active { border-color: var(--navy-800); background: var(--navy-800); color: var(--white); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.feature-card { overflow: hidden; border: 1px solid #e2e9ec; border-radius: 21px; background: var(--white); box-shadow: 0 10px 30px rgba(5, 20, 38, 0.035); transition: transform 180ms ease, box-shadow 180ms ease; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.feature-open { display: flex; width: 100%; height: 100%; flex-direction: column; padding: 0; cursor: zoom-in; border: 0; background: transparent; color: inherit; text-align: left; }
.feature-media { position: relative; display: block; height: 205px; overflow: hidden; background: linear-gradient(145deg, #e9f7f5, var(--cream)); }
.feature-media img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 300ms ease; }
.feature-card:hover .feature-media img { transform: scale(1.018); }
.feature-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 20px; }
.feature-group { color: var(--teal-700); font-size: 9px; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.feature-group.group-work { color: #8a5b00; }
.feature-group.group-build { color: #8b4860; }
.feature-group.group-more { color: var(--navy-700); }
.feature-body strong { margin: 7px 0 10px; color: var(--navy-900); font-size: 19px; line-height: 1.3; }
.feature-description { display: block; color: var(--slate); font-size: 13px; line-height: 1.55; }
.feature-prompt { display: inline-flex; margin-top: auto; padding-top: 16px; color: var(--teal-700); font-size: 11px; font-weight: 850; }
.feature-prompt::after { content: "↗"; margin-left: 6px; }
.feature-card.image-error .feature-media::after { content: "Screenshot unavailable"; position: absolute; inset: 0; display: grid; place-items: center; padding: 20px; color: var(--slate); font-size: 12px; font-weight: 800; text-align: center; }
.feature-card.image-error .feature-media img { display: none; }
.feature-error { grid-column: 1 / -1; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); color: var(--slate); text-align: center; }
.noscript { margin-top: 25px; color: var(--slate); }

.privacy-section { background: var(--white); }
.privacy-card { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; overflow: hidden; padding: 56px 64px; border-radius: 34px; background: linear-gradient(135deg, var(--navy-950), var(--navy-800) 56%, var(--teal-700)); color: var(--white); }
.privacy-card h2 { margin-bottom: 19px; color: var(--white); }
.privacy-card > div > p:not(.kicker) { color: rgba(255, 255, 255, 0.75); }
.privacy-points { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0 0; padding: 0; color: #d9f2ef; font-size: 13px; font-weight: 750; list-style: none; }
.privacy-points li::before { content: "✓"; margin-right: 7px; color: var(--gold); }
.privacy-screen { height: 470px; overflow: hidden; margin: 0; border: 7px solid rgba(255, 255, 255, 0.12); border-radius: 25px; transform: rotate(3deg); }
.privacy-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.waitlist { padding: 44px 0 0; background: var(--white); }
.waitlist-card { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 52px; align-items: center; overflow: hidden; padding: 50px 54px; border-radius: 34px; background: radial-gradient(circle at 88% 15%, rgba(119, 215, 206, 0.22), transparent 24%), linear-gradient(125deg, var(--navy-950), var(--navy-800) 62%, #0b5359); color: var(--white); box-shadow: 0 28px 70px rgba(5, 20, 38, 0.16); }
.waitlist-card h2 { max-width: 690px; color: var(--white); font-size: clamp(2.2rem, 4vw, 3.45rem); }
.waitlist-copy > p:not(.kicker) { max-width: 730px; margin-top: 18px; color: rgba(255, 255, 255, 0.72); font-size: 14px; }
.waitlist-channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 25px; }
.waitlist-channels > span { position: relative; display: grid; min-height: 82px; align-content: center; padding: 14px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 14px; background: rgba(255, 255, 255, 0.07); }
.waitlist-channels .recommended { border-color: rgba(119, 215, 206, 0.56); background: rgba(119, 215, 206, 0.13); }
.waitlist-channels i { position: absolute; top: -9px; right: 10px; padding: 3px 7px; border-radius: 999px; background: var(--mint); color: var(--navy-950); font-size: 7px; font-style: normal; font-weight: 950; letter-spacing: 0.06em; text-transform: uppercase; }
.waitlist-channels b { color: var(--white); font-size: 12px; }
.waitlist-channels small { color: rgba(255, 255, 255, 0.58); font-size: 9px; }
.waitlist-action { display: grid; gap: 13px; justify-items: stretch; text-align: center; }
.waitlist-action .button { width: 100%; }
.waitlist-action p { color: rgba(255, 255, 255, 0.6); font-size: 10px; line-height: 1.55; }

.launch { padding-top: 42px; }
.launch-card { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; padding: 42px 48px; border-radius: 32px; background: linear-gradient(120deg, var(--teal-700), var(--navy-800)); color: var(--white); }
.launch-card > img { width: 78px; border-radius: 21px; }
.launch-card h2 { margin-bottom: 9px; color: var(--white); font-size: 35px; }
.launch-card div > p:last-child { color: rgba(255, 255, 255, 0.72); font-size: 13px; }
.faq { padding-top: 78px; }
.faq-list { max-width: 850px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 19px 0; }
.faq summary { cursor: pointer; color: var(--navy-800); font-weight: 820; }
.faq details p { padding: 13px 32px 0 0; color: var(--slate); font-size: 14px; }

.site-footer { padding: 60px 0 30px; background: var(--navy-950); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-brand { color: var(--white); }
.footer-grid p, .footer-grid a:not(.brand) { color: #aebbc5; font-size: 13px; }
.footer-grid strong { margin-bottom: 6px; font-size: 12px; }
.footer-legal { display: flex; justify-content: space-between; gap: 20px; margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: #8595a1; font-size: 11px; }
.scroll-assist { position: fixed; z-index: 82; right: 18px; bottom: 22px; display: grid; gap: 8px; pointer-events: none; opacity: 0; transform: translateY(12px); transition: opacity 180ms ease, transform 180ms ease; }
.scroll-assist.visible { pointer-events: auto; opacity: 1; transform: none; }
.scroll-control { display: grid; min-width: 54px; min-height: 54px; place-items: center; cursor: pointer; border: 1px solid rgba(255, 255, 255, 0.72); border-radius: 17px; background: linear-gradient(145deg, rgba(7, 25, 47, 0.94), rgba(0, 108, 102, 0.94)); color: var(--white); box-shadow: 0 15px 36px rgba(5, 20, 38, 0.24); backdrop-filter: blur(13px); transition: transform 160ms ease, opacity 160ms ease; }
.scroll-control:hover { transform: translateY(-2px); }
.scroll-control > span { font-size: 18px; font-weight: 900; line-height: 1; }
.scroll-control small { margin-top: -6px; color: rgba(255, 255, 255, 0.78); font-size: 7px; font-weight: 850; letter-spacing: 0.05em; text-transform: uppercase; }
.scroll-home { min-width: 68px; opacity: 0; transform: scale(0.92); pointer-events: none; }
.scroll-assist.show-home .scroll-home { opacity: 1; transform: none; pointer-events: auto; }

.shot-dialog { width: min(920px, calc(100% - 28px)); max-height: min(780px, calc(100dvh - 28px)); padding: 0; overflow: hidden; border: 0; border-radius: 28px; background: var(--white); color: var(--ink); box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42); }
.shot-dialog::backdrop { background: rgba(3, 14, 27, 0.76); backdrop-filter: blur(8px); }
.dialog-close { position: absolute; z-index: 2; top: 12px; right: 12px; display: grid; width: 44px; height: 44px; place-items: center; cursor: pointer; border: 1px solid rgba(11, 39, 72, 0.1); border-radius: 50%; background: rgba(255, 255, 255, 0.92); color: var(--navy-900); font-size: 28px; line-height: 1; }
.dialog-layout { display: grid; grid-template-columns: minmax(280px, 0.82fr) 1.18fr; min-height: 620px; }
.dialog-layout figure { display: grid; max-height: 780px; place-items: center; overflow: hidden; background: linear-gradient(145deg, var(--navy-950), var(--teal-700)); }
.dialog-layout figure img { width: 100%; height: 100%; max-height: 760px; object-fit: contain; }
.dialog-layout > div { display: flex; flex-direction: column; justify-content: center; padding: 52px; }
.dialog-layout h2 { margin-bottom: 18px; font-size: 36px; }
.dialog-layout > div > p:last-child { color: var(--slate); }
.shot-dialog.tall-capture { width: min(1080px, calc(100% - 28px)); }
.shot-dialog.tall-capture .dialog-layout { grid-template-columns: minmax(380px, 0.95fr) 1.05fr; }
.shot-dialog.tall-capture .dialog-layout figure { display: block; overflow-y: auto; overscroll-behavior: contain; background: #eef3f5; }
.shot-dialog.tall-capture .dialog-layout figure img { width: 100%; height: auto; max-height: none; object-fit: initial; }

.promo-dialog { width: min(920px, calc(100% - 24px)); max-height: calc(100dvh - 24px); padding: 0; overflow: hidden; border: 0; border-radius: 30px; background: var(--navy-950); color: var(--white); box-shadow: 0 42px 130px rgba(0, 0, 0, 0.55); }
.promo-dialog::backdrop { background: rgba(2, 11, 22, 0.86); backdrop-filter: blur(10px); }
.promo-dialog-layout { display: grid; grid-template-columns: minmax(260px, 0.72fr) 1fr; min-height: 680px; align-items: center; background: radial-gradient(circle at 18% 15%, rgba(19, 159, 150, 0.25), transparent 31%), linear-gradient(135deg, #051426, #0b2748); }
.promo-dialog video { display: block; width: 100%; max-height: calc(100dvh - 24px); aspect-ratio: 9 / 16; background: #020914; object-fit: contain; }
.promo-dialog-layout > div { padding: 48px; }
.promo-dialog-layout h2 { margin-bottom: 20px; color: var(--white); font-size: clamp(2.5rem, 5vw, 4.2rem); }
.promo-dialog-layout > div > p:last-child { color: rgba(230, 242, 244, 0.72); font-size: 16px; }
.promo-dialog-close { border-color: rgba(255, 255, 255, 0.18); background: rgba(5, 20, 38, 0.9); color: var(--white); }

.core-dialog { width: min(1080px, calc(100% - 28px)); max-height: calc(100dvh - 28px); padding: 0; overflow: hidden; border: 0; border-radius: 30px; background: #f7fbfb; color: var(--ink); box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42); }
.core-dialog::backdrop { background: rgba(3, 14, 27, 0.78); backdrop-filter: blur(8px); }
.core-dialog-scroll { max-height: calc(100dvh - 28px); overflow-y: auto; overscroll-behavior: contain; }
.core-dialog-header { position: relative; padding: 52px 76px 40px; overflow: hidden; background: linear-gradient(135deg, var(--navy-950), var(--navy-800) 62%, var(--teal-700)); color: var(--white); text-align: center; }
.core-dialog-header::after { content: ""; position: absolute; width: 260px; height: 260px; right: -90px; bottom: -180px; border-radius: 50%; background: rgba(119, 215, 206, 0.17); }
.core-dialog-header .kicker { margin-bottom: 12px; color: var(--mint); font-size: 13px; }
.core-dialog-header h2 { position: relative; z-index: 1; color: var(--white); font-size: clamp(2.25rem, 5vw, 3.5rem); }
.core-dialog-header > p:last-child { position: relative; z-index: 1; max-width: 720px; margin: 17px auto 0; color: rgba(255, 255, 255, 0.78); font-size: 16px; line-height: 1.65; }
.core-dialog-close { position: absolute; top: 12px; right: 12px; }
.core-feature-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; padding: 26px; }
.core-feature-item { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 14px; min-height: 174px; align-content: start; padding: 20px; border: 1px solid rgba(11, 39, 72, 0.1); border-radius: 18px; background: linear-gradient(145deg, #ffffff, #f1f8f7); box-shadow: 0 10px 28px rgba(5, 20, 38, 0.055); }
.core-feature-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 14px; background: linear-gradient(145deg, var(--teal-500), var(--teal-700)); color: var(--white); font-size: 10px; font-weight: 950; letter-spacing: 0.035em; box-shadow: 0 9px 20px rgba(0, 127, 120, 0.2); }
.core-feature-item h3 { margin: 2px 0 8px; font-size: 18px; letter-spacing: -0.025em; line-height: 1.18; }
.core-feature-item p { color: var(--slate); font-size: 14px; line-height: 1.55; }
.core-dialog-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 4px 26px 28px; }
.core-dialog-footer p { color: var(--muted); font-size: 14px; font-weight: 750; }
.copy-notice { position: fixed; z-index: 200; left: 50%; bottom: 22px; max-width: calc(100% - 28px); padding: 10px 15px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 12px; pointer-events: none; opacity: 0; transform: translate(-50%, 14px); background: rgba(5, 20, 38, 0.94); color: var(--white); box-shadow: 0 16px 45px rgba(5, 20, 38, 0.25); font-size: 12px; font-weight: 750; text-align: center; transition: opacity 180ms ease, transform 180ms ease; }
.copy-notice.visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .desktop-cta { display: none; }
  .menu-button { display: block; }
  .nav-links { position: absolute; z-index: 10; top: calc(100% + 8px); left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 4px; margin: 0; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 255, 255, 0.98); box-shadow: var(--shadow-sm); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 12px; border-radius: 10px; }
  .nav-links a:hover { background: var(--mist); }
  .hero { min-height: auto; }
  .hero-grid, .video-tour-card, .story-grid, .split-grid, .lifestyle-grid, .privacy-card { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .video-tour-card { gap: 50px; }
  .video-tour-copy { text-align: center; }
  .video-tour-copy h2, .video-tour-copy > p { margin-inline: auto; }
  .video-tour-copy li { text-align: left; }
  .core-feature-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lede { margin-inline: auto; }
  .hero-actions, .platform-row, .proof-row { justify-content: center; }
  .audience-panel { margin-inline: auto; text-align: left; }
  .hero-visual { width: min(600px, 100%); margin: 25px auto 0; }
  .pillar-grid, .feature-grid, .use-case-grid, .audience-screen-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-screen-grid { width: min(720px, 100%); }
  .use-case-heading, .alerts-grid, .waitlist-card { grid-template-columns: 1fr; }
  .use-case-heading { gap: 18px; text-align: center; }
  .use-case-heading h2, .use-case-heading > p { margin-inline: auto; }
  .alerts-grid { gap: 46px; }
  .waitlist-card { gap: 32px; text-align: center; }
  .waitlist-card h2, .waitlist-copy > p:not(.kicker) { margin-inline: auto; }
  .waitlist-action { width: min(430px, 100%); margin-inline: auto; }
  .vault-badges, .vault-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vault-gallery { width: min(720px, 100%); }
  .story-reverse .story-copy, .story-reverse .screen-stack { order: initial; }
  .story-copy { max-width: 720px; margin-inline: auto; text-align: center; }
  .check-list { max-width: 620px; margin-inline: auto; text-align: left; }
  .screen-stack, .study-visual { width: min(600px, 100%); margin-inline: auto; }
  .split-grid { gap: 48px; }
  .section-copy { text-align: center; }
  .chip-row, .stat-row { justify-content: center; }
  .directory-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .directory-proof-card, .directory-proof-card:nth-child(4), .directory-proof-card:nth-child(5) { grid-column: auto; }
  .directory-proof-card:last-child { grid-column: 1 / -1; width: calc(50% - 10px); justify-self: center; }
  .lifestyle-grid { gap: 40px; }
  .mini-gallery { width: min(650px, 100%); margin-inline: auto; }
  .privacy-card { text-align: center; }
  .privacy-points { width: min(550px, 100%); margin-inline: auto; text-align: left; }
  .privacy-screen { width: min(360px, 100%); margin-inline: auto; }
  .launch-card { grid-template-columns: auto 1fr; }
  .launch-card .button { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 700px) {
  :root { --page: min(100% - 28px, 1180px); }
  html { scroll-padding-top: 72px; }
  .section { padding: 78px 0; }
  .nav { min-height: 66px; }
  .brand img { width: 38px; height: 38px; }
  .hero { padding: 122px 0 72px; }
  h1 { font-size: clamp(2.8rem, 13vw, 3.55rem); }
  h2 { font-size: clamp(2.25rem, 10vw, 3rem); }
  .lede { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .video-tour { padding: 72px 0; }
  .video-tour-card { gap: 38px; }
  .video-tour-copy li { grid-template-columns: 44px 1fr; gap: 4px 13px; }
  .video-tour-copy li small { grid-column: 2; }
  .promo-device { width: min(340px, 100%); border-radius: 41px; }
  .promo-device video { border-radius: 30px; }
  .audience-heading { display: grid; justify-items: center; text-align: center; }
  .audience-heading span { font-size: 14px; }
  .audience-list a { min-height: 52px; }
  .audience-panel > p { text-align: center; }
  .platform-row { display: grid; grid-template-columns: 1fr 1fr; }
  .platform-badge { min-width: 0; }
  .proof-row { gap: 16px; }
  .proof-row li { flex: 1 1 90px; }
  .proof-row strong { font-size: 22px; }
  .hero-visual { min-height: 520px; }
  .device-main { right: 22px; width: 242px; height: 524px; border-width: 6px; border-radius: 34px; }
  .device-back { left: -3px; width: 202px; height: 440px; border-width: 5px; border-radius: 30px; }
  .floating-note { max-width: 190px; padding: 10px 12px; }
  .floating-note-one { top: 82px; right: -2px; }
  .floating-note-two { bottom: 2px; }
  .trust-items { gap: 10px 15px; }
  .trust-items i { display: none; }
  .pillar-grid, .feature-grid, .use-case-grid { grid-template-columns: 1fr; }
  .use-cases { padding: 72px 0 78px; }
  .use-case-grid { gap: 11px; margin-top: 30px; }
  .use-case { min-height: 0; padding: 23px 21px; }
  .alerts-grid { gap: 36px; }
  .notification-screen { min-height: 405px; padding: 24px 14px; border-width: 5px; border-radius: 30px; }
  .notification-time { margin-bottom: 42px; }
  .notification-news { transform: none; }
  .notification-controls { grid-template-columns: 1fr; margin-top: 22px; }
  .vault-badges { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vault-gallery { display: flex; width: auto; overflow-x: auto; gap: 14px; padding: 0 14px 18px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .vault-shot { min-width: 276px; scroll-snap-align: center; }
  .vault-shot img { height: 505px; }
  .pillar { padding: 28px; }
  .story-grid { gap: 36px; }
  .screen-stack { min-height: 540px; }
  .screen-large { left: 0; width: 270px; height: 530px; }
  .screen-small { right: 0; width: 205px; height: 415px; }
  .study-visual { min-height: 520px; }
  .study-main { width: 270px; height: 520px; }
  .study-mini { width: 185px; height: 275px; bottom: 38px; }
  .directory-proof-grid { display: flex; width: auto; overflow-x: auto; gap: 14px; padding: 0 14px 18px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .directory-proof-card, .directory-proof-card:last-child { flex: 0 0 286px; width: auto; min-width: 286px; scroll-snap-align: center; }
  .directory-proof-media { height: 355px; }
  .directory-proof-body { min-height: 184px; padding: 20px; }
  .mini-gallery { display: flex; overflow-x: auto; gap: 13px; padding-bottom: 12px; scroll-snap-type: x mandatory; }
  .mini-gallery figure { min-width: 190px; scroll-snap-align: center; }
  .mini-gallery img { height: 325px; }
  .privacy-card { padding: 38px 24px; }
  .privacy-points { grid-template-columns: 1fr; }
  .waitlist { padding-top: 20px; }
  .waitlist-card { padding: 38px 23px; border-radius: 27px; }
  .waitlist-channels { grid-template-columns: 1fr; }
  .waitlist-channels > span { min-height: 68px; }
  .launch-card { grid-template-columns: 1fr; padding: 34px 24px; text-align: center; }
  .launch-card > img { margin-inline: auto; }
  .launch-card h2 { font-size: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-legal { flex-direction: column; }
  .dialog-layout { grid-template-columns: 1fr; min-height: 0; }
  .dialog-layout figure { height: 58vh; min-height: 360px; }
  .shot-dialog.tall-capture .dialog-layout { grid-template-columns: 1fr; }
  .shot-dialog.tall-capture .dialog-layout figure { height: 58vh; min-height: 360px; }
  .dialog-layout > div { padding: 28px 24px 32px; }
  .dialog-layout h2 { font-size: 28px; }
  .promo-dialog { width: min(440px, calc(100% - 12px)); max-height: calc(100dvh - 12px); border-radius: 22px; }
  .promo-dialog-layout { display: block; min-height: 0; }
  .promo-dialog video { width: 100%; max-height: calc(100dvh - 12px); }
  .promo-dialog-layout > div { display: none; }
  .core-dialog { width: calc(100% - 16px); max-height: calc(100dvh - 16px); border-radius: 23px; }
  .core-dialog-scroll { max-height: calc(100dvh - 16px); }
  .core-dialog-header { padding: 62px 22px 31px; }
  .core-dialog-header h2 { font-size: 32px; }
  .core-dialog-header > p:last-child { font-size: 15px; }
  .core-feature-list { grid-template-columns: 1fr; gap: 11px; padding: 16px; }
  .core-feature-item { min-height: 0; padding: 18px; }
  .core-dialog-footer { align-items: stretch; flex-direction: column; padding: 4px 16px 22px; text-align: center; }
  .core-dialog-footer .button { width: 100%; }
}

@media (max-width: 390px) {
  .floating-note { display: none; }
  .device-main { right: 4px; }
  .device-back { left: -12px; }
  .proof-row { flex-direction: column; align-items: center; }
  .proof-row li { max-width: 210px; flex-basis: auto; }
  .audience-panel { padding: 17px; }
  .audience-list { grid-template-columns: 1fr; }
  .audience-list a { min-height: 46px; }
  .audience-screen-grid { display: flex; width: auto; overflow-x: auto; gap: 14px; padding: 0 14px 18px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .audience-screen { min-width: 276px; scroll-snap-align: center; }
  .audience-screen img { height: 490px; }
  .scroll-assist { right: 10px; bottom: 14px; }
  .scroll-control { min-width: 50px; min-height: 50px; border-radius: 15px; }
  .stat-row div { flex: 1 1 100%; }
}

@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; }
  .reveal { opacity: 1; transform: none; }
}
