:root {
  --bg: #f6f8f7;
  --surface: #ffffff;
  --surface-soft: #eef6f2;
  --ink: #17202a;
  --muted: #5d6b72;
  --line: #dce5e1;
  --teal: #087f73;
  --teal-dark: #06635b;
  --teal-soft: #dff3ee;
  --warm: #f3a83b;
  --warm-soft: #fff3dc;
  --charcoal: #263238;
  --shadow: 0 18px 45px rgba(23, 32, 42, .08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(243, 168, 59, .75);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  min-width: 0;
}

.brand > span:last-child {
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--teal), #0aa58d);
  color: #fff;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 10px 24px rgba(8, 127, 115, .22);
}

.brand-name {
  display: block;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -.01em;
  line-height: 1.1;
}

.brand-kicker {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: .15rem;
}

.desktop-nav a,
.mobile-panel a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 750;
}

.desktop-nav a {
  padding: .7rem .8rem;
  border-radius: 999px;
  font-size: .92rem;
}

.desktop-nav a:hover {
  background: var(--surface-soft);
  color: var(--teal-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: 76px 0 auto 0;
  padding: .75rem 1rem 1.25rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-panel.open {
  display: block;
}

.mobile-panel nav {
  display: grid;
  gap: .35rem;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.mobile-panel a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: .75rem;
  border-radius: var(--radius-sm);
}

.mobile-panel a:hover {
  background: var(--surface-soft);
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 0;
  border-radius: 999px;
  padding: .75rem 1.05rem;
  font-weight: 850;
  text-decoration: none;
  line-height: 1.1;
  cursor: pointer;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 28px rgba(8, 127, 115, .22);
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-secondary {
  background: var(--surface);
  color: var(--teal-dark);
  border: 1px solid var(--line);
}

.btn-warm {
  background: var(--warm);
  color: #241704;
}

.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.eyebrow {
  margin: 0 0 .85rem;
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -.03em;
}

.section-title.small {
  font-size: clamp(1.65rem, 3vw, 2.65rem);
}

.lead {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 68ch;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 127, 115, .10), transparent 42%),
    linear-gradient(180deg, #fff, var(--bg));
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.5rem;
}

.hero-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: .92rem;
}

.signal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.signal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border-radius: 999px;
  padding: .45rem .7rem;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: .8rem;
  font-weight: 850;
}

.status-dot {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--teal);
}

.metric-list {
  display: grid;
  gap: .8rem;
  margin-top: 1rem;
}

.metric {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .8rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius);
  background: #fbfcfb;
  border: 1px solid var(--line);
}

.metric > div {
  min-width: 0;
}

.metric strong {
  display: block;
}

.metric span {
  color: var(--muted);
  font-size: .9rem;
}

.metric-value {
  color: var(--teal-dark);
  font-weight: 900;
  white-space: nowrap;
}

.grid-3,
.grid-2,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 12px 28px rgba(23, 32, 42, .04);
}

.card h3 {
  margin: 0 0 .5rem;
  font-size: 1.12rem;
  line-height: 1.25;
}

.card p,
.card li {
  color: var(--muted);
}

.card p {
  margin: 0;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-weight: 900;
  margin-bottom: 1rem;
}

.step {
  position: relative;
}

.step-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--warm-soft);
  color: #8a5300;
  font-weight: 900;
  margin-bottom: 1rem;
}

.trust-band {
  background: var(--charcoal);
  color: #fff;
}

.trust-band .lead,
.trust-band .card p,
.trust-band .card li {
  color: #d8e1de;
}

.trust-band .section-title,
.trust-band .eyebrow {
  color: #fff;
}

.trust-band .card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}

.faq-list {
  display: grid;
  gap: .75rem;
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 1rem 1.1rem;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--teal-dark);
  font-weight: 900;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
}

.faq-answer.open {
  display: block;
}

.cta {
  background: linear-gradient(135deg, var(--teal), #0d9c86);
  color: #fff;
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.cta .lead {
  color: #e6f6f2;
}

.page-hero {
  background: linear-gradient(180deg, #fff, var(--bg));
  border-bottom: 1px solid var(--line);
}

.content-card {
  width: min(100% - 2rem, 820px);
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.25rem, 4vw, 2.25rem);
  box-shadow: 0 12px 32px rgba(23, 32, 42, .05);
}

.content-card h2 {
  margin-top: 2rem;
  line-height: 1.2;
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card p,
.content-card li,
.content-card dd {
  color: var(--muted);
}

.legal-note {
  padding: 1rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
  background: var(--surface-soft);
}

.site-footer {
  padding: 3rem 0 6rem;
  background: #101820;
  color: #dbe5e2;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: .2em;
}

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

.footer-title {
  margin: 0 0 .75rem;
  color: #fff;
  font-size: 1rem;
}

.footer-list {
  display: grid;
  gap: .45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-button:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: .2em;
}

.footer-legal {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #b9c6c2;
  font-size: .9rem;
}

.mobile-call {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 45;
  min-height: 54px;
  border-radius: 999px;
}

.privacy-notice {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(5.25rem + env(safe-area-inset-bottom));
  z-index: 60;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.privacy-notice h2 {
  margin: 0 0 .25rem;
  font-size: 1rem;
}

.privacy-notice p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.privacy-notice-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

@media (min-width: 760px) {
  .desktop-nav {
    display: flex;
  }

  .nav-toggle,
  .mobile-panel {
    display: none !important;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.3fr .8fr .8fr .9fr;
  }

  .cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
  }

  .mobile-call {
    display: none;
  }

  .privacy-notice {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    width: min(440px, calc(100% - 3rem));
  }
}

@media (max-width: 759px) {
  .header-actions .btn {
    display: none;
  }
}

@media (max-width: 420px) {
  .brand-name {
    font-size: .92rem;
  }

  .brand-kicker {
    display: none;
  }

  .section {
    padding: 3.5rem 0;
  }

  .signal-card {
    padding: 1rem;
  }

  .signal-top {
    align-items: flex-start;
    flex-wrap: wrap;
  }

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

  .metric-value {
    white-space: normal;
    text-align: left;
  }
}
