:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --surface-soft: #fbf8f2;
  --ink: #17211f;
  --muted: #65706c;
  --line: #ded6ca;
  --accent: #153f38;
  --accent-2: #c28f2c;
  --accent-soft: #e9f0eb;
  --danger: #a13d2d;
  --shadow: 0 24px 60px rgba(23, 33, 31, 0.12);
  --radius: 22px;
  --radius-small: 14px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 0% 0%, rgba(194, 143, 44, 0.14), transparent 35%), var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.header-nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 650;
}

.header-nav a {
  text-decoration: none;
}

.header-nav a:hover {
  color: var(--accent);
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 30px;
  align-items: stretch;
  padding: 70px 0 44px;
}

.hero-content,
.doctrine-card,
.section,
.check-shell,
.result-panel,
.recommendation,
.question-card,
.lead-form {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(222, 214, 202, 0.9);
  box-shadow: var(--shadow);
}

.hero-content {
  border-radius: 32px;
  padding: clamp(32px, 5vw, 64px);
}

.eyebrow,
.card-label,
.question-domain {
  margin: 0 0 10px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.5rem, 6vw, 5.7rem);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-copy,
.section-heading p,
.check-intro p,
.lead-form p,
.result-hero p,
.recommendation p,
.info-card p,
.small-print p {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 1.22rem;
}

.hero-actions,
.form-actions,
.question-actions,
.result-actions,
.recommendation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(21, 63, 56, 0.24);
}

.button.secondary {
  background: var(--accent-soft);
  border-color: #cdded3;
  color: var(--accent);
}

.button.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.trust-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.doctrine-card {
  border-radius: 32px;
  padding: 32px;
}

.doctrine-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.doctrine-card dl {
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.doctrine-card div,
.info-card,
.result-panel,
.recommendation {
  border-radius: var(--radius-small);
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.doctrine-card div {
  padding: 16px;
}

.doctrine-card dt {
  font-weight: 850;
}

.doctrine-card dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.section {
  border-radius: 32px;
  padding: clamp(24px, 4vw, 44px);
  margin-top: 30px;
}

.section-heading {
  max-width: 760px;
}

.cards {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  padding: 22px;
}

.step {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.check-shell {
  border-radius: 32px;
  padding: clamp(24px, 4vw, 44px);
  margin-top: 30px;
}

.check-intro {
  max-width: 760px;
}

.hidden {
  display: none !important;
}

.progress-wrap {
  margin-bottom: 20px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 750;
}

.domain-pill {
  color: var(--accent);
}

.progress-bar {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7dfd3;
}

.progress-bar span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 220ms ease;
}

.question-card,
.lead-form {
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
}

.question-card h2 {
  max-width: 880px;
  font-size: clamp(1.6rem, 3.5vw, 2.7rem);
}

.answers {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.answer-option {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
  cursor: pointer;
  transition: border 160ms ease, background 160ms ease, transform 160ms ease;
}

.answer-option:hover {
  transform: translateY(-1px);
  border-color: #b9c9be;
}

.answer-option.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.answer-option input {
  margin-top: 3px;
  accent-color: var(--accent);
}

.answer-option strong {
  display: block;
  margin-bottom: 3px;
}

.answer-option span {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

label {
  color: var(--ink);
  font-weight: 800;
}

input[type="text"],
input[type="email"] {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 14px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
}

input:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(194, 143, 44, 0.45);
  outline-offset: 3px;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 20px;
  color: var(--muted);
  font-weight: 650;
}

.consent input {
  margin-top: 3px;
  accent-color: var(--accent);
}

.error {
  min-height: 22px;
  color: var(--danger) !important;
  font-weight: 800;
}

.result-hero {
  position: relative;
  min-height: 220px;
  padding-right: 210px;
}

.result-hero h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.score-circle {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 14px solid var(--accent-soft);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.score-circle span {
  display: block;
  font-size: 2.3rem;
  font-weight: 950;
  color: var(--accent);
}

.score-circle small {
  color: var(--muted);
  font-weight: 750;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}

.result-panel,
.recommendation {
  padding: 24px;
}

.result-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.result-panel li + li {
  margin-top: 10px;
}

.domain-bars {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.domain-bar-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 750;
}

.domain-bar-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7dfd3;
}

.domain-bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.recommendation {
  margin-top: 16px;
  background: var(--accent);
  color: #fff;
}

.recommendation .card-label,
.recommendation p {
  color: rgba(255, 255, 255, 0.78);
}

.recommendation .button.primary {
  background: #fff;
  color: var(--accent);
}

.recommendation .button.secondary {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.small-print {
  box-shadow: none;
  background: transparent;
}

.small-print h2 {
  font-size: 1.3rem;
}

.small-print p {
  max-width: 780px;
  font-size: 0.95rem;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 24px 50px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 4px 0;
}

@media (max-width: 900px) {
  .hero,
  .cards.three,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .result-hero {
    padding-right: 0;
  }

  .score-circle {
    position: static;
    margin-top: 22px;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-nav {
    width: 100%;
    justify-content: space-between;
  }

  main {
    padding-inline: 14px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-content,
  .doctrine-card,
  .section,
  .check-shell {
    border-radius: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .form-actions,
  .question-actions,
  .result-actions,
  .recommendation-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}


/* ============================================================
   AIBI LIVE THEME + FULL NAVBAR OVERRIDES
   Applied without changing readiness-check logic or layout.
   ============================================================ */
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: rgba(11, 18, 32, 0.03);
  --ink: #0b1220;
  --muted: rgba(11, 18, 32, 0.68);
  --line: rgba(11, 18, 32, 0.10);
  --accent: #1f6feb;
  --accent-2: #00b4a6;
  --accent-soft: rgba(31, 111, 235, 0.10);
  --danger: #b42318;
  --shadow: 0 18px 60px rgba(11, 18, 32, 0.10);
  --radius: 22px;
  --radius-small: 16px;
  --max: 1180px;
  --pad: 24px;
  --headerH: 76px;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  background: #ffffff;
  color: var(--ink);
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: -0.01em;
}

a { text-decoration: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Full live navbar */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  height: var(--headerH);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
  color: var(--ink);
}

.brand span {
  display: inline;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.nav a {
  padding: 8px 8px;
  border-radius: 10px;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(11, 18, 32, 0.04);
  color: var(--ink);
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.actions .btn { flex-shrink: 0; }

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(11, 18, 32, 0.10);
}

.btn-primary {
  background: linear-gradient(180deg, rgba(31, 111, 235, 1), rgba(20, 84, 186, 1));
  color: #fff;
  border-color: rgba(31, 111, 235, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 50px rgba(31, 111, 235, 0.28);
}

.mobile-only { display: none !important; }

.mobile-menu-btn {
  color: var(--ink);
  background: rgba(11, 18, 32, 0.06);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn span {
  display: block !important;
  width: 18px !important;
  height: 2px !important;
  background: currentColor !important;
  border-radius: 2px;
  opacity: 1 !important;
  transition: transform 160ms ease;
}

.mobile-menu-btn span + span { margin-top: 4px; }

.mobile-menu-btn.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
.mobile-menu-btn.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }

/* Theme existing readiness components without changing their structure */
.hero-content,
.doctrine-card,
.section,
.check-shell,
.result-panel,
.question-card,
.lead-form {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
  box-shadow: 0 18px 60px rgba(11, 18, 32, 0.06);
}

.eyebrow,
.card-label,
.question-domain,
.domain-pill {
  color: var(--accent);
}

.button.primary {
  background: linear-gradient(180deg, rgba(31, 111, 235, 1), rgba(20, 84, 186, 1));
  color: #fff;
  box-shadow: 0 14px 34px rgba(31, 111, 235, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 18px 50px rgba(31, 111, 235, 0.28);
}

.button.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.button.ghost {
  background: rgba(11, 18, 32, 0.02);
  border-color: var(--line);
  color: var(--muted);
}

.progress-bar { background: rgba(31, 111, 235, 0.12); }
.progress-bar span { background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.answer-option.selected { border-color: var(--accent); background: var(--accent-soft); }
.answer-option input, .consent input { accent-color: var(--accent); }
.score-circle { border-color: var(--accent-soft); }
.score-circle span { color: var(--accent); }
.domain-bar-track { background: rgba(31, 111, 235, 0.12); }
.domain-bar-track span { background: var(--accent); }
.recommendation { background: linear-gradient(180deg, rgba(31, 111, 235, 1), rgba(20, 84, 186, 1)); }
.recommendation .button.primary { background: #fff; color: var(--accent); }

/* Main-site style border highlight and float for cards */
.info-card,
.doctrine-card,
.doctrine-card div,
.result-panel,
.answer-option {
  --card-accent: #00b4a6;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.info-card:hover,
.info-card:focus-within,
.doctrine-card:hover,
.doctrine-card:focus-within,
.doctrine-card div:hover,
.result-panel:hover,
.result-panel:focus-within,
.answer-option:hover,
.answer-option:focus-within {
  transform: translateY(-4px);
  border-color: var(--card-accent);
  box-shadow: 0 24px 54px rgba(11, 18, 32, 0.10);
}

.answer-option:hover { background: #fff; }

input:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(31, 111, 235, 0.24);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .mobile-only { display: inline-flex !important; }

  .nav {
    display: none !important;
  }

  .nav.nav-open {
    display: flex !important;
    position: absolute;
    top: calc(var(--headerH) + 8px);
    left: var(--pad);
    right: var(--pad);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    box-shadow: var(--shadow);
    z-index: 999;
  }

  .nav.nav-open a {
    padding: 10px 12px;
    border-radius: 10px;
  }
}

@media (min-width: 901px) {
  .nav { display: flex !important; }
}

@media (max-width: 640px) {
  .header-inner { gap: 10px; }
  .brand { min-width: auto; }
  .brand span { font-size: 0.95rem; }
  .actions .btn { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .info-card,
  .doctrine-card,
  .doctrine-card div,
  .result-panel,
  .answer-option,
  .button,
  .btn {
    transition: none;
  }

  .info-card:hover,
  .doctrine-card:hover,
  .doctrine-card div:hover,
  .result-panel:hover,
  .answer-option:hover,
  .button:hover,
  .btn:hover {
    transform: none;
  }
}

/* ════════════════════════════════════════════════
   PRINT REPORT STYLES
   ════════════════════════════════════════════════ */

/* Hide report on screen */
#print-report { display: none; }

@media print {
  /* Hide everything except the report */
  body > *:not(#print-report) { display: none !important; }
  #print-report {
    display: block !important;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #0b1220;
    background: white;
    margin: 0;
    padding: 0;
  }

  @page {
    size: A4;
    margin: 0;
  }

  .rpt-page {
    width: 210mm;
    min-height: 297mm;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: white;
  }

  /* Header */
  .rpt-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #0b1220;
    color: white;
    padding: 24px 28px 20px;
    gap: 20px;
  }
  .rpt-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }
  .rpt-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: white;
    padding: 3px;
    object-fit: contain;
  }
  .rpt-brand {
    font-size: 15px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
  }
  .rpt-brand-sub {
    font-size: 10px;
    color: rgba(255,255,255,0.55);
    margin-top: 1px;
  }
  .rpt-doc-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
  }
  .rpt-doc-sub {
    font-size: 18px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
  }
  .rpt-header-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 160px;
  }
  .rpt-meta-row {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
  }
  .rpt-meta-row strong {
    color: white;
    font-weight: 600;
  }

  /* Result band */
  .rpt-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    border-left: 6px solid;
    margin: 0;
    gap: 20px;
  }
  .rpt-band-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .rpt-band-result {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
  }
  .rpt-band-summary {
    font-size: 12px;
    color: #374151;
    margin: 0;
    max-width: 72ch;
    line-height: 1.5;
  }
  .rpt-score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .rpt-score-num {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
  }
  .rpt-score-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 2px;
  }

  /* Body */
  .rpt-body {
    display: flex;
    gap: 0;
    flex: 1;
    padding: 0 28px 20px;
    margin-top: 20px;
  }
  .rpt-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .rpt-col:first-child {
    padding-right: 20px;
    border-right: 1px solid rgba(11,18,32,0.1);
    margin-right: 20px;
  }

  .rpt-section {}
  .rpt-section-title {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1f6feb;
    margin: 0 0 10px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(31,111,235,0.2);
  }
  .rpt-symptoms {
    margin: 0;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .rpt-symptoms li {
    font-size: 11px;
    color: #374151;
    line-height: 1.5;
  }

  /* Recommendation */
  .rpt-rec-title {
    font-size: 13px;
    font-weight: 700;
    color: #0b1220;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
  }
  .rpt-rec-copy {
    font-size: 11px;
    color: #374151;
    margin: 0;
    line-height: 1.55;
  }

  /* Domain bars */
  .rpt-domains {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .rpt-domain {}
  .rpt-domain-meta {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #374151;
    margin-bottom: 3px;
    font-weight: 500;
  }
  .rpt-domain-track {
    height: 5px;
    border-radius: 999px;
    background: rgba(11,18,32,0.08);
    overflow: hidden;
  }
  .rpt-domain-fill {
    height: 100%;
    border-radius: 999px;
  }

  /* Boundary box */
  .rpt-boundary {
    background: rgba(11,18,32,0.03);
    border: 1px solid rgba(11,18,32,0.1);
    border-radius: 8px;
    padding: 14px;
  }
  .rpt-boundary-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1f6feb;
    margin-bottom: 4px;
  }
  .rpt-boundary-rule {
    font-size: 13px;
    font-weight: 700;
    color: #0b1220;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }
  .rpt-boundary-items {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .rpt-boundary-items div {
    font-size: 10px;
    color: #374151;
    line-height: 1.4;
  }
  .rpt-boundary-items strong {
    color: #0b1220;
  }

  /* Footer */
  .rpt-footer {
    border-top: 1px solid rgba(11,18,32,0.1);
    padding: 12px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
  }
  .rpt-footer div {
    font-size: 8px;
    color: rgba(11,18,32,0.45);
    line-height: 1.5;
  }
  .rpt-footer div:first-child {
    font-weight: 600;
    color: rgba(11,18,32,0.6);
  }
}

/* Email sent confirmation */
.email-sent-notice {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #dcfce7;
  border: 1px solid #16a34a;
  border-radius: 10px;
  font-size: 14px;
  color: #14532d;
  margin-bottom: 12px;
}
.email-sent-icon {
  font-size: 16px;
  font-weight: 700;
  color: #16a34a;
}

/* ── SUMMARY RESULT SCREEN ── */
.email-report-banner {
  display: none;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: #f0fdf4;
  border: 2px solid #16a34a;
  border-radius: 14px;
  margin-bottom: 24px;
}
.email-report-banner-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.email-report-banner strong {
  display: block;
  font-size: 16px;
  color: #14532d;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.email-report-banner p {
  font-size: 14px;
  color: #166534;
  margin: 0;
  line-height: 1.5;
}

.result-summary-card {
  border: 1px solid var(--line, rgba(11,18,32,0.1));
  border-radius: 16px;
  padding: 28px;
  background: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.result-summary-card .eyebrow {
  margin-bottom: 8px;
}
.result-summary-card h2 {
  margin: 0 0 16px 0;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.03em;
}
.result-summary-text {
  margin-top: 16px;
  font-size: 15px;
  color: var(--muted, rgba(11,18,32,0.65));
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.result-teaser {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line, rgba(11,18,32,0.1));
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #fff;
}
.result-teaser-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--muted, rgba(11,18,32,0.65));
  border-bottom: 1px solid var(--line, rgba(11,18,32,0.08));
  font-weight: 500;
}
.result-teaser-item:last-child {
  border-bottom: none;
}
.result-teaser-icon {
  font-size: 18px;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}
