:root {
  color-scheme: light;
  --ink: #12231b;
  --ink-soft: #42554b;
  --paper: #ffffff;
  --mist: #f4f8f6;
  --mint: #e8f4ee;
  --mint-strong: #d7ebdf;
  --line: #d6e1da;
  --green: #0d6d4d;
  --green-dark: #084a35;
  --blue: #245d91;
  --amber: #9b5b12;
  --night: #101915;
  --night-soft: #1c2923;
  --shadow: 0 20px 54px rgba(18, 35, 27, 0.13);
  --content: 1160px;
  --reading: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(36, 93, 145, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 750;
  transform: translateY(-140%);
}

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

.preview-banner {
  min-height: 34px;
  padding: 7px 20px;
  background: var(--night);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  text-align: center;
}

.preview-banner strong {
  color: #fff;
}

.preview-banner a {
  color: #fff;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(214, 225, 218, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 40px), var(--content));
  min-height: 68px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 8px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
}

.top-nav a {
  text-decoration: none;
}

.top-nav a:hover {
  color: var(--ink);
}

.nav-get {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 34px;
  padding: 5px 12px;
  background: var(--ink);
  border-radius: 7px;
  color: #fff !important;
  font-weight: 800;
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
}

.reading-width {
  width: min(100%, var(--reading));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
li,
dd,
dt {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5.6vw, 4.65rem);
  line-height: 1.02;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.08;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero {
  position: relative;
  min-height: clamp(570px, 72svh, 710px);
  overflow: hidden;
  background: var(--mint);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: min(calc(100% - 40px), var(--content));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(52px, 4.5vw, 64px) 0;
}

.hero-copy-block {
  width: min(58%, 650px);
}

.hero-copy-block h1 {
  max-width: 640px;
}

.hero-copy-block .lead {
  max-width: 615px;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.app-store-link {
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 7px;
}

.app-store-badge {
  width: 179px;
  height: auto;
}

.text-link {
  color: var(--green-dark);
  font-weight: 780;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.microcopy {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(13, 109, 77, 0.2);
  color: #294038;
  font-size: 0.9rem;
  font-weight: 730;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--green);
  border-radius: 50%;
}

.hero-visual {
  position: absolute;
  inset: 0 max(20px, calc((100vw - var(--content)) / 2)) 0 auto;
  width: min(42vw, 500px);
  pointer-events: none;
}

.hero-visual img {
  position: absolute;
  width: clamp(230px, 24vw, 320px);
  border: 1px solid rgba(18, 35, 27, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-visual .hero-shot-primary {
  right: 0;
  top: 54px;
  z-index: 2;
}

.hero-visual .hero-shot-secondary {
  right: clamp(160px, 15vw, 218px);
  top: 166px;
  z-index: 1;
  width: clamp(190px, 20vw, 270px);
}

.section {
  padding: clamp(70px, 9vw, 116px) 0;
  border-bottom: 1px solid var(--line);
}

#how-it-helps {
  padding-top: 40px;
}

.section-soft {
  background: var(--mist);
}

.section-mint {
  background: var(--mint);
}

.section-dark {
  background: var(--night);
  color: #fff;
}

.section-dark .eyebrow {
  color: #8fd9b5;
}

.section-dark .lead,
.section-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 46px;
  align-items: end;
  margin-bottom: clamp(38px, 6vw, 70px);
}

.section-intro .eyebrow {
  margin-bottom: 0;
}

.section-intro h2 {
  max-width: 760px;
}

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

.scenario {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(44px, 8vw, 96px);
  align-items: center;
  padding: clamp(66px, 9vw, 110px) 0;
  border-bottom: 1px solid var(--line);
}

.scenario:last-child {
  border-bottom: 0;
}

.scenario-reverse .scenario-copy {
  order: 2;
}

.scenario-reverse .scenario-media {
  order: 1;
}

.scenario-number {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 850;
}

.scenario h3 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.1;
}

.scenario-copy > p:not(.scenario-number):not(.example-label) {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.example {
  margin-top: 28px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}

.example-label {
  margin: 0 0 7px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.example strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.45;
}

.scenario-media {
  position: relative;
  min-height: 610px;
}

.scenario-media figure {
  position: absolute;
  margin: 0;
}

.scenario-media img {
  width: 100%;
  border: 1px solid rgba(18, 35, 27, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.scenario-media .shot-front {
  right: 0;
  top: 0;
  z-index: 2;
  width: min(56%, 290px);
}

.scenario-media .shot-back {
  left: 0;
  top: 86px;
  z-index: 1;
  width: min(51%, 264px);
}

.scenario-media.single {
  display: flex;
  align-items: center;
  justify-content: center;
}

.scenario-media.single figure {
  position: static;
  width: min(70%, 340px);
}

.coverage-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.coverage-number {
  margin: 0;
  font-size: clamp(5.2rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 0.82;
}

.coverage-label {
  max-width: 280px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.16rem;
  font-weight: 700;
}

.coverage-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  margin: 0 0 32px;
  border-top: 1px solid var(--line);
}

.coverage-types div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.coverage-types dt {
  color: var(--ink);
  font-weight: 820;
}

.coverage-types dd {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.guidance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 36px;
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.guidance-grid article {
  padding: 27px 0 0;
}

.guidance-grid article + article {
  border-left: 1px solid var(--line);
  padding-left: 36px;
}

.guidance-grid .guidance-kicker {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.guidance-grid p:last-child {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: center;
}

.watch-layout .lead {
  margin: 20px 0 0;
}

.watch-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.86);
}

.watch-list li {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

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

.watch-gallery figure {
  margin: 0;
}

.watch-gallery img {
  width: 100%;
  aspect-ratio: 422 / 514;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.faq-list {
  max-width: 920px;
  margin: 46px auto 0;
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  top: 20px;
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 450;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: -4px 0 24px;
  color: var(--ink-soft);
}

.final-cta {
  background: var(--mint);
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-layout h2 {
  max-width: 720px;
}

.cta-layout .microcopy {
  margin-top: 10px;
}

.page-hero {
  padding: clamp(62px, 8vw, 104px) 0 clamp(56px, 7vw, 88px);
  background: var(--mint);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.breadcrumbs a {
  color: var(--green-dark);
  text-underline-offset: 3px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.45rem, 5vw, 4.25rem);
}

.page-hero .lead {
  max-width: 780px;
  margin: 22px 0 0;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(46px, 8vw, 100px);
}

.content-grid + .content-grid {
  margin-top: 88px;
}

.content-grid h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}

.content-copy > p:first-child {
  margin-top: 0;
}

.content-copy p,
.content-copy li {
  color: var(--ink-soft);
}

.content-copy a {
  color: var(--green-dark);
  font-weight: 720;
  text-underline-offset: 4px;
}

.location-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px 60px;
}

.location-group {
  min-width: 0;
}

.location-group h2 {
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  font-size: 1.5rem;
}

.location-group p {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.location-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.location-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.location-list a {
  color: var(--green-dark);
  font-weight: 760;
  text-underline-offset: 3px;
}

.location-list small {
  flex: 0 0 auto;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1.2fr);
  gap: clamp(44px, 8vw, 90px);
  align-items: center;
}

.proof-layout img {
  width: min(100%, 400px);
  margin: 0 auto;
  border: 1px solid rgba(18, 35, 27, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fact-list {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.fact-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.fact-list strong {
  color: var(--ink);
}

.policy {
  width: min(calc(100% - 40px), 840px);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.policy h1 {
  font-size: clamp(2.35rem, 5vw, 3.75rem);
}

.policy h2 {
  margin-top: 42px;
  font-size: 1.45rem;
}

.policy p,
.policy li {
  color: var(--ink-soft);
}

.policy .updated {
  margin-top: 12px;
  font-size: 0.9rem;
}

.policy a {
  color: var(--green-dark);
  font-weight: 700;
  text-underline-offset: 4px;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 17px;
  border: 1px solid var(--ink);
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
}

.primary-button {
  background: var(--ink);
  color: #fff !important;
}

.secondary-button {
  background: transparent;
  color: var(--ink) !important;
}

.site-footer {
  padding: 42px 0 34px;
  background: var(--night);
  color: rgba(255, 255, 255, 0.72);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(3, minmax(120px, 0.75fr));
  gap: 34px;
}

.footer-brand {
  color: #fff;
  font-weight: 850;
}

.footer-main p {
  max-width: 390px;
  margin: 12px 0 0;
  font-size: 0.9rem;
}

.footer-main h2 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 0.83rem;
  text-transform: uppercase;
}

.footer-main nav {
  display: grid;
  gap: 9px;
}

.footer-main a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-legal {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
}

.footer-legal p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero-copy-block {
    width: min(66%, 610px);
  }

  .hero-visual {
    right: -50px;
    width: 390px;
  }

  .hero-visual .hero-shot-secondary {
    display: none;
  }

  .scenario,
  .coverage-callout,
  .watch-layout,
  .content-grid,
  .proof-layout {
    grid-template-columns: 1fr;
  }

  .scenario {
    gap: 46px;
  }

  .scenario-reverse .scenario-copy,
  .scenario-reverse .scenario-media {
    order: initial;
  }

  .scenario-media {
    width: min(100%, 620px);
    min-height: 560px;
    margin: 0 auto;
  }

  .coverage-types {
    max-width: 700px;
  }

  .watch-layout {
    gap: 54px;
  }

  .watch-gallery {
    max-width: 720px;
  }

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

@media (min-width: 761px) and (max-height: 800px) {
  .hero-inner {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .hero-copy-block h1 {
    font-size: clamp(2.8rem, 4.5vw, 3.8rem);
  }

  .hero-copy-block .lead {
    margin-top: 16px;
    font-size: 1.08rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .trust-row {
    margin-top: 18px;
    padding-top: 14px;
  }

  .hero-visual img {
    width: clamp(220px, 22vw, 285px);
  }

  .hero-visual .hero-shot-primary {
    top: 34px;
  }

  .hero-visual .hero-shot-secondary {
    top: 120px;
    width: clamp(185px, 18vw, 235px);
  }
}

@media (max-width: 760px) {
  .header-inner,
  .container,
  .hero-inner,
  .policy {
    width: min(calc(100% - 32px), var(--content));
  }

  .top-nav a:not(.nav-get) {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    display: block;
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .hero-copy-block {
    width: 100%;
  }

  .hero-visual {
    position: absolute;
    inset: auto -72px -220px auto;
    width: 270px;
    height: 560px;
    margin: 0;
    opacity: 0.15;
  }

  .hero-visual img {
    width: 250px;
  }

  .hero-visual .hero-shot-primary {
    right: 0;
    top: 0;
  }

  .hero-visual .hero-shot-secondary {
    display: none;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .scenario-media {
    min-height: 560px;
  }

  .scenario-media .shot-front {
    width: min(58%, 250px);
  }

  .scenario-media .shot-back {
    width: min(52%, 224px);
  }

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

  .guidance-grid article {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
  }

  .guidance-grid article + article {
    padding-left: 0;
    border-left: 0;
  }

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

  .cta-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .location-groups {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .preview-banner {
    font-size: 0.72rem;
  }

  .brand span {
    max-width: 155px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  h1 {
    font-size: 2.45rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2rem;
  }

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

  .trust-row {
    display: none;
  }

  .hero-visual {
    right: -72px;
    bottom: -390px;
    width: 240px;
    height: 520px;
    opacity: 0.18;
  }

  .hero-visual img {
    width: 230px;
  }

  .hero-visual .hero-shot-primary {
    right: 0;
  }

  .hero-visual .hero-shot-secondary {
    display: none;
  }

  .scenario-media {
    min-height: 460px;
  }

  .scenario-media .shot-front {
    width: 58%;
  }

  .scenario-media .shot-back {
    top: 58px;
    width: 50%;
  }

  .scenario-media.single figure {
    width: min(82%, 300px);
  }

  .coverage-types,
  .watch-gallery {
    grid-template-columns: 1fr;
  }

  .watch-gallery figure:nth-child(n + 3) {
    display: none;
  }

  .location-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

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

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