:root {
  --bg: #fbfaf6;
  --surface: #ffffff;
  --tint: #f0f4eb;
  --ink: #202924;
  --muted: #56635b;
  --accent: #35624d;
  --accent-dark: #244936;
  --line: #dce3da;
  --warm: #efe8dc;
  --radius: 1.25rem;
  --shadow: 0 10px 30px rgba(32, 41, 36, 0.07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 1rem; line-height: 1.65; }
a { color: var(--accent-dark); text-underline-offset: 0.2em; }
a:hover { color: var(--accent); }
a:focus-visible { outline: 3px solid #9abca8; outline-offset: 4px; border-radius: 0.2rem; }
h1, h2, h3 { margin-top: 0; line-height: 1.15; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.6rem, 7vw, 5.25rem); max-width: 900px; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: 1.18rem; }
p { margin: 0 0 1rem; }
.container { width: min(1120px, calc(100% - 2.5rem)); margin-inline: auto; }
.site-header { background: rgba(251, 250, 246, 0.96); border-bottom: 1px solid var(--line); }
.nav-wrap, .footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav-wrap { min-height: 4.75rem; }
.brand { color: var(--ink); font-size: 1.35rem; font-weight: 750; letter-spacing: -0.04em; text-decoration: none; }
nav { display: flex; flex-wrap: wrap; gap: 0.6rem 1.25rem; }
nav a { color: var(--muted); font-size: 0.93rem; font-weight: 600; text-decoration: none; }
nav a:hover, nav a[aria-current="page"] { color: var(--accent-dark); }
.hero { padding: clamp(5rem, 13vw, 9.5rem) 0; background: radial-gradient(circle at 85% 25%, var(--warm), transparent 32%); }
.hero-inner { display: flex; flex-direction: column; align-items: flex-start; }
.hero h1 { margin-bottom: 1.5rem; }
.eyebrow { margin-bottom: 1rem; color: var(--accent); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.15rem, 2vw, 1.38rem); }
.button { display: inline-block; margin-top: 1.2rem; padding: 0.8rem 1.2rem; border-radius: 999px; background: var(--accent-dark); color: #fff; font-weight: 700; text-decoration: none; }
.button:hover { background: var(--accent); color: #fff; }
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-tint { background: var(--tint); }
.section-heading { max-width: 720px; margin-bottom: 2.5rem; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.1rem; }
.positioning-grid, .feature-grid { display: grid; gap: 1rem; }
.positioning-grid { grid-template-columns: repeat(4, 1fr); }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.small-card, .feature-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.small-card { padding: 1.5rem; }
.feature-card { min-height: 230px; padding: 1.75rem; box-shadow: var(--shadow); }
.small-card p, .feature-card p { margin-bottom: 0; color: var(--muted); }
.feature-number { display: block; margin-bottom: 2.5rem; color: var(--accent); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; }
.privacy-panel { background: var(--accent-dark); color: #fff; }
.privacy-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; }
.privacy-panel .eyebrow { color: #bbd2c3; }
.privacy-panel p { color: #e1ebe4; }
.privacy-panel .text-link { color: #fff; font-weight: 750; }
.site-footer { padding: 2rem 0; border-top: 1px solid var(--line); background: var(--surface); }
.site-footer p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.document-main { padding: clamp(4rem, 9vw, 7rem) 0; }
.document { max-width: 780px; }
.document-header { padding-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.document-header h1 { margin-bottom: 0.8rem; font-size: clamp(2.6rem, 7vw, 4.5rem); }
.updated { color: var(--muted); font-size: 0.9rem; font-weight: 650; }
.document section { padding-top: 2.5rem; }
.document section h2 { font-size: 1.55rem; }
.document section p, .document li { color: #3e4a43; }
.document ul { padding-left: 1.4rem; }
.notice { margin-top: 1.5rem; padding: 1rem 1.2rem; border-left: 4px solid var(--accent); border-radius: 0.4rem; background: var(--tint); color: #344138; }

@media (max-width: 850px) {
  .positioning-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .privacy-inner { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 1.5rem, 1120px); }
  .nav-wrap, .footer-wrap { align-items: flex-start; flex-direction: column; }
  .nav-wrap { padding: 1rem 0; }
  .nav-wrap nav { gap: 0.45rem 1rem; }
  .positioning-grid, .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .feature-number { margin-bottom: 1.5rem; }
  .footer-wrap nav { flex-direction: column; }
}

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