/* ============================================================
   HEROZION — Apple-style design system
   ============================================================ */

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

:root {
  --bg:          #000000;
  --bg-alt:      #0a0a0a;
  --surface:     #111111;
  --surface-2:   #1a1a1a;
  --border:      rgba(255,255,255,0.08);
  --border-hover:rgba(255,255,255,0.18);
  --text:        #f5f5f7;
  --text-muted:  #86868b;
  --text-dim:    #515154;
  --accent:      #2997ff;
  --accent-hover:#0a84ff;
  --ok:          #30d158;
  --warn:        #ffd60a;
  --danger:      #ff453a;
  --perf:        #bf5af2;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h:       52px;
  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: rgba(41,151,255,0.3); color: var(--text); }

/* ──────────────────────────── NAV ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(0,0,0,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: invert(1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.footer-logo-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: invert(1);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover { color: var(--text); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 980px;
  font-size: 13px;
  font-weight: 500;
  transition: background var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-nav:hover { background: var(--accent-hover); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,0.95);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}

.nav-mobile a {
  color: var(--text);
  text-decoration: none;
  padding: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-child { border-bottom: none; }

.nav-mobile.open { display: flex; }

/* ──────────────────────────── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(41,151,255,0.12) 0%, transparent 60%);
}

.hero-badge {
  display: inline-block;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 980px;
  padding: 5px 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

.hero-title {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  max-width: 820px;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #f5f5f7 60%, #86868b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover { background: var(--accent-hover); transform: scale(1.02); }
.btn-primary.btn-large { padding: 16px 36px; font-size: 19px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(41,151,255,0.4);
  text-decoration: none;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition);
}

.btn-ghost:hover {
  background: rgba(41,151,255,0.08);
  border-color: var(--accent);
}

/* ── TERMINAL ── */
.hero-terminal {
  width: 100%;
  max-width: 680px;
  border-radius: var(--radius-lg);
  background: #0d0d0d;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.03);
  text-align: left;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: #1c1c1e;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }

.terminal-title {
  font-size: 12px;
  color: var(--text-dim);
  flex: 1;
  text-align: center;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
}

.terminal-body {
  padding: 24px;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.8;
  overflow-x: auto;
  white-space: pre;
}

.t-dim  { color: var(--text-dim); }
.t-cmd  { color: var(--text); font-weight: 600; }
.t-muted { color: var(--text-muted); }
.t-ok   { color: var(--ok); }
.t-box  { color: var(--text-dim); }
.t-crit { color: var(--danger); font-weight: 600; }
.t-high { color: #ff9f0a; font-weight: 600; }
.t-med  { color: var(--warn); font-weight: 600; }
.t-msg  { color: var(--text); }
.t-file { color: var(--accent); }

/* ──────────────────────────── STATS ── */
.stats {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-num {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.stat-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ──────────────────────────── SECTIONS ── */
.section { padding: 100px 24px; }
.section-alt { background: var(--bg-alt); }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 60px;
  max-width: 640px;
}

/* ──────────────────────────── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.feature-card {
  background: var(--surface);
  padding: 36px 28px;
  transition: background var(--transition);
}

.feature-card:hover { background: var(--surface-2); }
.feature-card:first-child { border-radius: var(--radius) 0 0 0; }
.feature-card:nth-child(3) { border-radius: 0 var(--radius) 0 0; }
.feature-card:nth-child(4) { border-radius: 0 0 0 var(--radius); }
.feature-card:last-child { border-radius: 0 0 var(--radius) 0; }

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ──────────────────────────── TABS ── */
.tabs, .cicd-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 4px;
  width: fit-content;
}

.tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  font-family: var(--font);
}

.tab:hover { color: var(--text); }

.tab.active {
  background: var(--surface-2);
  color: var(--text);
}

.tab-content, .cicd-content {
  display: none;
}

.tab-content.active, .cicd-content.active {
  display: block;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ──────────────────────────── CODE BLOCKS ── */
.code-block {
  position: relative;
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  overflow: hidden;
}

.code-block pre {
  padding: 24px;
  overflow-x: auto;
}

.code-block code {
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
  white-space: pre;
}

.code-block.small pre { padding: 16px; }

.copy-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font);
  transition: color var(--transition), border-color var(--transition);
}

.copy-btn:hover { color: var(--text); border-color: var(--border-hover); }
.copy-btn.copied { color: var(--ok); border-color: var(--ok); }

/* ──────────────────────────── INSTALL ── */
.install-note {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.install-note.small {
  font-size: 13px;
  margin-top: 8px;
}

.install-steps {
  color: var(--text-muted);
  font-size: 15px;
  padding-left: 20px;
  margin-bottom: 16px;
  line-height: 2;
}

.install-steps a { color: var(--accent); text-decoration: none; }
.install-steps a:hover { text-decoration: underline; }

.install-warning {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(255,211,10,0.06);
  border: 1px solid rgba(255,211,10,0.15);
  border-radius: var(--radius-sm);
}

.install-details {
  margin-top: 24px;
}

.install-details summary {
  color: var(--accent);
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 16px;
  user-select: none;
}

.install-details summary:hover { text-decoration: underline; }

.checksum-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.checksum-icon { font-size: 24px; flex-shrink: 0; }

.checksum-note strong { color: var(--text); display: block; margin-bottom: 4px; }

.inline-code {
  display: block;
  margin-top: 8px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 12px;
  color: var(--ok);
}

/* ──────────────────────────── USAGE GRID ── */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.usage-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.exit-codes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 480px;
}

.exit-codes h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.exit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.exit-code {
  font-family: 'SF Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.exit-code.ok   { color: var(--ok); }
.exit-code.fail { color: var(--danger); }

.exit-desc { font-size: 14px; color: var(--text-muted); }

/* ──────────────────────────── CATEGORIES ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.cat-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: var(--surface);
  transition: background var(--transition);
  cursor: default;
}

.cat-card:hover { background: var(--surface-2); }

.cat-card:first-child  { border-radius: var(--radius) 0 0 0; }
.cat-card:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
.cat-card:nth-last-child(2) { border-radius: 0 0 0 var(--radius); }
.cat-card:last-child { border-radius: 0 0 var(--radius) 0; }

.cat-card.cat-perf { border-left: 2px solid var(--perf); }

.cat-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: 1px;
}

.cat-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.cat-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ──────────────────────────── FAQ ── */
.faq-inner { max-width: 760px; }

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
  transition: color var(--transition);
}

.faq-q:hover { color: var(--accent); }

.faq-icon {
  font-size: 20px;
  color: var(--text-dim);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-a {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  padding-bottom: 20px;
  display: none;
}

.faq-a.open { display: block; animation: fadeIn 0.2s ease; }

/* ──────────────────────────── ROADMAP ── */
.roadmap-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 560px;
}

.roadmap-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text-muted);
}

.roadmap-item:last-child { border-bottom: none; }

.roadmap-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-hover);
  border: 2px solid var(--text-dim);
  flex-shrink: 0;
}

/* ──────────────────────────── CTA ── */
.cta-section {
  padding: 120px 24px;
  text-align: center;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(41,151,255,0.1) 0%, transparent 70%);
  border-top: 1px solid var(--border);
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ──────────────────────────── FOOTER ── */
.footer {
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--text); }

.footer-badges {
  display: flex;
  gap: 8px;
}

.badge {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 980px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

/* ──────────────────────────── LANG SWITCHER ── */
.lang-switcher {
  display: flex;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 5px;
  cursor: pointer;
  font-family: var(--font);
  letter-spacing: 0.5px;
  transition: background var(--transition), color var(--transition);
}

.lang-btn:hover { color: var(--text); }

.lang-btn.active {
  background: var(--surface-2);
  color: var(--text);
}

.lang-switcher-mobile {
  display: flex;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.lang-switcher-mobile .lang-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
}

.lang-switcher-mobile .lang-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ──────────────────────────── FADE-IN ANIMATION ── */
.fade-target {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-target.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────── INLINE CODE ── */
code {
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 0.85em;
  color: var(--ok);
  background: rgba(48,209,88,0.08);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ──────────────────────────── RESPONSIVE ── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: 1fr; }
  .usage-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-sep { display: none; }

  .feature-card:first-child { border-radius: var(--radius) 0 0 var(--radius); }
  .feature-card:nth-child(3) { border-radius: 0; }
  .feature-card:nth-child(4) { border-radius: 0; }
  .feature-card:last-child { border-radius: 0 var(--radius) var(--radius) 0; }

  .cat-grid { gap: 2px; }
  .cat-card:first-child  { border-radius: var(--radius) var(--radius) 0 0; }
  .cat-card:nth-child(2) { border-radius: 0; }
  .cat-card:nth-last-child(2) { border-radius: 0; }
  .cat-card:last-child { border-radius: 0 0 var(--radius) var(--radius); }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .btn-nav   { display: none; }
  .lang-switcher { display: none; }
  .nav-burger { display: flex; }

  .features-grid { grid-template-columns: 1fr; gap: 2px; }
  .feature-card:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .feature-card:nth-child(3) { border-radius: 0; }
  .feature-card:nth-child(4) { border-radius: 0; }
  .feature-card:last-child { border-radius: 0 0 var(--radius) var(--radius); }

  .usage-grid { grid-template-columns: 1fr; }

  .section-title { letter-spacing: -1px; }
  .hero-title { letter-spacing: -1.5px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }

  .tabs, .cicd-tabs { width: 100%; }
  .tab { flex: 1; text-align: center; }
}

/* ══════════════════════════════════════════════════════
   FUTURISTIC FX
══════════════════════════════════════════════════════ */

/* ── Hero: canvas + orb stacking ── */
.hero { position: relative; overflow: hidden; }

#hero-canvas {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  contain: strict;
}

.fx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* Lift hero content above canvas/orbs */
.hero > *:not(#hero-canvas):not(.fx-orb) {
  position: relative;
  z-index: 1;
}

@keyframes orb-drift-1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(70px, 40px) scale(1.2); }
}
@keyframes orb-drift-2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-50px, 55px) scale(1.15); }
}

/* ── Terminal glow pulse ── */
@keyframes terminal-glow-pulse {
  0%, 100% { box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.03), 0 0 18px rgba(41,151,255,.05); }
  50%       { box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.03), 0 0 55px rgba(41,151,255,.18); }
}
.hero-terminal {
  animation: terminal-glow-pulse 5s ease-in-out infinite;
  position: relative;
}

/* Scan line sweeping across terminal */
.hero-terminal::after {
  content: '';
  position: absolute;
  left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(41,151,255,.55) 40%, rgba(41,151,255,.55) 60%, transparent 100%);
  animation: scan-sweep 6s linear infinite;
  pointer-events: none;
  z-index: 3;
}
@keyframes scan-sweep {
  0%   { top: 44px; opacity: 0; }
  5%   { opacity: 1; }
  92%  { opacity: .65; }
  100% { top: 100%; opacity: 0; }
}

/* ── Severity neon pulse ── */
@keyframes crit-glow {
  0%, 100% { text-shadow: 0 0 6px rgba(255,69,58,.5); }
  50%       { text-shadow: 0 0 16px rgba(255,69,58,.95), 0 0 30px rgba(255,69,58,.3); }
}
@keyframes high-glow {
  0%, 100% { text-shadow: 0 0 6px rgba(255,159,10,.5); }
  50%       { text-shadow: 0 0 16px rgba(255,159,10,.95), 0 0 30px rgba(255,159,10,.3); }
}
@keyframes med-glow {
  0%, 100% { text-shadow: 0 0 5px rgba(255,214,10,.4); }
  50%       { text-shadow: 0 0 12px rgba(255,214,10,.85), 0 0 24px rgba(255,214,10,.2); }
}
.t-crit { animation: crit-glow 2s ease-in-out infinite; }
.t-high { animation: high-glow 2s ease-in-out infinite .7s; }
.t-med  { animation:  med-glow 2.5s ease-in-out infinite 1.3s; }

/* ── Feature card neon hover ── */
.feature-card {
  border: 1px solid transparent;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
  box-shadow: 0 0 0 1px rgba(41,151,255,.22), 0 8px 40px rgba(41,151,255,.08);
  border-color: rgba(41,151,255,.22);
}

/* ── Stat glow when counted in ── */
@keyframes stat-glow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(41,151,255,.2)); }
  50%       { filter: drop-shadow(0 0 20px rgba(41,151,255,.6)); }
}
.stat.visible .stat-num { animation: stat-glow 3s ease-in-out infinite; }

/* ── Button shimmer ── */
.btn-primary {
  background-image: linear-gradient(90deg, #0a84ff 0%, #5bbfff 33%, #2997ff 66%, #0a84ff 100%);
  background-size: 300% 100%;
  background-position: 0% 0%;
  transition: background-position .6s ease, transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background-image: linear-gradient(90deg, #0a84ff 0%, #5bbfff 33%, #2997ff 66%, #0a84ff 100%);
  background-size: 300% 100%;
  background-position: 100% 0%;
  background-color: transparent;
  box-shadow: 0 0 26px rgba(41,151,255,.5);
  transform: scale(1.03);
}

/* ── Hero title subtle glitch ── */
@keyframes hero-glitch {
  0%,  77%, 84%, 100% { filter: none; transform: none; }
  79% { filter: blur(.4px); transform: skewX(-.5deg) translateX(-2px); }
  81% { filter: blur(.3px); transform: skewX(.4deg)  translateX(2px); }
}
.hero-title { animation: hero-glitch 10s infinite; }

/* ── Eyebrow accent glow ── */
.eyebrow { text-shadow: 0 0 18px rgba(41,151,255,.45); }

/* ── Roadmap dot pulse ring ── */
@keyframes roadmap-pulse {
  0%   { box-shadow: 0 0 0 0px rgba(41,151,255,.6); }
  70%  { box-shadow: 0 0 0 7px rgba(41,151,255,.0); }
  100% { box-shadow: 0 0 0 0px rgba(41,151,255,.0); }
}
.roadmap-dot {
  background: var(--accent);
  border-color: transparent;
  animation: roadmap-pulse 2.2s ease-out infinite;
}

/* ── CTA breathing glow ── */
.cta-section { position: relative; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(41,151,255,.1) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  pointer-events: none;
  animation: cta-breathe 6s ease-in-out infinite;
}
@keyframes cta-breathe {
  0%, 100% { transform: translate(-50%,-50%) scale(1);    opacity: .8; }
  50%       { transform: translate(-50%,-50%) scale(1.3);  opacity: 1; }
}

/* ── Scroll progress bar ── */
#progress-bar {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent) 0%, #bf5af2 50%, var(--ok) 100%);
  z-index: 200;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(41,151,255,.7), 0 0 20px rgba(191,90,242,.4);
  transition: width 0.08s linear;
}

/* ── Dot-grid texture on alternate sections ── */
.section-alt {
  background-image:
    radial-gradient(rgba(41,151,255,.055) 1px, transparent 1px),
    linear-gradient(var(--bg-alt), var(--bg-alt));
  background-size: 30px 30px, auto;
  contain: content;
}

/* ── Hero badge animated glow ── */
@keyframes badge-glow {
  0%, 100% { box-shadow: none; border-color: rgba(255,255,255,.08); }
  50%       { box-shadow: 0 0 18px rgba(41,151,255,.3); border-color: rgba(41,151,255,.45); }
}
.hero-badge { animation: badge-glow 4s ease-in-out infinite; }

/* ── Feature card icon scale + glow on hover ── */
.feature-icon {
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), filter 0.35s ease;
  display: inline-block;
}
.feature-card:hover .feature-icon {
  transform: scale(1.25) rotate(-4deg);
  filter: drop-shadow(0 0 10px rgba(41,151,255,.65));
}

/* ── Deeper feature card hover glow ── */
.feature-card:hover {
  box-shadow:
    0 0 0 1px rgba(41,151,255,.3),
    0 8px 40px rgba(41,151,255,.12),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* ── Cat-card animated neon border on hover ── */
.cat-card { position: relative; overflow: hidden; }
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(41,151,255,.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.cat-card:hover::after { opacity: 1; }
.cat-card:hover {
  box-shadow: inset 0 0 0 1px rgba(41,151,255,.25), 0 4px 24px rgba(41,151,255,.08);
  border-top: none;
}

/* ── Active nav link indicator ── */
.nav-links a {
  position: relative;
  padding-bottom: 2px;
}
.nav-links a.nav-active { color: var(--text); }
.nav-links a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  border-radius: 99px;
  box-shadow: 0 0 6px var(--accent);
}

/* ── Terminal blinking cursor ── */
.terminal-cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--accent);
  vertical-align: text-bottom;
  border-radius: 1px;
  animation: cursor-blink 1.1s step-end infinite;
  box-shadow: 0 0 8px var(--accent);
  margin-left: 2px;
}
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Stagger fade-in per group ── */
.features-grid .fade-target:nth-child(1),
.cat-grid      .fade-target:nth-child(1),
.usage-grid    .fade-target:nth-child(1) { transition-delay: 0.04s; }
.features-grid .fade-target:nth-child(2),
.cat-grid      .fade-target:nth-child(2),
.usage-grid    .fade-target:nth-child(2) { transition-delay: 0.10s; }
.features-grid .fade-target:nth-child(3),
.cat-grid      .fade-target:nth-child(3),
.usage-grid    .fade-target:nth-child(3) { transition-delay: 0.16s; }
.features-grid .fade-target:nth-child(4),
.cat-grid      .fade-target:nth-child(4),
.usage-grid    .fade-target:nth-child(4) { transition-delay: 0.22s; }
.features-grid .fade-target:nth-child(5),
.cat-grid      .fade-target:nth-child(5),
.usage-grid    .fade-target:nth-child(5) { transition-delay: 0.28s; }
.features-grid .fade-target:nth-child(6),
.cat-grid      .fade-target:nth-child(6),
.usage-grid    .fade-target:nth-child(6) { transition-delay: 0.34s; }
.cat-grid .fade-target:nth-child(7)  { transition-delay: 0.40s; }
.cat-grid .fade-target:nth-child(8)  { transition-delay: 0.46s; }
.cat-grid .fade-target:nth-child(9)  { transition-delay: 0.52s; }
.cat-grid .fade-target:nth-child(10) { transition-delay: 0.58s; }
.cat-grid .fade-target:nth-child(11) { transition-delay: 0.64s; }
.cat-grid .fade-target:nth-child(12) { transition-delay: 0.70s; }
.cat-grid .fade-target:nth-child(13) { transition-delay: 0.76s; }
.cat-grid .fade-target:nth-child(14) { transition-delay: 0.82s; }

/* ── Roadmap item hover glow ── */
.roadmap-item {
  transition: color var(--transition), padding-left var(--transition);
}
.roadmap-item:hover {
  color: var(--text);
  padding-left: 8px;
}
.roadmap-item:hover .roadmap-dot {
  box-shadow: 0 0 12px var(--accent), 0 0 24px rgba(41,151,255,.4);
}

/* ──────────────────────────── SECTION DESC ── */
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin-top: -40px;
  margin-bottom: 48px;
  line-height: 1.6;
}

/* ──────────────────────────── SPEED STAT ── */
.stat--speed .stat-num--speed {
  background: linear-gradient(135deg, #2997ff 0%, #30d158 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 42px;
}

@keyframes speed-pulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(41,151,255,.3)); }
  50%       { filter: drop-shadow(0 0 22px rgba(48,209,88,.7)); }
}
.stat--speed.visible .stat-num--speed {
  animation: speed-pulse 2.5s ease-in-out infinite;
}

/* ──────────────────────────── SPEED BANNER ── */
.speed-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 48px;
  background: linear-gradient(135deg, rgba(41,151,255,0.10) 0%, rgba(48,209,88,0.08) 100%);
  border-top: 1px solid rgba(41,151,255,0.18);
  border-bottom: 1px solid rgba(41,151,255,0.18);
  position: relative;
  overflow: hidden;
}

.speed-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(41,151,255,0.06) 40%,
    rgba(48,209,88,0.06) 60%,
    transparent 100%);
  animation: banner-sweep 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes banner-sweep {
  from { transform: translateX(-30%); }
  to   { transform: translateX(30%); }
}

.speed-bolt {
  font-size: 32px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(255,214,10,0.7));
  animation: bolt-pop 1.8s ease-in-out infinite;
}

@keyframes bolt-pop {
  0%, 100% { transform: scale(1)    rotate(-5deg); }
  50%       { transform: scale(1.18) rotate(5deg); }
}

.speed-banner-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.speed-banner-headline {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.3px;
}

.speed-banner-headline strong {
  background: linear-gradient(90deg, #2997ff, #30d158);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.speed-banner-sub {
  font-size: 14px;
  color: var(--text-muted);
}

.speed-banner-cta {
  flex-shrink: 0;
  font-size: 15px;
  padding: 10px 22px;
  white-space: nowrap;
}

@media (max-width: 680px) {
  .speed-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
  }
  .speed-banner-cta { width: 100%; justify-content: center; }
  .stat--speed { display: none; }
}

/* ──────────────────────────── PERFORMANCE METRICS ── */
.perf-metrics {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 56px;
}

.perf-metrics-header {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 12px;
  padding: 12px 24px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.perf-header-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dim);
}

.perf-header-col {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  text-align: right;
}

.perf-row {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.perf-row:last-child { border-bottom: none; }
.perf-row:hover { background: rgba(255,255,255,0.02); }

.perf-row--highlight { background: rgba(191,90,242,0.04); }
.perf-row--highlight:hover { background: rgba(191,90,242,0.08); }

.perf-row--global {
  background: rgba(41,151,255,0.04);
  border-top: 1px solid var(--border);
}
.perf-row--global:hover { background: rgba(41,151,255,0.08); }
.perf-row--global .perf-row-label { font-weight: 700; color: var(--text); }

.perf-row-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.perf-bar-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.perf-bar {
  flex: 1;
  height: 8px;
  background: var(--surface-2);
  border-radius: 99px;
  overflow: hidden;
}

.perf-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 99px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.perf-bar--before .perf-bar-fill {
  background: linear-gradient(90deg, rgba(134,134,139,0.6) 0%, rgba(134,134,139,0.9) 100%);
}

.perf-bar--after .perf-bar-fill {
  background: linear-gradient(90deg, var(--accent) 0%, #5bbfff 100%);
  box-shadow: 0 0 8px rgba(41,151,255,0.5);
}

.perf-row--highlight .perf-bar--after .perf-bar-fill {
  background: linear-gradient(90deg, var(--perf) 0%, #e879f9 100%);
  box-shadow: 0 0 8px rgba(191,90,242,0.5);
}

.perf-row--global .perf-bar--after .perf-bar-fill {
  background: linear-gradient(90deg, var(--ok) 0%, #34d399 100%);
  box-shadow: 0 0 8px rgba(48,209,88,0.4);
}

.perf-val {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  min-width: 34px;
  text-align: right;
  flex-shrink: 0;
}

.perf-val--before { color: var(--text-dim); }
.perf-val--after  { color: var(--accent); }
.perf-row--highlight .perf-val--after { color: var(--perf); }
.perf-row--global .perf-val--after    { color: var(--ok); }

/* ──────────────────────────── PERF BIG NUMBERS (Ionic-style) ── */
.perf-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 56px 0 16px;
}

.perf-num-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 56px;
  text-align: center;
}

.perf-num-value {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1;
  display: block;
}

.perf-num-label {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 400;
  white-space: nowrap;
  letter-spacing: 0.1px;
}

/* muted = "avant" */
.perf-num-item--muted .perf-num-value {
  background: linear-gradient(180deg, var(--text-dim) 0%, #3a3a3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: line-through;
  text-decoration-color: rgba(134,134,139,0.4);
}

/* hero = "< 8s" */
.perf-num-item--hero .perf-num-value {
  background: linear-gradient(135deg, #2997ff 0%, #30d158 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 28px rgba(41,151,255,0.35));
}

/* gain = ×10 */
.perf-num-item--gain .perf-num-value {
  background: linear-gradient(135deg, #ffd60a 0%, #ff9f0a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 22px rgba(255,214,10,0.3));
}

/* files = 5 000 */
.perf-num-item--files .perf-num-value {
  background: linear-gradient(135deg, var(--perf) 0%, #e879f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(191,90,242,0.3));
}

/* animated on scroll */
.perf-num-item .perf-num-value {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.perf-numbers.visible .perf-num-item .perf-num-value {
  opacity: 1;
  transform: translateY(0);
}
.perf-numbers.visible .perf-num-item:nth-child(1) .perf-num-value { transition-delay: 0s; }
.perf-numbers.visible .perf-num-item:nth-child(3) .perf-num-value { transition-delay: 0.15s; }
.perf-numbers.visible .perf-num-item:nth-child(5) .perf-num-value { transition-delay: 0.25s; }
.perf-numbers.visible .perf-num-item:nth-child(7) .perf-num-value { transition-delay: 0.35s; }

.perf-num-item .perf-num-label {
  opacity: 0;
  transition: opacity 0.5s ease 0.5s;
}
.perf-numbers.visible .perf-num-item .perf-num-label { opacity: 1; }

/* arrow */
.perf-num-arrow {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--text-dim);
  padding: 0 4px;
  line-height: 1;
  margin-bottom: 24px;
  flex-shrink: 0;
}

/* vertical sep */
.perf-num-sep {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 880px) {
  .perf-num-item { padding: 0 28px; }
  .perf-num-sep  { display: none; }
}

@media (max-width: 600px) {
  .perf-numbers {
    flex-direction: column;
    gap: 40px;
    padding: 40px 0;
  }
  .perf-num-arrow { transform: rotate(90deg); margin: 0; }
  .perf-num-sep { width: 40px; height: 1px; }
  .perf-num-item { padding: 0; }
}

/* ── ⚠ Respect user's motion preference ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .fade-target { opacity: 1; transform: none; }
  .perf-bar-fill { width: var(--target) !important; }
}

/* ──────────────────────────── NPM TAB ── */
.install-sub-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 20px 0 10px;
}

.install-note--info {
  padding: 10px 14px;
  background: rgba(41, 151, 255, 0.06);
  border: 1px solid rgba(41, 151, 255, 0.18);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 13px;
}

/* ──────────────────────────── EXIT CODE WARN ── */
.exit-code.warn { color: var(--warn); }

/* ──────────────────────────── PRIVACY ── */
.priv-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.priv-guarantees {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.priv-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.5;
}

.priv-yes {
  background: rgba(48, 209, 88, 0.06);
  border: 1px solid rgba(48, 209, 88, 0.14);
  color: var(--text);
}

.priv-no {
  background: rgba(255, 69, 58, 0.05);
  border: 1px solid rgba(255, 69, 58, 0.12);
  color: var(--text-muted);
}

.priv-icon { font-size: 16px; flex-shrink: 0; }

.priv-push-box {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.priv-push-box h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.priv-push-box p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.priv-verbose-hint {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* ──────────────────────────── CONFIG ── */
.config-block {
  max-width: 640px;
}

/* ──────────────────────────── RESPONSIVE ── */
@media (max-width: 768px) {
  .priv-layout { grid-template-columns: 1fr; gap: 24px; }
}

/* ──────────────────────────── WINDOWS DOWNLOAD ROW ── */
.install-win-dl-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.install-win-dl-row .install-note {
  margin: 0;
}

.install-docs-link {
  margin-top: 24px;
  text-align: center;
}

.install-docs-anchor {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

.install-docs-anchor:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* ── Simplified install CTA block ── */
.install-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.install-platform-pills {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.install-pill {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: .5rem 1.25rem;
  font-size: .95rem;
  color: var(--fg);
}
