@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/plus-jakarta-sans-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --font-sans: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  --accent: #0879b8;
  --accent-bright: #42bde9;
  --accent-soft: #dff4ff;
  --navy: #073d73;
  --ink: #09223b;
  --muted: #5b6e7e;
  --background: #f4f9fc;
  --surface: #ffffff;
  --line: #dce8f0;
  --green: #16835a;
  --night: #071522;
  --night-surface: #102434;
  --radius-sm: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2.25rem;
  --radius-xl: 3.5rem;
  --max-width: 76rem;
  --shadow-phone: 0 2.5rem 6rem rgba(5, 38, 64, 0.24), 0 0.6rem 1.5rem rgba(5, 38, 64, 0.14);
  --shadow-soft: 0 1.5rem 4rem rgba(7, 61, 115, 0.1);
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  font-family: var(--font-sans);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  font-family: var(--font-sans);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--background);
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 450;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

strong,
b {
  font-weight: 650;
}

body::selection {
  color: white;
  background: var(--accent);
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

img,
svg {
  display: block;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  pointer-events: none;
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100%, 72rem);
  min-height: 4.25rem;
  margin: 0 auto;
  padding: 0.55rem 0.65rem 0.55rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 1.5rem;
  background: rgba(244, 249, 252, 0);
  pointer-events: auto;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled .nav-shell {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(244, 249, 252, 0.74);
  box-shadow: 0 0.8rem 2.5rem rgba(7, 61, 115, 0.09);
  -webkit-backdrop-filter: blur(1.35rem) saturate(160%);
  backdrop-filter: blur(1.35rem) saturate(160%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 0.7rem;
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.015em;
}

.brand img {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.78rem;
  box-shadow: 0 0.45rem 1.2rem rgba(7, 61, 115, 0.12);
}

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

.nav-links a {
  padding: 0.65rem 0.8rem;
  border-radius: 0.8rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 550;
  transition: color 160ms ease, background-color 160ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
}

.nav-cta {
  justify-self: end;
  padding: 0.75rem 1rem;
  border-radius: 0.95rem;
  color: white;
  background: var(--ink);
  font-size: 0.85rem;
  font-weight: 650;
}

.nav-cta:hover {
  background: var(--navy);
}

.pressable {
  transform-origin: center;
  transition: transform 140ms ease-out, opacity 140ms ease-out, background-color 180ms ease,
    border-color 180ms ease;
}

.pressable:active {
  opacity: 0.9;
  transform: scale(0.97);
}

:focus-visible {
  outline: 3px solid rgba(8, 121, 184, 0.45);
  outline-offset: 3px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(30rem, 1.12fr);
  align-items: center;
  min-height: 100svh;
  padding: 8.5rem max(1.25rem, calc((100vw - var(--max-width)) / 2)) 5rem;
  isolation: isolate;
}

.hero-ambient {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-ambient::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244, 249, 252, 1) 0%, rgba(244, 249, 252, 0.9) 46%, rgba(244, 249, 252, 0.36) 100%);
  content: "";
}

.radar-motif {
  position: absolute;
  top: 7%;
  right: -5rem;
  width: min(54rem, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(8, 121, 184, 0.12) 0 1px, transparent 1px 6.5rem);
  mask-image: radial-gradient(circle, black 0 64%, transparent 78%);
}

.radar-motif::after {
  position: absolute;
  inset: 9%;
  border-radius: inherit;
  background: conic-gradient(from 34deg, rgba(66, 189, 233, 0.18), transparent 16% 100%);
  content: "";
  mask-image: radial-gradient(circle, transparent 0 18%, black 19% 68%, transparent 69%);
}

.hero-copy {
  z-index: 2;
  max-width: 38rem;
  padding-left: clamp(0rem, 2vw, 2rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.3rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.55rem;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.alerts-copy h2,
.privacy-copy h2,
.source-card h2,
.final-cta h2 {
  margin: 0;
  font-family: inherit;
  font-weight: 650;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 36rem;
  font-size: clamp(2.8rem, 3.7vw, 3.7rem);
  line-height: 1.04;
}

.hero-lead {
  max-width: 35rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.3vw, 1.2rem);
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0 1.25rem;
  border: 1px solid transparent;
  border-radius: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.button svg {
  width: 1.2rem;
  margin-left: 0.6rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  color: white;
  background: var(--accent);
  box-shadow: 0 0.8rem 2rem rgba(8, 121, 184, 0.23);
}

.button-primary:hover {
  background: #076fa9;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.button-secondary:hover {
  border-color: #bfd5e3;
  background: white;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.3rem;
  margin-top: 1.65rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 550;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.hero-trust svg {
  width: 1.08rem;
  height: 1.08rem;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-visual {
  position: relative;
  min-height: min(45rem, 76vh);
  perspective: 80rem;
  --pointer-x: 0;
  --pointer-y: 0;
}

.hero-visual::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(34rem, 88%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 189, 233, 0.16), rgba(66, 189, 233, 0) 68%);
  content: "";
  transform: translate(-50%, -50%);
}

.phone {
  position: absolute;
  width: 22rem;
  aspect-ratio: 1206 / 2622;
  padding: 0.38rem;
  border: 2px solid #65727d;
  border-radius: 3.55rem;
  background: #090c0f;
  box-shadow:
    var(--shadow-phone),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  will-change: transform;
}

.phone::before,
.phone::after {
  position: absolute;
  left: -0.3rem;
  width: 0.24rem;
  border-radius: 0.18rem 0 0 0.18rem;
  background: #46515a;
  content: "";
}

.phone::before {
  top: 19%;
  height: 7.5%;
}

.phone::after {
  top: 29%;
  height: 13%;
}

.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 3.05rem;
  background: #f4f9fc;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-main {
  z-index: 3;
  top: 50%;
  left: 58%;
  width: min(21.5rem, 29vw);
  transform: translate(-50%, -50%) rotate(2deg)
    translate3d(calc(var(--pointer-x, 0) * 0.22rem), calc(var(--pointer-y, 0) * 0.22rem), 0);
}

.phone-back {
  z-index: 1;
  top: 52%;
  left: 24%;
  width: min(18rem, 24vw);
  opacity: 0.96;
  transform: translate(-50%, -50%) rotate(-9deg)
    translate3d(calc(var(--pointer-x, 0) * -0.18rem), calc(var(--pointer-y, 0) * -0.18rem), 0);
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1.1rem 2.8rem rgba(7, 61, 115, 0.14);
  -webkit-backdrop-filter: blur(1.4rem) saturate(165%);
  backdrop-filter: blur(1.4rem) saturate(165%);
}

.floating-proof {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 1.15rem;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.25;
  pointer-events: none;
}

.floating-proof strong {
  display: block;
  color: var(--ink);
  font-size: 0.91rem;
}

.proof-share,
.proof-verdict,
.proof-follow {
  width: 12.75rem;
  padding: 0.85rem 1rem;
}

.proof-number {
  display: grid;
  flex: 0 0 auto;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 0.75rem;
  color: white;
  background: var(--accent);
  font-size: 0.82rem;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.proof-share {
  top: 18%;
  right: 0;
  transform: translate3d(calc(var(--pointer-x, 0) * 0.2rem), calc(var(--pointer-y, 0) * 0.2rem), 2rem);
}

.proof-verdict {
  top: 47%;
  left: 0;
  transform: translate3d(calc(var(--pointer-x, 0) * -0.3rem), calc(var(--pointer-y, 0) * -0.3rem), 3rem);
}

.proof-follow {
  bottom: 17%;
  right: 3%;
  transform: translate3d(calc(var(--pointer-x, 0) * 0.4rem), calc(var(--pointer-y, 0) * 0.4rem), 3rem);
}

.scroll-cue {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: relative;
  width: 1.5rem;
  height: 2.4rem;
  border: 1px solid rgba(9, 34, 59, 0.25);
  border-radius: 1rem;
}

.scroll-cue span::after {
  position: absolute;
  top: 0.55rem;
  left: 50%;
  width: 0.22rem;
  height: 0.45rem;
  border-radius: 1rem;
  background: var(--accent);
  content: "";
  transform: translateX(-50%);
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.promise-item {
  position: relative;
  padding: 1.55rem 2rem;
}

.promise-item + .promise-item::before {
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.promise-item strong,
.promise-item span {
  display: block;
}

.promise-item strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.promise-item span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.83rem;
}

.section {
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(7rem, 11vw, 11rem) 0;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 4.5rem;
}

.section-heading h2,
.privacy-copy h2,
.source-card h2 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.04;
}

.section-heading > p:last-child {
  max-width: 40rem;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.6;
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.72fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.feature-tabs {
  display: grid;
  gap: 0.65rem;
}

.feature-tab {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: start;
  width: 100%;
  padding: 1.25rem;
  border: 1px solid transparent;
  border-radius: 1.4rem;
  color: var(--muted);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.feature-tab:hover {
  background: rgba(255, 255, 255, 0.55);
}

.feature-tab.is-active {
  border-color: rgba(8, 121, 184, 0.18);
  color: var(--ink);
  background: white;
  box-shadow: 0 1rem 3rem rgba(7, 61, 115, 0.08);
}

.feature-number {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.feature-tab.is-active .feature-number {
  border-color: transparent;
  color: white;
  background: var(--accent);
}

.feature-tab-copy strong,
.feature-tab-copy small {
  display: block;
}

.feature-tab-copy strong {
  color: var(--ink);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  letter-spacing: -0.025em;
}

.feature-tab-copy small {
  max-width: 34rem;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.feature-arrow {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--accent);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.feature-tab.is-active .feature-arrow {
  opacity: 1;
}

.feature-tab:hover .feature-arrow {
  opacity: 1;
  transform: translate(0.12rem, -0.12rem);
}

.showcase-visual {
  position: relative;
  display: grid;
  min-height: 43rem;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background-color: #dff4ff;
  background-image:
    repeating-radial-gradient(circle at 58% 42%, rgba(8, 121, 184, 0.09) 0 1px, transparent 1px 5.5rem),
    linear-gradient(rgba(8, 121, 184, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 121, 184, 0.035) 1px, transparent 1px);
  background-size: auto, 3.5rem 3.5rem, 3.5rem 3.5rem;
}

.showcase-visual::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: inherit;
  content: "";
}

.showcase-glow {
  position: absolute;
  top: 15%;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(8, 121, 184, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(8, 121, 184, 0.035), 0 0 0 8rem rgba(8, 121, 184, 0.025);
}

.showcase-phone {
  position: relative;
  width: min(19rem, 80%);
  transform: translateY(2rem);
}

.showcase-phone img {
  transition: opacity 180ms ease, transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showcase-phone img.is-changing {
  opacity: 0;
  transform: scale(0.985);
}

.screen-caption {
  position: absolute;
  z-index: 4;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 3.8rem;
  padding: 0.65rem 0.9rem;
  border-radius: 1.2rem;
}

.screen-caption span {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border-radius: 0.75rem;
  color: white;
  background: var(--ink);
  font-size: 0.69rem;
  font-weight: 600;
}

.screen-caption strong {
  font-size: 0.92rem;
  letter-spacing: -0.015em;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.bento-card {
  position: relative;
  min-height: 0;
  padding: clamp(2rem, 3vw, 2.75rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  overflow: hidden;
}

.bento-icon {
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 3.25rem;
  place-items: center;
  border-radius: 1rem;
  color: var(--accent);
  background: var(--accent-soft);
}

.bento-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mini-label {
  margin: 0 0 0.55rem;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bento-card h3 {
  max-width: 25rem;
  margin: 0;
  font-size: clamp(1.3rem, 1.9vw, 1.85rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.bento-card p:not(.mini-label) {
  max-width: 28rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.bento-share {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
  min-height: 27rem;
}

.share-sheet {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: #f7fbfd;
}

.google-maps-logo,
.hygiene-share-logo {
  flex: 0 0 auto;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1rem;
  object-fit: contain;
}

.share-line {
  flex: 1 1 3.5rem;
  width: auto;
  min-width: 2rem;
  max-width: 4.5rem;
  height: 1px;
  background: #aec2cf;
}

.share-chevron {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0 -0.3rem 0 -0.15rem;
  color: var(--muted);
}

.bento-route {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 14rem;
  color: white;
  border-color: var(--ink);
  background: var(--ink);
}

.bento-route .bento-copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
}

.bento-route .bento-icon {
  margin: 0;
}

.bento-route-description {
  max-width: 32rem;
  margin: 0 !important;
  font-size: 1rem !important;
}

.bento-route .bento-icon {
  color: var(--accent-bright);
  background: rgba(66, 189, 233, 0.12);
}

.bento-route .mini-label {
  color: var(--accent-bright);
}

.bento-route p:not(.mini-label) {
  color: #a9bbc9;
}

.alerts-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(30rem, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  min-height: 58rem;
  padding: clamp(6rem, 10vw, 9rem) max(1.25rem, calc((100vw - var(--max-width)) / 2));
  color: #f2f8fc;
  background: var(--night);
  overflow: hidden;
  isolation: isolate;
}

.alerts-ambient {
  position: absolute;
  z-index: -1;
  top: -18rem;
  right: -15rem;
  width: 55rem;
  height: 55rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(66, 189, 233, 0.26), transparent 52%),
    repeating-radial-gradient(circle at 50% 50%, rgba(66, 189, 233, 0.09) 0 1px, transparent 1px 4rem);
}

.eyebrow-light {
  color: var(--accent-bright);
}

.alerts-copy {
  position: relative;
  z-index: 3;
  max-width: 38rem;
}

.alerts-copy h2 {
  font-size: clamp(2.4rem, 3.4vw, 3.4rem);
  line-height: 1.02;
}

.alerts-lead {
  max-width: 37rem;
  margin: 1.7rem 0 0;
  color: #a9bbc9;
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.65;
}

.scope-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-top: 2rem;
}

.scope-button {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  padding: 0.7rem;
  border: 1px solid #294052;
  border-radius: 1.1rem;
  color: #a9bbc9;
  background: #10202e;
  text-align: left;
  cursor: pointer;
}

.scope-button.is-active {
  color: white;
  border-color: rgba(66, 189, 233, 0.5);
  background: rgba(66, 189, 233, 0.12);
}

.scope-symbol {
  display: grid;
  flex: 0 0 auto;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border-radius: 0.75rem;
  color: var(--accent-bright);
  background: rgba(66, 189, 233, 0.1);
}

.scope-symbol .icon {
  width: 1.08rem;
  height: 1.08rem;
  stroke-width: 1.9;
}

.scope-button.is-active .scope-symbol {
  color: #73d9ff;
  background: rgba(66, 189, 233, 0.16);
}

.scope-button strong,
.scope-button small {
  display: block;
  white-space: nowrap;
}

.scope-button strong {
  overflow: hidden;
  font-size: 0.8rem;
  text-overflow: ellipsis;
}

.scope-button small {
  margin-top: 0.08rem;
  color: #7f96a6;
  font-size: 0.63rem;
}

.glass-dark {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(17, 36, 52, 0.72);
  -webkit-backdrop-filter: blur(1.2rem) saturate(140%);
  backdrop-filter: blur(1.2rem) saturate(140%);
}

.scope-explanation {
  min-height: 9.7rem;
  margin-top: 0.65rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
}

.scope-explanation strong,
.scope-explanation p {
  display: block;
}

.scope-status {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  color: #9fd9ff;
  background: rgba(66, 189, 233, 0.12);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scope-explanation.is-coming .scope-status {
  color: #9fd9ff;
  background: rgba(66, 189, 233, 0.12);
}

.scope-explanation > strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.scope-explanation p {
  margin: 0.3rem 0 0;
  color: #a9bbc9;
  font-size: 0.85rem;
}

.alerts-visual {
  position: relative;
  display: grid;
  min-height: 47rem;
  place-items: center;
}

.follow-phone {
  position: relative;
  width: min(23.5rem, 100%);
  aspect-ratio: 1206 / 2622;
  padding: 0.5rem;
  border: 2px solid #65727d;
  border-radius: 3.7rem;
  background: #090c0f;
  box-shadow:
    0 2.8rem 5.5rem rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.follow-phone::before,
.follow-phone::after {
  position: absolute;
  left: -0.28rem;
  width: 0.22rem;
  border-radius: 0.18rem 0 0 0.18rem;
  background: #46515a;
  content: "";
}

.follow-phone::before {
  top: 19%;
  height: 7.5%;
}

.follow-phone::after {
  top: 29%;
  height: 13%;
}

.follow-phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 3.15rem;
  background: #f4f9fc;
}

.follow-phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(24rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.privacy-mark {
  position: relative;
  display: grid;
  min-height: 39rem;
  place-items: center;
}

.privacy-mark > img {
  position: relative;
  z-index: 2;
  width: min(21rem, 65%);
  height: auto;
  border-radius: 22%;
  box-shadow: 0 2.6rem 5.5rem rgba(7, 61, 115, 0.19);
}

.privacy-halo {
  position: absolute;
  width: 29rem;
  max-width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(8, 121, 184, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 189, 233, 0.18), rgba(66, 189, 233, 0.03) 48%, transparent 70%);
}

.privacy-halo::before,
.privacy-halo::after {
  position: absolute;
  border: 1px solid rgba(8, 121, 184, 0.11);
  border-radius: inherit;
  content: "";
}

.privacy-halo::before {
  inset: 3rem;
}

.privacy-halo::after {
  inset: 6rem;
}

.privacy-chip {
  position: absolute;
  z-index: 3;
  padding: 0.7rem 0.9rem;
  border: 1px solid white;
  border-radius: 0.95rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1rem 2.5rem rgba(7, 61, 115, 0.12);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
  font-size: 0.75rem;
  font-weight: 600;
}

.chip-one {
  top: 22%;
  left: 0;
  transform: rotate(-4deg);
}

.chip-two {
  top: 30%;
  right: -1rem;
  transform: rotate(3deg);
}

.chip-three {
  right: 4%;
  bottom: 19%;
  transform: rotate(-2deg);
}

.privacy-copy h2 {
  max-width: 44rem;
}

.privacy-lead {
  max-width: 40rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.65;
}

.privacy-list {
  display: grid;
  gap: 0;
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.privacy-list li > span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 0.75rem;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 0.68rem;
  font-weight: 600;
}

.privacy-list strong,
.privacy-list p {
  display: block;
}

.privacy-list strong {
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.privacy-list p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.source-section {
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin: 0 auto;
}

.source-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 52rem);
  gap: 2.2rem;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius-xl);
  color: white;
  background-color: var(--ink);
  background-image: repeating-radial-gradient(circle at 100% 0%, rgba(66, 189, 233, 0.14) 0 1px, transparent 1px 4.5rem);
  overflow: hidden;
}

.source-seal {
  display: grid;
  width: clamp(5rem, 8vw, 7rem);
  height: clamp(5rem, 8vw, 7rem);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2rem;
  color: var(--accent-bright);
  background: rgba(66, 189, 233, 0.09);
}

.source-seal svg {
  width: 55%;
  height: 55%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.source-card .eyebrow {
  color: var(--accent-bright);
}

.source-card h2 {
  font-size: clamp(2rem, 2.7vw, 2.8rem);
}

.source-card > div:nth-child(2) > p:last-child {
  max-width: 41rem;
  margin: 1.3rem 0 0;
  color: #a9bbc9;
  font-size: 0.95rem;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 8rem;
  margin: 0;
}

.faq-heading h2 {
  font-size: clamp(2.2rem, 2.9vw, 3rem);
  line-height: 1.04;
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 5.3rem;
  padding: 1rem 0;
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease;
}

.faq-list summary span .icon {
  width: 1rem;
  height: 1rem;
}

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

.faq-list details p {
  max-width: 45rem;
  margin: -0.3rem 3rem 1.7rem 0;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 48rem;
  padding: 7rem 1.25rem;
  place-items: center;
  align-content: center;
  color: white;
  background: var(--night);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.cta-ambient {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(75rem, 120vw);
  aspect-ratio: 1.6;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(66, 189, 233, 0.15) 0 1px, transparent 1px 6.5rem),
    linear-gradient(28deg, transparent 47%, rgba(66, 189, 233, 0.05) 48% 49%, transparent 50%);
  mask-image: radial-gradient(circle, black 0 56%, transparent 78%);
  transform: translate(-50%, -50%);
}

.final-cta .eyebrow {
  margin-top: 1.8rem;
  color: var(--accent-bright);
}

.cta-icon {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 1.8rem;
  box-shadow: 0 1.8rem 4rem rgba(0, 0, 0, 0.35);
}

.final-cta h2 {
  max-width: 47rem;
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
  line-height: 1.02;
}

.final-cta > p:not(.eyebrow) {
  margin: 1.5rem 0 0;
  color: #a9bbc9;
  font-size: 1.08rem;
}

.app-store-badge {
  display: inline-block;
  margin-top: 2rem;
}

.app-store-badge img {
  display: block;
  width: auto;
  height: 3.25rem;
}

.launch-waitlist {
  width: min(36rem, 100%);
  margin-top: 2rem;
  padding: 1.15rem;
  border: 1px solid rgba(143, 219, 246, 0.22);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.waitlist-title {
  display: block;
  margin-bottom: 0.75rem;
  color: white;
  font-size: 0.9rem;
  font-weight: 720;
}

.waitlist-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
}

.waitlist-row input {
  min-width: 0;
  min-height: 3.3rem;
  border: 1px solid rgba(169, 217, 234, 0.23);
  border-radius: 0.95rem;
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font: inherit;
  outline: none;
}

.waitlist-row input::placeholder {
  color: #8398a9;
}

.waitlist-row input:focus {
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 3px rgba(66, 189, 233, 0.17);
}

.waitlist-row .button {
  min-height: 3.3rem;
  border: 0;
  cursor: pointer;
}

.launch-waitlist[aria-busy="true"] .button {
  cursor: wait;
  opacity: 0.65;
}

.waitlist-consent {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.6rem;
  align-items: start;
  margin-top: 0.8rem;
  color: #94a9b8;
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: left;
}

.waitlist-consent input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.12rem;
  accent-color: var(--accent-bright);
}

.waitlist-consent a {
  color: white;
}

.waitlist-status {
  min-height: 1.15rem;
  margin: 0.65rem 0 0;
  color: #9eb5c4;
  font-size: 0.72rem;
}

.waitlist-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.thanks-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  color: white;
  background: var(--night);
}

.thanks-card {
  width: min(42rem, 100%);
  padding: clamp(2rem, 7vw, 4.5rem);
  border: 1px solid rgba(143, 219, 246, 0.18);
  border-radius: 2.4rem;
  background: radial-gradient(circle at 50% 0, rgba(66, 189, 233, 0.15), transparent 42%), rgba(255, 255, 255, 0.04);
  box-shadow: 0 2.8rem 6rem rgba(0, 0, 0, 0.3);
  text-align: center;
}

.thanks-card > img {
  width: 6.5rem;
  height: 6.5rem;
  margin-bottom: 1.4rem;
  border-radius: 1.55rem;
}

.thanks-card .eyebrow {
  justify-content: center;
}

.thanks-card h1 {
  margin: 1.1rem 0 0;
  font-size: clamp(2.5rem, 7vw, 4.2rem);
  line-height: 1;
}

.thanks-card > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 1.3rem auto 2rem;
  color: #a9bbc9;
}

.thanks-card .button {
  display: inline-flex;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem max(1.25rem, calc((100vw - var(--max-width)) / 2));
  color: var(--muted);
  background: #050e17;
  font-size: 0.76rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: white;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.footer-links a:hover {
  color: white;
}

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

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (max-width: 72rem) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 9.5rem;
    text-align: center;
  }

  .hero-copy {
    max-width: 47rem;
    margin: 0 auto;
    padding: 0;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    min-height: 47rem;
    margin-top: 2rem;
  }

  .phone-main {
    left: 58%;
    width: min(21rem, 46vw);
  }

  .phone-back {
    left: 32%;
    width: min(17rem, 36vw);
  }

  .proof-share {
    right: 7%;
    left: auto;
  }

  .proof-verdict {
    right: auto;
    left: 7%;
  }

  .proof-follow {
    right: 10%;
    left: auto;
  }

  .scroll-cue {
    display: none;
  }

}

@media (max-width: 70rem) {
  .alerts-section {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .alerts-copy {
    width: min(100%, 46rem);
    max-width: none;
    margin-inline: auto;
  }

  .alerts-visual {
    min-height: 46rem;
  }

  .follow-phone {
    width: min(22rem, 72vw);
  }
}

@media (max-width: 64rem) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .feature-showcase {
    grid-template-columns: 1fr;
  }

  .feature-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-tab {
    grid-template-columns: auto 1fr;
  }

  .feature-arrow {
    display: none;
  }

  .showcase-visual {
    min-height: 44rem;
  }

  .alerts-section {
    grid-template-columns: 1fr;
  }

  .alerts-copy {
    max-width: 46rem;
  }

  .alerts-visual {
    min-height: 48rem;
  }

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

  .privacy-mark {
    order: 2;
    min-height: 34rem;
  }

  .privacy-copy {
    max-width: 45rem;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

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

  .footer-links {
    justify-content: flex-end;
    gap: 0.55rem 1.1rem;
  }

  .site-footer > p {
    grid-column: 2;
  }
}

@media (max-width: 50rem) {
  .bento-card {
    grid-column: auto;
    min-height: 0;
    padding: 1.5rem;
  }

  .bento-share {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 1.75rem;
  }

  .bento-icon {
    margin-bottom: 2.25rem;
  }

  .share-sheet {
    width: 100%;
    min-height: 6rem;
    margin: 0;
  }

  .share-chevron {
    margin: 0;
  }

  .bento-route {
    display: block;
    min-height: 0;
  }

  .bento-route .bento-copy {
    display: block;
  }

  .bento-route .bento-icon {
    margin-bottom: 2.25rem;
  }

  .bento-route-description {
    margin-top: 1rem !important;
  }
}

@media (max-width: 42rem) {
  .site-header {
    padding: 0.7rem;
  }

  .nav-shell {
    min-height: 3.8rem;
    border-radius: 1.25rem;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 2.45rem;
    height: 2.45rem;
  }

  .nav-cta {
    font-size: 0.76rem;
  }

  .hero {
    padding-right: 1.1rem;
    padding-left: 1.1rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 11vw, 3.5rem);
  }

  .hero-lead {
    font-size: 1.03rem;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-trust {
    font-size: 0.74rem;
  }

  .hero-visual {
    min-height: 38rem;
  }

  .phone-main {
    left: 60%;
    width: min(18rem, 68vw);
  }

  .phone-back {
    left: 25%;
    width: min(14rem, 52vw);
  }

  .proof-share,
  .proof-verdict,
  .proof-follow {
    width: 10.5rem;
    padding: 0.65rem 0.7rem;
  }

  .proof-share {
    top: 14%;
    right: -0.25rem;
    left: auto;
  }

  .proof-verdict {
    top: 44%;
    right: auto;
    left: -0.25rem;
  }

  .proof-follow {
    bottom: 12%;
    right: -0.25rem;
    left: auto;
  }

  .floating-proof strong {
    font-size: 0.77rem;
  }

  .floating-proof {
    font-size: 0.64rem;
  }

  .promise-strip {
    grid-template-columns: 1fr;
  }

  .promise-item {
    padding: 1.2rem 1.4rem;
  }

  .promise-item + .promise-item::before {
    top: 0;
    right: 1rem;
    bottom: auto;
    left: 1rem;
    width: auto;
    height: 1px;
  }

  .section,
  .source-section {
    width: min(calc(100% - 1.5rem), var(--max-width));
  }

  .section-heading {
    margin-bottom: 3rem;
  }

  .section-heading h2,
  .privacy-copy h2 {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

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

  .feature-tab-copy small {
    font-size: 0.82rem;
  }

  .showcase-visual {
    min-height: 38rem;
    border-radius: 2.3rem;
  }

  .showcase-phone {
    width: min(17rem, 76vw);
  }

  .alerts-section {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .alerts-copy h2 {
    font-size: clamp(2.45rem, 10vw, 3.3rem);
  }

  .scope-selector {
    grid-template-columns: 1fr;
  }

  .scope-button {
    min-height: 3.8rem;
  }

  .alerts-visual {
    min-height: 40rem;
  }

  .follow-phone {
    width: min(20rem, 78vw);
    border-radius: 3.2rem;
  }

  .follow-phone-screen {
    border-radius: 2.7rem;
  }

  .privacy-mark {
    min-height: 28rem;
  }

  .privacy-chip {
    font-size: 0.66rem;
  }

  .chip-one {
    left: 0.5rem;
  }

  .chip-two {
    right: 0;
  }

  .source-card {
    grid-template-columns: 1fr;
    border-radius: 2.3rem;
  }

  .faq-list summary {
    min-height: 4.7rem;
  }

  .final-cta h2 {
    font-size: clamp(2.45rem, 10vw, 3.4rem);
  }

  .waitlist-row {
    grid-template-columns: 1fr;
  }

  .waitlist-row .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }

  .site-footer > p {
    grid-column: auto;
    justify-self: center;
  }
}

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

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

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

  .phone-main,
  .phone-back,
  .floating-proof {
    transform: none;
  }

  .phone-main {
    transform: translate(-50%, -50%) rotate(2deg);
  }

  .phone-back {
    transform: translate(-50%, -50%) rotate(-9deg);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled .nav-shell,
  .glass-card,
  .glass-dark,
  .privacy-chip {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header.is-scrolled .nav-shell,
  .glass-card,
  .privacy-chip {
    background: #f8fbfd;
  }

  .glass-dark {
    background: var(--night-surface);
  }

}

@media (prefers-contrast: more) {
  :root {
    --muted: #3e5262;
    --line: #9cb5c4;
  }

  .nav-shell,
  .glass-card,
  .bento-card,
  .feature-tab.is-active {
    border-color: currentColor;
  }
}
