:root {
  --sky: #bdeff4;
  --aqua: #27b8b3;
  --mint: #81c990;
  --sun: #f7d84f;
  --orange: #f5a136;
  --navy: #183354;
  --ink: #102944;
  --cloud: #fffdf5;
  --white: #ffffff;
  --muted: #587086;
  --line: rgba(24, 51, 84, 0.16);
  --shadow: 0 24px 64px rgba(19, 72, 91, 0.15);
  --display: ui-rounded, "Avenir Next Rounded", "Nunito", "Trebuchet MS", sans-serif;
  --body: "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cloud);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::selection { color: var(--navy); background: var(--sun); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: rgba(39, 184, 179, 0.2); touch-action: manipulation; }
button { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
  background: var(--navy);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 10px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(24, 51, 84, 0.1);
  background: rgba(255, 253, 245, 0.88);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 900; letter-spacing: -0.03em; }
.brand img { border-radius: 13px; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 34px); font-size: 14px; font-weight: 700; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--aqua);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.site-nav > a:hover::after { transform: scaleX(1); }
.nav-cta { padding: 11px 16px; border-radius: 999px; color: white; background: var(--navy); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--sky); }
.menu-toggle span[aria-hidden] { display: block; width: 19px; height: 2px; margin: 5px auto; border-radius: 2px; background: var(--navy); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 0.86fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
  min-height: calc(100svh - 76px);
  padding: clamp(64px, 8vw, 110px) max(24px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 25%, rgba(247, 216, 79, 0.22), transparent 24%),
    linear-gradient(135deg, #effdf9 0%, var(--sky) 66%, #8edbd3 100%);
}
.hero::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 9px;
  background: linear-gradient(90deg, var(--sun) 0 30%, var(--orange) 30% 40%, var(--aqua) 40% 100%);
  content: "";
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 17px; color: #157b7c; font-family: var(--display); font-size: 13px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow span { color: var(--orange); }
h1, h2, h3 { font-family: var(--display); text-wrap: balance; }
p { text-wrap: pretty; }
section[id], article[id] { scroll-margin-top: 96px; }
.hero h1 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(52px, 6.8vw, 88px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.07em;
}
.hero h1 em { position: relative; color: var(--navy); font-style: normal; }
.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: 0.01em;
  left: 0;
  z-index: -1;
  height: 0.2em;
  border-radius: 50%;
  background: var(--sun);
  content: "";
  transform: rotate(-1deg);
}
.hero-lede { max-width: 620px; margin: 28px 0 0; color: #355771; font-size: clamp(17px, 1.8vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 33px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 11px; min-height: 52px; padding: 0 21px; border: 0; border-radius: 999px; font-family: var(--display); font-weight: 900; transition: transform 180ms ease, box-shadow 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { min-height: 62px; color: white; background: var(--navy); box-shadow: 0 16px 28px rgba(24, 51, 84, 0.2); }
.button-primary svg { width: 27px; fill: currentColor; }
.button-primary span { display: grid; line-height: 1.05; }
.button-primary small { margin-bottom: 3px; font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.button-dark { color: white; background: var(--navy); }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; text-decoration: underline; text-decoration-color: var(--aqua); text-decoration-thickness: 2px; text-underline-offset: 6px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 31px 0 0; padding: 0; color: #3f6479; font-size: 13px; font-weight: 700; list-style: none; }
.hero-points li::before { margin-right: 8px; color: var(--aqua); content: "✓"; }

.hero-visual { position: relative; display: grid; place-items: center; min-height: 690px; }
.sun-disc { position: absolute; top: 4%; right: 3%; width: 160px; aspect-ratio: 1; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 24px rgba(247, 216, 79, 0.18), 0 0 0 48px rgba(247, 216, 79, 0.09); }
.phone-frame { position: relative; z-index: 3; width: min(354px, 72vw); height: 635px; overflow: hidden; border: 10px solid var(--navy); border-radius: 56px; background: var(--sky); box-shadow: 0 34px 70px rgba(23, 76, 91, 0.23); transform: rotate(2deg); }
.phone-frame::before { position: absolute; z-index: 2; top: 12px; left: 50%; width: 92px; height: 23px; border-radius: 20px; background: var(--navy); content: ""; transform: translateX(-50%); }
.phone-frame img { width: 100%; height: 100%; object-fit: cover; }
.cat-badge { position: absolute; z-index: 5; right: 2%; bottom: 5%; width: 140px; border: 8px solid var(--cloud); border-radius: 50%; box-shadow: var(--shadow); transform: rotate(7deg); }
.orbit { position: absolute; z-index: 4; width: min(570px, 100%); height: 540px; border: 2px dashed rgba(24, 51, 84, 0.24); border-radius: 50%; transform: rotate(-8deg); }
.route-pill { position: absolute; display: inline-flex; gap: 8px; padding: 10px 14px; border: 1px solid rgba(24, 51, 84, 0.1); border-radius: 999px; color: var(--navy); background: rgba(255, 255, 255, 0.92); box-shadow: 0 8px 24px rgba(24, 51, 84, 0.13); font-family: var(--display); font-size: 12px; transform: rotate(8deg); }
.route-pill b { color: #157b7c; }
.route-one { top: 10%; left: -1%; }
.route-two { top: 48%; right: -3%; }
.route-three { right: 15%; bottom: -1%; }
.paw { position: absolute; width: 16px; height: 16px; border: 4px solid var(--sky); border-radius: 50%; color: var(--orange); background: var(--orange); font-size: 0; }
.paw-one { top: 27%; right: 6%; }
.paw-two { bottom: 22%; left: 3%; }
.paw-three { top: 2%; left: 39%; }

.section-shell { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.route-section { padding: 115px 0 128px; }
.section-intro { display: grid; grid-template-columns: 0.85fr 1.15fr; column-gap: 64px; align-items: end; }
.section-intro .eyebrow { grid-column: 1 / -1; }
.section-intro h2 { margin: 0; font-size: clamp(39px, 5vw, 65px); line-height: 1.02; letter-spacing: -0.055em; }
.section-intro > p:last-child { max-width: 420px; margin: 0 0 7px; color: var(--muted); font-size: 18px; }
.route-map { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 74px; }
.route-map::before { position: absolute; top: 35px; right: 10%; left: 10%; height: 3px; background: repeating-linear-gradient(90deg, var(--aqua) 0 8px, transparent 8px 16px); content: ""; }
.route-stop { position: relative; z-index: 1; padding: 0 18px; text-align: center; }
.stop-icon { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 24px; border: 8px solid var(--cloud); border-radius: 50%; color: white; background: var(--aqua); box-shadow: 0 0 0 1px var(--line), 0 12px 30px rgba(39, 184, 179, 0.2); font-family: var(--display); font-size: 25px; }
.route-stop:nth-child(even) .stop-icon { color: var(--navy); background: var(--sun); }
.route-stop h3 { margin: 0 0 9px; font-size: 20px; letter-spacing: -0.025em; }
.route-stop p { margin: 0; color: var(--muted); font-size: 15px; }

.screens-section { padding: 112px 0 120px; overflow: hidden; color: white; background: var(--navy); }
.screens-section .eyebrow { color: #70ddd6; }
.screens-intro > p:last-child { color: #b9cbd9; }
.screens-track { display: grid; grid-template-columns: repeat(4, minmax(220px, 1fr)); gap: 21px; margin-top: 64px; padding: 8px 0 28px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-color: var(--aqua) rgba(255,255,255,.1); }
.screen-card { min-width: 0; margin: 0; scroll-snap-align: start; }
.screen-card img { width: 100%; border: 8px solid rgba(255,255,255,.13); border-radius: 34px; background: var(--sky); box-shadow: 0 26px 58px rgba(0, 0, 0, 0.25); }
.screen-card figcaption { margin-top: 14px; color: #c6d6e1; font-family: var(--display); font-size: 14px; font-weight: 800; text-align: center; }

.privacy-callout { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; margin-top: 105px; margin-bottom: 105px; padding: 34px 38px; border: 1px solid var(--line); border-radius: 36px 12px 36px 12px; background: linear-gradient(120deg, #f1fffb, var(--sky)); box-shadow: var(--shadow); }
.privacy-mark { display: grid; place-items: center; width: 112px; height: 112px; border: 3px solid white; border-radius: 50%; background: var(--sun); overflow: hidden; }
.privacy-mark img { width: 88px; border-radius: 50%; }
.privacy-callout .eyebrow { margin-bottom: 8px; }
.privacy-callout h2 { margin: 0; font-size: clamp(29px, 4vw, 46px); line-height: 1.04; letter-spacing: -0.045em; }
.privacy-callout p:not(.eyebrow) { margin: 10px 0 0; color: var(--muted); }
.privacy-actions { display: grid; justify-items: start; gap: 17px; min-width: 205px; }

.final-cta { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 35px; min-height: 330px; padding: 62px max(24px, calc((100vw - 1080px) / 2)); overflow: hidden; background: var(--sun); }
.final-cta > * { position: relative; z-index: 1; }
.final-cta img { border-radius: 50%; box-shadow: 0 16px 40px rgba(105, 79, 7, 0.15); }
.final-cta .eyebrow { color: #8a6111; margin-bottom: 8px; }
.final-cta h2 { margin: 0; font-size: clamp(43px, 6vw, 72px); line-height: 1; letter-spacing: -0.06em; }
.final-cta p:not(.eyebrow) { margin: 10px 0 0; color: #594e30; font-size: 18px; }
.cta-sun { position: absolute; right: -90px; width: 440px; height: 440px; border: 1px solid rgba(24, 51, 84, 0.12); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.13), 0 0 0 84px rgba(255,255,255,.09); }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; padding: 31px max(24px, calc((100vw - 1180px) / 2)); color: #b8c8d4; background: #0e263f; font-size: 13px; }
.site-footer p { margin: 0; text-align: center; }
.site-footer nav { display: flex; justify-content: flex-end; gap: 22px; }
.site-footer a:hover { color: white; }
.footer-brand { color: white; }

.has-motion .reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.has-motion .reveal.is-visible { opacity: 1; transform: translateY(0); }
.has-motion .route-stop:nth-child(2) { transition-delay: 80ms; }
.has-motion .route-stop:nth-child(3) { transition-delay: 160ms; }
.has-motion .route-stop:nth-child(4) { transition-delay: 240ms; }

/* Privacy page */
.privacy-body { background: #eefbf8; }
.privacy-hero { padding: 78px max(24px, calc((100vw - 1120px) / 2)) 94px; background: linear-gradient(135deg, var(--sky), #eafff8 75%); }
.privacy-hero-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 48px; }
.privacy-hero h1 { max-width: 760px; margin: 0; font-size: clamp(53px, 8vw, 96px); line-height: 0.92; letter-spacing: -0.07em; }
.privacy-hero p:not(.eyebrow) { max-width: 670px; margin: 24px 0 0; color: #355771; font-size: 18px; }
.privacy-cat { width: clamp(130px, 17vw, 210px); border: 10px solid var(--cloud); border-radius: 50%; box-shadow: var(--shadow); transform: rotate(5deg); }
.policy-layout { display: grid; grid-template-columns: 260px minmax(0, 780px); justify-content: center; gap: 42px; width: min(1120px, calc(100% - 48px)); margin: 58px auto 96px; align-items: start; }
.policy-aside { position: sticky; top: 104px; padding: 23px; border: 1px solid var(--line); border-radius: 24px 8px 24px 8px; background: rgba(255,255,255,.88); box-shadow: 0 16px 40px rgba(19, 72, 91, 0.1); }
.policy-aside > img { width: 84px; height: 84px; margin-bottom: 18px; border-radius: 24px; }
.policy-aside strong { display: block; font-family: var(--display); font-size: 18px; }
.policy-aside p { margin: 7px 0 17px; color: var(--muted); font-size: 13px; }
.policy-aside nav { display: grid; gap: 4px; }
.policy-aside nav a { padding: 7px 0; color: #416478; font-size: 13px; font-weight: 700; }
.policy-aside nav a:hover { color: #157b7c; }
.policy-source { display: inline-flex; margin-top: 20px; color: #157b7c; font-size: 13px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.policy-content { min-width: 0; padding: clamp(28px, 5vw, 62px); border: 1px solid var(--line); border-radius: 12px 42px 12px 42px; background: white; box-shadow: var(--shadow); overflow-wrap: anywhere; }
.policy-title { margin: 0 0 20px !important; color: var(--ink) !important; font-family: var(--display); font-size: clamp(36px, 5vw, 54px); font-weight: 900; line-height: 1; letter-spacing: -0.05em; text-wrap: balance; }
.effective { display: inline-block; margin: 0 0 26px !important; padding: 7px 12px; border-radius: 999px; color: var(--navy) !important; background: var(--sun); font-family: var(--display); font-size: 12px; font-weight: 900; }
.policy-content h2 { margin: 58px 0 18px; padding-top: 12px; border-top: 2px solid var(--sky); font-size: clamp(29px, 4vw, 40px); line-height: 1.08; letter-spacing: -0.04em; }
.policy-content h2:first-of-type { margin-top: 12px; }
.policy-content h3 { margin: 31px 0 12px; color: #176e72; font-size: 20px; line-height: 1.25; }
.policy-content p, .policy-content li { color: #3f586c; }
.policy-content p { margin: 0 0 16px; }
.policy-content ul { padding-left: 22px; }
.policy-content li { margin-bottom: 8px; }
.partner-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 14px; padding: 0; list-style: none; }
.partner-list a { display: block; height: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 9px; color: #126f73; background: #f5fffc; font-size: 13px; font-weight: 800; overflow-wrap: anywhere; }
.contact-box { margin-top: 48px; padding: 27px; border-radius: 18px; background: var(--navy); color: white; }
.contact-box h2 { margin-top: 0; border-color: rgba(255,255,255,.2); color: white; }
.contact-box p { color: #cadae5; }
.contact-box a { color: var(--sun); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 650px; }
  .route-map { grid-template-columns: 1fr 1fr; gap: 48px 16px; }
  .route-map::before { display: none; }
  .screens-track { grid-template-columns: repeat(4, minmax(250px, 34vw)); }
  .privacy-callout { grid-template-columns: auto 1fr; }
  .privacy-actions { grid-column: 2; display: flex; align-items: center; }
  .final-cta { grid-template-columns: auto 1fr; }
  .final-cta .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 760px) {
  .site-header { min-height: 68px; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: calc(100% + 1px); right: 14px; left: 14px; display: none; align-items: stretch; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--cloud); box-shadow: var(--shadow); }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 10px 12px; }
  .site-nav .nav-cta { text-align: center; }
  .hero { grid-template-columns: minmax(0, 1fr); min-height: auto; padding-top: 78px; }
  .hero h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero-visual { min-height: 570px; margin: 0 -10px; }
  .phone-frame { width: 286px; height: 512px; border-width: 8px; border-radius: 46px; }
  .orbit { width: 430px; height: 430px; }
  .cat-badge { right: 1%; width: 105px; }
  .sun-disc { right: 0; width: 110px; }
  .section-intro { grid-template-columns: 1fr; gap: 18px; }
  .section-intro > p:last-child { margin: 0; }
  .route-map { grid-template-columns: 1fr; gap: 40px; }
  .route-stop { display: grid; grid-template-columns: 62px 1fr; gap: 18px; align-items: start; padding: 0; text-align: left; }
  .stop-icon { width: 62px; height: 62px; margin: 0; border-width: 6px; }
  .screens-track { grid-template-columns: repeat(4, minmax(255px, 78vw)); margin-right: -24px; }
  .privacy-callout { grid-template-columns: 1fr; padding: 29px; }
  .privacy-mark { width: 88px; height: 88px; }
  .privacy-actions { grid-column: auto; display: grid; }
  .final-cta { grid-template-columns: 1fr; justify-items: start; }
  .final-cta img { width: 120px; }
  .final-cta .button { grid-column: auto; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; }
  .site-footer p { text-align: left; }
  .site-footer nav { flex-wrap: wrap; justify-content: flex-start; }
  .privacy-hero-inner { grid-template-columns: 1fr; }
  .privacy-cat { grid-row: 1; width: 120px; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-aside { position: static; }
  .policy-aside nav { display: none; }
  .partner-list { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .section-shell, .policy-layout { width: calc(100% - 30px); }
  .hero { padding-right: 15px; padding-left: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-points { display: grid; }
  .route-pill { font-size: 10px; }
  .route-one { left: 3%; }
  .route-two { right: 1%; }
  .privacy-hero, .final-cta { padding-right: 20px; padding-left: 20px; }
  .policy-content { padding: 25px 20px; border-radius: 8px 28px 8px 28px; }
}

@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; }
}
