/* ── Tokens (warm, light — Basecamp circa 2015 feel) ── */
:root {
  --bg: #FAFAF8;
  --surface: #FFFFFF;
  --surface2: #F5F5F2;
  --surface3: #EEEEEA;
  --fg: #1A1A18;
  --fg-muted: #6B6B67;
  --fg-light: #9E9E99;
  --accent: #E07B29;
  --accent-dim: #C46924;
  --accent-bg: #FEF5ED;
  --red: #D94040;
  --green: #2A9D5C;
  --border: #E2E2DC;
  --border-strong: #CDCDC6;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-body); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo:hover { text-decoration: none; }
.nav-wordmark { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--fg); letter-spacing: -0.02em; }
.nav-tagline { font-size: 13px; color: var(--fg-muted); letter-spacing: 0.03em; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--fg-muted); text-decoration: none; transition: color 0.15s; padding: 4px 0; }
.nav-link:hover { color: var(--fg); text-decoration: none; }

/* ── Buttons ── */
.btn-primary-sm {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; background: var(--accent); color: #fff;
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  border-radius: 8px; text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  border: none; cursor: pointer;
}
.btn-primary-sm:hover { background: var(--accent-dim); transform: translateY(-1px); text-decoration: none; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; background: transparent; color: var(--fg-muted);
  font-family: var(--font-head); font-size: 13px; font-weight: 500;
  border: 1px solid var(--border); border-radius: 8px;
  text-decoration: none; cursor: pointer; transition: all 0.15s;
}
.btn-ghost:hover { background: var(--surface2); color: var(--fg); border-color: var(--border-strong); text-decoration: none; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 28px; background: var(--accent); color: #fff;
  font-family: var(--font-head); font-size: 16px; font-weight: 600;
  border-radius: 10px; text-decoration: none; transition: background 0.15s, transform 0.1s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent-dim); transform: translateY(-1px); text-decoration: none; }

.btn-primary-lg {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 16px 32px; background: var(--accent); color: #fff;
  font-family: var(--font-head); font-size: 17px; font-weight: 600;
  border-radius: 10px; text-decoration: none; transition: background 0.15s, transform 0.1s;
  border: none; cursor: pointer;
}
.btn-primary-lg:hover { background: var(--accent-dim); transform: translateY(-1px); text-decoration: none; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 28px; background: transparent; color: var(--fg);
  font-family: var(--font-head); font-size: 16px; font-weight: 600;
  border: 1.5px solid var(--border-strong); border-radius: 10px;
  text-decoration: none; transition: all 0.15s; cursor: pointer;
}
.btn-outline:hover { background: var(--surface2); border-color: var(--fg); text-decoration: none; }

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 48px 72px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}
.hero-left { }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 20px; font-family: var(--font-head);
}
.eyebrow-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-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.03em; margin-bottom: 20px; color: var(--fg);
}
.hero-sub { font-size: 18px; color: var(--fg-muted); line-height: 1.7; max-width: 440px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero-note { font-size: 13px; color: var(--fg-light); margin-top: 12px; }

.hero-image-wrap {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06);
  line-height: 0;
}
.hero-image-wrap img { width: 100%; height: auto; display: block; }

/* ── Features (replaces Overview) ── */
.features {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
  font-family: var(--font-head); margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 8px; color: var(--fg);
}
.section-sub { font-size: 17px; color: var(--fg-muted); line-height: 1.65; max-width: 540px; margin-bottom: 48px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-card { padding: 28px; background: var(--bg); border: 1px solid var(--border); border-radius: 14px; }
.feature-card-icon { margin-bottom: 16px; }
.feature-card-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--fg); letter-spacing: -0.01em; }
.feature-card-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* ── How It Works ── */
.how-it-works {
  padding: 80px 48px;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.hiw-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.15; margin-bottom: 20px; color: var(--fg);
}
.hiw-body { font-size: 17px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 16px; }
.hiw-steps { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.hiw-step { display: flex; align-items: flex-start; gap: 14px; }
.step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent-bg); color: var(--accent);
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.step-text { font-size: 15px; color: var(--fg); line-height: 1.55; }
.step-text strong { color: var(--fg); font-weight: 600; }

/* ── Comparison table ── */
.comparison-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.comp-header {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--surface3);
  border-bottom: 1px solid var(--border);
}
.comp-title {
  padding: 14px 20px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fg-light); font-family: var(--font-head);
}
.comp-title.active { color: var(--fg-muted); }
.comp-items { padding: 8px; display: flex; flex-direction: column; gap: 2px; }
.comp-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 16px; border-radius: 8px;
  font-size: 14px; line-height: 1.45;
}
.comp-item.before { background: var(--bg); color: var(--fg-light); }
.comp-item.after { color: var(--fg); }
.comp-badge { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.comp-badge.no { background: #FEF0F0; color: var(--red); }
.comp-badge.yes { background: #F0FDF4; color: var(--green); }

/* ── Pricing ── */
.pricing {
  padding: 80px 48px;
  background: var(--surface2);
  border-top: 1px solid var(--border);
}
.pricing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.pricing-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 12px; color: var(--fg);
}
.pricing-sub { font-size: 17px; color: var(--fg-muted); margin-bottom: 48px; line-height: 1.65; }
.pricing-card {
  display: inline-block;
  background: var(--surface);
  border: 1.5px solid var(--accent);
  border-radius: 18px; padding: 44px 56px;
  max-width: 440px; text-align: center;
  box-shadow: 0 4px 24px rgba(224,123,41,0.12);
}
.pricing-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: var(--accent-bg); color: var(--accent);
  border-radius: 20px; font-size: 12px; font-weight: 600;
  font-family: var(--font-head); letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.pricing-price {
  font-family: var(--font-head);
  font-size: 60px; font-weight: 800;
  color: var(--fg); letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 4px;
}
.pricing-price sup { font-size: 24px; font-weight: 600; vertical-align: top; margin-top: 12px; }
.pricing-period { font-size: 14px; color: var(--fg-muted); margin-bottom: 28px; }
.pricing-divider { height: 1px; background: var(--border); margin: 28px 0; }
.pricing-features { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--fg); }
.pricing-feature svg { flex-shrink: 0; margin-top: 2px; color: var(--green); }
.pricing-cta { width: 100%; }

/* ── Social Proof ── */
.social-proof { padding: 72px 48px; }
.social-proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 28px;
  text-align: left;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { width: 16px; height: 16px; color: var(--accent); }
.testimonial-text { font-size: 15px; color: var(--fg); line-height: 1.65; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  color: var(--fg-muted);
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--fg); }
.testimonial-role { font-size: 12px; color: var(--fg-light); }
.trust-badge-bar {
  display: inline-flex; align-items: center;
  justify-content: center; gap: 12px;
  padding: 20px 32px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.trust-badge-bar svg { color: var(--accent); flex-shrink: 0; }
.trust-badge-text { font-size: 14px; color: var(--fg-muted); font-weight: 500; }
.trust-badge-text strong { color: var(--fg); }

/* ── Closing CTA ── */
.closing {
  padding: 80px 48px 96px;
  max-width: 1200px; margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.15; margin-bottom: 20px;
  max-width: 700px; margin-left: auto; margin-right: auto;
  color: var(--fg);
}
.closing-body { font-size: 18px; color: var(--fg-muted); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--fg); text-decoration: none; }
.footer-logo:hover { text-decoration: none; color: var(--fg); }
.footer-tagline { font-size: 13px; color: var(--fg-muted); }
.footer-email { font-size: 13px; color: var(--fg-muted); text-decoration: none; }
.footer-email:hover { color: var(--accent); text-decoration: none; }

/* ── App-page components ── */
.page-container { max-width: 1100px; margin: 0 auto; padding: 40px 48px; }
.page-header { margin-bottom: 36px; }
.page-title { font-family: var(--font-head); font-size: 28px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; }
.page-subtitle { font-size: 15px; color: var(--fg-muted); }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 20px; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.card-title { font-family: var(--font-head); font-size: 16px; font-weight: 600; }

.review-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; margin-bottom: 12px; box-shadow: 0 1px 4px rgba(0,0,0,0.04); transition: border-color 0.2s; }
.review-item.escalated { border-color: rgba(217,64,64,0.2); }
.review-item.escalated.new { border-color: rgba(224,123,41,0.25); }
.review-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; }
.review-author { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.review-stars { display: flex; gap: 3px; margin-bottom: 8px; }
.star { width: 14px; height: 14px; color: var(--accent); }
.star.empty { color: var(--surface3); }
.review-text { font-size: 14px; color: var(--fg-muted); line-height: 1.6; margin: 10px 0; font-style: italic; }
.review-meta { font-size: 12px; color: var(--fg-light); display: flex; align-items: center; gap: 12px; }
.review-actions { display: flex; align-items: center; gap: 8px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }

.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; border-radius: 20px; font-size: 11px; font-weight: 600; font-family: var(--font-head); letter-spacing: 0.03em; }
.badge-escalated { background: #FEF0F0; color: var(--red); }
.badge-new { background: var(--accent-bg); color: var(--accent); }
.badge-published { background: #F0FDF4; color: var(--green); }
.badge-draft { background: var(--surface3); color: var(--fg-muted); }

.response-block { background: var(--surface2); border-radius: 8px; padding: 14px; margin-top: 10px; }
.response-label { font-size: 11px; font-weight: 600; color: var(--fg-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; font-family: var(--font-head); }
.response-text { font-size: 14px; color: var(--fg); line-height: 1.6; }
.response-actions { display: flex; gap: 8px; margin-top: 10px; }

.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--fg-muted); margin-bottom: 6px; font-family: var(--font-head); }
.form-input { width: 100%; padding: 10px 14px; background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; color: var(--fg); font-size: 14px; font-family: var(--font-body); transition: border-color 0.15s; }
.form-input:focus { outline: none; border-color: var(--accent); }
.form-error { font-size: 13px; color: var(--red); margin-top: 4px; }

.toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--border); }
.toggle-row:last-child { border-bottom: none; }
.toggle-info { display: flex; flex-direction: column; gap: 2px; }
.toggle-title { font-size: 14px; font-weight: 600; }
.toggle-desc { font-size: 12px; color: var(--fg-muted); }
.toggle-switch { position: relative; width: 42px; height: 24px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: var(--surface3); border: 1px solid var(--border-strong); border-radius: 12px; cursor: pointer; transition: background 0.2s; }
.toggle-slider::before { content: ''; position: absolute; width: 18px; height: 18px; left: 2px; top: 2px; background: var(--fg-muted); border-radius: 50%; transition: transform 0.2s, background 0.2s; }
.toggle-switch input:checked + .toggle-slider { background: var(--accent); border-color: var(--accent); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(18px); background: #fff; }

.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 32px; }
.stat-cell { background: var(--surface); padding: 16px 20px; display: flex; flex-direction: column; gap: 4px; }
.stat-cell-value { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--fg); }
.stat-cell-label { font-size: 12px; color: var(--fg-muted); }

.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 32px; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; font-size: 14px; font-weight: 500; text-decoration: none; }
.pagination a { background: var(--surface); border: 1px solid var(--border); color: var(--fg-muted); transition: all 0.15s; }
.pagination a:hover { background: var(--surface2); color: var(--fg); }
.pagination .current { background: var(--accent); color: #fff; font-weight: 700; }

.auth-container { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; background: var(--bg); }
.auth-card { width: 100%; max-width: 400px; }
.auth-title { font-family: var(--font-head); font-size: 24px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.02em; color: var(--fg); }
.auth-sub { font-size: 14px; color: var(--fg-muted); margin-bottom: 28px; }
.auth-footer { margin-top: 20px; font-size: 14px; color: var(--fg-muted); text-align: center; }
.auth-footer a { color: var(--accent); font-weight: 600; text-decoration: none; }

.empty-state { text-align: center; padding: 60px 24px; color: var(--fg-muted); }
.empty-state-icon { margin: 0 auto 16px; opacity: 0.4; }
.empty-state-title { font-family: var(--font-head); font-size: 18px; font-weight: 600; color: var(--fg); margin-bottom: 8px; }
.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }

/* ── Free Review Audit section ── */
.audit-section {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.audit-inner { max-width: 800px; margin: 0 auto; }
.audit-header { text-align: center; margin-bottom: 40px; }
.audit-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700; letter-spacing: -0.025em;
  margin-bottom: 12px; color: var(--fg);
}
.audit-sub { font-size: 17px; color: var(--fg-muted); line-height: 1.65; max-width: 580px; margin: 0 auto; }

.audit-form { display: flex; gap: 10px; }
.audit-input {
  flex: 1; padding: 14px 18px;
  background: var(--bg); border: 1.5px solid var(--border-strong);
  border-radius: 10px; color: var(--fg); font-size: 15px;
  font-family: var(--font-body); transition: border-color 0.15s;
}
.audit-input:focus { outline: none; border-color: var(--accent); }
.audit-input::placeholder { color: var(--fg-light); }
.audit-submit-btn { white-space: nowrap; }
.audit-form-error { font-size: 14px; color: var(--red); margin-top: 8px; }

/* Results card */
.audit-results {
  margin-top: 36px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.audit-results-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.audit-results-title {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--fg);
}
.audit-results-title svg { color: var(--accent); flex-shrink: 0; }
.audit-demo-badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; background: var(--surface3);
  border-radius: 20px; font-size: 11px; font-weight: 600;
  color: var(--fg-muted); font-family: var(--font-head);
}

.audit-metrics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.audit-metric {
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}
.audit-metric:last-child { border-right: none; }
.audit-metric-label { font-size: 12px; color: var(--fg-muted); margin-bottom: 6px; font-weight: 500; }
.audit-metric-value {
  font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--fg);
}
.audit-metric-value--red { color: var(--red); }
.audit-metric-value--green { color: var(--green); }
.audit-metric-compare { font-size: 12px; color: var(--fg-light); margin-top: 4px; }
.audit-metric-compare--danger { color: var(--red); font-weight: 500; }

/* Sentiment bar */
.audit-sentiment { padding: 20px 24px; border-bottom: 1px solid var(--border); }
.audit-sentiment-label { font-size: 12px; font-weight: 600; color: var(--fg-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-head); }
.audit-sentiment-bar {
  height: 10px; border-radius: 6px; display: flex; overflow: hidden;
  background: var(--surface3); margin-bottom: 10px;
}
.audit-sent-pos { background: var(--green); transition: width 0.6s ease; }
.audit-sent-neu { background: var(--border-strong); transition: width 0.6s ease; }
.audit-sent-neg { background: var(--red); transition: width 0.6s ease; }
.audit-sentiment-legend {
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; color: var(--fg-muted);
}
.audit-sent-legend-dot {
  width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 4px;
}
.audit-sent-legend-dot--pos { background: var(--green); }
.audit-sent-legend-dot--neu { background: var(--border-strong); }
.audit-sent-legend-dot--neg { background: var(--red); }

/* Insight callout */
.audit-insight {
  padding: 16px 24px;
  font-size: 14px; color: var(--fg); line-height: 1.6;
  background: var(--accent-bg);
  border-bottom: 1px solid var(--border);
}

/* Email capture */
.audit-email-wrap { padding: 24px; }
.audit-email-pitch {
  font-size: 15px; font-weight: 600; color: var(--fg);
  margin-bottom: 14px;
}
.audit-email-form { display: flex; gap: 10px; }
.audit-email-input {
  flex: 1; padding: 12px 16px;
  background: var(--bg); border: 1.5px solid var(--border-strong);
  border-radius: 8px; color: var(--fg); font-size: 15px;
  font-family: var(--font-body); transition: border-color 0.15s;
}
.audit-email-input:focus { outline: none; border-color: var(--accent); }
.audit-email-btn { white-space: nowrap; }

/* Success state */
.audit-email-success {
  padding: 20px 24px;
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; color: var(--green);
}
.audit-email-success svg { flex-shrink: 0; }
.audit-email-success-cta { margin-left: 16px; font-size: 14px; color: var(--accent); font-weight: 600; text-decoration: none; }
.audit-email-success-cta:hover { text-decoration: underline; }

/* Spinner */
.audit-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff; border-radius: 50%;
  display: inline-block; animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px 40px; gap: 40px; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .how-it-works { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .pricing { padding: 60px 24px; }
  .social-proof { padding: 60px 24px; }
  .proof-grid { grid-template-columns: 1fr; }
  .closing { padding: 60px 24px 80px; }
  .nav { padding: 16px 24px; }
  .footer { padding: 24px; flex-direction: column; gap: 12px; text-align: center; }
  .audit-section { padding: 60px 24px; }
  .audit-form { flex-direction: column; }
  .audit-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .audit-metric { border-bottom: 1px solid var(--border); }
  .audit-email-form { flex-direction: column; }
}