:root {
  --bg: #0b0f0b;
  --bg-soft: #111711;
  --card: #151c15;
  --line: #223022;
  --text: #e8f0e8;
  --muted: #9aab9a;
  --green: #30d158;
  --green-dim: #1d7a38;
  --max: 880px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(11, 15, 11, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
header .wrap { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 19px; letter-spacing: 0.2px; color: var(--text); text-decoration: none;
}
.brand .mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--green) 0%, #1a9e44 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: #06130a; font-size: 15px; font-weight: 800;
}
nav a { color: var(--muted); text-decoration: none; margin-left: 22px; font-size: 15px; }
nav a:hover { color: var(--text); }

.hero { padding: 96px 0 64px; text-align: center; }
.hero h1 {
  font-size: clamp(52px, 9vw, 84px);
  font-weight: 800; letter-spacing: -2px; line-height: 1.05;
}
.hero h1 .heavy { font-weight: 900; }
.hero .tagline {
  margin-top: 14px; font-size: clamp(19px, 3vw, 24px); color: var(--muted); font-weight: 500;
}
.hero .promo {
  margin: 22px auto 0; max-width: 640px; color: var(--muted); font-size: 16px;
}
.cta-row { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: 16px;
  text-decoration: none; transition: transform 0.12s ease, opacity 0.12s ease;
}
.btn:active { transform: scale(0.98); }
.btn.primary { background: var(--green); color: #06130a; }
.btn.primary:hover { opacity: 0.9; }
.btn.ghost { border: 1px solid var(--line); color: var(--text); }
.btn.ghost:hover { border-color: var(--green-dim); }
.soon { font-size: 13px; color: var(--muted); margin-top: 14px; }

.features { padding: 40px 0 80px; }
.grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px;
}
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 24px;
}
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14.5px; }
.card .icon { font-size: 26px; display: block; margin-bottom: 12px; }

.score-strip {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 20px;
  padding: 28px; margin: 0 0 80px;
}
.score-strip h2 { font-size: 20px; margin-bottom: 16px; }
.legend { display: flex; flex-direction: column; gap: 10px; }
.legend .row { display: flex; align-items: baseline; gap: 12px; font-size: 15px; }
.legend .pts { font-weight: 700; color: var(--green); min-width: 120px; font-variant-numeric: tabular-nums; }
.legend .lbl { color: var(--muted); }

footer { border-top: 1px solid var(--line); padding: 28px 0 40px; color: var(--muted); font-size: 14px; }
footer .wrap { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--text); }

/* privacy page */
.doc { padding: 56px 0 80px; max-width: 720px; }
.doc h1 { font-size: 34px; letter-spacing: -0.5px; margin-bottom: 6px; }
.doc .updated { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.doc h2 { font-size: 19px; margin: 30px 0 10px; }
.doc p, .doc li { color: #c6d2c6; font-size: 15.5px; }
.doc ul { padding-left: 22px; margin: 8px 0; }
.doc li { margin: 5px 0; }
.doc strong { color: var(--text); }
