@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');
:root {
  --red: #e0103a;
  --red-dim: #8a0a22;
  --red-glow: rgba(224,16,58,0.18);
  --bg: #080808;
  --surface: #111111;
  --surface2: #161616;
  --border: rgba(255,255,255,0.07);
  --border-hot: rgba(224,16,58,0.35);
  --text: #f0f0f0;
  --muted: #666;
  --muted2: #999;
  --mono: 'DM Sans', monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 100vw; margin: 0 auto; padding: 0; }
.policy-wrap { max-width: 100vw; margin: 0 auto; padding: 0;}

/* ── HERO ─────────────────────────────── */
.hero {
  padding: 60px 0 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(224,16,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--border-hot);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 700px;
  margin: 0 auto 16px;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero-sub {
  color: var(--muted2);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 28px;
  font-weight: 300;
}
.stat-row {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.stat { padding: 10px 24px; border-right: 1px solid var(--border); text-align: center; }
.stat:last-child { border-right: none; }
.stat .n { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: #fff; line-height: 1; }
.stat .l { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pill { font-size: 12px; padding: 5px 14px; border-radius: 20px; border: 1px solid var(--border); color: var(--muted2); font-weight: 400; }
.pill.hot { border-color: var(--border-hot); color: #ff5577; background: rgba(224,16,58,0.08); }

/* ── DIVIDER ──────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── CMD TABLE ────────────────────────── */
.cmd-section { padding: 48px 33vw 40px; }
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.section-label.spaced { margin-top: 40px; }
.cmd-table { width: 100%; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.cmd-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.15s;
}
.cmd-row:last-child { border-bottom: none; }
.cmd-row:hover { background: rgba(255,255,255,0.03); }
.cmd-name { font-family: 'DM Sans', monospace; font-size: 14px; font-weight: 500; color: var(--red); letter-spacing: 0.02em; }
.cmd-desc { font-size: 14px; color: var(--muted2); font-weight: 300; }

/* ── FEATURES ─────────────────────────── */
.features { padding: 8px 25vw 48px; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2vw; }
.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.feat-card:hover { border-color: var(--border-hot); }
.feat-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); opacity: 0; transition: opacity 0.2s; }
.feat-card:hover::after { opacity: 1; }
.feat-num { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 4px; opacity: 0.85; }
.feat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 12px; }
.feat-card h3 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.feat-card p { font-size: 14px; color: var(--muted2); line-height: 1.65; font-weight: 300; }
.feat-card p strong { color: var(--muted2); font-weight: 500; }
.tag { display: inline-block; font-family: 'DM Sans', monospace; font-size: 12px; color: #ff7090; background: rgba(224,16,58,0.12); border: 1px solid rgba(224,16,58,0.2); padding: 1px 7px; border-radius: 4px; }

/* ── HOW IT WORKS ─────────────────────── */
.how { padding: 8px 25vw 48px; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.step { padding: 20px; border: 1px solid var(--border); border-radius: 14px; }
.step-num { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.step h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--muted2); line-height: 1.6; font-weight: 300; }

/* ── SCORING ──────────────────────────── */
.scoring { padding: 8px 25vw 48px; }
.score-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.score-card { padding: 18px 20px; border-radius: 12px; border: 1px solid var(--border); }
.score-card.pass { background: rgba(0,180,100,0.06); border-color: rgba(0,200,110,0.2); }
.score-card.fail { background: rgba(224,16,58,0.06); border-color: rgba(224,16,58,0.2); }
.score-card .sc-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.score-card.pass .sc-label { color: #3dba7a; }
.score-card.fail .sc-label { color: #e0103a; }
.score-card h4 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 6px; color: #fff; }
.score-card p { font-size: 13px; color: var(--muted2); line-height: 1.5; font-weight: 300; }
.leaderboard-note { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 18px 22px; display: flex; align-items: center; gap: 16px; }
.lb-icon { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--red); min-width: 60px; padding-right: 8px; }
.leaderboard-note p { font-size: 14px; color: var(--muted2); font-weight: 300; }
.leaderboard-note p strong { color: var(--text); font-weight: 500; }

/* ── CREATION ─────────────────────────── */
.creation { padding: 8px 25vw 48px; }
.creation-inner { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 32px; }
.creation-inner h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.creation-inner > p { font-size: 14px; color: var(--muted2); font-weight: 300; max-width: 560px; margin-bottom: 24px; line-height: 1.7; }
.creation-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.cs { padding: 14px 16px; border-right: 1px solid var(--border); }
.cs:last-child { border-right: none; }
.cs-step { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 6px; }
.cs h5 { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.3; }
.cs p { font-size: 12px; color: var(--muted); line-height: 1.55; font-weight: 300; }

/* ── CTA ──────────────────────────────── */
.cta-block { padding: 48px 0 40px; text-align: center; position: relative; overflow: hidden; }
.cta-block::before { content: ''; position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%); width: 500px; height: 300px; background: radial-gradient(ellipse, rgba(224,16,58,0.1) 0%, transparent 70%); pointer-events: none; }
.cta-block h2 { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.cta-block p { font-size: 15px; color: var(--muted2); margin-bottom: 24px; font-weight: 300; }
.cta-btn { display: inline-block; background: var(--red); color: #fff; font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; padding: 13px 36px; border-radius: 10px; text-decoration: none; letter-spacing: 0.02em; transition: background 0.15s, transform 0.1s; }
.cta-btn:hover { background: #c40d32; transform: translateY(-1px); }
.premium-note { display: inline-block; font-size: 12px; color: var(--muted); margin-top: 14px; border: 1px solid var(--border); padding: 4px 14px; border-radius: 20px; }

/* ── FOOTER ───────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 16px;
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--red); }
.footer-links .sep { color: var(--border); font-size: 13px; }
.footer-copy {
  font-size: 12px;
  color: var(--muted);
}
.footer-copy a { color: var(--muted); text-decoration: none; }
.footer-copy a:hover { color: var(--red); }

/* ── NAV ─────────────────────────────── */
nav {
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: #fff; text-decoration: none; }
.nav-brand span { color: var(--red); }
.nav-back { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.15s; }
.nav-back:hover { color: var(--red); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-status {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted2);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-status:hover { color: var(--text); }
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.status-dot.status-green { background: #3dba7a; box-shadow: 0 0 8px rgba(61,186,122,0.7); }
.status-dot.status-amber { background: #f59e0b; box-shadow: 0 0 8px rgba(245,158,11,0.7); }
.status-dot.status-red { background: #e0103a; box-shadow: 0 0 8px rgba(224,16,58,0.7); }
.status-incident { font-size: 15px; line-height: 1; animation: status-throb 1.4s ease-in-out infinite; }
@keyframes status-throb {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.7; }
}

/* ── PAGE HEADER ─────────────────────── */
.page-header {
  padding: 52px 24px 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -80px; left: -100px;
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(224,16,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--border-hot);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.page-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 13px;
  color: var(--muted);
}
.page-meta span { display: flex; align-items: center; gap: 6px; }

/* ── POLICY CONTENT ──────────────────── */
.policy-body { padding: 0 24px; padding-bottom: 64px; }

.policy-body h2 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 48px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.policy-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted2);
  margin: 28px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
}
.policy-body p {
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 14px;
}
.policy-body ul {
  margin: 0 0 16px 0;
  padding: 0;
  list-style: none;
}
.policy-body ul li {
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.7;
  font-weight: 300;
  padding: 6px 0 6px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  position: relative;
}
.policy-body ul li:last-child { border-bottom: none; }
.policy-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 12px;
}
.policy-body a { color: var(--red); text-decoration: none; }
.policy-body a:hover { text-decoration: underline; }
.policy-body strong { color: var(--text); font-weight: 500; }

.info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 24px 0;
}
.info-box p { margin: 0; font-size: 13px; }

.draft-notice {
  background: rgba(224,16,58,0.06);
  border: 1px solid var(--border-hot);
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 40px;
  font-size: 13px;
  color: #ff7090;
  text-align: center;
  font-style: italic;
}

.divider { height: 1px; background: var(--border); margin: 0; }

/* ── RESPONSIVE ───────────────────────── */
@media (max-width: 1000px) {
  .cmd-section { padding: 48px 5vw 40px; }
  .features { padding: 8px 5vw 48px; }
  .how { padding: 8px 5vw 48px; }
  .scoring { padding: 8px 5vw 48px; }
  .creation { padding: 8px 5vw 48px; }
  .features-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .score-grid { grid-template-columns: 1fr; }
  .creation-steps { grid-template-columns: 1fr 1fr; }
  .stat-row { gap: 0; }
  .stat { padding: 8px 16px; }
  .cmd-row { grid-template-columns: 110px 1fr; }
  .footer-links { gap: 8px 16px; }
  .page-header { padding: 36px 0 28px; }
}

@media (max-width: 700px) {
  .cmd-section { padding: 48px 1vw 40px; }
  .features { padding: 8px 1vw 48px; }
  .how { padding: 8px 1vw 48px; }
  .scoring { padding: 8px 1vw 48px; }
  .creation { padding: 8px 1vw 48px; }
  .creation-steps { grid-template-columns: 1fr; }
}