:root {
  color-scheme: light;
  --ink: #132226;
  --muted: #5c6d72;
  --paper: #ffffff;
  --wash: #eef6f4;
  --line: #d4e1df;
  --teal: #118777;
  --teal-dark: #0a504b;
  --coral: #e55f49;
  --violet: #6656aa;
  --gold: #ae7816;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

img { display: block; max-width: 100%; }

.shell {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  text-decoration: none;
}

.mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  color: #fff;
  background: var(--teal-dark);
}

.topbar nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: min(690px, 76svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background-color: #17383a;
  background-image: var(--hero-image);
  background-position: var(--hero-position, center 20%);
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(8, 34, 38, .82);
}

.hero-content {
  padding: 72px 0 66px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: #9fe7db;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: #edf8f6;
  font-size: clamp(19px, 2.4vw, 26px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: #fff;
  color: var(--teal-dark);
  background: #fff;
}

.button.secondary { background: rgba(7, 27, 30, .45); }

.play-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 6px;
  background: #fff;
  line-height: 0;
}

.play-badge-link:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.play-badge {
  display: block;
  width: auto;
  height: 40px;
}

.quick-facts {
  border-bottom: 1px solid var(--line);
  background: var(--wash);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.fact {
  min-height: 112px;
  padding: 24px;
  background: var(--wash);
}

.fact strong { display: block; font-size: 17px; }
.fact span { color: var(--muted); font-size: 14px; }

section.content { padding: 72px 0; }
section.content + section.content { border-top: 1px solid var(--line); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy { margin: 0; color: var(--muted); font-size: 18px; }

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 40px;
  border: 1px solid var(--line);
  background: var(--line);
}

.feature {
  min-height: 190px;
  padding: 26px;
  background: #fff;
}

.feature strong { display: block; margin-bottom: 9px; font-size: 20px; }
.feature p { margin: 0; color: var(--muted); }

.product-proof {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 56px;
  align-items: center;
}

.phone-shot {
  width: min(100%, 390px);
  max-height: 680px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 18px 50px rgba(18, 49, 52, .12);
}

.proof-copy h2 { margin-bottom: 20px; }
.proof-copy p { color: var(--muted); font-size: 18px; }

.privacy-note {
  margin-top: 26px;
  padding: 22px 0 22px 22px;
  border-left: 4px solid var(--teal);
}

.privacy-note strong { display: block; margin-bottom: 5px; }
.privacy-note p { margin: 0; font-size: 16px; }

.video {
  position: relative;
  aspect-ratio: 16 / 9;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0a2023;
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.compare-wrap { overflow-x: auto; margin-top: 38px; }

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th, td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th { color: var(--teal-dark); font-size: 14px; }
td:first-child { font-weight: 850; }

.text-link { color: var(--teal-dark); font-weight: 800; }

footer {
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 10px 16px; }

@media (max-width: 760px) {
  .topbar { gap: 12px; }
  .topbar nav { gap: 12px; font-size: 13px; }
  .hero { min-height: 70svh; background-position: center top; }
  .hero-content { padding: 54px 0 50px; }
  .facts, .feature-list { grid-template-columns: 1fr; }
  .section-head, .product-proof { grid-template-columns: 1fr; gap: 30px; }
  section.content { padding: 54px 0; }
  .phone-shot { max-height: 560px; }
  .footer-row { flex-direction: column; }
}

@media (max-width: 430px) {
  .shell { width: min(100% - 28px, 1080px); }
  h1 { font-size: 46px; }
  .lead { font-size: 19px; }
  .button { width: 100%; }
  .fact, .feature { padding: 22px; }
}

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