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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-nav {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
}
.skip-nav:focus-visible {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
}

:root {
  --bg: #070b0f;
  --bg2: #0d1218;
  --bg3: #111820;
  --accent: #00e5a0;
  --accent2: #00b37d;
  --accent-dim: rgba(0,229,160,0.12);
  --accent-dim2: rgba(0,229,160,0.06);
  --text: #e8edf2;
  --text2: #7f9aad;
  --text3: #4a6478;
  --border: rgba(0,229,160,0.15);
  --border2: rgba(255,255,255,0.07);
  --red: #ff4d6a;
  --amber: #f5a623;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* GRID BACKGROUND */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,160,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,160,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; position: relative; }

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,11,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg { width: 18px; height: 18px; }

.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  letter-spacing: -0.3px;
}

.logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--accent);
  color: #070b0f !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.88; }

/* HERO */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--text);
}

h1 .accent { color: var(--accent); }
h1 .dim { color: var(--text3); }

.hero-sub {
  font-size: 18px;
  color: var(--text2);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 40px;
}

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

.btn-primary {
  background: var(--accent);
  color: #070b0f;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  border: 1px solid var(--border2);
  color: var(--text2);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

/* STATS BAR */
.stats-bar {
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 32px 0;
  margin-bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
}

.stat {
  text-align: center;
  padding: 12px 24px;
  border-right: 1px solid var(--border2);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text2);
}

/* SECTION */
section { padding: 96px 0; position: relative; }

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}

.section-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* PROBLEM SECTION */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.problem-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 24px;
}

.problem-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,77,106,0.12);
  border: 1px solid rgba(255,77,106,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 16px;
}

.problem-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.problem-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}

.features-section { background: var(--bg2); }

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border2);
  border-radius: 16px;
  overflow: hidden;
}

.feature-cell {
  background: var(--bg);
  padding: 40px;
  position: relative;
}

.feature-cell.accent-border {
  border-top: 2px solid var(--accent);
}

.feature-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text3);
  margin-bottom: 20px;
}

.feature-cell h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-cell p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  background: var(--accent-dim2);
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 100px;
}

/* COMPLIANCE */
.compliance-section { background: var(--bg2); }

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.compliance-card {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.2s;
}

.compliance-card:hover { border-color: var(--border); }

.compliance-card .icon { font-size: 24px; margin-bottom: 10px; }

.compliance-card .name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.compliance-card .desc {
  font-size: 11px;
  color: var(--text3);
}

.compliance-note { text-align: center; color: var(--text2); font-size: 14px; margin-top: 24px; }

/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 16px);
  right: calc(16.67% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent), var(--accent));
  opacity: 0.2;
}

.step {
  padding: 0 32px 0 0;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--accent);
  background: var(--bg);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.step p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

/* SCORE WIDGET */
.score-demo {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 40px;
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.score-ring {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
}

.score-ring svg { width: 180px; height: 180px; transform: rotate(-90deg); }

.score-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-num {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}

.score-label { font-size: 12px; color: var(--text3); }

.score-bars { display: flex; flex-direction: column; gap: 14px; }

.score-bar-row { }
.score-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text2);
  margin-bottom: 5px;
}

.score-bar-track {
  height: 6px;
  background: var(--bg3);
  border-radius: 100px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: var(--accent);
  transition: width 1s ease;
}

.score-bar-fill.warn { background: var(--amber); }
.score-bar-fill.err { background: var(--red); }

/* Width utility classes for bar fills */
.w-14 { width: 14%; }
.w-62 { width: 62%; }
.w-76 { width: 76%; }
.w-84 { width: 84%; }
.w-85 { width: 85%; }
.w-87 { width: 87%; }
.w-88 { width: 88%; }
.w-91 { width: 91%; }
.w-94 { width: 94%; }

/* PRICING */

.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 36px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  background: var(--bg2);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #070b0f;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price sup {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  vertical-align: top;
  margin-top: 8px;
}

.plan-price .mo { font-size: 16px; font-weight: 400; color: var(--text2); }

.plan-desc {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border2);
}

.plan-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }

.plan-features li {
  font-size: 14px;
  color: var(--text2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.plan-features li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-features li.dim::before { content: '\2013'; color: var(--text3); }
.plan-features li.dim { color: var(--text3); }

/* MARKETS */
.markets-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.market-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 14px;
  color: var(--text2);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.market-pill:hover { border-color: var(--border); color: var(--text); }

.market-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.market-dot.soon { background: var(--text3); }

.market-pill--disabled { cursor: default; opacity: 0.6; }

.market-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text3);
  background: var(--bg3);
  padding: 2px 7px;
  border-radius: 4px;
}

/* CTA */
.cta-section {
  padding: 96px 0;
  text-align: center;
}

.cta-section .section-label { margin-bottom: 16px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.cta-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,229,160,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 { margin-bottom: 16px; }

.cta-box p {
  font-size: 17px;
  color: var(--text2);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border2);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text3);
}

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

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

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

.footer-subcopy { font-size: 11px; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }

/* ============================================
   DASHBOARD MOCKUP (hero.html)
   ============================================ */
.dashboard {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 14px;
  overflow: hidden;
  max-width: 780px;
  font-family: 'Inter', sans-serif;
}

.dashboard-chrome {
  background: var(--bg3);
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-dot--red {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
}

.dashboard-dot--yellow {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #febc2e;
}

.dashboard-dot--green {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #28c840;
}

.dashboard-url {
  flex: 1;
  margin: 0 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 5px;
  padding: 4px 12px;
  font-size: 11px;
  color: #9ab3c4;
  font-family: 'JetBrains Mono', monospace;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 420px;
}

.dashboard-sidebar {
  background: #0a0f15;
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dashboard-sidebar-label {
  font-size: 10px;
  color: var(--text3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 8px;
  margin-bottom: 8px;
  font-family: 'JetBrains Mono', monospace;
}

.dashboard-sidebar-item {
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 12px;
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-sidebar-item--active {
  background: rgba(0,229,160,0.1);
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 12px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-sidebar-version {
  margin-top: auto;
  padding: 10px 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.dashboard-sidebar-version-text {
  font-size: 10px;
  color: var(--text3);
}

.dashboard-main {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.dashboard-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 12px;
}

.dashboard-stat--accent {
  background: var(--accent-dim2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
}

.dashboard-stat--warn {
  background: rgba(245,166,35,0.06);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 8px;
  padding: 12px;
}

.dashboard-stat-label {
  font-size: 10px;
  color: #9ab3c4;
  margin-bottom: 4px;
  font-family: 'JetBrains Mono', monospace;
}

.dashboard-stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1px;
}

.dashboard-stat-value--accent { color: var(--accent); }
.dashboard-stat-value--default { color: var(--text); }
.dashboard-stat-value--warn { color: var(--amber); }

.dashboard-stat-value--muted {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: -0.5px;
  margin-top: 4px;
}

.dashboard-table {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
}

.dashboard-table-header {
  display: grid;
  grid-template-columns: 1fr 100px 70px 80px;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 10px;
  color: var(--text3);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.5px;
}

.dashboard-table-row {
  display: grid;
  grid-template-columns: 1fr 100px 70px 80px;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  align-items: center;
}

.dashboard-table-row:last-child {
  border-bottom: none;
}

.dashboard-host {
  font-size: 12px;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
}

.dashboard-os {
  font-size: 11px;
  color: var(--text2);
}

.dashboard-score-bar {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dashboard-score-track {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}

.dashboard-score-track-fill {
  height: 100%;
  border-radius: 2px;
}

.dashboard-score-track-fill--pass { background: var(--accent); }
.dashboard-score-track-fill--warn { background: var(--amber); }
.dashboard-score-track-fill--fail { background: var(--red); }

.dashboard-score-value {
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
}

.dashboard-score-value--pass { color: var(--accent); }
.dashboard-score-value--warn { color: var(--amber); }
.dashboard-score-value--fail { color: var(--red); }

.dashboard-status {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
}

.dashboard-status--pass {
  background: rgba(0,229,160,0.1);
  color: var(--accent);
}

.dashboard-status--warn {
  background: rgba(245,166,35,0.12);
  color: var(--amber);
}

.dashboard-status--fail {
  background: rgba(255,77,106,0.12);
  color: var(--red);
}

.dashboard-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255,77,106,0.06);
  border: 1px solid rgba(255,77,106,0.15);
  border-radius: 8px;
}

.dashboard-alert-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-alert-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.dashboard-alert-text {
  font-size: 12px;
  color: var(--text2);
}

.dashboard-alert-highlight {
  color: var(--red);
  font-weight: 500;
}

.dashboard-alert-btn {
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 5px;
  white-space: nowrap;
  cursor: pointer;
}

/* ============================================
   DISTROS (distros.html)
   ============================================ */
.distro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.distro-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 28px;
}

.distro-card--primary {
  border-color: var(--border);
}

.distro-tier-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.distro-tier-badge {
  border: 1px solid var(--border2);
  border-radius: 6px;
  padding: 4px 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.distro-tier-badge--primary {
  background: var(--accent-dim);
  border-color: var(--border);
  color: var(--accent);
}

.distro-tier-badge--secondary {
  background: rgba(255,255,255,0.05);
  color: var(--text2);
}

.distro-tier-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.distro-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.distro-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.distro-name {
  color: var(--text);
}

.distro-tags {
  display: flex;
  gap: 6px;
}

.tag--dim { opacity: 0.5; }
.tag--dim2 { opacity: 0.6; }
.tag--dim3 { opacity: 0.7; }

.distro-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border2);
  font-size: 12px;
  color: var(--text3);
}

.distro-powered-by {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.distro-powered-by-label {
  font-size: 13px;
  color: var(--text3);
}

/* ============================================
   PRICING (pricing.html)
   ============================================ */
.pricing-section { background: var(--bg2); }

.pricing-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 1200px;
}

.pricing-cloud-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.pricing-cloud-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0,229,160,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.pricing-cloud-name {
  margin-bottom: 0;
}

.pricing-cloud-type {
  font-size: 11px;
  color: var(--text3);
  font-family: 'JetBrains Mono', monospace;
}

.pricing-cloud-type--spaced {
  font-size: 11px;
  color: var(--text3);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 16px;
}

.pricing-price-size {
  font-size: 32px;
  letter-spacing: -1px;
}

.pricing-price-detail {
  font-size: 12px;
  color: var(--text3);
  margin-bottom: 16px;
  font-family: 'JetBrains Mono', monospace;
}

.pricing-btn-full {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.pricing-btn-full--small {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 13px;
}

.pricing-coming-soon {
  background: var(--bg);
  border: 1px dashed var(--border2);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-coming-soon-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pricing-coming-soon-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-coming-soon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.5;
}

.pricing-coming-soon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text3);
  flex-shrink: 0;
}

.pricing-coming-soon-name {
  font-size: 14px;
  color: var(--text2);
}

.pricing-coming-soon-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text3);
  margin-left: auto;
  background: var(--bg2);
  padding: 2px 8px;
  border-radius: 4px;
}

.pricing-coming-soon-cta {
  margin-top: 32px;
}

.pricing-coming-soon-cta-text {
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 16px;
}

.pricing-billing-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--accent-dim2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.pricing-billing-note-text {
  font-size: 13px;
  color: var(--text2);
}

.pricing-note { font-size: 12px; color: var(--text2); margin-top: 8px; }

/* ============================================
   HOW IT WORKS - SCORE WIDGET (how-it-works.html)
   ============================================ */
.score-demo-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 18px;
}

.score-demo-desc {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 24px;
}

.score-demo-right {
  text-align: center;
}

.score-demo-label {
  font-size: 12px;
  color: var(--text3);
  margin-bottom: 8px;
  font-family: 'JetBrains Mono', monospace;
}

.score-demo-before {
  font-size: 12px;
  color: var(--text3);
  margin-top: 16px;
}

.color-accent { color: var(--accent); }
.color-amber { color: var(--amber); }
.color-red { color: var(--red); }

/* AI CAPABILITIES */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ai-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 32px;
}

.ai-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.ai-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.ai-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* MOBILE NAV */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  transition: transform 0.2s, opacity 0.2s;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step { padding: 0 0 32px; }
  .score-demo { grid-template-columns: 1fr; }
  .pricing-layout { grid-template-columns: 1fr; }
  .score-ring { margin-bottom: 24px; }
  .ai-grid { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(7,11,15,0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border2);
  }

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

  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 0 40px; }
  section { padding: 64px 0; }
  .stat { padding: 12px 16px; }
}
