:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f1f7fb;
  --ink: #061c3d;
  --text: #233653;
  --muted: #60728e;
  --quiet: #8290a6;
  --line: #d9e5ef;
  --line-soft: #edf3f8;
  --blue: #1874d1;
  --blue-dark: #061c3d;
  --warning: #8d6400;
  --warning-bg: #fff8e8;
  --shadow-phone: 0 24px 58px rgba(6, 28, 61, 0.2);
  --shadow-soft: 0 16px 46px rgba(39, 75, 113, 0.08);
  --radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background: var(--bg);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: var(--blue-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--blue);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.94em;
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 18px clamp(32px, 7vw, 74px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.92rem;
  font-weight: 760;
  letter-spacing: 0;
  text-decoration: none;
}

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

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 3.2vw, 42px);
  font-size: 0.96rem;
}

.site-nav a {
  color: var(--blue-dark);
  font-weight: 560;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
}

/* Home page: transparent header over the cinematic hero, solid on scroll */
.site-header--home {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header--home .brand {
  color: #f4f9ff;
}

.site-header--home .brand img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.site-header--home .site-nav a {
  color: rgba(226, 240, 255, 0.82);
}

.site-header--home .site-nav a:hover {
  color: #ffffff;
}

.site-header--home.is-stuck {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.site-header--home.is-stuck .brand {
  color: var(--ink);
}

.site-header--home.is-stuck .brand img {
  filter: none;
}

.site-header--home.is-stuck .site-nav a {
  color: var(--blue-dark);
}

.site-header--home.is-stuck .site-nav a:hover {
  color: var(--blue);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(948px, 100svh);
  padding: 128px clamp(24px, 6vw, 74px) 104px;
  color: #eaf2fb;
  background:
    radial-gradient(132% 102% at 82% -12%, #134f95 0%, #0a3870 26%, #061f44 46%, #04132e 66%, #020812 100%),
    #020812;
  border-bottom: 1px solid rgba(36, 116, 209, 0.32);
}

/* Soft horizon glow easing the dark hero into the light section below */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 200px;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(125% 100% at 50% 100%, rgba(108, 198, 255, 0.22), rgba(24, 116, 209, 0.08) 38%, transparent 70%);
}

/* Decorative cinematic background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.4px 1.4px at 18px 32px, rgba(255, 255, 255, 0.9), transparent 60%),
    radial-gradient(1.1px 1.1px at 132px 88px, rgba(214, 232, 255, 0.7), transparent 60%),
    radial-gradient(1.6px 1.6px at 88px 168px, rgba(255, 255, 255, 0.85), transparent 60%),
    radial-gradient(1px 1px at 204px 124px, rgba(190, 218, 255, 0.6), transparent 60%),
    radial-gradient(1.2px 1.2px at 248px 40px, rgba(255, 255, 255, 0.7), transparent 60%);
  background-size: 280px 240px;
  background-repeat: repeat;
  opacity: 0.55;
  animation: heroTwinkle 6.5s ease-in-out infinite;
}

.hero-aurora {
  position: absolute;
  top: -18%;
  right: -8%;
  width: clamp(520px, 60vw, 820px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, rgba(70, 179, 255, 0.3), rgba(24, 116, 209, 0.12) 42%, transparent 70%);
  filter: blur(4px);
}

/* Stylized globe (echoes the dot-sphere app icon) */
.hero-globe {
  position: absolute;
  top: 50%;
  right: clamp(-300px, -7vw, -130px);
  width: clamp(560px, 52vw, 880px);
  aspect-ratio: 1;
  transform: translateY(-50%);
}

.globe-atmo {
  position: absolute;
  inset: -7%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, transparent 57%, rgba(70, 179, 255, 0.24) 65%, transparent 78%);
  filter: blur(6px);
}

.globe-body {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(125% 125% at 34% 26%, #1d6fc0 0%, #0e4d92 32%, #083a72 52%, #062a54 70%, #04203f 100%);
  box-shadow:
    inset -46px -34px 130px rgba(0, 0, 0, 0.62),
    inset 36px 26px 96px rgba(108, 198, 255, 0.2),
    0 40px 120px rgba(6, 28, 61, 0.6);
}

.globe-grid {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: radial-gradient(rgba(165, 209, 255, 0.42) 1px, transparent 1.7px);
  background-size: 26px 26px;
  -webkit-mask: radial-gradient(circle at 50% 50%, #000 0 62%, transparent 73%);
  mask: radial-gradient(circle at 50% 50%, #000 0 62%, transparent 73%);
  opacity: 0.5;
}

.globe-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.26), transparent 34%);
  mix-blend-mode: screen;
}

/* Great-circle arc drawn over the globe */
.globe-arc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.arc-line {
  fill: none;
  stroke: url(#arcGradient);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
  filter: drop-shadow(0 0 7px rgba(108, 198, 255, 0.9));
  animation: arcDraw 3.2s ease forwards 0.5s;
}

.arc-node circle {
  fill: #eaf6ff;
  filter: drop-shadow(0 0 6px rgba(108, 198, 255, 0.95));
}

.arc-node-pulse {
  fill: none;
  stroke: rgba(150, 214, 255, 0.85);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  animation: arcPulse 2.6s ease-out infinite;
}

.arc-label {
  fill: rgba(226, 240, 255, 0.92);
  font: 600 15px -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.04em;
}

.arc-plane {
  fill: #eaf6ff;
  filter: drop-shadow(0 0 5px rgba(108, 198, 255, 0.9));
  opacity: 0;
  animation: arcPlaneIn 0.6s ease forwards 2.4s;
}

.public-pages::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 84% 18%, transparent 0 106px, rgba(24, 116, 209, 0.08) 107px, transparent 109px),
    radial-gradient(circle at 82% 30%, transparent 0 182px, rgba(24, 116, 209, 0.06) 183px, transparent 185px),
    linear-gradient(119deg, transparent 0 27%, rgba(24, 116, 209, 0.08) 27.2%, transparent 27.4%),
    linear-gradient(74deg, transparent 0 56%, rgba(24, 116, 209, 0.06) 56.1%, transparent 56.3%);
  opacity: 0.76;
}

.public-pages::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(24, 116, 209, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 116, 209, 0.04) 1px, transparent 1px);
  background-size: 82px 82px;
  opacity: 0.28;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1188px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.82fr);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
}

.hero-copy {
  max-width: 600px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px;
  border: 1px solid rgba(123, 188, 255, 0.34);
  border-radius: 999px;
  color: #bfe0ff;
  font-size: 0.8rem;
  font-weight: 640;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(24, 116, 209, 0.14);
  backdrop-filter: blur(6px);
}

.hero-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6cc6ff;
  box-shadow: 0 0 0 4px rgba(108, 198, 255, 0.22);
}

.hero h1 {
  margin: 22px 0 0;
  color: #f4f9ff;
  font-size: clamp(2.7rem, 5.4vw, 4.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.018em;
}

.hero h1 .accent {
  background: linear-gradient(96deg, #6cc6ff, #2f93f0 58%, #1874d1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 500px;
  margin: 24px 0 0;
  color: #b6c9e2;
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 34px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 62px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  color: #ffffff;
  text-decoration: none;
  background: #000000;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(123, 188, 255, 0.5);
  box-shadow: 0 22px 48px rgba(8, 30, 64, 0.6);
  color: #ffffff;
}

.store-badge svg {
  width: 25px;
  height: 25px;
  fill: #ffffff;
  flex: 0 0 auto;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-badge-small {
  font-size: 0.72rem;
  line-height: 1;
  opacity: 0.86;
}

.store-badge-main {
  margin-top: 3px;
  font-size: 1.32rem;
  font-weight: 650;
  line-height: 1;
}

.launch-copy {
  max-width: 220px;
  margin: 0;
  color: #9fb6d4;
  font-size: 0.94rem;
  font-weight: 560;
  line-height: 1.36;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid rgba(123, 188, 255, 0.2);
  border-radius: 999px;
  background: rgba(12, 38, 74, 0.5);
  color: #cdddf0;
  font-size: 0.92rem;
  font-weight: 560;
  line-height: 1.2;
}

.hero-facts li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6cc6ff;
  box-shadow: 0 0 0 4px rgba(108, 198, 255, 0.18);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 470px;
  margin: 20px 0 0;
  color: #879cba;
  font-size: 0.82rem;
  line-height: 1.4;
}

.hero-note a {
  color: #aac4e6;
  text-decoration-color: rgba(170, 196, 230, 0.5);
}

.hero-note svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #6f86a6;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-self: center;
  perspective: 1400px;
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(360px, 100%);
  padding: 12px;
  border: 5px solid #1c2026;
  border-radius: 46px;
  background: linear-gradient(#0c1016, #05070b);
  box-shadow:
    0 50px 92px rgba(2, 10, 26, 0.7),
    0 8px 24px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: rotateY(-9deg) rotateX(2.5deg) rotateZ(0.6deg);
  animation: phoneFloat 7s ease-in-out infinite;
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 50%;
  width: 38%;
  height: 30px;
  border-radius: 0 0 18px 18px;
  background: #05070b;
  transform: translateX(-50%);
}

.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 34px;
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 36%);
  pointer-events: none;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 26px;
  width: 30px;
  height: 30px;
  color: rgba(199, 222, 248, 0.7);
  transform: translateX(-50%);
  animation: scrollBounce 2.2s ease-in-out infinite;
}

.scroll-cue svg {
  width: 100%;
  height: 100%;
  fill: none;
}

.scroll-cue path {
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes arcDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes arcPulse {
  0% { transform: scale(0.7); opacity: 0.9; }
  100% { transform: scale(2.7); opacity: 0; }
}

@keyframes arcPlaneIn {
  to { opacity: 1; }
}

@keyframes heroTwinkle {
  0%, 100% { opacity: 0.48; }
  50% { opacity: 0.78; }
}

@keyframes phoneFloat {
  0%, 100% { transform: rotateY(-9deg) rotateX(2.5deg) rotateZ(0.6deg) translateY(0); }
  50% { transform: rotateY(-9deg) rotateX(2.5deg) rotateZ(0.6deg) translateY(-12px); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stars,
  .phone-frame,
  .scroll-cue,
  .arc-node-pulse {
    animation: none !important;
  }

  .arc-line {
    animation: none;
    stroke-dashoffset: 0;
  }

  .arc-plane {
    animation: none;
    opacity: 1;
  }
}

.public-pages {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.public-pages-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 240px minmax(0, 690px);
  gap: 48px;
  width: min(1188px, calc(100% - 72px));
  min-height: 874px;
  margin: 0 auto;
}

.side-nav {
  min-height: 100%;
  padding: 68px 0 0;
  border-right: 1px solid var(--line);
}

.side-nav a {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 22px 0 28px;
  color: var(--blue-dark);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.side-nav a.active {
  color: var(--blue);
}

.side-nav a.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--blue);
}

.side-nav svg {
  width: 24px;
  height: 24px;
  fill: none;
}

.side-nav path {
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.public-copy {
  padding: 58px 0 50px;
  max-width: 540px;
}

.public-copy h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 2.2rem;
  line-height: 1.15;
}

.public-copy h3 {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 1.06rem;
  line-height: 1.2;
}

.public-copy h3[id] {
  scroll-margin-top: 112px;
}

.public-copy p {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.46;
}

.public-copy .last-updated {
  margin-top: 30px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
}

.product-story {
  position: relative;
  overflow: hidden;
  padding: 112px clamp(32px, 7vw, 74px) 116px;
  background:
    linear-gradient(180deg, rgba(241, 247, 251, 0.92), #ffffff 34%),
    #ffffff;
  border-bottom: 1px solid var(--line);
}

.product-story::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 77% 18%, transparent 0 118px, rgba(24, 116, 209, 0.08) 119px, transparent 121px),
    radial-gradient(circle at 84% 22%, transparent 0 210px, rgba(24, 116, 209, 0.05) 211px, transparent 213px),
    linear-gradient(118deg, transparent 0 22%, rgba(24, 116, 209, 0.08) 22.1%, transparent 22.3%),
    linear-gradient(66deg, transparent 0 68%, rgba(24, 116, 209, 0.05) 68.1%, transparent 68.3%);
  opacity: 0.72;
}

.story-inner {
  position: relative;
  z-index: 1;
  width: min(1188px, 100%);
  margin: 0 auto;
}

.story-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.78fr);
  align-items: end;
  gap: 62px;
  margin-bottom: 56px;
}

.story-heading h2,
.closing-inner h2 {
  margin: 0;
  color: var(--ink);
  font-size: 4.18rem;
  font-weight: 790;
  line-height: 1;
  letter-spacing: 0;
}

.story-heading p {
  margin: 0;
  color: var(--text);
  font-size: 1.24rem;
  line-height: 1.48;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-card {
  min-height: 270px;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.story-card[id] {
  scroll-margin-top: 112px;
}

.story-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 26px;
  fill: none;
  color: var(--blue);
}

.story-card path {
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.16;
}

.story-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.48;
}

/* Highlight card: large, with a route visual */
.story-card--feature {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-top-width: 1px;
}

.story-card--feature .feature-visual {
  position: relative;
  overflow: hidden;
  background: radial-gradient(130% 120% at 78% 0%, #114a8f 0%, #08305f 45%, #041d3c 100%);
}

.story-card--feature .feature-visual svg {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  color: inherit;
}

.fv-line {
  filter: drop-shadow(0 0 6px rgba(108, 198, 255, 0.85));
}

.fv-chip {
  position: absolute;
  right: 20px;
  bottom: 18px;
  padding: 7px 14px;
  border: 1px solid rgba(150, 196, 245, 0.3);
  border-radius: 999px;
  background: rgba(6, 18, 36, 0.66);
  color: #eaf4ff;
  font-size: 0.86rem;
  font-weight: 650;
  backdrop-filter: blur(8px);
}

.story-card--feature .feature-text {
  padding: 26px 30px 32px;
}

.story-card--feature h3 {
  font-size: 1.66rem;
}

.story-card--feature p {
  margin-top: 14px;
  font-size: 1.04rem;
}

/* Wide privacy band */
.story-card--wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 0;
  padding: 30px 34px;
}

.story-card--wide svg {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  margin: 0;
}

.story-card--wide .wide-text h3 {
  margin: 0;
}

.story-card--wide .wide-text p {
  margin: 8px 0 0;
  max-width: 820px;
}

.closing-cta {
  padding: 78px clamp(32px, 7vw, 74px);
  background:
    linear-gradient(135deg, rgba(24, 116, 209, 0.22), transparent 45%),
    var(--ink);
}

.closing-inner {
  width: min(1188px, 100%);
  margin: 0 auto;
}

.closing-inner h2 {
  max-width: 760px;
  color: #ffffff;
}

.closing-inner p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.22rem;
  line-height: 1.48;
}

.closing-inner .legal-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 760px;
  margin: 26px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 3px solid #6cc6ff;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.5;
}

.legal-callout strong {
  color: #ffffff;
  font-weight: 720;
}

.legal-callout a {
  color: #cfe6ff;
  font-weight: 640;
  text-decoration-color: rgba(207, 230, 255, 0.5);
}

.legal-callout svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  fill: none;
  stroke: #6cc6ff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.closing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 34px;
}

.closing-links a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 670;
  text-decoration-color: rgba(255, 255, 255, 0.42);
}

.content-band {
  padding: 104px clamp(32px, 7vw, 74px);
}

.content-band.soft {
  background: var(--surface-soft);
  border-block: 1px solid var(--line);
}

.content-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 40px;
}

.section-heading h2,
.legal-document h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.15rem;
  line-height: 1.16;
}

.section-heading p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid,
.two-column {
  display: grid;
  gap: 16px;
}

.grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-column {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.info-card {
  min-height: 180px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.info-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.info-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.do-not {
  border-color: #decda5;
  background: var(--warning-bg);
}

.do-not h3 {
  color: var(--warning);
}

.page-hero {
  padding: 74px clamp(32px, 7vw, 74px) 46px;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner,
.legal-shell {
  width: min(930px, calc(100% - 40px));
  margin: 0 auto;
}

.page-hero h1,
.legal-document h1 {
  margin: 0;
  color: var(--ink);
  font-size: 4rem;
  font-weight: 790;
  line-height: 1;
}

.page-hero p {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: 1.16rem;
}

.legal-shell {
  padding: 58px 0 88px;
}

.legal-document h1 {
  margin-bottom: 16px;
}

.legal-document h2 {
  margin-top: 46px;
  font-size: 1.62rem;
}

.legal-document h3 {
  margin: 30px 0 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.legal-document p,
.legal-document li,
.legal-document pre {
  color: #334454;
  font-size: 1rem;
}

.legal-document p {
  margin: 12px 0;
}

.legal-document ul {
  padding-left: 22px;
}

.legal-document pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: inherit;
}

.provider-identity {
  width: min(520px, 100%);
  margin: 16px 0 18px;
}

.provider-identity img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.meta {
  color: var(--quiet);
}

.draft-notice,
.scope-notice {
  margin: 22px 0 30px;
  padding: 17px 18px;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.draft-notice {
  border-color: var(--warning);
}

.site-footer {
  padding: 26px clamp(32px, 7vw, 74px) 23px;
  background:
    linear-gradient(90deg, rgba(24, 116, 209, 0.04), transparent 28%),
    #ffffff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1188px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.25fr;
  gap: 42px;
}

.footer-brand .brand {
  font-size: 1.52rem;
}

.footer-brand p,
.footer-meta p {
  margin: 8px 0 0;
  max-width: 260px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-links a {
  color: var(--blue-dark);
  font-size: 0.88rem;
  font-weight: 560;
  text-decoration: none;
}

.footer-meta p {
  max-width: 320px;
}

.redirect-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}

.redirect-box {
  width: min(560px, 100%);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

/* ============ Routes worth sharing ============ */
.share-moment {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 120px clamp(32px, 7vw, 74px);
  color: #eaf2fb;
  background:
    radial-gradient(120% 130% at 80% 12%, #114a8f 0%, #0a356b 30%, #061f44 55%, #04132e 100%),
    #04122c;
  border-block: 1px solid rgba(36, 116, 209, 0.3);
}

.share-inner {
  position: relative;
  z-index: 1;
  width: min(1188px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
}

.share-copy h2 {
  margin: 16px 0 0;
  color: #f4f9ff;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.share-copy p {
  max-width: 460px;
  margin: 18px 0 0;
  color: #b6c9e2;
  font-size: 1.16rem;
  line-height: 1.5;
}

.share-points {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.share-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cdddf0;
  font-size: 1rem;
}

.share-points li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6cc6ff;
  box-shadow: 0 0 0 4px rgba(108, 198, 255, 0.18);
}

.share-stack {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

.share-card {
  width: min(360px, 100%);
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(150, 196, 245, 0.22);
  border-radius: 20px;
  background: linear-gradient(160deg, #0c2a52, #071a38);
  box-shadow: 0 30px 70px rgba(2, 10, 26, 0.55);
}

.share-card--front {
  position: relative;
  z-index: 2;
  transform: rotate(-3deg);
}

.share-card--back {
  position: absolute;
  z-index: 1;
  top: 4px;
  transform: rotate(6deg) translateX(40px);
  opacity: 0.9;
}

.sc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}

.sc-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #eaf4ff;
  font-size: 0.92rem;
  font-weight: 700;
}

.sc-brand img {
  filter: brightness(0) invert(1);
}

.sc-pill {
  padding: 4px 11px;
  border: 1px solid rgba(150, 196, 245, 0.28);
  border-radius: 999px;
  color: #bfe0ff;
  font-size: 0.72rem;
  font-weight: 640;
}

.sc-map {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #061b39;
}

.sc-line {
  filter: drop-shadow(0 0 5px rgba(108, 198, 255, 0.8));
}

.sc-route {
  margin-top: 14px;
  color: #f4f9ff;
  font-size: 1.5rem;
  font-weight: 760;
}

.sc-route span {
  margin: 0 4px;
  color: #6cc6ff;
}

.sc-stats {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  color: #93acca;
  font-size: 0.9rem;
}

.sc-stats strong {
  color: #eaf4ff;
  font-size: 1.02rem;
  font-weight: 720;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 358px);
    gap: 40px;
  }

  .phone-frame {
    width: min(320px, 100%);
  }

  .public-pages-inner {
    grid-template-columns: 240px minmax(0, 690px);
    gap: 48px;
    width: min(100%, 1188px);
    min-height: 760px;
  }

  .side-nav {
    padding-top: 58px;
  }

  .public-copy {
    padding-top: 58px;
    max-width: 500px;
  }

  .grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .story-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .story-heading h2,
  .closing-inner h2 {
    font-size: 3.42rem;
  }

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

  .story-card--feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .story-card--feature .feature-visual svg {
    max-height: 260px;
    object-fit: cover;
  }

  .share-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .share-stack {
    min-height: 320px;
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 148px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 52px;
    justify-items: start;
  }

  .hero-globe {
    right: -38vw;
    opacity: 0.6;
  }

  .hero-visual {
    justify-content: center;
    margin-top: 4px;
  }

  .public-pages-inner {
    grid-template-columns: 1fr;
    gap: 0;
    width: min(1188px, calc(100% - 48px));
    min-height: 0;
  }

  .side-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .side-nav a.active::before {
    left: 0;
    top: auto;
    right: 0;
    bottom: 0;
    width: auto;
    height: 3px;
  }

  .public-copy {
    padding-top: 42px;
  }

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

  .product-story {
    padding-block: 70px 74px;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-inline: 24px;
  }

  .site-header--home {
    position: absolute;
    background: linear-gradient(180deg, rgba(2, 8, 18, 0.55), transparent);
  }

  .brand {
    font-size: 1.5rem;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .hero {
    min-height: 0;
    padding-top: 188px;
  }

  .hero-inner,
  .public-pages-inner {
    width: min(calc(100% - 36px), 1188px);
  }

  .phone-frame {
    width: min(300px, 82vw);
    border-radius: 34px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .launch-copy {
    max-width: 280px;
  }

  .hero-facts li {
    font-size: 0.9rem;
  }

  .phone-frame img {
    border-radius: 24px;
  }

  .product-story,
  .closing-cta {
    padding-inline: 18px;
  }

  .story-heading h2,
  .closing-inner h2 {
    font-size: 2.52rem;
  }

  .story-heading p,
  .closing-inner p {
    font-size: 1.03rem;
  }

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

  .story-card {
    min-height: 0;
  }

  .story-card--wide {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 24px;
  }

  .share-moment {
    padding: 84px clamp(18px, 6vw, 32px);
  }

  .share-stack {
    min-height: 0;
  }

  .share-card--back {
    display: none;
  }

  .share-card--front {
    transform: none;
  }

  .share-card {
    width: min(360px, 100%);
  }

  .public-pages-inner {
    width: 100%;
  }

  .side-nav,
  .public-copy {
    width: min(calc(100% - 36px), 690px);
    margin: 0 auto;
  }

  .side-nav {
    grid-template-columns: 1fr;
  }

  .side-nav a {
    padding-left: 0;
  }

  .public-copy h2 {
    font-size: 2rem;
  }

  .page-hero h1,
  .legal-document h1 {
    font-size: 2.62rem;
  }

  .footer-inner {
    gap: 26px;
  }
}
