:root {
  color-scheme: light;
  --ink: #172330;
  --muted: #516171;
  --line: #dce5ec;
  --paper: #ffffff;
  --surface: #f4f7f8;
  --accent: #0f7a64;
  --accent-soft: #def4ec;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.5; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header { border-bottom: 1px solid var(--line); background: var(--paper); }
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 18px; font-weight: 750; }
.brand-mark { width: 31px; height: 31px; display: inline-grid; place-items: center; border-radius: 8px; background: var(--accent); color: #fff; font-size: 15px; font-weight: 800; }
.site-header nav { display: flex; gap: 20px; }
.site-header nav a { color: var(--muted); font-size: 14px; text-decoration: none; }
.site-header nav a:hover, .text-link:hover { color: var(--accent); }
.hero { padding: 72px 0 64px; background: var(--accent-soft); border-bottom: 1px solid var(--line); }
.hero-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--accent); font-size: 13px; font-weight: 750; text-transform: uppercase; letter-spacing: 0; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 22px; font-size: clamp(38px, 6vw, 66px); line-height: 1.02; letter-spacing: 0; }
h2 { margin-bottom: 14px; font-size: clamp(30px, 4vw, 44px); line-height: 1.1; letter-spacing: 0; }
h3 { margin-bottom: 12px; font-size: 20px; line-height: 1.2; }
.lead { max-width: 650px; margin-bottom: 26px; color: #354452; font-size: 19px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-size: 16px; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.status-panel { padding: 24px; border: 1px solid rgba(23, 35, 48, 0.15); border-radius: 8px; background: #fff; box-shadow: 0 12px 24px rgba(23, 35, 48, 0.08); }
.status-label { margin-bottom: 5px; color: var(--muted); font-size: 13px; }
.status-value { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 18px; font-weight: 750; }
.status-panel p:last-child { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.section { padding: 80px 0; }
.section-heading { max-width: 760px; margin-bottom: 32px; }
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 17px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.feature-card { min-height: 220px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); }
.feature-card p { margin: 0; color: var(--muted); }
.feature-number { display: block; margin-bottom: 36px; color: var(--accent); font-size: 14px; font-weight: 750; }
.principles { padding: 80px 0; background: var(--ink); color: #fff; }
.principles-layout { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 56px; align-items: start; }
.principles .eyebrow { color: #a7dacd; }
.principles h2 { margin: 0; }
.principles ol { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.principles li { display: grid; grid-template-columns: 32px 1fr; gap: 14px; color: #deebf0; font-size: 17px; }
.principles li::before { counter-increment: steps; content: counter(steps); display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid #86b7aa; border-radius: 50%; color: #a7dacd; font-size: 13px; font-weight: 750; }
.notice { padding: 28px 0; background: var(--surface); }
.notice-inner p { max-width: 780px; margin: 0; color: var(--muted); font-size: 14px; }
.site-footer { padding: 42px 0; background: #101922; color: #cbd7df; }
.footer-grid { display: flex; justify-content: space-between; gap: 32px; }
.footer-brand { margin-bottom: 6px; color: #fff; font-size: 18px; font-weight: 750; }
.site-footer p:last-child { max-width: 540px; margin: 0; font-size: 14px; }
.footer-links { display: grid; align-content: start; gap: 8px; }
.footer-links a { color: #cbd7df; font-size: 14px; }
.legal-page { min-height: 68vh; padding: 92px 0; background: var(--surface); }
.legal-copy { max-width: 760px; }
.legal-copy h1 { margin-bottom: 32px; font-size: clamp(38px, 6vw, 58px); }
.legal-copy p { color: #435260; font-size: 17px; }
.legal-copy .text-link { margin-top: 22px; }
@media (max-width: 760px) {
  .container { width: min(100% - 32px, 640px); }
  .header-inner { min-height: 64px; }
  .site-header nav { gap: 14px; }
  .site-header nav a { font-size: 13px; }
  .hero { padding: 52px 0 48px; }
  .hero-layout, .principles-layout { grid-template-columns: 1fr; gap: 30px; }
  .lead { font-size: 17px; }
  .status-panel { padding: 20px; }
  .section, .principles { padding: 56px 0; }
  .feature-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card { min-height: auto; padding: 20px; }
  .feature-number { margin-bottom: 22px; }
  .principles li { font-size: 16px; }
  .footer-grid { display: grid; gap: 24px; }
  .legal-page { padding: 62px 0; }
}
