:root {
  --ink: #152922;
  --deep: #123f34;
  --green: #1c705b;
  --mint: #dff1ea;
  --cream: #f7f4ec;
  --white: #ffffff;
  --line: #d6ded9;
  --muted: #5f7069;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.site-header {
  min-height: 76px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247,244,236,.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 750; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  color: white; background: var(--deep);
  font-size: 12px; letter-spacing: .08em;
}
nav { display: flex; gap: 28px; }
nav a { color: var(--muted); text-decoration: none; font-weight: 650; font-size: 14px; }
nav a:hover, nav a.active { color: var(--deep); }
.hero {
  min-height: 670px;
  padding: 110px 8vw 80px;
  display: flex; flex-direction: column; align-items: flex-start;
  background:
    radial-gradient(circle at 78% 30%, rgba(60,150,121,.20), transparent 24%),
    linear-gradient(145deg, var(--cream), #edf5f0);
}
.eyebrow { color: var(--green); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; }
.eyebrow.light { color: #bce5d8; }
h1 { max-width: 820px; margin: 16px 0 24px; font-size: clamp(50px, 8vw, 96px); line-height: .98; letter-spacing: -.055em; }
h2 { margin: 12px 0 22px; font-size: clamp(30px, 4vw, 52px); line-height: 1.06; letter-spacing: -.04em; }
.hero-copy { max-width: 700px; color: var(--muted); font-size: 20px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 44px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 0 20px; border-radius: 999px; text-decoration: none; font-weight: 750; }
.button.primary { color: white; background: var(--deep); }
.button.secondary { color: var(--deep); border: 1px solid var(--deep); }
.button.white { color: var(--deep); background: white; }
.status-card { display: flex; align-items: center; gap: 14px; padding: 15px 18px; background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 14px; }
.status-card span { color: var(--muted); font-size: 14px; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #d39b37; box-shadow: 0 0 0 5px #f3e4c6; }
.section { padding: 100px 8vw; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; background: white; }
.split p { color: var(--muted); font-size: 18px; }
.product { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; align-items: center; }
.product-copy p, .product-copy li { color: var(--muted); font-size: 17px; }
.product-copy ul { padding-left: 20px; }
.product-panel { background: var(--deep); color: white; padding: 36px; border-radius: 24px; box-shadow: 0 20px 60px rgba(18,63,52,.18); }
.panel-kicker { margin-bottom: 20px; color: #bce5d8; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 800; }
.metric { display: grid; grid-template-columns: 44px 1fr; column-gap: 12px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.18); }
.metric span { color: #bce5d8; font-weight: 800; }
.metric small { grid-column: 2; color: #c8d7d2; margin-top: 4px; }
.notice { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; background: var(--mint); }
.notice p { color: #38554a; font-size: 18px; }
.contact { padding: 80px 8vw; display: flex; justify-content: space-between; align-items: center; gap: 30px; color: white; background: var(--deep); }
.contact h2 { margin-bottom: 10px; }
.contact p { color: #c8d7d2; }
footer { padding: 28px 6vw; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 13px; background: white; }
.footer-links { display: flex; gap: 22px; }
.page { max-width: 1080px; min-height: 720px; margin: 0 auto; padding: 100px 6vw; }
.page h1 { font-size: clamp(48px, 7vw, 80px); }
.page-lead { max-width: 750px; color: var(--muted); font-size: 20px; margin-bottom: 28px; }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 70px; }
.support-grid article { padding: 26px; background: white; border: 1px solid var(--line); border-radius: 16px; }
.support-grid h2 { font-size: 22px; letter-spacing: -.02em; }
.support-grid p { color: var(--muted); }
.legal { max-width: 850px; }
.legal h1 { font-size: clamp(48px, 7vw, 76px); }
.legal h2 { margin-top: 38px; font-size: 24px; letter-spacing: -.02em; }
.legal p { color: var(--muted); font-size: 17px; }
.legal .updated { color: var(--green); font-weight: 700; }
.legal a { color: var(--green); font-weight: 700; }
@media (max-width: 760px) {
  .site-header { padding: 14px 5vw; align-items: flex-start; }
  .brand span:last-child { display: none; }
  nav { gap: 14px; padding-top: 10px; }
  .hero { min-height: auto; padding: 80px 6vw; }
  .hero-copy { font-size: 18px; }
  .split, .product, .notice { grid-template-columns: 1fr; }
  .section { padding: 72px 6vw; }
  .contact { align-items: flex-start; flex-direction: column; }
  .support-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}
