:root {
  --bg: #eef8f5;
  --surface: #ffffff;
  --surface-2: #e3f3ef;
  --text: #17322d;
  --muted: #5d716c;
  --primary: #087f73;
  --primary-2: #0a9d8e;
  --accent: #f2c94c;
  --border: #cfe4de;
  --danger: #a83b3b;
  --shadow: 0 14px 38px rgba(25, 73, 65, .10);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #e9f7f3 0%, #f7fbfa 45%, #eef8f5 100%);
  color: var(--text);
  line-height: 1.65;
}
a { color: var(--primary); }
a:hover { color: var(--primary-2); }
.container { width: min(1080px, calc(100% - 34px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(247,251,250,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(207,228,222,.9);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--text); font-weight: 800; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 13px;
  display: grid; place-items: center;
  color: white; font-weight: 900; letter-spacing: -.04em;
  background: linear-gradient(140deg, var(--primary), #226fc3);
  box-shadow: 0 8px 20px rgba(8,127,115,.20);
}
.nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 16px; }
.nav a { text-decoration: none; color: var(--text); font-size: .94rem; font-weight: 650; }
.hero { padding: 76px 0 54px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 42px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border); background: rgba(255,255,255,.75); padding: 8px 12px; border-radius: 999px; font-size: .88rem; font-weight: 700; color: var(--primary); }
h1 { font-size: clamp(2.25rem, 6vw, 4.35rem); line-height: 1.03; letter-spacing: -.055em; margin: 18px 0; }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); line-height: 1.15; letter-spacing: -.035em; margin: 0 0 16px; }
h3 { line-height: 1.25; margin: 0 0 10px; }
.lead { font-size: 1.17rem; color: var(--muted); max-width: 720px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px; border-radius: 13px; text-decoration: none; font-weight: 760; border: 1px solid transparent; cursor: pointer; font: inherit; }
.button-primary { background: var(--primary); color: white; }
.button-primary:hover { background: var(--primary-2); color: white; }
.button-secondary { background: white; color: var(--text); border-color: var(--border); }
.hero-card, .card, .legal-card, .form-card { background: rgba(255,255,255,.92); border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: var(--radius); }
.hero-card { padding: 28px; }
.hero-stat { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start; padding: 14px 0; border-bottom: 1px solid var(--border); }
.hero-stat:last-child { border-bottom: 0; }
.hero-stat .icon { width: 48px; height: 48px; border-radius: 14px; background: var(--surface-2); display: grid; place-items: center; font-weight: 900; color: var(--primary); }
.section { padding: 54px 0; }
.section-soft { background: rgba(227,243,239,.52); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 24px; }
.card p { color: var(--muted); margin-bottom: 0; }
.pill { display: inline-block; padding: 6px 10px; border-radius: 999px; background: #fff4ce; color: #775b00; font-size: .82rem; font-weight: 760; }
.notice { border-left: 4px solid var(--accent); background: #fffaf0; padding: 16px 18px; border-radius: 12px; margin: 18px 0; }
.notice-danger { border-left-color: var(--danger); background: #fff5f5; }
.page-head { padding: 54px 0 26px; }
.page-head h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.legal-card { padding: clamp(22px, 4vw, 42px); margin-bottom: 46px; }
.legal-card h2 { margin-top: 34px; font-size: 1.45rem; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card h3 { margin-top: 24px; }
.legal-card li { margin: 7px 0; }
.meta { color: var(--muted); font-size: .93rem; }
.form-card { padding: 26px; margin-top: 24px; }
label { display: block; font-weight: 720; margin: 16px 0 6px; }
input, select, textarea { width: 100%; padding: 12px 13px; border: 1px solid #bcd6cf; border-radius: 12px; background: #fbfefd; color: var(--text); font: inherit; }
textarea { min-height: 130px; resize: vertical; }
.checkbox { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 18px 0; }
.checkbox input { width: 18px; height: 18px; margin-top: 4px; }
.checkbox label { margin: 0; font-weight: 600; }
.small { font-size: .9rem; color: var(--muted); }
.footer { border-top: 1px solid var(--border); background: #153b34; color: #dceee9; padding: 34px 0; }
.footer a { color: #dceee9; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: flex-end; }
.footer-links a { text-decoration: none; }
.code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; background: #eef4f2; padding: 2px 6px; border-radius: 6px; }
.status-box { text-align: center; padding: 48px 24px; }
@media (max-width: 820px) {
  .header-inner { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .nav { justify-content: flex-start; }
  .hero-grid, .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .footer-links { justify-content: flex-start; }
}
