:root {
  --bg: #0F1629;
  --surface: #1A2540;
  --surface-2: #243050;
  --fg: #F0F4FF;
  --fg-muted: #8892AA;
  --accent: #00D4AA;
  --accent-dim: rgba(0, 212, 170, 0.12);
  --accent-glow: rgba(0, 212, 170, 0.25);
  --border: rgba(240, 244, 255, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* HERO */
.hero {
  padding: 120px 80px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-eyebrow { margin-bottom: 32px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
}

.badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: flex-start;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
  background: var(--surface);
}

.stat {
  padding: 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  max-width: 160px;
  line-height: 1.4;
}

/* SCORECARD */
.scorecard {
  padding: 0 80px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.scorecard-inner {}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 16px;
}

.section-body {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 500px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.scorecard-header { margin-bottom: 0; }

.score-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.score-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 12px 20px;
  position: relative;
  overflow: hidden;
}

.score-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  border-radius: 3px 0 0 3px;
  opacity: 0.6;
}

.score-icon {
  grid-row: 1;
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-content {
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.score-dimension {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
}

.score-bar-wrap {
  width: 100%;
  height: 6px;
  background: var(--surface-2);
  border-radius: 100px;
  overflow: hidden;
}

.score-bar {
  height: 100%;
  width: calc(var(--score) * 1%);
  background: linear-gradient(90deg, var(--accent), #00ffcc);
  border-radius: 100px;
  box-shadow: 0 0 12px var(--accent-glow);
}

.score-out-of {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
}

.score-issue {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}

/* DIMENSIONS */
.dimensions {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 80px;
}

.dimensions-inner { max-width: 1400px; margin: 0 auto; }

.dim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.dim-card {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
}

.dim-card:last-child { border-right: none; }

.dim-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 24px;
}

.dim-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.2;
}

.dim-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.dim-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dim-features li {
  font-size: 0.82rem;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.dim-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--fg);
  letter-spacing: -0.01em;
  max-width: 860px;
  margin-bottom: 40px;
  padding-left: 32px;
  border-left: 3px solid var(--accent);
}

.manifesto-body {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* CLOSING */
.closing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 100px 80px;
}

.closing-inner { max-width: 1400px; margin: 0 auto; text-align: center; }

.closing-badge { margin-bottom: 32px; }

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

.closing-type { display: flex; justify-content: center; }

.type-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  margin: 0 6px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 80px 40px;
}

.footer-inner { max-width: 1400px; margin: 0 auto; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0, 212, 170, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
  max-width: 480px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* HERO FORM + TRUST ROW */
.hero-form-wrap {
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-inputs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.hero-input {
  flex: 1;
  min-width: 160px;
  padding: 13px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.hero-input::placeholder { color: var(--fg-muted); }

.hero-cta {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
}
.hero-cta:hover { opacity: 0.88; }
.hero-cta:disabled { opacity: 0.5; cursor: not-allowed; }

.hero-form-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 10px;
}

/* TWO-STEP LEAD FORM */
.step1-container { margin-bottom: 0; }

.step1-label {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.step1-form { display: flex; flex-direction: column; gap: 10px; }

.step1-input-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.step1-email-input {
  flex: 1;
  min-width: 180px;
  padding: 15px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.step1-email-input:focus { border-color: var(--accent); }
.step1-email-input::placeholder { color: var(--fg-muted); }

.step1-cta {
  padding: 15px 28px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
  min-height: 52px;
  display: flex;
  align-items: center;
}
.step1-cta:hover { opacity: 0.88; }
.step1-cta:disabled { opacity: 0.5; cursor: not-allowed; }

.step1-error {
  color: #ff6b6b;
  font-size: 0.88rem;
  display: none;
  padding: 8px 12px;
  background: rgba(255, 77, 109, 0.08);
  border: 1px solid rgba(255, 77, 109, 0.2);
  border-radius: 8px;
}

.step1-trust {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 10px;
}

/* Step 1 success state */
.step1-success {
  background: var(--surface);
  border: 1px solid rgba(0, 212, 170, 0.25);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  animation: slideDown 0.35s ease-out;
}

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

.step1-success-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.step1-success-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 212, 170, 0.12);
  border: 1px solid rgba(0, 212, 170, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step1-success-headline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0 0 4px;
}

.step1-success-sub {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.5;
}

.step1-success-email-note {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  padding-top: 8px;
  border-top: 1px solid rgba(240, 244, 255, 0.06);
}

/* Step 2 */
.step2-label {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  animation: slideDown 0.35s ease-out;
}

.step2-form { display: flex; flex-direction: column; gap: 10px; }

.step2-input-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.step2-url-input {
  flex: 1;
  min-width: 160px;
  padding: 15px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.step2-url-input:focus { border-color: var(--accent); }
.step2-url-input::placeholder { color: var(--fg-muted); }

.step2-cta {
  padding: 15px 28px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
  min-height: 52px;
  display: flex;
  align-items: center;
}
.step2-cta:hover { opacity: 0.88; }
.step2-cta:disabled { opacity: 0.5; cursor: not-allowed; }

.step2-error {
  color: #ff6b6b;
  font-size: 0.88rem;
  display: none;
  padding: 8px 12px;
  background: rgba(255, 77, 109, 0.08);
  border: 1px solid rgba(255, 77, 109, 0.2);
  border-radius: 8px;
}

/* Progress state */
.hero-progress {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 12px;
}
.hero-progress-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.hero-spinner {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-progress-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  margin: 0 0 4px;
}
.hero-progress-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin: 0;
}
.hero-progress-steps {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hstep {
  font-size: 0.75rem;
  color: var(--fg-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.hstep-active {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* Success box */
.hero-success-box {
  background: rgba(0,212,170,0.1);
  border: 1px solid rgba(0,212,170,0.35);
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 580px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Trust row */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0;
  margin-top: 4px;
}
.trust-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.trust-badge:hover { border-color: rgba(0, 212, 170, 0.4); }
.trust-brand {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg);
}
.trust-score {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.trust-score--mid {
  background: rgba(255, 184, 77, 0.15);
  color: #ffb84d;
}
.trust-score--low {
  background: rgba(255, 92, 92, 0.12);
  color: #ff8080;
}

/* SAMPLE PREVIEW TILES — under hero form */
.hero-sample-tiles {
  max-width: 620px;
  margin-top: 16px;
  margin-bottom: 28px;
}
.hero-sample-caption {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-bottom: 10px;
}
.hero-sample-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sample-tile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  flex: 1;
  min-width: 130px;
}
.sample-tile:hover { border-color: rgba(0, 212, 170, 0.4); background: var(--surface-2); }
.sample-tile-brand {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
  flex: 1;
}
.sample-tile-score {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
}
.sample-tile-score--mid {
  background: rgba(255, 184, 77, 0.15);
  color: #ffb84d;
}
.sample-tile-score--low {
  background: rgba(255, 92, 92, 0.12);
  color: #ff8080;
}
.sample-tile-arrow {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* HERO SUB — below form on all viewports */
.hero-sub--below-form {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 0;
  margin-top: 8px;
}

/* TRUST STRIP — above footer */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  text-align: center;
}
.trust-strip-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.trust-strip-count {
  font-weight: 600;
  color: var(--accent);
}
.trust-strip-dot {
  opacity: 0.4;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero, .scorecard, .dimensions, .manifesto, .closing, .footer {
    padding-left: 32px;
    padding-right: 32px;
  }
  .hero { padding-top: 80px; padding-bottom: 60px; }
  .score-grid { grid-template-columns: 1fr; }
  .dim-grid { grid-template-columns: 1fr; }
  .dim-card { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 0; }
  .dim-card:last-child { border-bottom: none; }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: auto; height: 1px; }
}

/* Mobile-first: iPhone 13/14 (390px wide, 844px tall) */
@media (max-width: 600px) {
  .hero, .scorecard, .dimensions, .manifesto, .closing, .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  /* Compress top to push form above fold */
  .hero { padding-top: 28px; padding-bottom: 40px; }
  .hero-eyebrow { margin-bottom: 12px; }
  .hero-headline {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  /* Hide <br> so headline wraps naturally on narrow screens */
  .hero-br { display: none; }
  /* Sub sits below form on mobile — already below in DOM */
  .hero-sub--below-form {
    font-size: 0.9rem;
    margin-top: 6px;
  }
  .hero-inputs { flex-direction: column; }
  .hero-input { min-width: 0; width: 100%; }
  .manifesto-quote { font-size: 1.2rem; padding-left: 20px; }
  .type-tag { display: block; margin: 6px 0; }
  /* Trust strip: stack on very narrow */
  .trust-strip-inner { flex-direction: column; gap: 4px; }
  /* Stats below fold is fine on mobile */
  .hero-stats { display: none; }
  /* Sample tiles: full width on mobile */
  .sample-tile { min-width: 100%; }
  .hero-sample-tiles { margin-bottom: 16px; }
  /* Two-step form: stack vertically on mobile */
  .step1-input-row { flex-direction: column; }
  .step1-email-input { min-width: 0; width: 100%; }
  .step1-cta { width: 100%; justify-content: center; }
  .step2-input-row { flex-direction: column; }
  .step2-url-input { min-width: 0; width: 100%; }
  .step2-cta { width: 100%; justify-content: center; }
}

/* ─── AUDIT TEASER ────────────────────────────────────────────────────────── */

/* Scanning progress block */
.teaser-scanning {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  max-width: 560px;
}

.teaser-scanning-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.teaser-scanning-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
}

@keyframes teaser-spin {
  to { transform: rotate(360deg); }
}

.teaser-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 212, 170, 0.25);
  border-top-color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: teaser-spin 0.8s linear infinite;
}

.teaser-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.teaser-step {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.teaser-step--pending {
  color: var(--fg-muted);
  background: transparent;
}

.teaser-step--active {
  color: var(--fg);
  background: rgba(0, 212, 170, 0.07);
  font-weight: 500;
}

.teaser-step--done {
  color: var(--accent);
  background: transparent;
}

/* Result card */
.teaser-result {
  background: var(--surface);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 14px;
  padding: 20px 24px;
  max-width: 560px;
}

.teaser-result-score-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.teaser-score-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid;
  flex-shrink: 0;
  border-color: var(--fg-muted);
}

.teaser-score-ring--high { border-color: #00D4AA; }
.teaser-score-ring--mid  { border-color: #F5C842; }
.teaser-score-ring--low  { border-color: #FF4D6D; }

.teaser-score-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.teaser-score-ring--high .teaser-score-value { color: #00D4AA; }
.teaser-score-ring--mid  .teaser-score-value { color: #F5C842; }
.teaser-score-ring--low  .teaser-score-value { color: #FF4D6D; }

.teaser-score-label {
  font-size: 0.65rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.teaser-result-meta {
  flex: 1;
  min-width: 0;
}

.teaser-result-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}

.teaser-result-category {
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* 2 prompt rows */
.teaser-prompts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.teaser-prompt-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--surface-2);
}

.teaser-prompt-item--win { border-left: 3px solid #00D4AA; }
.teaser-prompt-item--miss { border-left: 3px solid #FF4D6D; }

.teaser-prompt-icon {
  flex-shrink: 0;
  font-weight: 700;
  width: 14px;
  text-align: center;
}

.teaser-prompt-item--win .teaser-prompt-icon  { color: #00D4AA; }
.teaser-prompt-item--miss .teaser-prompt-icon { color: #FF4D6D; }

.teaser-prompt-text {
  color: var(--fg);
  line-height: 1.4;
}

/* Blurred "more prompts" block */
.teaser-blur-block {
  position: relative;
  margin-bottom: 14px;
  border-radius: 8px;
  overflow: hidden;
}

.teaser-blur-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0 4px;
  user-select: none;
}

.teaser-blur-item {
  font-size: 0.84rem;
  color: var(--fg-muted);
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--surface-2);
  border-left: 3px solid #FF4D6D;
  filter: blur(3px);
}

.teaser-blur-stat {
  font-size: 0.8rem;
  color: var(--fg-muted);
  padding: 6px 12px;
  filter: blur(3px);
}

.teaser-blur-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--surface) 85%);
  pointer-events: none;
}

/* CTA note below result */
.teaser-cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--fg-muted);
  padding: 10px 12px;
  background: rgba(0, 212, 170, 0.06);
  border: 1px solid rgba(0, 212, 170, 0.18);
  border-radius: 8px;
}

.teaser-cta-note strong { color: var(--fg); }

/* Mobile: stack result tightly on iPhone SE (375px) */
@media (max-width: 479px) {
  .teaser-result { padding: 16px; }
  .teaser-scanning { padding: 16px; }
  .teaser-result-score-row { gap: 12px; }
  .teaser-score-ring { width: 60px; height: 60px; }
  .teaser-score-value { font-size: 1.3rem; }
  .teaser-result-brand { font-size: 0.95rem; }
}
