:root {
  --navy: #062d68;
  --navy-deep: #021b42;
  --blue: #1167d8;
  --sky: #eaf4ff;
  --green: #0d8a57;
  --orange: #ef6c33;
  --ink: #10213a;
  --muted: #637086;
  --line: #dbe2ea;
  --canvas: #f6f8f5;
  --white: #fff;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(15, 38, 70, .12);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: radial-gradient(rgba(6, 45, 104, .055) .7px, transparent .7px);
  background-size: 13px 13px;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.section, footer, .site-header { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { border-radius: 12px; box-shadow: 0 5px 14px rgba(6, 45, 104, .18); }
.brand span { font: 800 1.15rem/1 -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif; letter-spacing: -.03em; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: .92rem; font-weight: 600; }
.site-nav a { text-decoration: none; color: #3f4d61; transition: color .2s ease; }
.site-nav a:hover { color: var(--blue); }
.site-nav .nav-cta {
  padding: 10px 17px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
}
.menu-button { display: none; }

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
  padding-block: 70px 95px;
}
.eyebrow {
  margin: 0 0 17px;
  color: var(--blue);
  font: 800 .74rem/1 -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #18a36a;
  box-shadow: 0 0 0 5px rgba(24, 163, 106, .12);
}
h1, h2, h3 { margin-top: 0; font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif; letter-spacing: -.045em; line-height: 1.07; }
.hero h1 { margin-bottom: 26px; color: var(--navy-deep); font-size: clamp(3.8rem, 7vw, 6.9rem); font-weight: 800; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-intro { max-width: 590px; margin: 0 0 32px; color: var(--muted); font-size: 1.16rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--navy); box-shadow: 0 12px 25px rgba(6, 45, 104, .22); }
.button-secondary { border: 1px solid var(--line); background: rgba(255, 255, 255, .7); }
.availability-note { margin: 18px 0 0; color: #7d899a; font-size: .82rem; }

.hero-visual { position: relative; min-height: 520px; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 0 0 12%;
  border-radius: 48% 52% 45% 55%;
  background: linear-gradient(145deg, #e6f2ff, #d2e7ff);
  transform: rotate(-5deg);
}
.icon-card {
  position: absolute;
  width: min(370px, 72%);
  left: 50%;
  top: 50%;
  transform: translate(-48%, -50%) rotate(2deg);
  padding: 14px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 29%;
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
}
.icon-card img { border-radius: 24%; }
.route-line {
  position: absolute;
  z-index: -1;
  width: 78%;
  height: 12px;
  border-radius: 999px;
  transform-origin: center;
}
.route-line::after {
  content: "";
  position: absolute;
  right: 12%;
  top: 50%;
  width: 22px;
  height: 22px;
  border: 7px solid var(--white);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.route-line-one { left: 2%; top: 24%; background: #e82d3c; transform: rotate(-22deg); }
.route-line-two { right: -2%; bottom: 20%; background: #008e4f; transform: rotate(24deg); }
.status-pill {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 35px rgba(10, 40, 80, .15);
  backdrop-filter: blur(12px);
}
.status-pill span:last-child { display: grid; }
.status-pill strong { font-size: .86rem; }
.status-pill small { color: var(--muted); font-size: .72rem; }
.status-pill-top { top: 11%; right: -2%; }
.status-pill-bottom { left: 0; bottom: 10%; }
.line-badge {
  display: inline-grid;
  place-items: center;
  width: 33px;
  height: 33px;
  flex: none;
  color: white;
  border-radius: 50%;
  font: 800 .93rem/1 -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
}
.line-4 { background: #00934f; }
.line-7 { background: #9b4f9e; }
.line-n { color: #111; background: #f6c817; }
.pin-symbol {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  border-radius: 12px 12px 16px 16px;
  background: var(--blue);
}

.trust-strip {
  display: flex;
  justify-content: center;
  gap: clamp(25px, 6vw, 80px);
  padding: 24px 30px;
  color: #526074;
  border-block: 1px solid var(--line);
  font-size: .88rem;
  font-weight: 700;
}
.trust-strip span::before { content: "✓"; margin-right: 8px; color: var(--green); }
.feature-section { padding-block: 125px; }
.section-heading { max-width: 670px; margin-bottom: 54px; }
.section-heading h2, .availability h2 { margin-bottom: 16px; font-size: clamp(2.3rem, 5vw, 4rem); color: var(--navy-deep); }
.section-heading > p:last-child, .availability p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card {
  position: relative;
  min-height: 300px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(219, 226, 234, .9);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 35px rgba(20, 45, 75, .055);
}
.feature-card-large { grid-column: 1 / -1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.feature-card h3 { max-width: 520px; margin-bottom: 12px; font-size: 1.55rem; color: var(--navy-deep); }
.feature-card p { max-width: 520px; margin-bottom: 0; color: var(--muted); }
.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  border-radius: 15px;
  font: 800 1.25rem/1 -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
}
.feature-card-large .feature-icon { position: absolute; top: 34px; left: 34px; }
.feature-card-large > div:nth-child(2) { padding-top: 75px; }
.feature-icon.blue { color: #1265cc; background: #e9f2ff; }
.feature-icon.green { color: var(--green); background: #e4f6ed; }
.feature-icon.orange { color: #ce4e1a; background: #ffede4; }
.feature-icon.violet { color: #754aa0; background: #f0e8f8; }
.feature-icon.navy { color: var(--navy); background: #e8eef6; }
.mini-route { padding: 25px; border-radius: 22px; background: var(--sky); }
.mini-route > div:not(.mini-route-track) { display: flex; align-items: center; gap: 12px; }
.mini-route-track { width: 3px; height: 55px; margin-left: 15px; background: repeating-linear-gradient(to bottom, #73a5df 0 7px, transparent 7px 12px); }

.privacy-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 75px;
  color: var(--white);
  border-radius: 38px;
  background: var(--navy-deep);
  box-shadow: var(--shadow);
}
.eyebrow.light { color: #80b6ff; }
.privacy-callout h2 { margin-bottom: 0; font-size: clamp(2.5rem, 5vw, 4.2rem); }
.privacy-copy { align-self: end; }
.privacy-copy p { margin-top: 0; color: #c2d2e7; font-size: 1.06rem; }
.text-link { display: inline-flex; gap: 9px; color: var(--white); font-weight: 700; text-decoration: none; }
.text-link span { color: #80b6ff; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.availability { display: grid; grid-template-columns: 220px 1fr; align-items: center; gap: 70px; padding-block: 140px; }
.availability-icon { border-radius: 24%; box-shadow: var(--shadow); }

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  padding-block: 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .85rem;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-weight: 700; text-decoration: none; }
.legal { grid-column: 1 / -1; margin: 0; color: #8a95a4; font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Privacy policy */
.policy-page { background: #f8faf8; }
.policy-wrap { width: min(1050px, calc(100% - 40px)); margin: 70px auto 120px; }
.policy-heading { max-width: 720px; margin-bottom: 65px; }
.policy-heading h1 { margin-bottom: 17px; color: var(--navy-deep); font-size: clamp(3rem, 7vw, 5.5rem); }
.policy-updated { color: var(--muted); font-size: .88rem; }
.policy-lead { margin-top: 28px; color: #415069; font-size: 1.25rem; }
.policy-layout { display: grid; grid-template-columns: 250px 1fr; align-items: start; gap: 75px; }
.policy-summary {
  position: sticky;
  top: 28px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 12px 30px rgba(20,45,75,.06);
}
.policy-summary strong { color: var(--navy); font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif; }
.policy-summary ul { margin: 14px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: .86rem; }
.policy-summary li { padding: 8px 0; border-bottom: 1px solid #edf0f3; }
.policy-summary li::before { content: "✓"; margin-right: 8px; color: var(--green); font-weight: 800; }
.policy-content section { padding-bottom: 40px; margin-bottom: 40px; border-bottom: 1px solid var(--line); }
.policy-content h2 { margin-bottom: 16px; color: var(--navy-deep); font-size: 1.55rem; }
.policy-content p { color: #506078; }
.policy-content a { color: var(--blue); font-weight: 700; }
.policy-footer { grid-template-columns: 1fr auto; }
.policy-footer p { margin: 0; }
.policy-footer a { color: var(--navy); font-weight: 700; text-decoration: none; }

@media (max-width: 850px) {
  .site-header { min-height: 76px; }
  .menu-button {
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 0;
    background: transparent;
  }
  .menu-button span { width: 24px; height: 2px; background: var(--navy); }
  .site-nav:not(.policy-nav) {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px; }
  .hero { grid-template-columns: 1fr; gap: 20px; padding-top: 55px; }
  .hero-visual { min-height: 500px; }
  .trust-strip { flex-wrap: wrap; gap: 15px 28px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: auto; grid-template-columns: 1fr; gap: 25px; }
  .privacy-callout { grid-template-columns: 1fr; gap: 35px; padding: 48px 35px; }
  .availability { grid-template-columns: 130px 1fr; gap: 35px; }
  .policy-layout { grid-template-columns: 1fr; gap: 40px; }
  .policy-summary { position: static; }
}

@media (max-width: 560px) {
  .section, footer, .site-header { width: min(100% - 28px, 1180px); }
  .hero { min-height: auto; padding-block: 55px 70px; }
  .hero h1 { font-size: 3.55rem; }
  .hero-intro { font-size: 1rem; }
  .hero-visual { min-height: 390px; }
  .icon-card { width: 75%; }
  .status-pill { padding: 9px 11px; }
  .status-pill-top { right: -3%; }
  .status-pill-bottom { left: -2%; }
  .trust-strip { justify-content: flex-start; padding-inline: 14px; }
  .feature-section { padding-block: 90px; }
  .feature-card { min-height: 275px; padding: 28px; }
  .feature-card-large .feature-icon { top: 28px; left: 28px; }
  .feature-card-large > div:nth-child(2) { padding-top: 70px; }
  .privacy-callout { width: calc(100% - 28px); border-radius: 28px; }
  .availability { grid-template-columns: 85px 1fr; gap: 24px; padding-block: 100px; }
  .availability h2 { font-size: 2rem; }
  footer { grid-template-columns: 1fr auto; }
  footer > p:not(.legal) { display: none; }
  .policy-nav a:first-child { display: none; }
  .policy-wrap { width: calc(100% - 28px); margin-top: 55px; }
  .policy-heading { margin-bottom: 45px; }
  .policy-lead { font-size: 1.08rem; }
  .policy-footer { display: flex; align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
