/* ── Reset & Base ────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0e0730;
  --card-bg:  #1a0d42;
  --border:   rgba(255,255,255,0.08);
  --white:    #ffffff;
  --light:    #E2D9F3;
  --lav:      #B8A9D9;
  --muted:    #6b5fa0;
  --pink:     #C4478A;
  --pink-l:   #E87BB8;
  --teal:     #2DD4A4;
  --purple:   #7C5CBF;
  --font-sans: 'Inter', sans-serif;
  --font-serif:'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  background: radial-gradient(ellipse at 20% 10%, #2a1060 0%, #0e0730 45%, #06021f 100%);
  color: var(--light);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select { font-family: inherit; }

/* ── Background orbs ─────────────────────────────────────────────────────────── */
.bg-orb {
  position: fixed; border-radius: 50%;
  filter: blur(80px); opacity: 0.35; pointer-events: none; z-index: 0;
}
.bg-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #7C5CBF, transparent 70%);
  top: -200px; left: -200px;
  animation: orb-drift 18s ease-in-out infinite alternate;
}
.bg-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #C4478A, transparent 70%);
  bottom: -150px; right: -100px;
  animation: orb-drift 22s ease-in-out infinite alternate-reverse;
}
@keyframes orb-drift {
  from { transform: translate(0,0); }
  to   { transform: translate(40px, 30px); }
}

/* ── Header ──────────────────────────────────────────────────────────────────── */
.app-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(6,3,26,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.header-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 0 32px; height: 100%;
  display: flex; align-items: center;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 32px; width: auto; display: block; filter: brightness(0) invert(1); }

/* ── Shell ───────────────────────────────────────────────────────────────────── */
.shell {
  max-width: 1160px; margin: 0 auto;
  padding: 0 32px;
  position: relative; z-index: 1;
}
@media (max-width: 600px) { .shell { padding: 0 16px; } }

/* ── Screens ─────────────────────────────────────────────────────────────────── */
.screen { display: none; }
.screen.active { display: block; animation: fade-up 0.35s ease both; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Card ────────────────────────────────────────────────────────────────────── */
.rev-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn-gradient {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: var(--white); font-weight: 700; font-size: 15px;
  padding: 13px 28px; border-radius: 10px;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-gradient:hover  { opacity: 0.88; }
.btn-gradient:active { transform: scale(0.97); }
.btn-gradient:disabled { opacity: 0.35; cursor: not-allowed; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border);
  color: var(--lav); font-size: 14px; font-weight: 500;
  padding: 12px 22px; border-radius: 10px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--lav); color: var(--white); }

/* ── Landing: Hero grid ──────────────────────────────────────────────────────── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px; align-items: start;
  padding: 40px 0 60px;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--pink-l);
  margin-bottom: 20px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink-l); flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: 0.6; }
}

.hero-col h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12; font-weight: 700; margin-bottom: 20px;
  color: var(--white);
}
.hero-col h1 em { color: var(--pink-l); font-style: italic; }

.hero-sub {
  font-size: 15px; line-height: 1.75; color: #B8A9D9;
  max-width: 520px; font-weight: 300; margin-bottom: 24px;
}

.hero-benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.benefit {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--light);
}
.benefit .material-icons { font-size: 16px; color: var(--teal); }

.stat-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.stat-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 6px 14px;
  font-size: 13px; color: var(--light);
}
.stat-chip strong { color: var(--white); }
.chip-icon { font-size: 15px !important; color: var(--lav); }

.dimensions-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.dim-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.dim-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 10px 14px;
  transition: border-color 0.2s;
}
.dim-item:hover { border-color: var(--dim-color); }
.dim-icon { font-size: 17px !important; color: var(--dim-color); flex-shrink: 0; }
.dim-label { font-size: 13px; color: #C8BBE8; font-weight: 500; line-height: 1.3; }

/* ── Landing: Form ───────────────────────────────────────────────────────────── */
.form-col { position: sticky; top: 80px; }

.form-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--lav); margin-bottom: 8px;
}
.form-heading {
  font-family: var(--font-serif); font-size: 19px; font-weight: 700;
  color: var(--white); margin-bottom: 20px; line-height: 1.3;
}

.form-field { margin-bottom: 16px; }
.form-field label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--lav); margin-bottom: 6px; letter-spacing: 0.04em;
}
.form-field input,
.form-field select {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; color: var(--white);
  font-size: 14px; outline: none;
  transition: border-color 0.2s;
  appearance: none; -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B8EC4' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-field select option { background: #1a0f35; color: var(--white); }
.form-field input::placeholder { color: var(--muted); }
.form-field input:focus,
.form-field select:focus { border-color: var(--purple); }

.field-error { display: block; font-size: 11px; color: var(--pink-l); margin-top: 4px; min-height: 16px; }

.cta-btn { width: 100%; justify-content: center; margin-top: 8px; margin-bottom: 12px; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; line-height: 1.6; }

/* ── Sticky progress ─────────────────────────────────────────────────────────── */
.sticky-progress {
  position: sticky; top: 64px; z-index: 100;
  background: rgba(14,7,48,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0 8px;
}
.progress-inner-wrap {
  max-width: 1160px; margin: 0 auto;
  padding: 0 32px;
}

/* Section stepper */
.section-stepper {
  display: flex; align-items: center;
  margin-bottom: 8px; gap: 0;
}
.step-pill {
  display: flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 20px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; white-space: nowrap;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.step-icon { font-size: 12px !important; }
.step-connector {
  flex: 1; height: 1px; min-width: 6px;
  background: rgba(255,255,255,0.1);
  transition: background 0.4s;
}
.step-connector--done { background: rgba(34,197,94,0.4); }

@media (max-width: 600px) {
  .progress-inner-wrap { padding: 0 16px; }
  .step-pill { padding: 5px 8px; }
  .step-pill span:last-child { display: none; }
}

.progress-bottom {
  display: flex; align-items: center; gap: 14px;
}
.progress-track {
  flex: 1; height: 3px; background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden;
}
.progress-fill { height: 100%; border-radius: 2px; transition: width 0.4s ease, background 0.4s ease; }
.progress-q { font-size: 11px; color: var(--muted); white-space: nowrap; }

/* ── Section header ──────────────────────────────────────────────────────────── */
.section-header { padding: 36px 0 24px; }
.section-badge { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.section-icon-wrap {
  width: 40px; height: 40px; border-radius: 10px;
  border: 2px solid; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
}
.section-icon { font-size: 20px !important; }
.section-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700; color: var(--white);
  margin-bottom: 8px; line-height: 1.2;
}
.section-subtitle { font-size: 14px; color: var(--lav); margin-bottom: 12px; }
.keyboard-hint {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted);
}
.hint-icon { font-size: 15px !important; }

/* ── Question cards ──────────────────────────────────────────────────────────── */
.question-group { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; padding-top: 28px; }

.q-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 24px;
  transition: border-color 0.25s, opacity 0.25s;
  opacity: 0.6;
}
.q-card--active { opacity: 1; border-left: 3px solid var(--sec-color, var(--purple)); }
.q-card--answered { opacity: 0.85; }
.q-card--pulse { animation: card-pulse 0.5s ease; }
@keyframes card-pulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.01); }
  100% { transform: scale(1); }
}

.q-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 6px;
  font-size: 12px; font-weight: 700;
  margin-bottom: 12px;
}
.q-text { font-size: 15px; color: var(--white); font-weight: 500; line-height: 1.55; margin-bottom: 16px; }
.q-hint { font-size: 12px; color: var(--muted); margin-bottom: 14px; font-style: italic; }

/* Choices */
.choices { display: flex; flex-direction: column; gap: 8px; }
.choice-item {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  cursor: pointer; transition: border-color 0.18s, background 0.18s;
  background: rgba(255,255,255,0.02);
  position: relative;
}
.choice-item:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.05); }
.choice-item.selected { background: rgba(255,255,255,0.06); }
.choice-key {
  min-width: 24px; height: 24px; border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 11px; font-weight: 700; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.choice-label { font-size: 13px; color: var(--light); flex: 1; line-height: 1.4; }
.choice-check { font-size: 18px !important; margin-left: auto; flex-shrink: 0; }

.key-hints { display: flex; gap: 6px; margin-top: 10px; }
.c-key {
  width: 24px; height: 24px; border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 11px; font-weight: 700; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
}

/* Slider */
.slider-wrap { padding: 8px 0; }
.slider-labels {
  display: flex; justify-content: space-between;
  margin-bottom: 10px;
}
.slider-labels span { font-size: 11px; color: var(--muted); transition: color 0.2s; }
.slider-labels span.active-label { color: var(--white); font-weight: 600; }

.rev-slider {
  width: 100%; height: 4px; cursor: pointer;
  -webkit-appearance: none; appearance: none;
  background: rgba(255,255,255,0.1); border-radius: 2px; outline: none;
}
.rev-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--slider-color, var(--purple));
  box-shadow: 0 0 0 4px rgba(124,92,191,0.2);
  cursor: grab; transition: box-shadow 0.2s;
}
.rev-slider::-webkit-slider-thumb:active { cursor: grabbing; box-shadow: 0 0 0 7px rgba(124,92,191,0.25); }
.rev-slider::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%; border: none;
  background: var(--slider-color, var(--purple));
}
.slider-confirm-hint { font-size: 11px; color: var(--muted); margin-top: 8px; font-style: italic; }

/* Nav row */
.nav-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 40px; gap: 12px;
}
.nav-row .btn-gradient .material-icons,
.nav-row .btn-ghost .material-icons { font-size: 18px; }

/* ── Milestone ───────────────────────────────────────────────────────────────── */
.milestone-shell { display: flex; justify-content: center; align-items: center; min-height: calc(100vh - 64px); padding: 40px 0; }
.milestone-card { max-width: 480px; width: 100%; text-align: center; }
.milestone-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.milestone-icon-ring {
  width: 80px; height: 80px; border-radius: 50%;
  border: 3px solid var(--m-color, var(--purple));
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  animation: ring-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes ring-pop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.milestone-icon { font-size: 36px !important; color: var(--m-color, var(--purple)); }

.milestone-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--light);
}
.milestone-check .material-icons { font-size: 18px !important; }
.milestone-message { font-size: 18px; font-weight: 600; color: var(--white); line-height: 1.4; }

.milestone-dots { display: flex; gap: 8px; }
.m-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: background 0.3s;
}
.m-dot.done { }

.milestone-bar-wrap {
  width: 100%; height: 3px; background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden;
}
.milestone-bar {
  height: 100%; width: 100%;
  background: var(--m-color, var(--purple));
  animation: deplete 2.5s linear forwards;
  transform-origin: right;
}
@keyframes deplete {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}

.milestone-btn { margin-top: 4px; }

/* ── Results ─────────────────────────────────────────────────────────────────── */
.results-header { padding: 40px 0 32px; }
.results-hero { display: flex; gap: 36px; align-items: center; flex-wrap: wrap; }

.score-circle-wrap { position: relative; flex-shrink: 0; width: 130px; height: 130px; }
.score-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.score-num { font-size: 32px; font-weight: 800; color: var(--white); line-height: 1; }
.score-label { font-size: 12px; color: var(--muted); }

.results-tier-info { flex: 1; min-width: 200px; }
.results-eyebrow { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 6px; }
.results-tier { font-family: var(--font-serif); font-size: clamp(22px, 3vw, 32px); font-weight: 700; margin-bottom: 10px; }
.results-tier-desc { font-size: 14px; color: var(--lav); line-height: 1.65; margin-bottom: 12px; }
.results-meta { display: flex; gap: 8px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.meta-sep { color: var(--border); }

.results-card { margin-bottom: 20px; }
.results-section-title { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 20px; }

/* Category bars */
.cat-rows { display: flex; flex-direction: column; gap: 12px; }
.cat-row { display: grid; grid-template-columns: 160px 1fr 48px 56px; gap: 12px; align-items: center; }
@media (max-width: 600px) { .cat-row { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .cat-bar-wrap { grid-column: 1 / -1; } }
.cat-name { font-size: 13px; color: var(--light); }
.cat-bar-wrap { height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.cat-bar { height: 100%; border-radius: 3px; transition: width 0.8s ease; }
.cat-pct { font-size: 13px; font-weight: 700; text-align: right; }
.cat-pts { font-size: 12px; color: var(--muted); text-align: right; }

/* Answers */
.answer-section { margin-bottom: 24px; }
.answer-section-header {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-left: 3px solid;
  border-radius: 6px 6px 0 0; margin-bottom: 1px;
}
.answer-row {
  display: grid; grid-template-columns: 1fr 1fr auto;
  gap: 8px 16px; align-items: start;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
@media (max-width: 680px) {
  .answer-row { grid-template-columns: 1fr; }
}
.answer-q { font-size: 12px; color: var(--lav); line-height: 1.5; }
.answer-a { font-size: 12px; font-weight: 500; line-height: 1.5; }
.answer-pts { font-size: 11px; color: var(--muted); white-space: nowrap; text-align: right; }

/* Share */
.share-card { }
.share-desc { font-size: 14px; color: var(--lav); margin-bottom: 20px; line-height: 1.6; }
.share-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.share-btn { font-size: 14px !important; padding: 11px 20px !important; }
.share-btn .material-icons { font-size: 17px !important; }

/* ── Report Card ─────────────────────────────────────────────────────────────── */
.report-card {
  border-radius: 20px; overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.35);
}

/* Header */
.report-card-header {
  background: linear-gradient(135deg, #12053a 0%, #1e0b50 50%, #0e0730 100%);
  padding: 36px 40px 32px; position: relative; overflow: hidden;
}
.report-card-header-orb {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,191,0.25), transparent 70%);
  top: -120px; right: -80px; pointer-events: none;
}
.report-header-eyebrow {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.report-header-title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 8px;
}
.report-header-meta {
  font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 20px;
}
.report-tier-badge {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid; border-radius: 30px; padding: 7px 16px;
}
.report-tier-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.report-tier-label { font-size: 13px; font-weight: 700; }
.report-tier-score { font-size: 12px; }

/* Body */
.report-card-body { background: #f5f3fc; padding: 36px 40px; color: #1a0f35; }

.report-body-section { margin-bottom: 36px; }
.report-body-section:last-child { margin-bottom: 0; }
.report-body-section-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: #7C5CBF;
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid #e2daf5;
}

/* Executive Summary */
.report-exec-box {
  background: #fff; border-radius: 12px;
  padding: 24px 26px; border: 1px solid #e2daf5;
}
.report-exec-tagline {
  font-family: var(--font-serif);
  font-size: 16px; font-style: italic; font-weight: 700;
  color: #2d1060; line-height: 1.5; margin-bottom: 16px;
  padding-bottom: 14px; border-bottom: 1px solid #ede8f8;
}
.report-exec-text { font-size: 14px; color: #3d2d70; line-height: 1.8; }
.report-exec-text strong { color: #1a0f35; }

/* Dimensions */
.report-dimensions-grid { display: flex; flex-direction: column; gap: 10px; }
.report-dimension {
  background: #fff; border: 1px solid #e2daf5;
  border-radius: 12px; padding: 16px 18px;
}
.report-dimension-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px;
}
.report-dim-name-wrap { display: flex; align-items: center; gap: 8px; }
.report-dim-icon { font-size: 16px !important; }
.report-dimension-name { font-size: 13px; font-weight: 600; color: #0f0830; }
.report-dimension-score { font-size: 13px; font-weight: 700; }
.report-dim-bar-track {
  height: 5px; background: #ede8f8; border-radius: 3px;
  overflow: hidden; margin-bottom: 12px;
}
.report-dim-bar { height: 100%; border-radius: 3px; }
.report-dimension-insight { font-size: 13px; color: #4a3980; line-height: 1.65; }

/* Recommendations */
.report-rec-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.report-rec-item {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 13px; color: #2d2060; line-height: 1.6;
  padding: 14px 16px; background: #fff;
  border: 1px solid #e2daf5; border-radius: 12px;
}
.report-rec-num {
  min-width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, #7C5CBF, #C4478A);
  color: #fff; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

@media (max-width: 600px) {
  .report-card-header { padding: 28px 20px 24px; }
  .report-card-body { padding: 28px 20px; }
}

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.footer-note {
  text-align: center; font-size: 12px; color: var(--muted);
  padding: 32px 0 40px; line-height: 1.7;
}
.footer-note a { color: var(--light); text-decoration: none; }
.footer-note a:hover { text-decoration: underline; }
