:root {
  color-scheme: light;
  --ink: #10231c;
  --muted: #53665f;
  --paper: #f7f8f6;
  --surface: #ffffff;
  --line: #dce5df;
  --brand: #147d52;
  --brand-dark: #0d5d3c;
  --brand-soft: #dff5e9;
  --accent: #d9ee72;
  --shadow: 0 14px 32px rgba(22, 54, 40, 0.09);
  --radius: 12px;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(220, 229, 223, 0.85);
  background: rgba(247, 248, 246, 0.96);
  backdrop-filter: blur(10px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 760;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 31px;
  height: 31px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

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

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brand);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand);
  border-radius: 8px;
  padding: 0 21px;
  background: var(--brand);
  color: #fff;
  font-weight: 720;
  text-decoration: none;
  transition:
    background 140ms ease,
    border-color 140ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
}

.button.secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
}

.hero {
  display: grid;
  min-height: 590px;
  align-items: center;
  gap: 72px;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  padding: 82px 0 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.eyebrow::before {
  width: 20px;
  height: 2px;
  background: var(--brand);
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3.15rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.lead {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.86rem;
  list-style: none;
}

.hero-facts li {
  position: relative;
  padding-left: 13px;
}

.hero-facts li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.signal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 125, 82, 0.18);
  border-radius: 14px;
  padding: 28px;
  background: #102a20;
  color: #fff;
  box-shadow: var(--shadow);
}

.signal-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  color: #bad0c5;
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signal-state {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 4px 7px;
  color: var(--accent);
  font-size: 0.72rem;
}

.timeline {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
}

.timeline-row {
  display: grid;
  align-items: center;
  gap: 14px;
  grid-template-columns: 28px minmax(0, 1fr) auto;
}

.timeline-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.75rem;
}

.timeline-copy strong,
.timeline-copy span {
  display: block;
}

.timeline-copy strong {
  font-size: 0.95rem;
}

.timeline-copy span,
.timeline-time {
  color: #9db3a8;
  font-size: 0.78rem;
}

.timeline-time {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.incident {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  padding: 16px 17px;
  background: rgba(255, 255, 255, 0.06);
}

.incident strong {
  display: block;
  margin-bottom: 3px;
  color: var(--accent);
}

.incident span {
  color: #c7d8d0;
  font-size: 0.86rem;
}

.incident-link {
  flex: 0 0 auto;
  color: #fff !important;
  font-weight: 700;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.section-heading.compact {
  margin-bottom: 34px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

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

.card-number {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 6px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.outcome-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.outcome-card {
  padding: 30px;
}

.outcome-card + .outcome-card {
  border-left: 1px solid var(--line);
}

.outcome-card p {
  margin: 0;
  color: var(--muted);
}

.outcome-label {
  display: inline-block;
  margin-bottom: 28px;
  border: 1px solid currentColor;
  border-radius: 5px;
  padding: 4px 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.outcome-label.completed {
  color: #147d52;
}

.outcome-label.overdue {
  color: #a7472a;
}

.outcome-label.late {
  color: #7b6410;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.principles {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.data-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.data-grid {
  display: grid;
  align-items: start;
  gap: 72px;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
}

.data-grid .section-heading {
  margin-bottom: 0;
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--brand-dark);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.data-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.data-panel > div {
  padding: 28px;
}

.data-panel > div + div {
  border-left: 1px solid var(--line);
}

.data-panel ul {
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
  font-size: 0.92rem;
}

.data-panel li + li {
  margin-top: 9px;
}

.proof-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof {
  border-left: 2px solid var(--brand);
  padding-left: 17px;
}

.proof strong,
.proof span {
  display: block;
}

.proof strong {
  margin-bottom: 4px;
  font-size: 1rem;
}

.proof span {
  color: var(--muted);
  font-size: 0.88rem;
}

.cta {
  display: grid;
  align-items: center;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) auto;
  border-radius: 14px;
  padding: 52px;
  background: var(--brand-soft);
}

.cta h2 {
  max-width: 680px;
  margin-bottom: 12px;
}

.cta p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta-actions .text-link {
  margin-top: 0;
  white-space: nowrap;
}

.site-footer {
  padding: 32px 0 42px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.footer-links a {
  text-decoration: none;
}

.legal-main {
  padding: 78px 0 100px;
}

.legal-header {
  max-width: 780px;
  margin-bottom: 56px;
}

.legal-header h1 {
  font-size: clamp(2.8rem, 5.4vw, 4.8rem);
}

.legal-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-copy {
  max-width: 860px;
}

.legal-copy section {
  margin-top: 42px;
}

.legal-copy h2 {
  margin-bottom: 14px;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.legal-copy p,
.legal-copy li {
  color: #34483f;
}

.legal-copy ul {
  padding-left: 22px;
}

.notice {
  border: 1px solid #c9dfd2;
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.privacy-summary {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.privacy-summary > div {
  padding: 22px;
}

.privacy-summary > div + div {
  border-left: 1px solid var(--line);
}

.privacy-summary strong,
.privacy-summary span {
  display: block;
}

.privacy-summary strong {
  margin-bottom: 6px;
}

.privacy-summary span {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.legal-table th,
.legal-table td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: #edf2ee;
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-table td:first-child {
  width: 40%;
  color: var(--ink);
  font-weight: 650;
}

@media (max-width: 850px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 68px;
  }

  .signal-card {
    max-width: 590px;
  }

  .card-grid,
  .proof-grid,
  .privacy-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outcome-grid,
  .data-grid {
    grid-template-columns: 1fr;
  }

  .outcome-card + .outcome-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .data-grid {
    gap: 42px;
  }

  .privacy-summary > div + div {
    border-left: 0;
  }

  .privacy-summary > div:nth-child(2) {
    border-left: 1px solid var(--line);
  }

  .privacy-summary > div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

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

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

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 64px;
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links .button {
    min-height: 40px;
    padding: 0 15px;
    font-size: 0.85rem;
  }

  .hero {
    gap: 44px;
    padding: 56px 0 72px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .section {
    padding: 72px 0;
  }

  .card-grid,
  .proof-grid,
  .privacy-summary,
  .data-panel {
    grid-template-columns: 1fr;
  }

  .data-panel > div + div,
  .privacy-summary > div:nth-child(2) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .privacy-summary > div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .cta {
    padding: 34px 26px;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-main {
    padding-top: 56px;
  }
}

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

  .button {
    transition: none;
  }
}
