:root {
  color-scheme: light dark;
  --green: #2fae4f;
  --green-dark: #1f8239;
  --orange: #ff7a00;
  --ink: #172019;
  --muted: #5f6d62;
  --surface: #fcfdfc;
  --card: #ffffff;
  --border: #dfe7e1;
  --soft: #eef8f0;
  --shadow: 0 18px 55px rgba(21, 53, 28, .11);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
a { color: var(--green-dark); text-underline-offset: .2em; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
img { max-width: 100%; }
.shell { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 82%, transparent);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(14px);
}
.nav { min-height: 72px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; text-decoration: none; font-size: 1.1rem; }
.brand img { width: 40px; height: 40px; border-radius: 12px; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 22px; font-size: .94rem; }
.nav-links a { color: var(--ink); text-decoration: none; }
.language { padding: 7px 12px; border: 1px solid var(--border); border-radius: 999px; font-weight: 700; }
.hero { padding: 92px 0 76px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 72px; }
.eyebrow { color: var(--green-dark); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.025em; }
h1 { margin: 14px 0 22px; font-size: clamp(2.7rem, 7vw, 5.25rem); max-width: 780px; }
h2 { margin: 0 0 18px; font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { margin: 0 0 10px; font-size: 1.2rem; }
.lead { color: var(--muted); font-size: 1.18rem; max-width: 680px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 11px 20px; border-radius: 14px; font-weight: 800; text-decoration: none; }
.button-primary { color: #fff; background: var(--green); box-shadow: 0 10px 28px rgba(47,174,79,.25); }
.button-secondary { color: var(--ink); border: 1px solid var(--border); background: var(--card); }
.coach-card { position: relative; border: 1px solid var(--border); border-radius: 28px; padding: 34px; background: linear-gradient(145deg, var(--card), var(--soft)); box-shadow: var(--shadow); }
.coach-card::before { content: ""; position: absolute; width: 170px; height: 170px; border-radius: 50%; right: -50px; top: -50px; background: rgba(47,174,79,.14); }
.coach-card img { width: 78px; height: 78px; border-radius: 22px; }
.metric { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--border); }
.metric:last-child { border-bottom: 0; }
.metric strong { color: var(--green-dark); }
.section { padding: 76px 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 700px; margin-bottom: 34px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { border: 1px solid var(--border); border-radius: 20px; padding: 25px; background: var(--card); }
.icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 20px; border-radius: 13px; background: var(--soft); color: var(--green-dark); font-size: 1.25rem; }
.callout { border-left: 5px solid var(--orange); padding: 22px 24px; border-radius: 0 16px 16px 0; background: color-mix(in srgb, var(--orange) 8%, var(--card)); }
.legal { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 70px 0 90px; }
.legal h1 { font-size: clamp(2.35rem, 6vw, 4rem); }
.legal h2 { margin-top: 48px; font-size: 1.65rem; }
.legal h3 { margin-top: 28px; }
.legal li + li { margin-top: 8px; }
.meta { color: var(--muted); margin-bottom: 40px; }
.toc { padding: 22px 28px; border: 1px solid var(--border); border-radius: 18px; background: var(--card); }
.toc ul { columns: 2; }
.status-wrap { min-height: calc(100vh - 152px); display: grid; place-items: center; padding: 60px 20px; }
.status-card { width: min(620px, 100%); text-align: center; border: 1px solid var(--border); border-radius: 26px; padding: clamp(28px, 6vw, 52px); background: var(--card); box-shadow: var(--shadow); }
.status-icon { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 22px; border-radius: 50%; background: var(--soft); color: var(--green-dark); font-size: 2rem; font-weight: 900; }
.status-card h1 { font-size: clamp(2rem, 6vw, 3.2rem); margin: 0 0 15px; }
.status-card p { color: var(--muted); }
.site-footer { border-top: 1px solid var(--border); padding: 32px 0; color: var(--muted); font-size: .92rem; }
.footer-grid { display: flex; justify-content: space-between; gap: 25px; flex-wrap: wrap; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: inherit; }
.small { font-size: .9rem; color: var(--muted); }

@media (max-width: 820px) {
  .nav { align-items: flex-start; padding: 14px 0; }
  .nav-links { gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
  .nav-links .optional { display: none; }
  .hero { padding-top: 60px; }
  .hero-grid, .grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 38px; }
  .toc ul { columns: 1; }
}

@media (max-width: 520px) {
  .shell { width: min(100% - 28px, 1120px); }
  .nav-links a:not(.language) { display: none; }
  .legal { width: min(100% - 28px, 820px); padding-top: 48px; }
  .section { padding: 56px 0; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
@media (prefers-color-scheme: dark) {
  :root { --ink:#f2f6f3; --muted:#abb8ae; --surface:#111512; --card:#171c18; --border:#303832; --soft:#17271b; --green-dark:#62d47d; --shadow:0 18px 55px rgba(0,0,0,.35); }
  .button-primary { color: #08150b; }
}
