/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* LinkedIn-blue design system — clean, professional, minimal */
  --bg: #ffffff;
  --bg-alt: #f7f9f9;
  --fg: #1a1a1a;
  --fg-muted: #666666;
  --accent: #0077B5;        /* LinkedIn blue */
  --accent-hover: #006097;
  --accent-soft: rgba(0, 119, 181, 0.08);
  --border: #e0e0e0;
  --border-strong: #cccccc;
  --card-bg: #ffffff;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg);
}

em { font-style: italic; }

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

/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 56px;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-mark {
  font-size: 18px;
  color: var(--accent);
}

.brand-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
}

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

/* === HERO (clean white) === */
.hero {
  padding: 80px 64px 64px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.badge {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid var(--border);
}

.badge-sep { color: var(--border); font-size: 14px; }

.hero-headline {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 20px;
}

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

/* === INPUT BLOCK (clean form card) === */
.hero-input-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 40px;
}

/* === GUARANTEE BLOCK === */
.guarantee-block {
  border: 1px solid var(--accent); /* LinkedIn blue #0077B5 */
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-top: 14px;
  font-family: 'Inter', system-ui, sans-serif;
}

.guarantee-line {
  color: var(--fg);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.guarantee-line-2 {
  font-weight: 400;
  color: var(--fg-muted);
  margin-top: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .guarantee-block { animation: none; }
}

.input-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
  display: block;
}

.url-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: var(--fg);
  background: var(--bg);
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.url-input:focus { outline: none; border-color: var(--accent); }
.url-input::placeholder { color: #aaa; }

.url-error {
  display: none;
  font-size: 13px;
  color: #c00;
  margin-top: 6px;
}

.fetch-status {
  display: none;
  font-size: 13px;
  color: var(--accent);
  margin-top: 6px;
  font-weight: 500;
}

.btn-primary {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  margin-top: 12px;
}
.btn-primary:hover { background: var(--accent-hover); text-decoration: none; color: #fff; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.privacy-note {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 12px;
}

/* === NAME SEARCH TOGGLE === */
.name-search-toggle {
  margin-top: 14px;
  text-align: center;
}

.expand-name-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 4px 8px;
  transition: color 0.15s;
}

.expand-name-btn:hover { color: var(--accent); }

.beta-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 2px;
  padding: 1px 5px;
  vertical-align: middle;
  margin-left: 4px;
  text-transform: lowercase;
}

/* === NAME SEARCH NOTE === */
.name-search-note {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}

/* === HERO STATS === */
.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 48px;
}

.stat:first-child { padding-left: 0; }

.stat-number {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 48px;
}

/* === SECTIONS === */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === HOW IT WORKS (clean horizontal steps) === */
.how-it-works {
  padding: 64px 64px;
  background: var(--bg-alt);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.step { padding: 0; }

.step-num {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}

.step-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* Scoring breakdown — simple table */
.scoring-breakdown {
  max-width: 560px;
  margin: 48px auto 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.breakdown-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.scoring-bars { display: flex; flex-direction: column; gap: 10px; }

.bar-row {
  display: grid;
  grid-template-columns: 160px 1fr 40px;
  align-items: center;
  gap: 12px;
}

.bar-name { font-size: 13px; color: var(--fg); font-weight: 500; }

.bar-track {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

.bar-wt { font-size: 11px; color: var(--fg-muted); text-align: right; }

.breakdown-note {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 16px;
}

/* === SAMPLE REPORT (clean cards) === */
.sample-report { padding: 64px 64px; background: var(--bg); }

.report-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.report-header {
  display: grid;
  grid-template-columns: 160px 1fr;
  background: var(--accent);
  color: #fff;
  padding: 24px 28px;
  gap: 28px;
}

.report-score-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.report-score-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}

.report-score-label { font-size: 16px; opacity: 0.7; }

.report-goal-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.15);
  padding: 3px 8px;
  border-radius: 2px;
  margin-top: 8px;
  width: fit-content;
}

.report-breakdown {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.8;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.breakdown-item:last-child { border-bottom: none; }
.bi-val { font-weight: 600; opacity: 1; }

/* Fixes — simple border cards */
.report-fixes { padding: 0 28px 28px; }

.fix {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 12px;
}

.fix-high { border-left: 3px solid #c0392b; }
.fix-medium { border-left: 3px solid #b7791f; }
.fix-low { border-left: 3px solid #276749; }

.fix-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.fix-priority {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 2px;
}

.fix-priority.high { background: #c0392b; color: #fff; }
.fix-priority.medium { background: #b7791f; color: #fff; }
.fix-priority.low { background: #276749; color: #fff; }

.fix-points { font-size: 12px; color: var(--fg-muted); }

.fix-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--fg); }

.fix-why { font-size: 14px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 12px; }

.fix-example { border-top: 1px solid var(--border); padding-top: 12px; }

.ex-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fg-muted); margin-bottom: 6px; }

.ex-before, .ex-after { margin-bottom: 6px; }

.ex-tag { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fg-muted); margin-bottom: 4px; }

.ex-before p, .ex-after p { font-size: 13px; line-height: 1.6; color: var(--fg); font-style: italic; }
.ex-after p { color: var(--accent); font-weight: 500; }

/* === PRICING (single fee, clean card) === */
.pricing-single { padding: 64px 64px; background: var(--bg-alt); }

.pricing-unified-card {
  display: flex;
  align-items: stretch;
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pricing-unified-left {
  background: var(--accent);
  color: #fff;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  text-align: center;
}

.unified-price-tag {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.unified-price-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
}

.pricing-unified-right {
  padding: 36px 40px;
  background: var(--card-bg);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.unified-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.unified-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-unified-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.15s;
  align-self: flex-start;
}

.btn-unified-cta:hover {
  background: var(--accent-hover);
  text-decoration: none;
  color: #fff;
}

/* === SOCIAL PROOF === */
.social-proof { padding: 64px 64px; background: var(--bg); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto 32px;
}

.proof-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.proof-quote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: 12px;
}

.proof-meta { display: flex; flex-direction: column; gap: 2px; }

.proof-name { font-size: 13px; font-weight: 600; color: var(--fg); }

.proof-role { font-size: 12px; color: var(--fg-muted); }

.not-affiliated {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  color: var(--fg-muted);
}

/* === CLOSING === */
.closing {
  padding: 64px 64px;
  background: var(--bg-alt);
  color: var(--fg);
  text-align: center;
  border-top: 1px solid var(--border);
}

.closing-inner { max-width: 560px; margin: 0 auto; }

.closing-headline {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.closing-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btn-cta-primary {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.15s;
}
.btn-cta-primary:hover { background: var(--accent-hover); text-decoration: none; color: #fff; }

.btn-cta-secondary {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, color 0.15s;
}
.btn-cta-secondary:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* === FOOTER === */
.site-footer {
  background: var(--bg);
  color: var(--fg-muted);
  padding: 40px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-brand .brand-name { font-weight: 700; color: var(--fg); font-size: 14px; }
.footer-brand .brand-mark { color: var(--accent); font-size: 16px; }

.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--fg-muted); font-size: 14px; }
.footer-links a:hover { color: var(--accent); text-decoration: none; }

.footer-disclaimer { font-size: 12px; max-width: 480px; line-height: 1.6; }
.footer-copy { font-size: 12px; }

/* === FORM HELPERS === */
.input-label--spaced { margin-top: 20px; }

.submit-error {
  display: none;
  font-size: 13px;
  color: var(--fix-high);
  margin-top: 8px;
}

/* === SCORE RESULTS PAGE === */
.report-page { min-height: 100vh; }

/* Score hero styles (dark bg-deep, conic-gradient orb, goal+percentile badges):
   now defined in Phase 3 section below — search for ".score-hero {" */

.retake-row { display: flex; justify-content: flex-end; margin-bottom: 40px; }
.btn-retake {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  background: var(--card-bg);
  padding: 8px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
}
.btn-retake:hover { border-color: var(--accent); color: var(--accent); }

.fixes-section { padding: 0 64px 80px; max-width: 900px; margin: 0 auto; }
.fixes-header { margin-bottom: 32px; }
.fixes-title { font-size: 28px; font-weight: 700; margin-bottom: 8px; font-family: 'Fraunces', Georgia, serif; }
.fixes-sub { font-size: 15px; color: var(--fg-muted); }
.fix { border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; transition: box-shadow 0.15s; }
.fix:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.fix-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.fix-meta { display: flex; gap: 8px; align-items: center; }
.fix-priority { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 3px 8px; border-radius: 100px; }
.fix-pts { font-size: 12px; color: var(--fg-muted); }
.fix-area { font-size: 12px; text-transform: capitalize; color: var(--fg-muted); background: var(--bg); border: 1px solid var(--border); padding: 3px 8px; border-radius: 100px; }
.fix-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; font-family: 'Fraunces', Georgia, serif; color: var(--fg); }
.fix-problem { font-size: 14px; color: var(--fg-muted); line-height: 1.65; margin-bottom: 12px; }
.fix-why { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 20px; padding: 10px 14px; background: var(--accent-warm-dim); border-radius: var(--radius); }
.fix-example { border-top: 1px solid var(--border); padding-top: 16px; }
.ex-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fg-muted); margin-bottom: 8px; }
.ex-before, .ex-after { margin-bottom: 10px; }
.ex-tag { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fg-muted); margin-bottom: 4px; }
.ex-before p, .ex-after p { font-size: 14px; line-height: 1.65; color: var(--fg); font-style: italic; }
.ex-after p { color: var(--accent); font-weight: 500; }

.upgrade-banner {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}
.upgrade-icon { font-size: 32px; flex-shrink: 0; }
.upgrade-text { flex: 1; }
.upgrade-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.upgrade-sub { font-size: 14px; opacity: 0.75; }
.btn-upgrade {
  background: var(--accent-warm);
  color: var(--accent);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  flex-shrink: 0;
}

.loading-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(248,244,239,0.9);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.loading-overlay.visible { display: flex; }
.loading-spinner {
  width: 48px; height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-msg { font-size: 16px; color: var(--fg-muted); font-family: 'DM Sans', sans-serif; }

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

/* ============================================================
   PHASE 2 — CONTENT SECTIONS (LinkedIn-clean)
   ============================================================ */

/* === PROCESS PIPELINE (How It Works) === */
.process-section {
  padding: 64px 64px;
  background: var(--bg-alt);
}

.process-header {
  text-align: center;
  margin-bottom: 40px;
}

.process-pipeline {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.process-card {
  flex: 1;
  max-width: 200px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-connector {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--border);
}

.process-card-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.process-card-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.25;
  margin-bottom: 4px;
}

.process-card-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.process-module-tag {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-top: auto;
}

.process-card.highlight {
  border-color: var(--accent);
}

/* === SAMPLE REPORT SECTION (clean grid) === */
.sample-report-new {
  padding: 64px 64px;
  background: var(--bg);
}

.report-section-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--fg);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.report-section-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  color: var(--fg-muted);
  text-align: center;
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* Full demo report layout */
.report-demo {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

/* Left column: score + meta */
.report-orb-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
}

.report-orb-col-header {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  width: 100%;
  text-align: center;
}

.score-orb {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0deg, var(--accent) calc(74 / 100 * 360deg), var(--border) calc(74 / 100 * 360deg));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-orb::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
}

.score-orb-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.score-orb-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.score-orb-slash {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-muted);
  opacity: 0.5;
}

.score-orb-denom {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  color: var(--fg-muted);
  opacity: 0.6;
}

.goal-tag {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 2px;
  width: fit-content;
}

.percentile-badge {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  text-align: center;
}

.report-unlock-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.report-unlock-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

.report-unlock-bar { display: flex; gap: 4px; }

.report-unlock-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--accent);
  border: 1px solid var(--accent);
}

.report-unlock-dot.locked {
  background: var(--border);
  border-color: var(--border);
}

.report-unlock-cta {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s;
}
.report-unlock-cta:hover { color: var(--accent-hover); text-decoration: none; }

/* Right column: metrics + fixes */
.report-metrics-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.report-metrics-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.report-metrics-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

.report-see-sample {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.report-see-sample:hover { color: var(--accent-hover); text-decoration: none; }

/* Scoring bars */
.report-bars-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.report-bar-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.report-bar-row {
  display: grid;
  grid-template-columns: 140px 1fr 40px;
  align-items: center;
  gap: 12px;
}

.report-bar-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  color: var(--fg);
  font-weight: 500;
}

.report-bar-track {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.report-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

.report-bar-val {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: var(--fg-muted);
  text-align: right;
}

.top-fixes-header {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
}

/* === FIX CARDS (clean, simple) === */
.fix-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  overflow: hidden;
  display: flex;
  transition: box-shadow 0.15s;
}
.fix-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.fix-card-rail { width: 3px; flex-shrink: 0; }
.fix-card.high-impact .fix-card-rail { background: var(--accent); }
.fix-card.medium-impact .fix-card-rail { background: #b7791f; }
.fix-card.low-impact .fix-card-rail { background: #276749; }

.fix-card-body { flex: 1; padding: 16px 16px 16px 14px; }

.fix-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.fix-impact-tag {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 2px;
}
.fix-card.high-impact .fix-impact-tag { background: var(--accent-soft); color: var(--accent); }
.fix-card.medium-impact .fix-impact-tag { background: #fef9ec; color: #b7791f; }
.fix-card.low-impact .fix-impact-tag { background: #f0fff4; color: #276749; }

.fix-pts-tag {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 2px;
}

.fix-area-tag {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 2px;
}

.copy-ready-badge {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 2px;
  background: var(--accent-soft);
  color: var(--accent);
}

.fix-card-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 8px;
}

.fix-signal {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 6px;
}
.fix-signal strong { color: var(--fg); font-weight: 600; }

.fix-why-matters {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  padding: 8px 12px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  line-height: 1.5;
}

.fix-before-after {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bao-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 6px;
}

.bao-before p, .bao-after p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.55;
  font-style: italic;
}
.bao-before p { color: var(--fg-muted); }
.bao-after p { color: var(--accent); font-weight: 500; }

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

/* === DEMO PAYWALL === */
.report-demo-paywall {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.paywall-text { flex: 1; }

.paywall-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}

.paywall-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.btn-unlock-ghost {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(0, 119, 181, 0.3);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}
.btn-unlock-ghost:hover { background: var(--accent); color: #fff; text-decoration: none; }

/* === SHOWCASE: BEFORE/AFTER === */
.showcase-section { padding: 64px 64px; background: var(--bg-alt); }

.showcase-inner { max-width: 800px; margin: 0 auto; }

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.showcase-card {
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--border);
}

.showcase-before { background: var(--bg); }
.showcase-after { background: var(--card-bg); border-color: var(--accent); }

.showcase-card-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.showcase-after .showcase-card-label { color: var(--accent); }

.showcase-copy { display: flex; flex-direction: column; gap: 10px; }

.showcase-field-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

.showcase-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  font-style: italic;
  color: var(--fg);
}
.showcase-before .showcase-text { color: var(--fg-muted); }

.showcase-card-footer {
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.showcase-issue-tag {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg);
  padding: 3px 8px;
  border-radius: 2px;
}

.showcase-proof-tag {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 8px;
  border-radius: 2px;
}

.showcase-cta { text-align: center; }

/* === SCORE RESULTS PAGE (clean white) === */
.score-hero {
  background: var(--bg);
  padding: 48px 64px 40px;
  border-bottom: 1px solid var(--border);
  min-height: 200px;
}

.score-eyebrow {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.score-eyebrow a { color: var(--fg-muted); text-decoration: none; }
.score-eyebrow a:hover { color: var(--accent); text-decoration: none; }

.score-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}

.score-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0%, var(--accent) calc(var(--score-pct, 74) * 1%), var(--border) calc(var(--score-pct, 74) * 1%));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: var(--fg);
}

.score-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: var(--fg-muted);
}

.goal-badge {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 2px;
  margin-top: 6px;
  width: fit-content;
}

.score-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}

.sb-row { display: flex; align-items: center; gap: 12px; }
.sb-name { font-family: 'Inter', system-ui, sans-serif; font-size: 13px; color: var(--fg-muted); min-width: 80px; }
.sb-bar { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.sb-fill { height: 100%; background: var(--accent); border-radius: 2px; }
.sb-val { font-family: 'Inter', system-ui, sans-serif; font-size: 12px; color: var(--fg-muted); min-width: 28px; text-align: right; }

.retake-row { display: flex; justify-content: flex-end; margin-top: 16px; }
.btn-retake {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.btn-retake:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

.fixes-section { padding: 40px 64px 80px; max-width: 800px; margin: 0 auto; }
.fixes-header { margin-bottom: 28px; }
.fixes-title { font-size: 24px; font-weight: 700; margin-bottom: 8px; color: var(--fg); }
.fixes-sub { font-size: 14px; color: var(--fg-muted); }

/* Results page fix styles (matching fix-card above) */
.fix { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; margin-bottom: 12px; transition: box-shadow 0.15s; }
.fix:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.fix-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.fix-meta { display: flex; gap: 6px; align-items: center; }
.fix-priority { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 2px 7px; border-radius: 2px; }
.fix-priority.high { background: var(--accent); color: #fff; }
.fix-priority.medium { background: #b7791f; color: #fff; }
.fix-priority.low { background: #276749; color: #fff; }
.fix-pts { font-size: 12px; color: var(--fg-muted); }
.fix-area { font-size: 11px; text-transform: capitalize; color: var(--fg-muted); background: var(--bg); border: 1px solid var(--border); padding: 2px 7px; border-radius: 2px; }
.fix-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--fg); }
.fix-problem { font-size: 13px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 10px; }
.fix-why { font-size: 12px; color: var(--accent); font-weight: 600; margin-bottom: 16px; padding: 8px 12px; background: var(--accent-soft); border-radius: var(--radius-sm); }
.fix-example { border-top: 1px solid var(--border); padding-top: 12px; }
.ex-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fg-muted); margin-bottom: 6px; }
.ex-before, .ex-after { margin-bottom: 8px; }
.ex-tag { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fg-muted); margin-bottom: 4px; }
.ex-before p, .ex-after p { font-size: 13px; line-height: 1.6; color: var(--fg); font-style: italic; }
.ex-after p { color: var(--accent); font-weight: 500; }

.upgrade-banner {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}
.upgrade-icon { font-size: 24px; flex-shrink: 0; }
.upgrade-text { flex: 1; }
.upgrade-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.upgrade-sub { font-size: 13px; opacity: 0.75; }
.btn-upgrade {
  background: #fff;
  color: var(--accent);
  border: none;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
}

/* === LOADING OVERLAY === */
.loading-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(255,255,255,0.95);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.loading-overlay.visible { display: flex; }
.loading-spinner {
  width: 40px; height: 40px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-msg { font-size: 15px; color: var(--fg-muted); font-family: 'Inter', system-ui, sans-serif; }

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

/* === FORM HELPERS === */
.input-label--spaced { margin-top: 16px; }
.submit-error {
  display: none;
  font-size: 12px;
  color: #c00;
  margin-top: 8px;
}

/* === OAUTH BANNERS === */
.oauth-banner {
  background: #f0f9f0;
  border: 1px solid #c5e0c5;
  border-radius: var(--radius-sm);
  color: #1a5c1a;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 0.3s ease;
}

.oauth-error-banner {
  background: #fef2f2;
  border: 1px solid #f5c5c5;
  border-radius: var(--radius-sm);
  color: #c00;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  padding: 10px 16px;
  margin-bottom: 16px;
}

.btn-hero-signin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0077B5;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}
.btn-hero-signin:hover { background: #004182; text-decoration: none; }

.auth-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0f9f0;
  border: 1px solid #c5e0c5;
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  margin-bottom: 16px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
}

.auth-avatar { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }
#auth-name { font-weight: 600; color: var(--fg); }
.auth-reports-link { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none; }
.auth-reports-link:hover { text-decoration: underline; }

/* === HERO DARK (removed — replaced with clean white hero) === */
/* Kept for backwards compat with score page */
.report-page { min-height: 100vh; }

/* === LOGO STRIP (social proof) === */
.logostrip {
  padding: 32px 64px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.logostrip-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.logostrip-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.logostrip-sep {
  display: block;
  width: 1px;
  height: 18px;
  background: var(--border);
  margin: 0 28px;
  flex-shrink: 0;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s;
  text-decoration: none;
}

.logo-item:hover { opacity: 0.6; }

.logo-item svg {
  display: block;
  flex-shrink: 0;
}

/* Mobile: wrap to 2 rows of 3 */
@media (max-width: 680px) {
  .logostrip-row {
    flex-wrap: wrap;
    gap: 16px 0;
    justify-content: center;
  }

  .logostrip-sep { display: none; }

  .logo-item {
    width: 33%;
    padding: 0 12px;
    box-sizing: border-box;
  }

  .logo-item:nth-child(3),
  .logo-item:nth-child(5) {
    /* no separator after 3rd and 5th */
  }

  .logostrip-row::after {
    content: '';
    width: 33%;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .navbar { padding: 0 24px; height: 52px; }
  .hero { padding: 48px 24px 40px; }
  .how-it-works, .sample-report-new, .showcase-section, .pricing-single, .social-proof, .closing { padding: 64px 24px; }
  .process-section { padding: 64px 24px; }
  .process-pipeline { flex-direction: column; align-items: center; gap: 12px; }
  .process-connector { display: none; }
  .process-card { max-width: 360px; width: 100%; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .report-demo { grid-template-columns: 1fr; max-width: 480px; }
  .report-orb-col { flex-direction: row; flex-wrap: wrap; }
  .report-orb-col-header { width: 100%; }
  .report-unlock-preview { border-top: none; border-left: 1px solid var(--border); padding-left: 16px; padding-top: 0; }
  .showcase-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .pricing-unified-card { flex-direction: column; }
  .pricing-unified-left { padding: 28px; flex-direction: row; gap: 12px; min-width: unset; }
  .bar-row { grid-template-columns: 120px 1fr 36px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .site-footer { padding: 40px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .score-hero { padding: 40px 24px 32px; }
  .score-block { flex-direction: column; align-items: flex-start; gap: 20px; }
  .score-circle { width: 80px; height: 80px; }
  .score-num { font-size: 44px; }
  .score-breakdown { width: 100%; }
  .fixes-section { padding: 32px 24px 64px; }
  .fix-before-after { grid-template-columns: 1fr; gap: 8px; }
  .report-demo-paywall { flex-direction: column; text-align: center; gap: 12px; }
}

@media (max-width: 480px) {
  .nav-links { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* === OAUTH BANNERS === */
.oauth-banner {
  background: #d4edda;
  border: 1.5px solid #b8dac7;
  border-radius: var(--radius);
  color: #155724;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 0.3s ease;
}

.oauth-error-banner {
  background: #f8d7da;
  border: 1.5px solid #e1aab2;
  border-radius: var(--radius);
  color: #721c24;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 12px 20px;
  margin-bottom: 20px;
}

.signin-prompt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #faf7f2;
  border: 1.5px solid #e8c97a;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--fg-muted);
}

.btn-hero-signin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0A66C2;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}

.btn-hero-signin:hover { background: #004182; }

.auth-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #d4edda;
  border: 1.5px solid #b8dac7;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}

.auth-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }

#auth-name { font-weight: 600; color: var(--fg); }

.auth-reports-link {
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.auth-reports-link:hover { text-decoration: underline; }

/* ============================================================
   PHASE 2 — CONTENT SECTIONS
   ============================================================ */

/* === PROCESS PIPELINE (How It Works) === */
.process-section {
  padding: 64px 64px;
  background: var(--bg);
  position: relative;
}

.process-header {
  text-align: center;
  margin-bottom: 40px;
}

.process-pipeline {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.process-card {
  flex: 1;
  max-width: 240px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  box-shadow: 0 8px 40px rgba(16, 35, 27, 0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.process-connector {
  width: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
}

.process-connector::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-bright) 0%, rgba(36,209,143,0.3) 60%, transparent 100%);
  transform: translateY(-50%);
}

.process-connector::after {
  content: '→';
  font-size: 18px;
  color: var(--accent-bright);
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: 0 8px;
}

.process-card-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-bright);
  display: flex;
  align-items: center;
  gap: 6px;
}

.process-card-num::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 8px rgba(36, 209, 143, 0.6);
}

.process-card-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.25;
  margin-bottom: 4px;
}

.process-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.process-module-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--gold-soft);
  padding: 3px 8px;
  border-radius: 100px;
  width: fit-content;
  margin-top: auto;
}

.process-card.highlight {
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 1px var(--accent-bright), 0 8px 40px rgba(36, 209, 143, 0.12);
}

/* === SCORE ORB === */
.score-orb-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.score-orb {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent-bright) 0deg,
    var(--accent-bright) calc(74 / 100 * 360deg),
    rgba(36, 209, 143, 0.18) calc(74 / 100 * 360deg)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px rgba(36, 209, 143, 0.18);
  position: relative;
}

.score-orb::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--card-solid);
}

.score-orb-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.score-orb-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.score-orb-slash {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg-muted);
  opacity: 0.5;
}

.score-orb-denom {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--fg-muted);
  opacity: 0.6;
}

.goal-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
}

.percentile-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  text-align: center;
}

/* === SAMPLE REPORT SECTION === */
.sample-report-new {
  padding: 64px 64px;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.sample-report-new::before {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(36, 209, 143, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.report-section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--fg);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.report-section-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: var(--fg-muted);
  text-align: center;
  max-width: 540px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* Full demo report layout */
.report-demo {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

/* Left column: orb + meta */
.report-orb-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: 0 8px 48px rgba(16, 35, 27, 0.07);
}

.report-orb-col-header {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  width: 100%;
  text-align: center;
}

.report-orb-row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.report-orb-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

.report-unlock-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.report-unlock-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

.report-unlock-bar {
  display: flex;
  gap: 3px;
}

.report-unlock-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-bright);
}

.report-unlock-dot.locked {
  background: var(--border);
  border-color: var(--border);
}

.report-unlock-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(36, 209, 143, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.15s;
}

.report-unlock-cta:hover {
  background: var(--accent-bright);
  color: var(--bg-deep);
  text-decoration: none;
}

/* Right column: metrics + fixes */
.report-metrics-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.report-metrics-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.report-metrics-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

.report-see-sample {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.report-see-sample:hover { text-decoration: underline; }

/* Scoring bars */
.report-bars-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 8px 48px rgba(16, 35, 27, 0.07);
}

.report-bar-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.report-bar-row {
  display: grid;
  grid-template-columns: 160px 1fr 40px;
  align-items: center;
  gap: 12px;
}

.report-bar-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--fg);
  font-weight: 500;
}

.report-bar-track {
  height: 6px;
  background: var(--bg-alt);
  border-radius: 3px;
  overflow: hidden;
}

.report-bar-fill {
  height: 100%;
  background: var(--accent-bright);
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(36, 209, 143, 0.4);
}

.report-bar-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--fg-muted);
  text-align: right;
}

/* Top fixes section */
.top-fixes-header {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
}

/* === FIX CARDS (diagnostic with severity rail) === */
.fix-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  display: flex;
  box-shadow: 0 4px 24px rgba(16, 35, 27, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fix-card:hover {
  box-shadow: 0 8px 40px rgba(16, 35, 27, 0.10);
  transform: translateY(-2px);
}

.fix-card-rail {
  width: 4px;
  flex-shrink: 0;
  border-radius: var(--radius) 0 0 var(--radius);
}

.fix-card.high-impact .fix-card-rail {
  background: var(--accent-bright);
  box-shadow: 0 0 12px rgba(36, 209, 143, 0.4);
}

.fix-card.medium-impact .fix-card-rail {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(215, 170, 80, 0.4);
}

.fix-card.low-impact .fix-card-rail {
  background: #5a8a6e;
  box-shadow: none;
}

.fix-card-body {
  flex: 1;
  padding: 20px 20px 20px 18px;
}

.fix-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.fix-impact-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px 7px;
  border-radius: 100px;
}

.fix-card.high-impact .fix-impact-tag {
  background: var(--accent-soft);
  color: var(--accent-bright);
}

.fix-card.medium-impact .fix-impact-tag {
  background: var(--gold-soft);
  color: var(--gold);
}

.fix-card.low-impact .fix-impact-tag {
  background: rgba(90, 138, 110, 0.15);
  color: #5a8a6e;
}

.fix-pts-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 100px;
}

.fix-area-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 100px;
}

.copy-ready-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px 7px;
  border-radius: 100px;
  background: var(--accent-soft);
  color: var(--accent-bright);
}

.fix-card-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 10px;
}

.fix-signal {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 6px;
}

.fix-signal strong {
  color: var(--fg);
  font-weight: 600;
}

.fix-why-matters {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  padding: 8px 12px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  line-height: 1.5;
}

.fix-before-after {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bao-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 6px;
}

.bao-before p, .bao-after p {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  line-height: 1.55;
  font-style: italic;
}

.bao-before p { color: var(--fg-muted); }

.bao-after p {
  color: var(--accent-bright);
  font-weight: 500;
  text-shadow: 0 0 20px rgba(36, 209, 143, 0.2);
}

.fix-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* === SECTION SPACING & POLISH === */
.section-pad-lg {
  padding: 112px 64px 96px;
}

.section-pad-alt {
  background: var(--bg-alt);
}

/* === DEMO PAYWALL === */
.report-demo-paywall {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 8px 48px rgba(16, 35, 27, 0.07);
}

.paywall-left {
  flex-shrink: 0;
}

.paywall-icon {
  font-size: 32px;
}

.paywall-text { flex: 1; }

.paywall-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}

.paywall-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.btn-unlock-ghost {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-bright);
  background: var(--accent-soft);
  border: 1.5px solid rgba(36, 209, 143, 0.3);
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}

.btn-unlock-ghost:hover {
  background: var(--accent-bright);
  color: var(--bg-deep);
  text-decoration: none;
}

/* Phase 2 responsive */
@media (max-width: 900px) {
  .process-section,
  .sample-report-new {
    padding: 80px 24px 64px;
  }

  .process-pipeline {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .process-connector {
    transform: rotate(90deg);
    height: 40px;
    width: 100%;
    max-width: 200px;
  }

  .process-card {
    max-width: 360px;
    width: 100%;
  }

  .report-demo {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .report-orb-col {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .report-orb-col-header { width: 100%; }

  .report-unlock-preview {
    border-top: none;
    border-left: 1px solid var(--border);
    padding-top: 0;
    padding-left: 16px;
  }

  .fix-before-after {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* === SHOWCASE: BEFORE/AFTER === */
.showcase-section {
  padding: 64px 64px;
  background: var(--bg);
}

.showcase-inner {
  max-width: 960px;
  margin: 0 auto;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.showcase-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-before {
  background: #f4f0e8;
  border: 1px solid var(--border);
  opacity: 0.85;
}

.showcase-after {
  background: var(--card-bg);
  border: 1px solid var(--accent-bright);
  border-left: 5px solid var(--accent-bright);
  box-shadow: 0 4px 32px rgba(36, 209, 143, 0.12);
}

.showcase-card-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.showcase-after .showcase-card-label {
  color: var(--accent-bright);
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showcase-field-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.showcase-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  font-style: italic;
  color: var(--fg);
}

.showcase-before .showcase-text {
  color: var(--fg-muted);
}

.showcase-after .showcase-text {
  color: var(--fg);
}

.showcase-card-footer {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.showcase-issue-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-muted);
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 100px;
}

.showcase-proof-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-bright);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 100px;
}

.showcase-cta {
  text-align: center;
}

/* === PHASE 3 PRICING: DARK PRO CARD === */
.price-card.pro {
  background: var(--bg-deep);
  border-color: var(--accent-bright);
  box-shadow: 0 0 40px rgba(36, 209, 143, 0.18);
  transform: translateY(-12px);
}

.price-card.pro .plan-name { color: var(--gold); }
.price-card.pro .price-amount { color: #ffffff; }
.price-card.pro .price-note { color: rgba(255, 255, 255, 0.5); }
.price-card.pro .plan-tagline { color: rgba(255, 255, 255, 0.55); }
.price-card.pro .feat { color: rgba(255, 255, 255, 0.8); }
.price-card.pro .feat.excluded { color: rgba(255, 255, 255, 0.35); }
.price-card.pro .feat::before { color: var(--accent-bright); }
.price-card.pro .feat.excluded::before { color: rgba(255, 255, 255, 0.25); }

/* === PHASE 3 AUTH PILL (HERO) === */
.auth-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(36, 209, 143, 0.12);
  border: 1.5px solid rgba(36, 209, 143, 0.35);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-bright);
}

.auth-pill::before {
  content: '✓';
  font-size: 12px;
}

/* Auth banner (existing hero state) */
.auth-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(36, 209, 143, 0.08);
  border: 1.5px solid rgba(36, 209, 143, 0.25);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255, 252, 246, 0.7);
}

.auth-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.auth-reports-link {
  margin-left: auto;
  font-weight: 600;
  color: var(--accent-bright);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.15s;
}
.auth-reports-link:hover { color: #fff; text-decoration: none; }

/* === PHASE 3 SCORE HERO (results page) === */
.score-hero {
  background: var(--bg-deep);
  padding: 64px 64px 48px;
  color: #fff;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.score-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.score-eyebrow a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.18s;
}
.score-eyebrow a:hover { color: var(--accent-bright); text-decoration: none; }

.score-block {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 24px;
}

.score-circle {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent-bright) 0%,
    var(--accent-bright) calc(var(--score-pct, 74) * 1%),
    rgba(36, 209, 143, 0.2) calc(var(--score-pct, 74) * 1%),
    rgba(36, 209, 143, 0.2) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(36, 209, 143, 0.25);
}

.score-circle svg {
  position: absolute;
  inset: 0;
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.score-circle text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  fill: #fff;
}

.score-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.score-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.score-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  opacity: 0.6;
  color: #fff;
}

.goal-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(36, 209, 143, 0.15);
  color: var(--accent-bright);
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 8px;
  width: fit-content;
}

.score-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
}

.sb-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sb-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  opacity: 0.7;
  color: #fff;
  min-width: 80px;
}

.sb-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.sb-fill {
  height: 100%;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 2px;
  transition: width 0.6s ease;
}

.sb-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
  color: #fff;
  min-width: 28px;
  text-align: right;
}

.retake-row {
  margin-top: 16px;
  margin-bottom: 0;
}

.btn-retake {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.18s;
}
.btn-retake:hover { color: var(--accent-bright); text-decoration: none; }

/* === CLOSING SECTION CTA === */
.closing-cta-row {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btn-cta-primary {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  background: var(--accent-bright);
  color: var(--bg-deep);
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  box-shadow: 0 4px 24px rgba(36, 209, 143, 0.25);
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(36, 209, 143, 0.35);
  text-decoration: none;
  color: var(--bg-deep);
}

.btn-cta-secondary {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all 0.18s;
}
.btn-cta-secondary:hover { color: #fff; border-color: rgba(255, 255, 255, 0.5); text-decoration: none; }

/* === CARD HOVER MOTION === */
.scanner-card { transition: transform 0.18s ease, box-shadow 0.18s ease; }
.scanner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.price-card { transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.price-card:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(16, 35, 27, 0.12); }
.fix-card { transition: transform 0.18s ease, box-shadow 0.18s ease; }
.fix-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(16, 35, 27, 0.12); }
.proof-card { transition: transform 0.18s ease, box-shadow 0.18s ease; }
.proof-card:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(16, 35, 27, 0.1); }
.showcase-card { transition: transform 0.18s ease, box-shadow 0.18s ease; }
.showcase-after:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(36, 209, 143, 0.15); }

/* === PHASE 3 RESPONSIVE === */
@media (max-width: 900px) {
  .showcase-section { padding: 80px 24px 64px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .score-hero { padding: 48px 24px 40px; }
  .score-block { flex-direction: column; align-items: flex-start; gap: 24px; }
  .score-circle { width: 100px; height: 100px; }
  .score-num { font-size: 56px; }
  .score-breakdown { width: 100%; }
  .price-card.pro { transform: translateY(0); }
}

@media (max-width: 600px) {
  .report-bar-row {
    grid-template-columns: 110px 1fr 32px;
  }

  .report-demo-paywall {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .showcase-card { padding: 24px 20px; }
}

/* === SEARCH PROGRESS OVERLAY === */
/* Staged loading UX: fixed-position overlay with stage label and thin progress bar.
   No spinners, no decorative animation — just label swap and bar fill. */
.search-progress {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.search-progress.visible {
  display: flex;
}

.sp-card {
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 32px 40px;
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 320px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.sp-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  text-align: center;
  min-height: 20px;
  transition: opacity 0.2s ease;
}

/* Progress track: 1px bordered, no fill background */
.sp-track {
  width: 100%;
  height: 2px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1px;
  overflow: hidden;
}

/* Three segments — each fills with LinkedIn blue on active/complete */
.sp-segments {
  display: flex;
  width: 100%;
  height: 2px;
}

.sp-seg {
  flex: 1;
  position: relative;
}

.sp-seg + .sp-seg::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  width: 2px;
  height: 2px;
  background: var(--bg);
  z-index: 1;
}

/* Fill: thin 1px line of accent color fills left-to-right */
.sp-seg-fill {
  display: block;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.35s ease;
}

/* Pulse on the active segment */
.sp-seg.active .sp-seg-fill {
  animation: sp-pulse 1.4s ease-in-out infinite;
}

@keyframes sp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Stage label: active = accent color, done = muted, pending = muted */
.sp-stage-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 16px;
}

.sp-stage-label.done { color: var(--accent); }
.sp-stage-label.active { color: var(--accent); font-weight: 600; }

.sp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.sp-stage-label.active .sp-dot {
  animation: sp-pulse 1.4s ease-in-out infinite;
}

/* Error state */
.sp-error {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sp-error.visible { display: flex; }

.sp-error-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fef2f2;
  border: 1px solid #f5c5c5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.sp-error-msg {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: var(--fg-muted);
  text-align: center;
  max-width: 240px;
  line-height: 1.5;
}

.sp-retry {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 2px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.15s;
}

.sp-retry:hover { background: var(--accent-hover); }

/* Mobile: full-width overlay */
@media (max-width: 480px) {
  .sp-card {
    width: calc(100% - 32px);
    padding: 24px 24px;
  }

  .sp-label { font-size: 14px; }
}

@media (max-width: 900px) {
  .sp-card { width: min(360px, calc(100% - 48px)); }
}

/* === HOW IT WORKS — tight 3-icon row === */
.hiw-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 64px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
}

.hiw-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--accent);
}

.hiw-step-text {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
  max-width: 120px;
  line-height: 1.4;
}

.hiw-arrow {
  font-size: 18px;
  color: var(--border);
  flex-shrink: 0;
}

/* === SAMPLE PREVIEW — tight 2-col sample === */
.sample-preview {
  padding: 48px 64px;
  background: var(--bg);
}

.sample-preview-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  max-width: 760px;
  margin: 0 auto;
  align-items: start;
}

.sample-orb-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sample-score-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.sample-orb {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0deg, var(--accent) calc(74 / 100 * 360deg), var(--border) calc(74 / 100 * 360deg));
  display: flex;
  align-items: center;
  justify-content: center;
}

.sample-orb-inner {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sample-score-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--fg);
}

.sample-score-denom {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  color: var(--fg-muted);
}

.sample-percentile {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
}

.sample-unlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  width: 100%;
}

.sample-unlock-bar { display: flex; gap: 4px; }

.su-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.su-dot.su-locked { background: var(--border); }

.sample-unlock-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.sample-unlock-link:hover { color: var(--accent-hover); text-decoration: none; }

.sample-fix-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sample-fix-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.sample-fix-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  background: var(--card-bg);
}

.sf-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }

.sf-impact {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 2px;
  background: var(--accent-soft);
  color: var(--accent);
}

.sf-pts {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 2px;
}

.sf-area {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 2px;
}

.sf-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 12px;
}

.sf-rewrite {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sf-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 6px;
}

.sf-before p, .sf-after p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.55;
  font-style: italic;
}

.sf-before p { color: var(--fg-muted); }
.sf-after p { color: var(--accent); font-weight: 500; }

/* === SIMPLIFIED FOOTER === */
.site-footer {
  background: var(--bg);
  padding: 32px 64px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border);
  justify-content: center;
}

.footer-copy {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: var(--fg-muted);
}

.footer-sep { color: var(--border); font-size: 12px; }

.footer-link {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: var(--fg-muted);
  text-decoration: none;
}

.footer-link:hover { color: var(--accent); text-decoration: none; }

/* === MOBILE UPDATES === */
@media (max-width: 900px) {
  .hiw-row { padding: 32px 24px; gap: 0; }
  .hiw-step { padding: 0 16px; }
  .hiw-step-text { font-size: 12px; max-width: 100px; }
  .sample-preview { padding: 48px 24px; }
  .sample-preview-inner { grid-template-columns: 160px 1fr; gap: 24px; }
  .sample-orb { width: 100px; height: 100px; }
  .sample-orb-inner { width: 80px; height: 80px; }
  .sample-score-num { font-size: 26px; }
  .sf-rewrite { grid-template-columns: 1fr; gap: 8px; }
  .sf-title { font-size: 14px; }
  .site-footer { padding: 28px 24px; }
}

@media (max-width: 600px) {
  .hiw-row { flex-direction: column; gap: 20px; padding: 28px 24px; }
  .hiw-arrow { display: none; }
  .hiw-step { flex-direction: row; padding: 0; gap: 12px; }
  .hiw-step-text { text-align: left; max-width: none; }
  .sample-preview-inner { grid-template-columns: 1fr; }
  .sample-orb-col { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .sample-score-label { width: 100%; }
}
