:root {
  --bg: #0c0e14;
  --bg-2: #11141e;
  --bg-3: #161925;
  --accent: #d4a21a;
  --accent-dim: rgba(212, 162, 26, 0.15);
  --text: #f0ece4;
  --text-muted: #8a8fa3;
  --warn: #e07040;
  --ok: #4caf7d;
  --border: rgba(255,255,255,0.07);
  --font-head: 'Manrope', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

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

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

/* Landing Nav */
.landing-nav {
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
}
.landing-nav-inner {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.landing-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.landing-nav-logo {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: contain;
  background: #0c0e14;
  padding: 2px;
}
.landing-nav-brand span {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}
.landing-nav-signin {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
}
.landing-nav-signin:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: var(--font-head);
}

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: #0c0e14;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 6px;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { opacity: 0.85; }

.btn-ghost {
  display: inline-block;
  padding: 12px 24px;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--text-muted); color: var(--text); }

.btn-primary-large {
  display: inline-block;
  padding: 16px 40px;
  background: var(--accent);
  color: #0c0e14;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary-large:hover { opacity: 0.85; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,162,26,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-family: var(--font-head);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
}
.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.4; }
}

.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-head);
}
.dot-sep { color: var(--border); }

/* Widget */
.hero-widget {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
}
.widget-dots { display: flex; gap: 6px; }
.widget-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.widget-dots span:first-child { background: #e07040; }
.widget-dots span:nth-child(2) { background: #d4a21a; }
.widget-dots span:last-child { background: #4caf7d; }
.widget-title { font-size: 12px; font-weight: 600; color: var(--text-muted); font-family: var(--font-head); margin-left: 8px; }
.widget-badge-green {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  color: var(--ok);
  background: rgba(76, 175, 125, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--font-head);
}

.widget-scores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}
.score-card { background: var(--bg-2); padding: 16px; }
.score-label { font-size: 11px; font-weight: 600; color: var(--text-muted); font-family: var(--font-head); margin-bottom: 4px; }
.score-value { font-size: 32px; font-weight: 800; color: var(--text); font-family: var(--font-head); line-height: 1; }
.score-max { font-size: 16px; color: var(--text-muted); font-weight: 400; }
.score-bar { height: 4px; background: var(--bg-3); border-radius: 2px; margin: 8px 0; overflow: hidden; }
.score-fill { height: 100%; border-radius: 2px; background: var(--accent); }
.score-sub { font-size: 11px; color: var(--text-muted); }
.score-billing .score-fill { background: var(--warn); }
.score-qa .score-fill { background: var(--ok); }

.widget-flags { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.flag {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-3);
}
.flag-warn .flag-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(224, 112, 64, 0.15);
  color: var(--warn);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.flag-ok .flag-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(76, 175, 125, 0.15);
  color: var(--ok);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.flag-title { font-size: 13px; font-weight: 600; color: var(--text); font-family: var(--font-head); }
.flag-detail { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* Audit Dimensions */
.audit-dimensions {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.audit-dimensions h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 64px;
}

.dimensions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.dimension {
  background: var(--bg-2);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.dim-number {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-top: 4px;
  flex-shrink: 0;
}
.dim-content h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.dim-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Product Mock */
.product-mock {
  padding: 120px 0;
  background: var(--bg);
}
.mock-container {
  display: grid;
  grid-template-columns: 200px 1fr;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.mock-sidebar { background: var(--bg-3); border-right: 1px solid var(--border); }
.sidebar-header {
  padding: 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
}
.sidebar-nav { padding: 12px; display: flex; flex-direction: column; gap: 4px; }
.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 13px;
  font-family: var(--font-head);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-item:hover { background: var(--bg-2); color: var(--text); }
.nav-item.active { background: var(--accent-dim); color: var(--accent); }

.mock-main { display: flex; flex-direction: column; }
.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
}
.mock-breadcrumb { font-size: 12px; color: var(--text-muted); font-family: var(--font-head); }
.mock-meta { display: flex; gap: 8px; }
.meta-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--bg-2);
  color: var(--text-muted);
  font-family: var(--font-head);
}

.mock-analysis { padding: 24px; flex: 1; }
.analysis-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.analysis-header h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.analysis-time { font-size: 12px; color: var(--text-muted); }

.analysis-narrative {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}
.narrative-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: var(--font-head);
}
.narrative-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-style: italic; }

.analysis-scores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.big-score { background: var(--bg-3); border: 1px solid var(--border); border-radius: 8px; padding: 16px; }
.big-score-num { font-size: 40px; font-weight: 800; color: var(--text); font-family: var(--font-head); line-height: 1; }
.big-score-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-head);
  margin: 4px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.big-score-bar { height: 4px; background: var(--bg); border-radius: 2px; overflow: hidden; }
.big-score-bar .fill { height: 100%; border-radius: 2px; }
.billing .big-score-bar .fill { background: var(--warn); }
.qa .big-score-bar .fill { background: var(--ok); }

.analysis-flags { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.aflag {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-3);
}
.aflag.warn { border-color: rgba(224, 112, 64, 0.25); }
.aflag.ok { border-color: rgba(76, 175, 125, 0.2); }
.aflag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
  background: var(--warn);
}
.aflag.ok .aflag-dot { background: var(--ok); }
.aflag-body strong {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}
.aflag-body p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

.analysis-actions { display: flex; gap: 12px; }
.action-btn {
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-family: var(--font-head);
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
  border: 1px solid var(--border);
  background: var(--bg-3);
  color: var(--text-muted);
}
.action-btn:hover { color: var(--text); }
.action-btn.primary { background: var(--accent); color: #0c0e14; border-color: var(--accent); }
.action-btn.primary:hover { opacity: 0.85; }

/* Compliance */
.compliance {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.compliance-text h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}
.compliance-lead { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-bottom: 40px; }
.compliance-pillars { display: flex; flex-direction: column; gap: 24px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar h4 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.pillar p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.compliance-visual { display: flex; justify-content: center; }
.shield-wrap {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 360px;
}
.shield-badge {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  display: inline-block;
}
.shield-lines { display: flex; flex-direction: column; gap: 12px; }
.shield-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  font-family: var(--font-head);
}
.shield-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(76, 175, 125, 0.15);
  color: var(--ok);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* How it works */
.how-it-works {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.how-it-works h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 64px;
}
.steps {
  display: flex;
  gap: 0;
  align-items: stretch;
}
.step {
  flex: 1;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-2);
  position: relative;
}
.step-connector {
  width: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.step-connector::after {
  content: '';
  width: 100%;
  height: 1px;
  background: var(--border);
}
.step-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.step-content h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.step-content p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.step-visual { margin-top: 24px; }

.step-box {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}
.step-box-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: var(--font-head);
}
.step-box-text { font-size: 12px; color: var(--text-muted); font-style: italic; line-height: 1.6; }

.step-box-analysis {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
}
.analysis-icon { animation: spin 2s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.analysis-label { font-size: 12px; color: var(--text-muted); font-family: var(--font-head); text-align: center; }

.step-box-scores { display: flex; gap: 8px; }
.mini-score {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px;
  text-align: center;
}
.mini-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}
.mini-val { font-size: 28px; font-weight: 800; font-family: var(--font-head); }
.mini-val.warn { color: var(--warn); }
.mini-val.ok { color: var(--ok); }

/* Principles */
.principles {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.principle-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.principle-quote p {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 32px;
}
.principle-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 16px;
}
.principle-attr span { font-size: 13px; color: var(--text-muted); font-family: var(--font-head); }

/* Closing */
.closing {
  padding: 140px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.closing-note { font-size: 13px; color: var(--text-muted); margin-top: 16px; font-family: var(--font-head); }

/* Footer */
.site-footer {
  padding: 80px 0 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  margin-bottom: 64px;
}
.footer-logo { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--accent); margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); max-width: 320px; line-height: 1.7; }
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-col a { font-size: 14px; color: var(--text-muted); text-decoration: none; font-family: var(--font-head); transition: color 0.15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 32px; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

/* Logo / Brand */
.hero-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  background: #0c0e14;
  padding: 2px;
}
.hero-logo-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}

/* Pricing section */
.pricing {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.pricing h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}
.pricing-sub {
  font-size: 17px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 64px;
  line-height: 1.7;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pricing-card.featured {
  border-color: var(--accent);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0c0e14;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-head);
  padding: 4px 14px;
  border-radius: 10px;
}
.pricing-tier {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-family: var(--font-head);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-features li::before {
  content: '✓';
  color: var(--ok);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.pricing-btn.primary {
  background: var(--accent);
  color: #0c0e14;
}
.pricing-btn.ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.pricing-btn:hover { opacity: 0.85; }
.pricing-faq {
  max-width: 640px;
  margin: 64px auto 0;
  text-align: center;
}
.pricing-faq h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}
.pricing-faq-item {
  text-align: left;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.pricing-faq-item:last-child { border-bottom: 1px solid var(--border); }
.pricing-faq-q {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-head);
  margin-bottom: 4px;
}
.pricing-faq-a {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: contain;
  background: #0c0e14;
  padding: 2px;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .dimensions-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }
  .mock-container { grid-template-columns: 1fr; }
  .mock-sidebar { display: none; }
  .steps { flex-direction: column; }
  .step-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card.featured { border-color: var(--accent); }
  .waitlist-row { flex-direction: column; gap: 10px; }
}

/* Waitlist form */
.waitlist-wrap {
  max-width: 560px;
  margin: 80px auto 0;
  text-align: center;
}
.waitlist-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.waitlist-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.waitlist-row {
  display: flex;
  gap: 10px;
  width: 100%;
}
.waitlist-row input {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}
.waitlist-row input::placeholder { color: var(--text-muted); }
.waitlist-row input:focus { border-color: var(--accent); }
.waitlist-btn {
  background: var(--accent);
  color: #0c0e14;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s;
  min-width: 180px;
}
.waitlist-btn:hover { opacity: 0.85; }
.waitlist-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.waitlist-msg {
  font-size: 13px;
  min-height: 18px;
  font-family: var(--font-head);
}
.waitlist-error { color: var(--warn); }
.waitlist-success {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--ok);
  padding: 16px;
}