:root {
  --bg: #0d1117;
  --card: #161b22;
  --line: #2a3240;
  --text: #f3f6fb;
  --muted: #a8b3c7;
  --gold: #f4b942;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: radial-gradient(circle at 20% 0%, #1a2330 0%, var(--bg) 45%);
  color: var(--text);
}
.container { width: min(1100px, 92vw); margin: 0 auto; }
.row { display: flex; justify-content: space-between; align-items: center; }
.topbar { position: sticky; top: 0; border-bottom: 1px solid var(--line); backdrop-filter: blur(8px); background: #0d1117cc; }
.topbar .container { height: 64px; }
.brand { display: flex; gap: 10px; align-items: center; }
.mono { font-family: "Space Grotesk", sans-serif; font-size: 12px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; }
.slash { color: #556178; }
.name { color: var(--gold); font-weight: 700; }
.nav { display: flex; gap: 12px; }
.nav a { color: var(--muted); text-decoration: none; font-size: 0.88rem; }
.nav a:hover { color: var(--text); }
.hero { padding: 88px 0 60px; }
.kicker { color: var(--gold); font-weight: 600; margin: 0 0 12px; }
h1 { font-family: "Space Grotesk", sans-serif; font-size: clamp(2rem, 6vw, 4.25rem); margin: 0 0 14px; line-height: 1.02; }
.sub { color: var(--muted); max-width: 760px; margin-bottom: 26px; }
.btn { display: inline-block; border: 1px solid var(--line); padding: 10px 14px; border-radius: 10px; color: var(--text); text-decoration: none; background: transparent; cursor: pointer; font-weight: 600; }
.btn.primary { background: var(--gold); color: #121212; border-color: #f6c35a; }
.btn.ghost:hover, .btn:hover { border-color: #57657f; }
.section { padding: 26px 0 52px; }
h2 { font-family: "Space Grotesk", sans-serif; font-size: 1.8rem; margin-bottom: 14px; }
.tier-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.tier-card { border: 1px solid var(--line); border-radius: 14px; background: var(--card); padding: 16px; }
.tier-card h3 { margin: 0 0 5px; }
.price { color: var(--gold); font-size: 1.6rem; font-weight: 700; margin: 0 0 4px; }
.tag { color: var(--muted); font-size: 0.85rem; margin-bottom: 10px; }
.tier-card ul { padding-left: 18px; margin: 0; color: #ced7e6; font-size: 0.88rem; line-height: 1.42; }
.checkout, .scorer { border: 1px solid var(--line); border-radius: 14px; background: var(--card); padding: 16px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.checkout label, .scorer label { display: flex; flex-direction: column; gap: 6px; color: var(--muted); font-size: 0.9rem; }
select { background: #0f141d; color: var(--text); border: 1px solid var(--line); border-radius: 8px; padding: 10px; }
.result { grid-column: 1 / -1; border: 1px solid var(--line); border-radius: 10px; padding: 14px; min-height: 58px; color: #dbe7f8; }
.dashboard-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.panel { border: 1px solid var(--line); border-radius: 14px; background: var(--card); padding: 16px; }
.panel.full { grid-column: 1 / -1; }
.panel h3 { margin-top: 0; font-family: "Space Grotesk", sans-serif; }
.panel h4 { margin: 14px 0 8px; color: var(--gold); font-size: .95rem; }
.progress-wrap { margin-top: 8px; background: #0f141d; border-radius: 999px; border: 1px solid var(--line); overflow: hidden; }
.progress { height: 10px; width: 0; background: linear-gradient(90deg, #f6c35a, #f4b942); }
.check-item { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; font-size: .92rem; color: #d9e5f8; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; color: var(--muted); font-size: .82rem; }
.pill.sent { border-color: #4e845f; color: #baf0c6; background: #102318; }
#asset-list { display: grid; gap: 8px; }
.asset { display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--line); border-radius: 10px; padding: 10px; }
table { width: 100%; border-collapse: collapse; }
th, td { border-bottom: 1px solid var(--line); text-align: left; padding: 10px; font-size: .9rem; }
th { color: var(--muted); font-weight: 600; }
.legal p { color: #ced7e6; }
.breakdown { grid-column: 1 / -1; }
.score-row { margin-bottom: 8px; }
.score-row .meta { display: flex; justify-content: space-between; font-size: .82rem; color: var(--muted); margin-bottom: 4px; }
.score-row .bar { height: 8px; border-radius: 999px; background: #0f141d; border: 1px solid var(--line); overflow: hidden; }
.score-row .fill { height: 100%; background: linear-gradient(90deg, #f6c35a, #d99627); }
.pkg-grid { display: grid; gap: 10px; grid-template-columns: repeat(2,minmax(0,1fr)); }
.pkg-card { border: 1px solid var(--line); border-radius: 10px; padding: 12px; background: #121925; }
.pkg-card ul { margin: 8px 0 0; padding-left: 16px; color: #dbe7f8; font-size: .86rem; }
.footer { padding: 26px 0 44px; color: #7f8ca1; font-size: 0.86rem; }
@media (max-width: 920px) {
  .tier-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dashboard-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .tier-grid { grid-template-columns: 1fr; }
  .checkout, .scorer { grid-template-columns: 1fr; }
}
