:root {
  --teal: #2e7775;
  --teal-deep: #1f5f5e;
  --teal-soft: #73b7b7;
  --teal-tint: #edf5f3;
  --accent: #d7884d;
  --ink: #1f3e3f;
  --text: #29494a;
  --muted: #4f6a6a;
  --quiet: #8aa1a1;
  --sand: #f7f4ee;
  --sand-deep: #efe9dd;
  --surface: #ffffff;
  --surface-soft: #fbfaf7;
  --line: rgba(46, 119, 117, 0.16);
  --line-soft: rgba(46, 119, 117, 0.1);
  --shadow-sm: 0 6px 20px rgba(31, 62, 63, 0.06);
  --shadow: 0 18px 44px rgba(31, 62, 63, 0.09);
  --shadow-lg: 0 30px 70px rgba(31, 62, 63, 0.12);
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --content: 1140px;
  --content-narrow: 760px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --better: #5bae7b;
  --some: #d9a441;
  --higher: #c9734f;
  --avoid: #c13636;
  --nodata: #9ba9a9;

  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Playfair Display", Georgia, "Libre Baskerville", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--sand);
  letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: rgba(46, 119, 117, 0.18);
  color: var(--ink);
}

/* ---------- Skip link ---------- */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--teal);
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}
.skip-link:focus {
  transform: translateY(0);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(247, 244, 238, 0.82);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
}

.nav-shell {
  width: min(calc(100% - 32px), var(--content));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}

.brand-image {
  width: 144px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.drawer-links a,
.footer-links a,
.footer-cols a {
  color: var(--ink);
  text-decoration: none;
  transition: color 160ms var(--ease), background 160ms var(--ease);
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--teal-deep);
  background: rgba(115, 183, 183, 0.16);
  outline: none;
}

.site-nav a[aria-current="page"] {
  font-weight: 700;
}

.site-nav .nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  padding: 0 20px;
  background: var(--teal-tint);
  color: var(--teal-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease),
    background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}
.site-nav .nav-cta::after {
  content: "\2192";
  font-size: 15px;
  line-height: 1;
  transition: transform 180ms var(--ease);
}
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(46, 119, 117, 0.22);
  outline: none;
}
.site-nav .nav-cta:hover::after,
.site-nav .nav-cta:focus-visible::after {
  transform: translateX(3px);
}

/* ---------- Menu toggle / drawer ---------- */
.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 2px;
  content: "";
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}
.menu-toggle-lines {
  position: relative;
}
.menu-toggle-lines::before {
  position: absolute;
  left: 0;
  top: -7px;
}
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
  top: 7px;
}
body.menu-open .menu-toggle-lines {
  background: transparent;
}
body.menu-open .menu-toggle-lines::before {
  transform: translateY(7px) rotate(45deg);
}
body.menu-open .menu-toggle-lines::after {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: none;
  background: rgba(31, 62, 63, 0.34);
  backdrop-filter: blur(2px);
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  width: min(86vw, 360px);
  height: 100%;
  padding: 20px;
  background: var(--sand);
  box-shadow: -28px 0 70px rgba(31, 62, 63, 0.2);
  transform: translateX(105%);
  transition: transform 240ms var(--ease);
  display: flex;
  flex-direction: column;
}

.drawer-header {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}

.drawer-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
}

.drawer-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
}

.drawer-links {
  display: grid;
  gap: 4px;
  margin-top: 20px;
}

.drawer-links a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 650;
  font-size: 15px;
}
.drawer-links a::after {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--line);
}
.drawer-links a:hover,
.drawer-links a:focus-visible,
.drawer-links a[aria-current="page"] {
  color: var(--teal-deep);
  background: rgba(115, 183, 183, 0.16);
  outline: none;
}

.drawer-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 8px;
}
.drawer-foot .footer-entity {
  color: var(--quiet);
  font-size: 12.5px;
}
.drawer-foot .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
}
.drawer-foot .footer-links a {
  color: var(--muted);
  font-size: 13px;
}

body.menu-open {
  overflow: hidden;
}
body.menu-open .drawer {
  transform: translateX(0);
}
body.menu-open .drawer-overlay {
  display: block;
}

/* ---------- Layout ---------- */
.page-main {
  isolation: isolate;
}

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

/* ---------- Typography ---------- */
h1,
h2,
h3,
.display {
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin: 0;
}

h1,
.display {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.018em;
}

h2 {
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

.lead {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--teal-deep);
  font-size: 12.5px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--teal);
  opacity: 0.6;
}
.eyebrow.centered::before {
  display: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0;
  color: var(--teal-deep);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.text-link::after {
  content: "\2192";
  transition: transform 180ms var(--ease);
}
.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
  outline: none;
}
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: var(--radius-sm);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease), background 160ms var(--ease),
    color 160ms var(--ease), border-color 160ms var(--ease);
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 24px rgba(46, 119, 117, 0.22);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--teal-deep);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(46, 119, 117, 0.3);
  outline: none;
}
.btn-secondary {
  background: transparent;
  color: var(--teal-deep);
  border-color: var(--line);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(115, 183, 183, 0.14);
  border-color: var(--teal);
  outline: none;
}
.btn-block {
  width: 100%;
}

/* ---------- Store badges ---------- */
.store-badge {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: var(--radius-sm);
  outline-offset: 4px;
  transition: transform 160ms var(--ease);
}
.store-badge:hover {
  transform: translateY(-2px);
}
.store-badge img {
  width: auto;
  height: 46px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 44px 0 24px;
  overflow: hidden;
}
.hero::after {
  position: absolute;
  left: 50%;
  bottom: -40px;
  width: min(760px, 90%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  content: "";
}

.hero-inner {
  display: grid;
  gap: 28px;
  align-items: center;
}

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

.hero-copy h1 {
  font-size: 38px;
}

.hero-copy .lead {
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}
.hero-actions .btn {
  min-height: 50px;
}
.hero-actions .btn-secondary {
  margin-left: 2px;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-media {
  position: relative;
  width: min(100%, 380px);
  justify-self: center;
}
.hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-media::before {
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: calc(var(--radius-lg) + 18px);
  background: radial-gradient(60% 60% at 50% 30%, rgba(115, 183, 183, 0.28), transparent 70%);
  content: "";
}

/* ---------- Trust strip ---------- */
.trust-strip {
  padding: 18px 0 8px;
}
.trust-row {
  display: grid;
  gap: 10px;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 12px 18px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.trust-chip .ti {
  flex: none;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--teal-tint);
  border-radius: 10px;
}
.trust-chip .ti svg {
  width: 20px;
  height: 20px;
}
.trust-chip strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.trust-chip span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

/* ---------- Sections ---------- */
.section {
  padding: 64px 0;
}
.section-sm {
  padding: 44px 0;
}
.section-intro {
  padding-top: 24px;
}
.section-tint {
  background: var(--teal-tint);
}
.section-sand-deep {
  background: var(--sand-deep);
}
.section-dark {
  background: var(--teal-deep);
  color: #eaf6f4;
}
.section-dark h2,
.section-dark h3 {
  color: #fff;
}
.section-dark p {
  color: rgba(234, 246, 244, 0.82);
}

.section-header {
  max-width: 720px;
  margin: 0 0 36px;
}
.section-header.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.section-header p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.section-header .eyebrow {
  margin-bottom: 14px;
}
.section-link {
  justify-content: center;
  margin-top: 22px;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  gap: 18px;
}
.feature-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--teal-tint);
  border-radius: 14px;
}
.feature-icon svg {
  width: 24px;
  height: 24px;
}
.feature-card h3 {
  font-size: 18px;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- Status chips / result preview ---------- */
.result-preview {
  display: grid;
  gap: 10px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.result-preview .rp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.result-preview .rp-head h3 {
  margin: 0;
  font-size: 16px;
}
.result-preview .rp-head .rp-tag {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-deep);
}
.status-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 16px;
  background: var(--surface-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}
.status-chip .dot {
  flex: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.status-chip .status-label {
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
}
.status-chip .status-value {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
}
.dot-better { background: var(--better); }
.dot-some { background: var(--some); }
.dot-higher { background: var(--higher); }
.dot-avoid { background: var(--avoid); }
.dot-nodata { background: var(--nodata); }

/* ---------- Steps ---------- */
.step-list {
  position: relative;
  display: grid;
  gap: 26px;
  max-width: 880px;
}
.step-list::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 21px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--line), transparent);
}
.step-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.step-number {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(46, 119, 117, 0.25);
}
.step-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-deep);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.step-card h2 {
  margin-top: 2px;
  font-size: 21px;
}
.step-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}
.step-card strong {
  color: var(--ink);
}
.step-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}
.step-card li + li {
  margin-top: 6px;
}

/* ---------- Stat callout ---------- */
.stat-block {
  display: grid;
  gap: 14px;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.stat-callout strong {
  display: block;
  color: var(--teal-deep);
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-callout span {
  max-width: 460px;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 600;
}
.stat-callout {
  display: grid;
  gap: 8px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
}

/* ---------- Split band ---------- */
.split {
  display: grid;
  gap: 32px;
  align-items: center;
}
.split-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
}
.cta-band .container-narrow {
  display: grid;
  gap: 16px;
  justify-items: center;
}
.cta-band h2 {
  font-size: 30px;
}
.cta-band p {
  color: rgba(234, 246, 244, 0.85);
  max-width: 560px;
}
.cta-band .store-row {
  margin-top: 8px;
}

/* ---------- Page hero ---------- */
.page-hero {
  padding: 56px 0 28px;
  border-bottom: 1px solid var(--line-soft);
}
.page-hero .container {
  max-width: 820px;
}
.page-kicker {
  margin-bottom: 12px;
  color: var(--teal-deep);
  font-size: 12.5px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-lead {
  max-width: 660px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

/* ---------- FAQ ---------- */
.faq-section {
  padding: 44px 0 72px;
}
.faq-list {
  display: grid;
  gap: 40px;
  max-width: 880px;
}
.faq-group h2 {
  font-size: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 16px 4px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  flex: none;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--teal-tint);
  border-radius: 50%;
  content: "+";
  font-size: 18px;
  font-weight: 600;
  transition: transform 200ms var(--ease), background 200ms var(--ease);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--teal);
  color: #fff;
}
.faq-item summary:hover {
  color: var(--teal-deep);
}
.faq-answer {
  padding: 0 4px 18px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}
.faq-answer a {
  color: var(--teal-deep);
  font-weight: 700;
}
.faq-answer ul {
  margin: 10px 0 0;
  padding-left: 20px;
}
.faq-answer li + li {
  margin-top: 6px;
}

/* ---------- Cards / panels ---------- */
.card,
.note-panel,
.contact-card {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.card p,
.note-panel p {
  margin-top: 10px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  gap: 18px;
  max-width: 880px;
}
.contact-card {
  display: grid;
  gap: 10px;
}
.contact-card .cc-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--teal-tint);
  border-radius: 12px;
  margin-bottom: 4px;
}
.contact-card .cc-icon svg {
  width: 22px;
  height: 22px;
}
.contact-card h3 {
  font-size: 16px;
}
.contact-card p,
.contact-card address {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
  line-height: 1.6;
}
.contact-card a {
  color: var(--teal-deep);
  font-weight: 700;
  text-decoration: none;
}
.contact-card a:hover,
.contact-card a:focus-visible {
  text-decoration: underline;
  outline: none;
}
.contact-card strong {
  color: var(--ink);
}

/* ---------- Document / legal layout ---------- */
.doc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 40px 0 88px;
  align-items: start;
}
.doc-prose {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.doc-prose p,
.doc-prose ul,
.doc-prose ol {
  margin-top: 14px;
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.7;
}
.doc-prose ul,
.doc-prose ol {
  padding-left: 22px;
}
.doc-prose li + li {
  margin-top: 7px;
}
.doc-prose h2 {
  margin-top: 34px;
  font-size: 22px;
  scroll-margin-top: 90px;
}
.doc-prose h2:first-child {
  margin-top: 0;
}
.doc-prose h3 {
  margin-top: 24px;
  font-size: 17px;
}
.doc-prose strong {
  color: var(--ink);
}
.doc-prose a {
  color: var(--teal-deep);
  font-weight: 600;
}
.doc-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 8px 14px;
  background: var(--teal-tint);
  border-radius: var(--radius-pill);
  color: var(--teal-deep);
  font-size: 13.5px;
  font-weight: 700;
}

.toc {
  position: sticky;
  top: 88px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.toc h2 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.toc ul {
  display: grid;
  gap: 2px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.toc a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 160ms var(--ease), background 160ms var(--ease);
}
.toc a:hover,
.toc a:focus-visible {
  color: var(--teal-deep);
  background: var(--teal-tint);
  outline: none;
}

/* ---------- Account deletion ---------- */
.option-grid {
  display: grid;
  gap: 18px;
  max-width: 880px;
}
.option-card {
  display: grid;
  gap: 8px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.option-card .oc-kicker {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.option-card h3 {
  font-size: 18px;
}
.option-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.option-card a {
  color: var(--teal-deep);
  font-weight: 700;
  text-decoration: none;
}
.option-card a:hover {
  text-decoration: underline;
}

.numbered-list {
  display: grid;
  gap: 14px;
  max-width: 880px;
  counter-reset: step;
}
.numbered-list li {
  position: relative;
  padding: 16px 16px 16px 58px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  color: var(--muted);
  list-style: none;
  counter-increment: step;
}
.numbered-list li::before {
  position: absolute;
  left: 14px;
  top: 16px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
  content: counter(step);
}

.why-layout {
  max-width: none;
}
.why-section,
.why-stat {
  max-width: 880px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.why-section:first-child {
  padding-top: 0;
  border-top: 0;
}
.why-section h2,
.why-stat h2 {
  margin-top: 4px;
  font-size: 23px;
}
.why-section p,
.why-stat p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}
.why-section ul,
.why-section ol {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
}
.why-section li + li {
  margin-top: 7px;
}
.why-section strong,
.why-stat strong {
  color: var(--ink);
}
.why-challenge {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 24px;
  padding: 48px 0 36px;
  border-top: 1px solid var(--line);
  background: var(--sand);
}
.footer-shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  display: grid;
  gap: 32px;
}
.footer-top {
  display: grid;
  gap: 28px;
}
.footer-brand .brand-image {
  width: 132px;
}
.footer-brand p {
  margin-top: 14px;
  max-width: 320px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 36px 40px;
}
.footer-cols h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-cols ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-cols a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}
.footer-cols a:hover,
.footer-cols a:focus-visible {
  color: var(--teal-deep);
  outline: none;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.footer-entity {
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
}
.footer-links a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 400;
}
.footer-links a:hover {
  color: var(--teal-deep);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (min-width: 680px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-cols {
    grid-template-columns: repeat(4, auto);
  }
}

@media (min-width: 900px) {
  h1,
  .display {
    font-size: 48px;
  }
  h2 {
    font-size: 33px;
  }
  .hero-copy h1 {
    font-size: 50px;
  }
  .hero {
    padding: 72px 0 56px;
  }
  .hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
    column-gap: 48px;
  }
  .hero-media {
    width: min(40vw, 420px);
    justify-self: end;
    grid-row: 1 / span 2;
    grid-column: 2;
  }
  .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }
  .hero-actions,
  .store-row {
    grid-column: 1;
  }
  .split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
  }
  .split.reverse .split-media {
    order: 2;
  }
  .doc-layout {
    grid-template-columns: 240px 1fr;
  }
  .doc-layout .toc-wrap {
    position: sticky;
    top: 88px;
  }
}

@media (max-width: 760px) {
  .site-nav,
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 420px) {
  .nav-shell,
  .container,
  .container-narrow,
  .footer-shell {
    width: min(calc(100% - 24px), var(--content));
  }
  .brand-image {
    width: 124px;
  }
  h1,
  .display {
    font-size: 30px;
  }
  .hero-copy h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
  }
  .lead,
  .page-lead {
    font-size: 16px;
  }
  .section {
    padding: 48px 0;
  }
  .feature-card,
  .result-preview,
  .step-card,
  .stat-block,
  .doc-prose,
  .why-challenge,
  .option-card,
  .contact-card {
    padding: 22px;
  }
  .store-badge img {
    height: 42px;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

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