:root {
  color-scheme: light dark;
  --bg: #f4f7f5;
  --surface: #e8efeb;
  --surface-strong: #dce8e1;
  --text: #17211d;
  --muted: #56645e;
  --line: #becdc5;
  --accent: #087a55;
  --accent-hover: #056845;
  --on-accent: #f7fbf9;
  --radius: 16px;
  --page: min(1180px, calc(100% - 40px));
  font-family: "Segoe UI Variable", "Aptos", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); }
a { color: inherit; }
.skip-link { position: fixed; left: 16px; top: -60px; background: var(--text); color: var(--bg); padding: 10px 14px; z-index: 5; }
.skip-link:focus { top: 12px; }
.site-header { width: var(--page); min-height: 72px; margin: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.brand { display: inline-flex; width: fit-content; align-items: center; gap: 10px; font-size: 21px; font-weight: 800; letter-spacing: -.04em; text-decoration: none; }
.brand-mark { display: block; flex: 0 0 auto; }
.site-header nav { display: flex; gap: 26px; white-space: nowrap; }
.site-header nav a, .site-footer a { color: var(--muted); text-decoration: none; }
.site-header nav a:hover, .site-footer a:hover { color: var(--text); }
.site-header > .button { justify-self: end; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; border-radius: 999px; background: var(--accent); color: var(--on-accent); padding: 0 24px; font-weight: 750; text-decoration: none; white-space: nowrap; transition: background-color .2s ease, transform .2s ease; }
.button:hover { background: var(--accent-hover); }
.button:active { transform: translateY(1px); }
.button:focus-visible, a:focus-visible { outline: 3px solid color-mix(in srgb, var(--accent) 55%, transparent); outline-offset: 3px; }
.button-small { min-height: 42px; padding-inline: 18px; }
.text-link { color: var(--accent); font-weight: 750; text-underline-offset: 4px; }

.hero { width: var(--page); min-height: min(760px, calc(100dvh - 72px)); margin: auto; display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: 54px; align-items: center; padding: 48px 0 76px; }
.hero-copy { max-width: 620px; }
.eyebrow { margin: 0 0 18px; color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
h1, h2, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(44px, 5.4vw, 74px); line-height: .98; letter-spacing: -.055em; }
h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.02; letter-spacing: -.045em; }
.hero-lead, .legal-intro { max-width: 590px; margin-bottom: 30px; color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.5; }
.hero-actions { display: flex; align-items: center; gap: 22px; }
.hero-visual { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--surface); aspect-ratio: 4 / 3; }
.hero-visual img { width: 100%; height: 100%; display: block; object-fit: cover; }

.live-stats { width: var(--page); margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.live-stats div { padding: 28px 24px; }
.live-stats div + div { border-left: 1px solid var(--line); }
.live-stats strong, .live-stats span { display: block; }
.live-stats strong { font-size: clamp(28px, 4vw, 44px); letter-spacing: -.04em; }
.live-stats span { margin-top: 6px; color: var(--muted); }

.how, .trust-layout, .safety, .final-cta, .legal-page, .support-page { width: var(--page); margin: auto; }
.how { padding: 112px 0; display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.section-heading p, .trust-copy p, .safety p, .final-cta p { color: var(--muted); font-size: 18px; line-height: 1.55; }
.process-list { margin: 0; padding: 0; list-style: none; counter-reset: process; }
.process-list li { counter-increment: process; position: relative; padding: 22px 0 22px 58px; border-bottom: 1px solid var(--line); }
.process-list li::before { content: counter(process); position: absolute; left: 0; top: 21px; color: var(--accent); font-weight: 800; }
.process-list span, .process-list small { display: block; }
.process-list span { font-size: 21px; font-weight: 750; }
.process-list small { margin-top: 8px; color: var(--muted); font-size: 15px; }

.trust-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: stretch; padding-bottom: 112px; }
.trust-copy { padding-top: 26px; }
.fact-panel { border-radius: var(--radius); background: var(--surface-strong); padding: 32px; }
.fact-panel > p { color: var(--muted); font-weight: 700; }
.fact-panel dl { margin: 0; }
.fact-panel dl div { display: grid; grid-template-columns: .7fr 1.3fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.fact-panel dl div:last-child { border: 0; }
.fact-panel dt { font-weight: 800; }
.fact-panel dd { margin: 0; color: var(--muted); }

.safety { padding: 58px; border-radius: var(--radius); background: var(--surface); display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.safety div { max-width: 700px; }
.safety h2 { margin-bottom: 18px; }
.safety p { margin-bottom: 0; }
.final-cta { padding: 120px 0; text-align: center; }
.final-cta h2, .final-cta p { max-width: 680px; margin-left: auto; margin-right: auto; }
.final-cta .button { margin-top: 18px; }

.site-footer { width: var(--page); margin: auto; padding: 38px 0 46px; border-top: 1px solid var(--line); display: flex; align-items: start; justify-content: space-between; gap: 40px; }
.site-footer p { max-width: 440px; margin: 8px 0 0; color: var(--muted); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }

.legal-page, .support-page { max-width: 900px; padding: 82px 0 120px; }
.legal-page h1, .support-page h1 { font-size: clamp(42px, 6vw, 70px); }
.legal-page section, .support-page section { margin-top: 54px; }
.legal-page section h2, .support-page section h2 { font-size: 28px; letter-spacing: -.025em; }
.legal-page p, .legal-page li, .support-page p, .support-page li { color: var(--muted); font-size: 17px; line-height: 1.65; }
.legal-page li + li, .incident-flow li + li { margin-top: 10px; }
.support-contact { margin-top: 20px; }
.support-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
.support-grid div { border-radius: var(--radius); background: var(--surface); padding: 26px; }
.support-grid div:last-child { grid-column: 1 / -1; }
.support-grid h2 { margin-bottom: 10px; }

@media (prefers-color-scheme: dark) {
  :root { --bg: #111814; --surface: #19241f; --surface-strong: #213129; --text: #eef6f1; --muted: #adbbb4; --line: #34483d; --accent: #55c99b; --accent-hover: #6cd9ac; --on-accent: #0d1b15; }
}

@media (max-width: 820px) {
  :root { --page: min(100% - 32px, 680px); }
  .site-header { min-height: 64px; grid-template-columns: 1fr auto; gap: 14px; }
  .site-header nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 34px; padding: 48px 0 64px; }
  .hero-copy { max-width: none; }
  h1 { font-size: clamp(40px, 10vw, 48px); line-height: 1; }
  .hero-visual { order: -1; }
  .how, .trust-layout { grid-template-columns: 1fr; gap: 34px; padding: 80px 0; }
  .trust-layout { padding-top: 0; }
  .safety { padding: 34px; align-items: start; flex-direction: column; }
  .support-grid { grid-template-columns: 1fr; }
  .support-grid div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .site-header .button { font-size: 14px; min-height: 38px; padding-inline: 14px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .text-link { text-align: center; }
  .live-stats { grid-template-columns: 1fr; }
  .live-stats div + div { border-left: 0; border-top: 1px solid var(--line); }
  .site-footer { flex-direction: column; }
  .site-footer nav { flex-direction: column; }
  .legal-page, .support-page { padding-top: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
