/* ── ano design system ─────────────────────────────────────────
   Theme: Industrial terminal — dark, precise, developer-native.
   Fonts: Syne (display/headings) + IBM Plex Mono (code/data)
   ─────────────────────────────────────────────────────────── */

:root {
  --bg-0:        #0a0a0b;
  --bg-1:        #111113;
  --bg-2:        #18181c;
  --bg-3:        #222228;
  --border:      #2a2a32;
  --border-hi:   #3d3d4a;
  --text-0:      #f0f0f4;
  --text-1:      #a0a0b0;
  --text-2:      #606070;
  --text-3:      #404050;
  --accent:      #b8f55a;
  --accent-dim:  #7aaa2a;
  --accent-glow: rgba(184, 245, 90, 0.12);
  --green:       #4ade80;
  --red:         #f87171;
  --yellow:      #fbbf24;
  --blue:        #60a5fa;
  --sidebar-w:   220px;
  --topbar-h:    56px;
  --radius:      6px;
  --radius-lg:   10px;
  --font-sans:   'Syne', sans-serif;
  --font-mono:   'IBM Plex Mono', monospace;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; }
body {
  background: var(--bg-0);
  color: var(--text-0);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
input, select, textarea, button { font-family: var(--font-mono); font-size: 13px; }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: var(--border-hi); border-radius: 3px; }

/* SIDEBAR */
.sidebar {
  width: var(--sidebar-w);
  min-height: 100vh;
  background: var(--bg-1);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 100;
}
.sidebar-logo {
  padding: 24px 20px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.logo-mark {
  width: 28px; height: 28px; background: var(--accent); color: var(--bg-0);
  font-family: var(--font-sans); font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px; letter-spacing: -1px; flex-shrink: 0;
}
.logo-text { font-size: 18px; font-weight: 800; color: var(--text-0); letter-spacing: -0.5px; }
.logo-tag {
  font-family: var(--font-mono); font-size: 9px; color: var(--text-2);
  background: var(--bg-2); padding: 2px 6px; border-radius: 3px; margin-left: auto;
}
.sidebar-nav { padding: 16px 12px; flex: 1; display: flex; flex-direction: column; gap: 2px; }
.nav-item {
  display: flex; align-items: center; gap: 10px; padding: 9px 10px;
  border-radius: var(--radius); color: var(--text-1); font-size: 13px; font-weight: 600;
  transition: all 0.15s; text-decoration: none;
}
.nav-item svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.nav-item:hover { background: var(--bg-2); color: var(--text-0); text-decoration: none; }
.nav-item.active { background: var(--accent-glow); color: var(--accent); }
.nav-item.active svg { stroke: var(--accent); }
.sidebar-footer { padding: 16px 20px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.env-badge { font-family: var(--font-mono); font-size: 10px; color: var(--text-2); display: flex; align-items: center; gap: 5px; }
.env-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); }
.sidebar-version { font-family: var(--font-mono); font-size: 10px; color: var(--text-3); }

/* MAIN */
.main { margin-left: var(--sidebar-w); flex: 1; display: flex; flex-direction: column; min-height: 100vh; }
.topbar {
  height: var(--topbar-h); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; background: var(--bg-0); position: sticky; top: 0; z-index: 50;
}
.topbar-title { font-size: 15px; font-weight: 700; color: var(--text-0); letter-spacing: -0.3px; }
.topbar-actions { display: flex; align-items: center; gap: 12px; }
.health-pill {
  font-family: var(--font-mono); font-size: 11px;
  display: flex; align-items: center; gap: 6px; padding: 4px 10px;
  border: 1px solid var(--border); border-radius: 20px; color: var(--text-1);
  background: var(--bg-1); text-decoration: none; transition: border-color 0.2s;
}
.health-pill:hover { border-color: var(--border-hi); text-decoration: none; }
.health-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 5px var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.content { padding: 36px 32px; max-width: 1100px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px;
  border-radius: var(--radius); font-size: 13px; font-weight: 600;
  cursor: pointer; border: 1px solid transparent; transition: all 0.15s;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--bg-0); border-color: var(--accent); }
.btn-primary:hover { background: #ceff70; text-decoration: none; }
.btn-ghost { background: transparent; color: var(--text-0); border-color: var(--border-hi); }
.btn-ghost:hover { border-color: var(--text-1); text-decoration: none; }
.btn-danger { background: transparent; color: var(--red); border-color: var(--red); }
.btn-danger:hover { background: rgba(248,113,113,0.1); text-decoration: none; }
.btn.small { padding: 5px 12px; font-size: 11px; }
.btn.full-w { width: 100%; justify-content: center; }

/* CARDS */
.card { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.card-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-2); margin-bottom: 8px; }
.card-value { font-size: 32px; font-weight: 800; color: var(--text-0); line-height: 1; margin-bottom: 6px; }
.card-value.mono { font-family: var(--font-mono); }
.card-value.small { font-size: 14px; margin-top: 4px; }
.card-sub { font-size: 12px; color: var(--text-2); }
.card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mb-sm { margin-bottom: 12px; } .mb-lg { margin-bottom: 24px; }
.mt-sm { margin-top: 12px; } .mt-xs { margin-top: 6px; } .mt-lg { margin-top: 32px; }

/* SECTION */
.section-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-2); margin-bottom: 14px; }
.section-desc { color: var(--text-1); margin-bottom: 16px; font-size: 14px; }
.section { padding: 40px 0; border-top: 1px solid var(--border); }

/* CODE */
.code-window { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.code-topbar { background: var(--bg-3); padding: 10px 14px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--border); }
.code-dot { width: 10px; height: 10px; border-radius: 50%; opacity: 0.7; }
.code-dot.red { background: #ff5f56; } .code-dot.yellow { background: #ffbd2e; } .code-dot.green { background: #27c93f; }
.code-filename { font-family: var(--font-mono); font-size: 11px; color: var(--text-2); margin-left: 8px; }
.code-body { font-family: var(--font-mono); font-size: 12.5px; line-height: 1.7; color: var(--text-1); padding: 20px; overflow-x: auto; white-space: pre; }
.code-body.small { font-size: 11.5px; padding: 14px; }
.tok-keyword { color: var(--accent); } .tok-string { color: #86efac; } .tok-comment { color: var(--text-3); font-style: italic; }

/* HOME */
.hero { padding: 16px 0 56px; max-width: 700px; }
.hero-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.hero-headline { font-size: 52px; font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; color: var(--text-0); margin-bottom: 20px; }
.hero-headline em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 15px; color: var(--text-1); line-height: 1.7; max-width: 520px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 12px; align-items: center; }
.flow-grid { display: flex; align-items: flex-start; gap: 0; }
.flow-step { flex: 1; padding: 24px; background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.flow-step:not(:last-child) { border-right: none; border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.flow-step:last-child { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.flow-num { font-family: var(--font-mono); font-size: 10px; color: var(--accent); letter-spacing: 1px; margin-bottom: 12px; }
.flow-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--accent-glow); border-radius: var(--radius); margin-bottom: 14px; }
.flow-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.flow-arrow { align-self: center; font-size: 22px; color: var(--accent); padding: 0 4px; flex-shrink: 0; }
.flow-step h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.flow-step p { font-size: 13px; color: var(--text-1); line-height: 1.6; }
.topic-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.topic-chip { font-family: var(--font-mono); font-size: 11px; padding: 5px 12px; border: 1px solid var(--border); border-radius: 20px; color: var(--text-1); background: var(--bg-1); }
.stat-strip { display: flex; align-items: center; background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); margin-top: 40px; overflow: hidden; }
.stat { flex: 1; padding: 28px 24px; text-align: center; }
.stat-num { font-size: 36px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 12px; color: var(--text-2); }
.stat-divider { width: 1px; background: var(--border); align-self: stretch; }

/* DASHBOARD */
.dash-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.stat-card:hover { border-color: var(--border-hi); }

/* FORMS */
.inline-form { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.inline-form input, .inline-form select { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text-0); padding: 8px 12px; font-size: 12.5px; flex: 1; min-width: 160px; outline: none; transition: border-color 0.15s; }
.inline-form input:focus, .inline-form select:focus { border-color: var(--accent); }
.inline-form select { flex: 0 0 90px; min-width: unset; }
.inline-form input::placeholder { color: var(--text-3); }
.action-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.action-card p { font-size: 13px; color: var(--text-1); margin-bottom: 16px; }
.result-box { margin-top: 12px; padding: 12px 14px; background: var(--accent-glow); border: 1px solid var(--accent-dim); border-radius: var(--radius); font-family: var(--font-mono); font-size: 12px; line-height: 1.7; word-break: break-all; }
.result-box.hidden { display: none; }
.result-box.error { background: rgba(248,113,113,0.08); border-color: var(--red); color: var(--red); }

/* API KEYS */
.key-banner { background: var(--bg-2); border: 1px solid var(--accent); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 24px; animation: slideIn 0.3s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.key-banner.hidden { display: none; }
.key-banner-label { font-size: 12px; color: var(--text-1); margin-bottom: 12px; }
.key-banner-row { display: flex; align-items: center; gap: 12px; }
.key-value { font-family: var(--font-mono); font-size: 14px; color: var(--accent); background: var(--bg-3); padding: 10px 16px; border-radius: var(--radius); flex: 1; word-break: break-all; }
.key-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.key-row:last-child { border-bottom: none; }
.key-label { flex: 1; font-weight: 600; }
.key-env { font-family: var(--font-mono); font-size: 10px; padding: 3px 8px; border-radius: 20px; }
.key-env.env-live { background: rgba(74,222,128,0.1); color: var(--green); }
.key-env.env-test { background: rgba(251,191,36,0.1); color: var(--yellow); }
.key-requests, .key-date { font-family: var(--font-mono); font-size: 11px; color: var(--text-2); }

/* PLAYGROUND */
.playground-layout { display: grid; grid-template-columns: 380px 1fr; gap: 20px; align-items: start; }
.pg-input, .pg-textarea { width: 100%; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text-0); padding: 9px 12px; font-family: var(--font-mono); font-size: 12px; outline: none; transition: border-color 0.15s; resize: vertical; }
.pg-input:focus, .pg-textarea:focus { border-color: var(--accent); }
.pg-input::placeholder { color: var(--text-3); }
.pg-tabs { display: flex; gap: 2px; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 3px; margin-top: 12px; flex-wrap: wrap; }
.pg-tab { flex: 1; padding: 6px 8px; background: transparent; border: none; border-radius: 4px; color: var(--text-2); font-family: var(--font-mono); font-size: 11px; cursor: pointer; transition: all 0.15s; }
.pg-tab:hover { color: var(--text-0); }
.pg-tab.active { background: var(--bg-3); color: var(--accent); }
.pg-panel { display: none; }
.pg-panel.active { display: block; }
.pg-response { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; position: sticky; top: calc(var(--topbar-h) + 20px); }
.pg-response-header { background: var(--bg-2); padding: 12px 16px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.pg-output { max-height: 70vh; overflow-y: auto; }
.status-badge { font-family: var(--font-mono); font-size: 11px; padding: 3px 10px; border-radius: 20px; }
.status-badge.ok { background: rgba(74,222,128,0.1); color: var(--green); }
.status-badge.err { background: rgba(248,113,113,0.1); color: var(--red); }
.topic-picker { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.topic-toggle { display: flex; align-items: center; gap: 5px; font-family: var(--font-mono); font-size: 11px; padding: 4px 10px; border: 1px solid var(--border); border-radius: 20px; color: var(--text-2); cursor: pointer; transition: all 0.15s; user-select: none; }
.topic-toggle input { display: none; }
.topic-toggle:has(input:checked) { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }
.topic-toggle.dislike:has(input:checked) { border-color: var(--red); color: var(--red); background: rgba(248,113,113,0.08); }

/* DOCS */
.docs-layout { display: grid; grid-template-columns: 180px 1fr; gap: 40px; align-items: start; }
.docs-toc { position: sticky; top: calc(var(--topbar-h) + 24px); }
.toc-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.toc-link { display: block; font-size: 12.5px; color: var(--text-2); padding: 4px 0 4px 10px; border-left: 2px solid transparent; transition: all 0.15s; text-decoration: none; }
.toc-link:hover { color: var(--text-0); border-color: var(--border-hi); text-decoration: none; }
.docs-body h1 { font-size: 32px; font-weight: 800; letter-spacing: -0.8px; margin-bottom: 12px; }
.docs-body h2 { font-size: 18px; font-weight: 700; margin-top: 40px; margin-bottom: 12px; padding-top: 40px; border-top: 1px solid var(--border); scroll-margin-top: 70px; }
.docs-body h4 { font-size: 12px; font-weight: 700; color: var(--text-2); letter-spacing: 0.5px; margin: 20px 0 8px; }
.docs-body p { color: var(--text-1); margin-bottom: 14px; font-size: 14px; }
.lead { font-size: 15px !important; color: var(--text-0) !important; line-height: 1.7; }
.hint { font-size: 12px !important; color: var(--text-2) !important; margin-top: 8px; }
.docs-body .code-window { margin: 12px 0; }
code { font-family: var(--font-mono); font-size: 12px; }
.endpoint-badge { display: inline-block; font-family: var(--font-mono); font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 4px; margin-right: 8px; vertical-align: middle; }
.endpoint-badge.post { background: rgba(96,165,250,0.15); color: var(--blue); }
.endpoint-badge.get { background: rgba(74,222,128,0.15); color: var(--green); }
.endpoint-badge.delete { background: rgba(248,113,113,0.15); color: var(--red); }
.endpoint-path { font-size: 14px; color: var(--text-0); }
.param-table { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin: 12px 0; }
.param-row { display: grid; grid-template-columns: 180px 120px 1fr; gap: 12px; padding: 10px 16px; border-bottom: 1px solid var(--border); font-size: 13px; align-items: center; }
.param-row:last-child { border-bottom: none; }
.param-row.header { background: var(--bg-2); font-size: 10px; font-family: var(--font-mono); letter-spacing: 1px; color: var(--text-2); text-transform: uppercase; }
.param-row span.mono { font-family: var(--font-mono); font-size: 12px; color: var(--text-0); }
.param-row span { color: var(--text-1); }
.badge { font-family: var(--font-mono); font-size: 10px; padding: 2px 8px; border-radius: 3px; }
.badge.required { background: rgba(248,113,113,0.15); color: var(--red); }
.badge.optional { background: var(--bg-3); color: var(--text-2); }
.badge.green { background: rgba(74,222,128,0.12); color: var(--green); }
.badge.red { background: rgba(248,113,113,0.12); color: var(--red); }
.docs-footer { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }

/* 404 */
.not-found {
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center; padding: 80px 0; gap: 16px;
}
.not-found-code {
  font-size: 96px; font-weight: 800; line-height: 1;
  letter-spacing: -4px; color: var(--border-hi);
  font-family: var(--font-sans);
}
.not-found h2 { font-size: 22px; font-weight: 700; color: var(--text-0); }

/* MISC */
.muted { color: var(--text-2); font-size: 13px; }
.mono { font-family: var(--font-mono); }
.error-text { color: var(--red); font-size: 13px; }

/* ── LIVE DEMO ──────────────────────────────────────────────── */
.demo-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.demo-controls { display: flex; flex-direction: column; gap: 16px; }
.demo-block {}
.demo-block-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-2); margin-bottom: 10px;
}
.demo-topic-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.demo-chip {
  padding: 5px 12px; border: 1px solid var(--border); border-radius: 20px;
  background: var(--bg-2); color: var(--text-2);
  font-family: var(--font-mono); font-size: 11px; cursor: pointer;
  transition: all 0.15s; user-select: none; display: flex; align-items: center; gap: 4px;
}
.demo-chip:hover { border-color: var(--border-hi); color: var(--text-0); }
.demo-chip.liked { background: var(--accent-glow); border-color: var(--accent-dim); color: var(--accent); }
.demo-chip.disliked { opacity: 0.3; border-style: dashed; }

.demo-uid-row {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px 12px;
}
.demo-uid-at { color: var(--accent); font-family: var(--font-mono); font-size: 13px; font-weight: 600; }
.demo-uid-input {
  background: transparent; border: none; outline: none;
  color: var(--text-0); font-family: var(--font-mono); font-size: 12px; flex: 1;
}
.demo-uid-input::placeholder { color: var(--text-3); }

.demo-status {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-2);
  padding: 6px 0; text-align: center;
}
.demo-status.hidden { display: none; }
.demo-status.loading { color: var(--accent); }
.demo-status.error { color: var(--red); }

.demo-output {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--bg-0);
}
.demo-output-header {
  background: var(--bg-2); padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.demo-output-title { font-size: 12px; font-weight: 700; color: var(--text-0); }
.demo-output-count { font-family: var(--font-mono); font-size: 10px; color: var(--text-2); }

.demo-feed { display: flex; flex-direction: column; max-height: 340px; overflow-y: auto; }
.demo-empty { padding: 40px 20px; text-align: center; color: var(--text-3); font-size: 12px; font-family: var(--font-mono); }

.demo-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  animation: demoRowIn 0.3s ease both;
}
.demo-row:last-child { border-bottom: none; }
@keyframes demoRowIn {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.demo-row-rank {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 10px; color: var(--text-2); flex-shrink: 0;
}
.demo-row:first-child .demo-row-rank { background: var(--accent-glow); border-color: var(--accent-dim); color: var(--accent); }
.demo-row-body { flex: 1; min-width: 0; }
.demo-row-topic { font-family: var(--font-mono); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); margin-bottom: 3px; }
.demo-row-title { font-size: 12px; color: var(--text-0); line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.demo-row-score {
  font-family: var(--font-mono); font-size: 10px;
  padding: 3px 8px; border-radius: 20px;
  background: var(--bg-2); border: 1px solid var(--border);
  color: var(--text-2); flex-shrink: 0;
}

/* ── APP PREVIEWS ────────────────────────────────────────────── */
.apps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.app-card {
  background: var(--bg-1); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: border-color 0.2s;
}
.app-card:hover { border-color: var(--border-hi); }
.app-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.app-badge {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 3px 8px;
  background: var(--accent-glow); border: 1px solid var(--accent-dim);
  color: var(--accent); border-radius: 4px;
}
.app-badge.social {
  background: rgba(96,165,250,0.1); border-color: rgba(96,165,250,0.3);
  color: var(--blue);
}
.app-title {
  font-family: var(--font-sans); font-size: 26px; font-weight: 800;
  letter-spacing: -0.5px; margin-bottom: 8px; color: var(--text-0);
}
.app-desc { font-size: 13px; color: var(--text-1); line-height: 1.6; margin-bottom: 12px; }
.app-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.app-tag {
  font-family: var(--font-mono); font-size: 10px;
  padding: 3px 8px; border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text-2); background: var(--bg-2);
}

/* App preview shells */
.app-preview {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  font-size: 11px;
}

/* News preview */
.news-preview { background: #f5f2eb; color: #0d0d0d; }
.np-header {
  background: rgba(245,242,235,0.95); border-bottom: 1px solid #d6d0c4;
  padding: 8px 12px; display: flex; align-items: center; justify-content: space-between;
}
.np-logo { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 900; letter-spacing: 0.1em; color: #c8401b; }
.np-sub { font-size: 9px; color: #7a7468; }
.np-feed { padding: 8px; display: flex; flex-direction: column; gap: 6px; }
.np-card {
  display: flex; align-items: flex-start; gap: 8px;
  background: white; border: 1px solid #d6d0c4;
  border-radius: 4px; padding: 8px 10px;
  transition: all 0.4s ease;
}
.np-rank {
  width: 20px; height: 20px; border-radius: 50%;
  background: #0d0d0d; color: white;
  font-size: 9px; font-family: 'IBM Plex Mono', monospace; font-weight: 600;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.np-card:first-child .np-rank { background: #c8401b; }
.np-body { flex: 1; min-width: 0; }
.np-tag { font-size: 8px; text-transform: uppercase; letter-spacing: 0.08em; color: #c8401b; font-family: 'IBM Plex Mono', monospace; font-weight: 600; margin-bottom: 3px; }
.np-title { font-size: 10px; color: #0d0d0d; line-height: 1.35; font-weight: 600; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.np-bar { height: 2px; background: #e8e3d8; border-radius: 100px; overflow: hidden; }
.np-bar-fill { height: 100%; background: linear-gradient(90deg, #2b5f8e, #c8401b); transition: width 0.6s ease; border-radius: 100px; }

/* Social preview */
.social-preview { background: #0a0a0f; color: #f0eeff; }
.sp-header {
  background: rgba(10,10,15,0.9); border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 8px 12px; display: flex; align-items: center; gap: 12px;
}
.sp-logo { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 800; color: #b8f55a; letter-spacing: -0.03em; }
.sp-tab { font-size: 10px; font-weight: 600; color: rgba(240,238,255,0.5); }
.sp-tab.active { color: #f0eeff; border-bottom: 1px solid #6c63ff; padding-bottom: 1px; }
.sp-feed { padding: 6px 0; }
.sp-post {
  display: flex; gap: 10px; padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s ease;
}
.sp-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: #6c63ff; color: white;
  font-size: 11px; font-weight: 700; font-family: 'Syne', sans-serif;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sp-content { flex: 1; min-width: 0; }
.sp-author { font-size: 9px; color: rgba(240,238,255,0.5); margin-bottom: 3px; display: flex; align-items: center; gap: 6px; }
.sp-score {
  background: rgba(108,99,255,0.15); border: 1px solid rgba(108,99,255,0.2);
  color: #6c63ff; padding: 1px 6px; border-radius: 100px; font-size: 8px; font-family: monospace;
}
.sp-text { font-size: 10px; line-height: 1.4; color: #f0eeff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 5px; }
.sp-actions { font-size: 9px; color: rgba(240,238,255,0.25); }

/* ── AUTH / LOGIN PAGE ──────────────────────────────────────── */
body.auth-body { display: block; background: var(--bg-0); }
.auth-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }

.auth-brand {
  background: var(--bg-1);
  border-right: 1px solid var(--border);
  padding: 48px 56px;
  display: flex; flex-direction: column;
}
.auth-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 64px; }
.auth-logo:hover { text-decoration: none; }
.auth-brand-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.auth-brand-headline { font-size: 40px; font-weight: 800; letter-spacing: -1.2px; line-height: 1.15; margin-bottom: 16px; color: var(--text-0); }
.auth-brand-sub { font-size: 15px; color: var(--text-1); line-height: 1.7; margin-bottom: 40px; max-width: 400px; }
.auth-features { display: flex; flex-direction: column; gap: 12px; }
.auth-feature { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-1); }
.auth-feature-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

.auth-panel {
  display: flex; align-items: center; justify-content: center;
  padding: 48px 40px; background: var(--bg-0);
}
.auth-card { width: 100%; max-width: 400px; }
.auth-card-header { margin-bottom: 28px; }
.auth-card-title { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 6px; }
.auth-card-sub { font-size: 13px; color: var(--text-2); }

.auth-error {
  background: rgba(248,113,113,0.08);
  border: 1px solid var(--red);
  color: var(--red);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 20px;
}
.auth-error.hidden { display: none; }

.auth-info {
  background: var(--accent-glow);
  border: 1px solid var(--accent-dim);
  color: var(--accent);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 20px;
}
.auth-info.hidden { display: none; }

.auth-oauth { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.oauth-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 11px 16px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text-0);
  font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.15s;
}
.oauth-btn:hover { border-color: var(--border-hi); background: var(--bg-3); }
.oauth-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-divider span { font-size: 11px; color: var(--text-2); white-space: nowrap; font-family: var(--font-mono); }

.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-field label { font-size: 11px; font-weight: 700; color: var(--text-2); letter-spacing: 0.5px; text-transform: uppercase; font-family: var(--font-mono); }
.auth-field input {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text-0);
  padding: 10px 14px; font-size: 13px; outline: none;
  transition: border-color 0.15s; width: 100%;
}
.auth-field input:focus { border-color: var(--accent); }
.auth-field input::placeholder { color: var(--text-3); }
.auth-form-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.auth-forgot { text-align: center; }
.auth-forgot a { font-size: 12px; color: var(--text-2); }
.auth-forgot a:hover { color: var(--text-0); }
.auth-terms { font-size: 11px; color: var(--text-3); text-align: center; margin-top: 20px; line-height: 1.5; }

/* ── SIDEBAR USER FOOTER ─────────────────────────────────────── */
.sidebar-logo-link { display: flex; align-items: center; gap: 8px; text-decoration: none; width: 100%; }
.sidebar-logo-link:hover { text-decoration: none; }
.sidebar-footer { padding: 16px 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.sidebar-user { display: flex; align-items: center; gap: 10px; }
.user-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.user-avatar-placeholder { width: 28px; height: 28px; border-radius: 50%; background: var(--accent-glow); border: 1px solid var(--accent-dim); color: var(--accent); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.user-info { min-width: 0; }
.user-name { font-size: 12px; font-weight: 600; color: var(--text-0); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-logout { font-size: 11px; color: var(--text-2); font-family: var(--font-mono); cursor: pointer; }
.user-logout:hover { color: var(--red); }
.sidebar-version { font-family: var(--font-mono); font-size: 10px; color: var(--text-3); }

/* ── DASHBOARD ───────────────────────────────────────────────── */
.welcome-bar { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 8px; }
.welcome-name { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 4px; }
.welcome-sub { font-size: 13px; color: var(--text-2); font-family: var(--font-mono); }
.plan-badge { font-family: var(--font-mono); font-size: 10px; padding: 4px 10px; border-radius: 20px; background: var(--accent-glow); border: 1px solid var(--accent-dim); color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }

.api-key-card { margin-bottom: 0; }
.api-key-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.api-key-hint { font-size: 12px; color: var(--text-2); margin-top: 4px; }
.api-key-new-banner { background: var(--bg-2); border: 1px solid var(--accent); border-radius: var(--radius); padding: 16px; }
.api-key-new-label { font-size: 12px; color: var(--text-1); margin-bottom: 12px; }
.api-key-row { display: flex; align-items: center; gap: 12px; }
.api-key-value { font-family: var(--font-mono); font-size: 14px; color: var(--accent); background: var(--bg-3); padding: 10px 16px; border-radius: var(--radius); flex: 1; word-break: break-all; display: block; }
.api-key-value.masked { color: var(--text-2); letter-spacing: 1px; }
.api-key-sub { font-size: 11px; color: var(--text-3); margin-top: 10px; font-family: var(--font-mono); }

.quickstart-steps { display: flex; flex-direction: column; gap: 0; }
.qs-step { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.qs-step:last-child { border-bottom: none; }
.qs-num { width: 24px; height: 24px; border-radius: 50%; background: var(--accent-glow); border: 1px solid var(--accent-dim); color: var(--accent); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; font-family: var(--font-mono); }
.qs-body { flex: 1; min-width: 0; }
.qs-title { font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.qs-footer { display: flex; gap: 10px; margin-top: 20px; }
.green-text { color: var(--green); font-size: 20px !important; }

/* ── LANDING PAGE FULL LAYOUT ──────────────────────────────── */
body.page-home { display: block; }

.land-wrap { display: flex; flex-direction: column; min-height: 100vh; }

/* Navbar */
.land-nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 60px;
  background: rgba(10,10,11,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.land-nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.land-nav-logo:hover { text-decoration: none; }
.land-nav-links { display: flex; align-items: center; gap: 4px; }
.land-nav-link {
  padding: 6px 14px; border-radius: var(--radius);
  color: var(--text-2); font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all 0.15s;
}
.land-nav-link:hover { color: var(--text-0); background: var(--bg-2); text-decoration: none; }
.land-nav-actions { display: flex; align-items: center; gap: 8px; }
.btn-sm { padding: 6px 14px !important; font-size: 12px !important; }
.btn-lg { padding: 12px 24px !important; font-size: 14px !important; }

/* Hamburger button */
.land-nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 36px; height: 36px;
  background: transparent; border: 1px solid var(--border);
  border-radius: var(--radius); cursor: pointer; padding: 0;
  transition: border-color 0.15s;
}
.land-nav-hamburger:hover { border-color: var(--border-hi); }
.land-nav-hamburger span {
  display: block; width: 16px; height: 1.5px;
  background: var(--text-1); border-radius: 2px;
  transition: all 0.2s;
}
.land-nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.land-nav-hamburger.open span:nth-child(2) { opacity: 0; }
.land-nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Responsive */
@media (max-width: 768px) {
  .land-nav { padding: 0 20px; flex-wrap: wrap; height: auto; min-height: 56px; }
  .land-nav-hamburger { display: flex; margin-left: auto; }
  .land-nav-links, .land-nav-actions {
    display: none; width: 100%;
    flex-direction: column; align-items: flex-start; gap: 2px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
  }
  .land-nav-links.open, .land-nav-actions.open { display: flex; }
  .land-nav-actions { border-top: none; padding-top: 0; padding-bottom: 16px; flex-direction: row; }
  .land-nav-link { width: 100%; padding: 10px 12px; border-radius: var(--radius); }
  .lp-hero { grid-template-columns: 1fr; padding: 40px 20px; gap: 32px; }
  .lp-hero-h1 { font-size: 34px; letter-spacing: -1px; }
  .lp-stats { flex-wrap: wrap; }
  .lp-stat { min-width: 50%; }
  .lp-stat-sep { display: none; }
  .lp-section { padding: 48px 20px; }
  .lp-compare-grid { grid-template-columns: 1fr; }
  .lp-compare-divider { writing-mode: horizontal-tb; padding: 12px 20px; border: none; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .lp-steps { flex-direction: column; }
  .lp-step { border-right: 1px solid var(--border); border-bottom: none; border-radius: 0; }
  .lp-step:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .lp-step:last-child { border-bottom: 1px solid var(--border); border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .lp-step-arrow { transform: rotate(90deg); padding: 4px 0; }
  .apps-grid { grid-template-columns: 1fr; }
  .demo-shell { grid-template-columns: 1fr; }
  .lp-cta-section { padding: 60px 20px; }
  .land-footer { padding: 20px; }
  .land-footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}

.land-content { flex: 1; }

/* Footer */
.land-footer { border-top: 1px solid var(--border); padding: 24px 48px; }
.land-footer-inner { display: flex; align-items: center; justify-content: space-between; }
.land-footer-logo { display: flex; align-items: center; gap: 10px; }
.land-footer-tag { font-family: var(--font-mono); font-size: 10px; color: var(--text-3); }
.land-footer-links { display: flex; gap: 24px; }
.land-footer-links a { font-size: 12px; color: var(--text-2); text-decoration: none; }
.land-footer-links a:hover { color: var(--text-0); }

/* ── HERO ───────────────────────────────────────────────────── */
.lp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 48px 80px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.lp-hero-glow {
  position: absolute;
  top: -120px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,245,90,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.lp-hero-inner { position: relative; z-index: 1; }
.lp-hero-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-2); margin-bottom: 24px;
}
.lp-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite; flex-shrink: 0;
}
.lp-hero-h1 {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -2px; color: var(--text-0);
  margin-bottom: 20px;
}
.lp-h1-accent { color: var(--accent); }
.lp-hero-sub {
  font-size: 16px; color: var(--text-1); line-height: 1.75;
  max-width: 480px; margin-bottom: 32px;
}
.lp-hero-cta { display: flex; gap: 12px; align-items: center; margin-bottom: 28px; }
.lp-hero-proof {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-3);
}
.lp-proof-item { display: flex; align-items: center; gap: 5px; }
.lp-proof-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-dim); }
.lp-proof-sep { color: var(--text-3); }

.lp-hero-code { position: relative; z-index: 1; }
.lp-code-lines { margin-left: auto; font-family: var(--font-mono); font-size: 10px; color: var(--text-3); }

/* ── STATS BAR ──────────────────────────────────────────────── */
.lp-stats {
  display: flex; align-items: stretch;
  background: var(--bg-1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 0;
}
.lp-stat { flex: 1; padding: 28px 32px; text-align: center; }
.lp-stat-n { font-size: 34px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 6px; letter-spacing: -1px; }
.lp-stat-l { font-size: 12px; color: var(--text-2); font-family: var(--font-mono); }
.lp-stat-sep { width: 1px; background: var(--border); }

/* ── SECTIONS ───────────────────────────────────────────────── */
.lp-section {
  padding: 80px 48px;
  max-width: 1280px; margin: 0 auto; width: 100%;
  border-top: 1px solid var(--border);
}
.lp-section-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.lp-section-h2 {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800;
  letter-spacing: -1px; color: var(--text-0); margin-bottom: 12px; line-height: 1.2;
}
.lp-section-p { font-size: 15px; color: var(--text-1); line-height: 1.7; max-width: 560px; margin-bottom: 40px; }

/* ── COMPARE ────────────────────────────────────────────────── */
.lp-compare { border-top: none; }
.lp-compare-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0;
  align-items: stretch; margin-top: 32px;
  background: var(--bg-1); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.lp-compare-card { padding: 36px; }
.lp-compare-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.lp-compare-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.lp-compare-card ul li {
  font-size: 14px; color: var(--text-1); padding-left: 20px;
  position: relative; line-height: 1.5;
}
.lp-compare-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--text-3); }
.lp-bad { background: rgba(248,113,113,0.03); }
.lp-bad-icon { color: var(--red); font-size: 20px; margin-bottom: 12px; }
.lp-good { background: rgba(184,245,90,0.04); }
.lp-good ul li::before { color: var(--accent-dim); }
.lp-good-icon { color: var(--accent); font-size: 20px; margin-bottom: 12px; }
.lp-compare-divider {
  display: flex; align-items: center; justify-content: center;
  padding: 0 20px; font-family: var(--font-mono); font-size: 11px;
  color: var(--text-3); background: var(--bg-2);
  border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  writing-mode: vertical-rl; letter-spacing: 3px; text-transform: uppercase;
}

/* ── STEPS ──────────────────────────────────────────────────── */
.lp-steps {
  display: flex; align-items: flex-start; gap: 0; margin-top: 40px;
}
.lp-step {
  flex: 1; padding: 32px;
  background: var(--bg-1); border: 1px solid var(--border);
  border-right: none;
}
.lp-step:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.lp-step:last-child { border-right: 1px solid var(--border); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.lp-step-num { font-family: var(--font-mono); font-size: 10px; color: var(--accent); letter-spacing: 2px; margin-bottom: 16px; }
.lp-step-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: var(--accent-glow); border-radius: var(--radius); margin-bottom: 16px;
}
.lp-step-icon svg { width: 20px; height: 20px; stroke: var(--accent); }
.lp-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.lp-step p { font-size: 13px; color: var(--text-1); line-height: 1.65; margin-bottom: 16px; }
.lp-step-endpoint { display: flex; align-items: center; gap: 6px; }
.lp-step-arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 0 8px; flex-shrink: 0; align-self: center; margin-top: 0;
}
.lp-step-arrow svg { width: 20px; height: 20px; stroke: var(--accent); }

/* ── TOPIC CHIPS ────────────────────────────────────────────── */
.lp-topic-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-topic-chip {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 12px;
  padding: 7px 14px; border: 1px solid var(--border);
  border-radius: 100px; color: var(--text-1); background: var(--bg-1);
  transition: all 0.15s;
}
.lp-topic-chip:hover { border-color: var(--accent-dim); color: var(--accent); background: var(--accent-glow); }

/* ── DEMO SECTION ───────────────────────────────────────────── */
.lp-demo-section { background: transparent; }

/* ── FINAL CTA ──────────────────────────────────────────────── */
.lp-cta-section {
  border-top: 1px solid var(--border);
  padding: 100px 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.lp-cta-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(184,245,90,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.lp-cta-inner { position: relative; z-index: 1; }
.lp-cta-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.lp-cta-h2 {
  font-size: clamp(32px, 4vw, 52px); font-weight: 800;
  letter-spacing: -2px; margin-bottom: 14px; line-height: 1.1;
}
.lp-cta-sub { font-size: 16px; color: var(--text-1); margin-bottom: 36px; }
.lp-cta-btns { display: flex; gap: 12px; justify-content: center; align-items: center; }

/* ── OLD HOME EXTRAS (kept for compat) ──────────────────────── */
.hero-social-proof { font-size: 12px; color: var(--text-3); font-family: var(--font-mono); margin-top: 16px; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.problem-card { padding: 24px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.problem-card.bad { background: rgba(248,113,113,0.04); border-color: rgba(248,113,113,0.2); }
.problem-card.good { background: var(--accent-glow); border-color: var(--accent-dim); }
.problem-icon { font-size: 18px; margin-bottom: 10px; }
.problem-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.problem-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.problem-card ul li { font-size: 13px; color: var(--text-1); padding-left: 14px; position: relative; }
.problem-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--text-3); }
.problem-card.good ul li::before { color: var(--accent-dim); }
.cta-section { text-align: left; padding: 48px 0; }
.cta-headline { font-size: 32px; font-weight: 800; letter-spacing: -0.8px; margin-bottom: 10px; }
.cta-sub { font-size: 15px; color: var(--text-1); margin-bottom: 24px; }
