:root {
  --bg: #0a0e16;
  --bg2: #0e1422;
  --panel: #121a2b;
  --panel2: #16203440;
  --line: #233149;
  --text: #e7edf7;
  --muted: #93a3bd;
  --brand: #4f8cff;
  --brand2: #38e0c4;
  --accent: #ffb454;
  --ok: #38c4a4;
  --warn: #ffb454;
  --err: #ff6b6b;
  --radius: 14px;
  --maxw: 1080px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: var(--font); line-height: 1.55; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Header */
header.site { position: sticky; top: 0; z-index: 20; background: rgba(10,14,22,.85); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .2px; color: var(--text); }
.brand .logo { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, var(--brand), var(--brand2)); display: inline-flex; align-items: center; justify-content: center; font-size: 16px; }
.brand small { display: block; font-weight: 500; color: var(--muted); font-size: 11px; letter-spacing: .3px; }
.navlinks { display: flex; gap: 18px; align-items: center; }
.navlinks a { color: var(--muted); font-weight: 600; font-size: 14px; }
.navlinks a:hover, .navlinks a.active { color: var(--text); text-decoration: none; }
.btn { display: inline-block; padding: 10px 18px; border-radius: 10px; font-weight: 700; font-size: 14px; border: 1px solid transparent; cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand2)); color: #06121f; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn:hover { text-decoration: none; opacity: .92; }

/* Hero */
.hero { padding: 64px 0 36px; }
.hero h1 { font-size: 40px; line-height: 1.12; margin: 0 0 14px; letter-spacing: -.5px; }
.hero .tag { display: inline-block; background: #11233a; color: var(--brand2); border: 1px solid #1d3a5c; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; margin-bottom: 18px; }
.hero p.lead { color: var(--muted); font-size: 18px; max-width: 720px; }
.hero .cta { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }
.pill-non { display: inline-flex; align-items: center; gap: 6px; background: #2a1d0a; color: var(--accent); border: 1px solid #4a3410; padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; }

/* Sections */
section { padding: 30px 0; }
.section-title { font-size: 26px; margin: 0 0 6px; }
.section-sub { color: var(--muted); margin: 0 0 22px; }

/* Cards / grid */
.grid { display: grid; gap: 18px; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.card h3 { margin: 0 0 8px; font-size: 17px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.feature-icon { font-size: 22px; margin-bottom: 8px; display: block; }

/* Pricing */
.tier { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; display: flex; flex-direction: column; }
.tier.best { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand) inset; }
.tier .name { font-weight: 800; font-size: 18px; }
.tier .price { font-size: 30px; font-weight: 800; margin: 12px 0 4px; color: var(--text); }
.tier .price span { font-size: 14px; color: var(--muted); font-weight: 600; }
.tier ul { list-style: none; padding: 0; margin: 14px 0 18px; }
.tier ul li { padding: 6px 0 6px 24px; position: relative; font-size: 14px; color: var(--muted); border-top: 1px solid var(--line); }
.tier ul li:before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
.tier .btn { margin-top: auto; text-align: center; }

/* Forms */
label { display: block; font-weight: 600; font-size: 14px; margin: 14px 0 6px; color: var(--text); }
input, select, textarea { width: 100%; background: var(--bg2); border: 1px solid var(--line); color: var(--text); border-radius: 10px; padding: 11px 12px; font-size: 14px; font-family: var(--font); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand); }
textarea { min-height: 110px; resize: vertical; }
fieldset { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; margin: 0 0 6px; }
legend { padding: 0 8px; font-weight: 700; color: var(--muted); font-size: 13px; }

/* Status / output */
.status { margin-top: 16px; padding: 14px 16px; border-radius: 10px; font-size: 14px; }
.status.ok { background: #0f2a22; border: 1px solid #1c5743; color: #8ff0d4; }
.status.err { background: #2a1414; border: 1px solid #5c2626; color: #ffb3b3; }
.status.warn { background: #2a2110; border: 1px solid #5c4520; color: #ffd89a; }
pre.out { background: #060a12; border: 1px solid var(--line); border-radius: 10px; padding: 14px; overflow: auto; font-size: 12.5px; color: #b9d0ee; max-height: 460px; }
.mono { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; word-break: break-all; }
.badge { display: inline-block; padding: 2px 9px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.badge.collected { background: #11233a; color: var(--brand); }
.badge.verified { background: #0f2a22; color: var(--ok); }
.badge.gap { background: #2a2110; color: var(--accent); }

/* Tables */
table { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 13px; }
th, td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-weight: 700; }

/* Footer */
footer.site { border-top: 1px solid var(--line); margin-top: 40px; padding: 28px 0; color: var(--muted); font-size: 13px; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.footer-grid a { color: var(--muted); }

.notebox { background: #11182a; border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 10px; padding: 14px 16px; font-size: 13.5px; color: var(--muted); }
.disclaimer { font-size: 12.5px; color: var(--muted); margin-top: 10px; }
.aria-live { min-height: 1px; }
@media (max-width: 820px) {
  .cols-3, .cols-2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .navlinks { gap: 10px; }
}
