:root {
  color-scheme: light;
  --ink: #14251f;
  --muted: #5f6f68;
  --paper: #fffdf8;
  --line: #dbe3de;
  --green: #176b4d;
  --green-dark: #0b3f2d;
  --lime: #d9ef94;
  --sand: #f1ead9;
  --blue: #dcecf0;
  --shadow: 0 24px 80px rgba(11, 63, 45, .12);
}

* { 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.6;
}
a { color: var(--green); }
.shell { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(219, 227, 222, .85);
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(14px);
}
.nav-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { color: var(--ink); font-weight: 850; text-decoration: none; letter-spacing: -.03em; }
.brand span { color: var(--green); }
.nav-links { display: flex; gap: 20px; font-size: .92rem; font-weight: 700; }
.nav-links a { color: var(--muted); text-decoration: none; }
.hero {
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at 83% 16%, rgba(217, 239, 148, .75), transparent 26%),
    radial-gradient(circle at 10% 70%, rgba(220, 236, 240, .8), transparent 30%);
}
.eyebrow { color: var(--green); font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.04em; }
h1 { max-width: 780px; margin: 14px 0 22px; font-size: clamp(3rem, 7vw, 6.4rem); }
h2 { margin: 0 0 14px; font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { margin: 0 0 10px; font-size: 1.35rem; }
.lede { max-width: 730px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-block; border-radius: 999px; padding: 13px 20px; background: var(--green); color: white; font-weight: 800; text-decoration: none; }
.button.secondary { border: 1px solid var(--line); background: white; color: var(--ink); }
.section { padding: 76px 0; }
.section.alt { background: #f6f3e9; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { border: 1px solid var(--line); border-radius: 26px; background: white; padding: 28px; box-shadow: 0 10px 30px rgba(20, 37, 31, .05); }
.sport-mark { display: inline-grid; place-items: center; width: 54px; height: 54px; margin-bottom: 18px; border-radius: 18px; background: var(--lime); font-size: 1.6rem; }
.card.golf .sport-mark { background: var(--blue); }
.muted { color: var(--muted); }
.steps { counter-reset: step; display: grid; gap: 16px; max-width: 820px; }
.step { position: relative; padding: 24px 24px 24px 76px; border: 1px solid var(--line); border-radius: 22px; background: white; }
.step::before { counter-increment: step; content: counter(step); position: absolute; left: 22px; top: 22px; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--green-dark); color: white; font-weight: 900; }
.sample { border-left: 5px solid var(--green); border-radius: 8px 20px 20px 8px; background: #f4f8f5; padding: 20px; font-size: .98rem; }
.policy { width: min(820px, calc(100% - 36px)); margin: 0 auto; padding: 72px 0 90px; }
.policy h1 { font-size: clamp(2.7rem, 6vw, 4.8rem); }
.policy h2 { margin-top: 42px; font-size: 1.8rem; }
.policy h3 { margin-top: 26px; font-size: 1.15rem; letter-spacing: -.02em; }
.policy li { margin: 8px 0; }
.notice { border: 1px solid #bad4c8; border-radius: 20px; background: #edf7f1; padding: 20px; }
.consent-demo { max-width: 520px; border: 1px solid var(--line); border-radius: 28px; background: white; padding: 28px; box-shadow: var(--shadow); }
.disclosure { border: 1px solid var(--line); border-radius: 16px; background: #f7f8f7; padding: 16px; font-size: .88rem; }
.demo-button { width: 100%; margin-top: 12px; border: 0; border-radius: 13px; padding: 14px; font: inherit; font-weight: 850; }
.demo-button.yes { background: var(--green); color: white; }
.demo-button.no { border: 2px solid #ccd2ce; background: white; color: var(--ink); }
footer { border-top: 1px solid var(--line); padding: 36px 0 52px; color: var(--muted); font-size: .9rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; }
@media (max-width: 760px) {
  .nav-links a:first-child { display: none; }
  .hero { padding-top: 64px; }
  .grid, .grid.three { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
}
