/* ──────────────────────────────────────────────
   IQ landing page
   design system
   ────────────────────────────────────────────── */

:root {
  --bg:           #FFFFFF;
  --bg-soft:      #F6FBFA;
  --bg-mute:      #ECFDF5;
  --text:         #0B1F1C;
  --text-muted:   #4B5C5A;
  --text-light:   #9CA9A7;
  --border:       #DCEAE7;
  --border-soft:  #EDF6F4;

  --primary:      #0D9488;
  --primary-700:  #0F766E;
  --primary-50:   #F0FDFA;
  --primary-100:  #CCFBF1;
  --accent:       #06B6D4;

  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  --shadow-sm:    0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow:       0 4px 12px rgba(15, 23, 42, 0.05), 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg:    0 12px 32px rgba(15, 23, 42, 0.08), 0 24px 60px rgba(13, 148, 136, 0.10);

  --max-w:        1160px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; font-size: 1.08em; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}


/* ───────── BUTTONS ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-sm  { padding: 8px 16px;  font-size: 14px; }
.btn-lg  { padding: 14px 28px; font-size: 16px; }

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 6px 18px rgba(13, 148, 136, 0.32);
}
.btn-primary:hover {
  background: var(--primary-700);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 10px 24px rgba(13, 148, 136, 0.40);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--bg-soft);
  border-color: #CBD5E1;
}


/* ───────── NAV ───────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 18px;
}
.logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); }
@media (max-width: 720px) {
  .nav-links { display: none; }
}


/* ───────── HERO (2-col: chart | text) ───────── */
.hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-50);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow-sm {
  font-size: 11px;
  padding: 4px 10px;
  margin-bottom: 6px;
}
h1 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 22px;
}
.accent-text {
  background: linear-gradient(120deg, var(--primary) 0%, var(--accent) 60%, var(--primary) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.hero-bullets {
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-bullets li {
  position: relative;
  padding: 0 0 0 28px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--primary-50);
  border: 1.5px solid var(--primary);
}
.hero-bullets li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex;
  gap: 20px 28px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-muted);
}

/* hero chart card */
.hero-chart .curve-card {
  margin-bottom: 0;
  padding: 24px;
}
.curve-card-header {
  margin-bottom: 12px;
}
.curve-card-header h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-text  { text-align: center; }
  .hero-text .cta-row,
  .hero-text .hero-meta { justify-content: center; }
}
.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.meta-icon {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.hero-decor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 50% -100px, rgba(13, 148, 136, 0.10), transparent 70%),
    radial-gradient(ellipse 600px 300px at 80% 200px, rgba(6, 182, 212, 0.10), transparent 70%),
    radial-gradient(ellipse 500px 300px at 20% 250px, rgba(20, 184, 166, 0.08), transparent 70%);
  pointer-events: none;
}


/* ───────── SECTION HEADER ───────── */
section { padding: 88px 0; }

.section-header {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
}


/* ───────── BELL CURVE CARD ───────── */
.curve-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 32px;
  overflow: hidden;
}
.curve-svg {
  width: 100%;
  height: auto;
  display: block;
}
.curve-mean {
  font-family: 'Manrope';
  font-size: 12px;
  font-weight: 600;
  fill: var(--primary);
  letter-spacing: -0.01em;
}

/* ───────── STATS UNDER CHART ───────── */
.curve-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
  padding: 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.stat {
  text-align: center;
  padding: 4px 8px;
  border-right: 1px solid var(--border-soft);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.stat-label span {
  display: block;
  color: var(--text-light);
  font-size: 11px;
  font-weight: 400;
  margin-top: 1px;
  letter-spacing: 0;
}
@media (max-width: 720px) {
  .curve-stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--border-soft); padding-bottom: 12px; }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 4px; }
  .curve-card { padding: 20px; }
}


/* ───────── PRESS STRIP ───────── */
.press-strip-section {
  padding: 32px 0 16px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
}
.press-strip-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 18px;
}
.press-marquee {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.press-track {
  display: flex;
  align-items: center;
  width: max-content;
  opacity: 0.55;
  filter: grayscale(0.7);
  animation: press-scroll 32s linear infinite;
  will-change: transform;
}
.press-track .press-item {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  white-space: nowrap;
  margin-right: 56px;
  flex-shrink: 0;
}
.press-marquee:hover .press-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .press-track { animation: none; }
}
@keyframes press-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}


/* ───────── HOW IT WORKS ───────── */
.how-section { background: var(--bg-soft); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.step-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 24px;
  font-feature-settings: 'tnum';
}
.step-card h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.25;
}
.step-card > p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.card-list {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-muted);
}
.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.step-meta {
  font-size: 13px;
  color: var(--text-light);
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  font-weight: 500;
}
@media (max-width: 880px) {
  .steps-grid { grid-template-columns: 1fr; }
}


/* ───────── WHAT YOU GET ───────── */
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.what-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.what-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.what-card.primary {
  background: linear-gradient(180deg, var(--primary-50) 0%, white 60%);
  border-color: var(--primary-100);
}
.what-card.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.what-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-50);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.what-icon svg { width: 28px; height: 28px; }
.what-card h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 10px;
}
.what-card > p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.what-list {
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
  font-size: 14px;
}
.what-list li {
  padding: 6px 0 6px 22px;
  color: var(--text);
  position: relative;
}
.what-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
@media (max-width: 880px) {
  .what-grid { grid-template-columns: 1fr; }
}


/* ───────── BENEFITS ───────── */
.benefits-section { background: var(--bg-soft); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit {
  padding: 8px 0;
}
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.benefit h4 {
  font-size: 17px;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin-bottom: 6px;
}
.benefit p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.55;
}
@media (max-width: 880px) {
  .benefits-grid { grid-template-columns: 1fr; }
}


/* ───────── FAQ ───────── */
.faq-container {
  max-width: 820px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] {
  border-color: var(--primary-100);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.08);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-weight: 400;
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: '−';
  transform: rotate(0deg);
}
.faq-body {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}
.faq-body p + p { margin-top: 12px; }
.faq-body ul {
  margin-top: 12px;
  padding-left: 0;
}
.faq-body ul li {
  padding: 4px 0 4px 18px;
  position: relative;
}
.faq-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}


/* ───────── FINAL CTA ───────── */
.final-cta { padding: 56px 0 96px; }

.final-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(13, 148, 136, 0.30);
  position: relative;
  overflow: hidden;
}
.final-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.10), transparent 50%);
  pointer-events: none;
}
.final-card h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.15;
}
.final-card p {
  font-size: 17px;
  opacity: 0.92;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.final-card .btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.final-card .btn-primary:hover {
  background: white;
  color: var(--primary-700);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.20);
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  .final-card { padding: 48px 28px; }
}


/* ───────── FOOTER ───────── */
.footer {
  border-top: 1px solid var(--border-soft);
  padding: 40px 0;
  background: var(--bg-soft);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 18px;
}
.footer-disclaimer {
  color: var(--text-light);
  font-size: 13px;
  max-width: 640px;
  line-height: 1.55;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--primary); }
.footer-copy {
  color: var(--text-light);
  font-size: 13px;
  margin-top: 8px;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  width: 100%;
  max-width: 720px;
  margin: 8px 0 4px;
  text-align: left;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.footer-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--primary); }


/* ───────── RESPONSIVE ───────── */
@media (max-width: 720px) {
  section { padding: 64px 0; }
  .hero { padding: 64px 0 48px; }
  .section-header { margin-bottom: 40px; }
  .cta-row .btn { flex: 1; }
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .footer-col { align-items: center; }
}


/* ══════════════════════════════════════════════
   TEST PAGE
   ══════════════════════════════════════════════ */

.test-main {
  background: var(--bg-soft);
  min-height: calc(100vh - 64px);
  padding: 48px 0 96px;
}
.test-state.hidden { display: none; }
.test-container {
  max-width: 720px;
  margin: 0 auto;
}
.test-container-wide {
  max-width: 880px;
}
.muted { color: var(--text-muted); font-size: 14.5px; }


/* ─── INTRO ─── */
.test-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow);
}
.intro-card {
  text-align: center;
  padding: 48px 40px;
}
.intro-card h1 {
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 28px;
}
.intro-checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  max-width: 380px;
  margin: 0 auto 32px;
}
.intro-checks li {
  position: relative;
  padding-left: 32px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--text);
}
.intro-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--primary);
  border-radius: 999px;
}
.intro-checks li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 9px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}

.intro-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
#name-input {
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  transition: border-color 0.15s, box-shadow 0.15s;
}
#name-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-50);
}
.intro-stat {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 8px;
}
.intro-stat b {
  color: var(--text);
  font-weight: 700;
}


/* ─── QUESTION ─── */
.test-progress {
  margin-bottom: 24px;
}
.progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.progress-meta-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-wrap: wrap;
}
.test-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted, #475569);
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  padding: 5px 10px;
  border-radius: 999px;
  font-feature-settings: 'tnum';
  font-variant-numeric: tabular-nums;
}
.test-timer-icon {
  width: 14px;
  height: 14px;
  color: var(--primary-700, #0F766E);
  flex-shrink: 0;
}
.domain-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary-700);
  background: var(--primary-100);
  padding: 6px 12px;
  border-radius: 999px;
}
.progress-count {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  font-feature-settings: 'tnum';
}
.progress-count .muted { font-weight: 400; }
.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--border-soft);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.question-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}
.question-stem {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
}
.question-stem b { font-weight: 700; }
.question-stem em { font-family: 'Instrument Serif', Georgia, serif; font-size: 1.04em; }

.question-visual {
  margin-bottom: 28px;
}
.symbol-row {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  font-feature-settings: 'tnum';
}
.symbol-row-lg { font-size: 32px; }
.symbol-row .blank {
  display: inline-block;
  min-width: 32px;
  color: var(--primary);
  font-weight: 700;
}
.matrix-grid {
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 8px;
  font-size: 22px;
  font-weight: 600;
}
.matrix-grid td {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 18px 22px;
  text-align: center;
  min-width: 80px;
  letter-spacing: 0.05em;
}
.matrix-grid td.blank-cell {
  background: var(--primary-50);
  color: var(--primary);
  font-size: 28px;
  font-weight: 700;
}

.question-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.question-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.question-options-grid .option-btn {
  justify-content: center;
  padding: 18px;
  min-height: 110px;
}
.option-svg {
  display: block;
  width: 80px;
  height: 80px;
  color: var(--text);
}
.option-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.question-visual-svg {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px;
}
.question-visual-svg .stim-svg {
  width: 100%;
  max-width: 360px;
  height: auto;
  color: var(--text);
}

/* ─── Study phase (memory mini) ─── */
.question-study {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 24px 20px;
  margin-bottom: 28px;
  text-align: center;
}
.question-study.hidden { display: none; }
.study-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.study-content {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  font-feature-settings: 'tnum';
  line-height: 1.3;
  word-spacing: 0.15em;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 10px;
}
.study-content svg {
  display: block;
  margin: 0 auto;
}
.study-content .study-pair {
  display: inline-block;
  padding: 6px 14px;
  margin: 4px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm, 8px);
  font-size: 22px;
  letter-spacing: 0.02em;
}
.study-countdown {
  margin-top: 24px;
  height: 4px;
  background: var(--border-soft);
  border-radius: 2px;
  overflow: hidden;
}
.study-countdown-fill {
  height: 100%;
  width: 100%;
  background: var(--primary);
  border-radius: 2px;
}

.num-matrix {
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 10px;
  font-size: 28px;
  font-weight: 700;
  font-feature-settings: 'tnum';
}
.num-matrix td {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 18px 24px;
  text-align: center;
  min-width: 60px;
  color: var(--text);
}
.num-matrix td.q {
  background: var(--primary-50);
  color: var(--primary);
  border-color: var(--primary);
}
.option-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s, transform 0.05s;
}
.option-btn:hover {
  border-color: var(--primary);
  background: var(--primary-50);
}
.option-btn:active {
  transform: scale(0.995);
}
.option-btn.selected {
  border-color: var(--primary);
  background: var(--primary-50);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.10);
}
.option-letter {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--bg-mute);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  transition: background-color 0.15s, color 0.15s;
}
.option-btn:hover .option-letter,
.option-btn.selected .option-letter {
  background: var(--primary);
  color: white;
}
.option-text { line-height: 1.5; }

.question-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.question-actions #btn-back {
  flex-shrink: 0;
}
.question-actions #btn-next {
  margin-left: auto;
}
.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}


/* ─── INTERSTITIAL (mid-quiz dopamine card) ─── */
.interstitial-card {
  text-align: center;
  padding: 56px 48px;
}
.int-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
}
.int-icon svg { width: 100%; height: 100%; }
.interstitial-card h2 {
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}
.interstitial-card h2 .hl,
.interstitial-card h2 .hl-lt {
  color: var(--accent);
  font-weight: 800;
}
.interstitial-card h2 .emoji {
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  margin-left: 4px;
  filter: saturate(1.2);
}
.int-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 480px;
  margin: 0 auto 32px;
}
.btn-block { width: 100%; }


/* ─── SOCIAL PROOF ─── */
.social-card {
  text-align: center;
  padding: 48px;
}
.social-card h2 {
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 28px;
}
.hl-big {
  color: var(--accent);
  font-weight: 800;
}
.testimonial {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: left;
  margin-bottom: 24px;
}
.stars {
  color: #F59E0B;
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 10px;
}
.testimonial-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.testimonial-body {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.testimonial-author {
  font-size: 13px;
  color: var(--text-light);
}
.testimonial-author b {
  color: var(--text);
  font-weight: 600;
}
.social-stats {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.social-stats li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.social-stats svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.press-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  margin-top: 28px;
  opacity: 0.55;
  filter: grayscale(0.6);
}
.press-item {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}


/* ─── WARNING MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: modalFade 0.25s ease;
}
.modal-overlay.hidden {
  display: none;
}
@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.35);
  animation: modalPop 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalPop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 14px;
}
.modal-body {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 20px;
}
.modal-confidential {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  text-align: left;
  margin-bottom: 22px;
}
.modal-confidential svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Engagement modal (mid-calc yes/no question) */
.engagement-card {
  background: #FFF1D6;
  max-width: 480px;
  padding: 32px 28px;
}
.engagement-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.engagement-icon svg {
  width: 100%;
  height: 100%;
}
.engagement-question {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  margin: 0 0 24px;
}
.engagement-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.engagement-actions .btn {
  width: 100%;
  font-weight: 700;
}


/* ─── DEMOGRAPHIC ─── */
.demo-title {
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.2;
  margin: 12px 0 8px;
}
.demo-sub {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.demo-counter {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary-700);
  background: var(--primary-100);
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: 6px;
}


/* ─── CALCULATING ─── */
.calc-card {
  text-align: center;
  padding: 56px 48px;
}
.calc-card h2 {
  font-size: clamp(26px, 3.5vw, 32px);
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 8px;
}
.calc-sub {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 32px;
}
.calc-bar-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto 28px;
}
.calc-bar {
  flex: 1;
  height: 10px;
  background: var(--bg-mute);
  border-radius: 999px;
  overflow: hidden;
}
.calc-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
  transition: width 0.1s linear;
}
.calc-percent {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  font-feature-settings: 'tnum';
  min-width: 40px;
  text-align: right;
}
.calc-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  margin: 0 auto;
  text-align: left;
}
.calc-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s;
}
.calc-check-mark {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: white;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.3s, background-color 0.3s;
}
.calc-check.done {
  color: var(--text);
}
.calc-check.done .calc-check-mark {
  background: var(--primary);
  border-color: var(--primary);
}
.calc-check.done .calc-check-mark::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 5px;
  width: 8px;
  height: 4px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}


/* ─── RESULTS ─── */
.results-hero {
  text-align: center;
  background: linear-gradient(180deg, white 0%, var(--primary-50) 100%);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-xl);
  padding: 56px 32px 48px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.results-hero .eyebrow {
  margin-bottom: 14px;
}
.results-hero h1 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.iq-score-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.iq-number {
  font-size: clamp(96px, 14vw, 144px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-feature-settings: 'tnum';
}
.iq-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.iq-percentile {
  font-size: 18px;
  color: var(--text);
  font-weight: 600;
}
.iq-percentile sup { font-weight: 400; opacity: 0.6; }
.iq-band {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary-700);
  background: var(--primary-100);
  padding: 6px 14px;
  border-radius: 999px;
}

.results-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.results-card-header {
  margin-bottom: 24px;
}
.results-card-header h2 {
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 6px;
}

.domain-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.domain-bar-row {
  display: grid;
  grid-template-columns: 200px 1fr 60px;
  align-items: center;
  gap: 16px;
}
.domain-bar-label {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}
.domain-bar-track {
  height: 10px;
  background: var(--bg-mute);
  border-radius: 999px;
  overflow: hidden;
}
.domain-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.domain-bar-score {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: right;
  font-feature-settings: 'tnum';
}
@media (max-width: 600px) {
  .domain-bar-row { grid-template-columns: 1fr 60px; }
  .domain-bar-track { grid-column: 1 / -1; }
}

.results-curve-card .curve-svg { margin-top: 8px; }


/* ─── CERTIFICATE ─── */
.certificate {
  position: relative;
  background:
    linear-gradient(135deg, #FAFEFD 0%, white 50%, var(--primary-50) 100%);
  border: 1.5px solid var(--primary-100);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.08);
}
.cert-corner {
  position: absolute;
  width: 64px;
  height: 64px;
  border: 2px solid var(--primary);
  opacity: 0.6;
}
.cert-tl { top: 16px; left: 16px;  border-right: 0; border-bottom: 0; border-top-left-radius: 8px; }
.cert-tr { top: 16px; right: 16px; border-left: 0;  border-bottom: 0; border-top-right-radius: 8px; }
.cert-bl { bottom: 16px; left: 16px;  border-right: 0; border-top: 0; border-bottom-left-radius: 8px; }
.cert-br { bottom: 16px; right: 16px; border-left: 0;  border-top: 0; border-bottom-right-radius: 8px; }

.cert-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cert-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 17px;
  color: var(--text);
}
.cert-brand-text { letter-spacing: -0.02em; }

.cert-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: clamp(24px, 3.5vw, 34px);
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}
.cert-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 0 auto 24px;
}
.cert-divider-thin {
  width: 200px;
  height: 1px;
  background: var(--border);
  margin: 24px auto;
}
.cert-body { padding: 8px 0; }
.cert-awarded {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.cert-name {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.1;
}
.cert-name.cert-name-editing {
  outline: 2px solid #0D9488;
  outline-offset: 4px;
  border-radius: 4px;
  background: rgba(13, 148, 136, 0.04);
  cursor: text;
}
.cert-name.cert-name-editing:focus {
  outline-color: #0D9488;
}
.cert-statement {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 480px;
  margin: 0 auto 12px;
}
.cert-score {
  font-size: clamp(64px, 10vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin: 8px 0 14px;
  font-feature-settings: 'tnum';
}
.cert-detail {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.cert-detail span { color: var(--text); font-weight: 600; }

.cert-footer {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin-bottom: 18px;
}
.cert-footer-label {
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.cert-footer-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  font-feature-settings: 'tnum';
}
.cert-disclaimer {
  font-size: 11px;
  color: var(--text-light);
  font-style: italic;
  letter-spacing: 0.01em;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.5;
}

.results-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.results-disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
  max-width: 720px;
  margin: 16px auto 0;
}
.results-disclaimer strong { color: var(--text); }


/* ─── PRINT (certificate only) ─── */
@media print {
  body * { visibility: hidden; }
  .nav { display: none; }
  body.printing-cert .certificate,
  body.printing-cert .certificate * { visibility: visible; }
  body.printing-cert .certificate {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    margin: 0;
    border: none;
    box-shadow: none;
    padding: 64px 80px;
  }
  body.printing-cert .cert-corner { opacity: 0.8; }
}

@media (max-width: 720px) {
  .test-card { padding: 32px 24px; }
  .question-card { padding: 28px 20px; }
  .results-hero { padding: 40px 24px 32px; }
  .certificate { padding: 40px 24px; }
  .cert-corner { width: 40px; height: 40px; top: 10px; left: 10px; }
  .cert-tr { left: auto; right: 10px; }
  .cert-bl { top: auto; bottom: 10px; }
  .cert-br { top: auto; left: auto; bottom: 10px; right: 10px; }
  .matrix-grid { font-size: 18px; }
  .matrix-grid td { padding: 14px 16px; }
  .symbol-row { font-size: 22px; padding: 18px 12px; }
}


/* ══════════════════════════════════════════════
   ARTICLE PAGES
   ══════════════════════════════════════════════ */

.article-main {
  background: var(--bg);
  padding-bottom: 80px;
}
.article-container {
  max-width: 760px;
  margin: 0 auto;
}
.article-header {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, var(--primary-50) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 56px;
}
.article-breadcrumb {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-700);
  margin-bottom: 20px;
}
.article-breadcrumb:hover { color: var(--primary); }
.article-breadcrumb + .article-breadcrumb { margin-left: 14px; }
.article-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 600;
  color: var(--text);
  margin: 14px 0 16px;
}
.article-deck {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 620px;
}
.article-meta {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
}
.article-meta b { color: var(--text); font-weight: 600; }
.article-meta .article-dot { color: var(--text-light); }

.article-toc {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 48px;
}
.toc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-700);
  margin-bottom: 12px;
}
.toc-list {
  margin: 0;
  padding-left: 18px;
  list-style: decimal;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.toc-list li { color: var(--text-light); font-size: 14px; }
.toc-list a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.toc-list a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary-100);
}

.article-content {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
}
.article-content .lede-p {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text);
  margin-bottom: 22px;
}
.article-content p {
  margin-bottom: 18px;
}
.article-content h2 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 24px;
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin: 48px 0 14px;
}
.article-content h3 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 18px;
  letter-spacing: -0.01em;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin: 28px 0 8px;
}
.article-content em {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1em;
}
.article-content strong { font-weight: 600; }
.article-content a {
  color: var(--primary-700);
  text-decoration: underline;
  text-decoration-color: var(--primary-100);
  text-underline-offset: 3px;
}
.article-content a:hover { text-decoration-color: var(--primary); }

.article-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.article-list li {
  position: relative;
  padding-left: 26px;
  line-height: 1.6;
}
.article-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.article-numbered {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  counter-reset: an;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.article-numbered li {
  position: relative;
  padding-left: 44px;
  line-height: 1.6;
  counter-increment: an;
}
.article-numbered li::before {
  content: counter(an);
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--primary-50);
  color: var(--primary-700);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 15px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.article-table th,
.article-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.article-table th {
  background: var(--bg-soft);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.article-table tr:last-child td { border-bottom: none; }

.article-callout {
  background: var(--primary-50);
  border-left: 4px solid var(--primary);
  border-radius: 6px;
  padding: 20px 24px;
  margin: 32px 0;
  font-family: 'Source Serif 4', Georgia, serif;
}
.callout-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-700);
  margin-bottom: 8px;
}
.article-callout p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text);
}

.article-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin: 40px 0;
  text-align: center;
  box-shadow: 0 8px 32px rgba(13, 148, 136, 0.18);
  font-family: 'Manrope', sans-serif;
}
.article-cta h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 8px;
  color: white;
}
.article-cta p {
  font-size: 15.5px;
  line-height: 1.55;
  opacity: 0.94;
  margin: 0 auto 20px;
  max-width: 460px;
}
.article-cta .btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.article-cta .btn-primary:hover {
  background: white;
  color: var(--primary-700);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.16);
}
.article-cta-final { margin-top: 56px; }
.article-cta .cta-row {
  justify-content: center;
  margin: 0;
  flex-wrap: wrap;
}
.article-cta .btn-ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.article-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
}

.article-faq {
  border-bottom: 1px solid var(--border-soft);
  padding: 14px 0;
  font-family: 'Manrope', system-ui, sans-serif;
}
.article-faq:first-of-type { border-top: 1px solid var(--border-soft); }
.article-faq summary {
  list-style: none;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.article-faq summary::-webkit-details-marker { display: none; }
.article-faq summary::after {
  content: '+';
  color: var(--primary);
  font-size: 20px;
  font-weight: 400;
}
.article-faq[open] summary::after { content: '−'; }
.article-faq p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 10px 0 6px;
}

.article-refs {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-refs li em {
  font-family: inherit;
  font-style: italic;
}


/* ─── Articles hub page ─── */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 40px;
}
.hub-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px 20px;
  text-decoration: none !important;
  color: var(--text);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.hub-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.hub-card-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-700);
  margin-bottom: 8px;
}
.hub-card h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 8px;
}
.hub-card p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 14px;
  flex-grow: 1;
}
.hub-card-link {
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.005em;
}
@media (max-width: 720px) {
  .hub-grid { grid-template-columns: 1fr; gap: 12px; }
  .hub-card { padding: 20px 22px 18px; }
}


/* ─── Sample questions page ─── */
.sample-q {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 22px;
  margin: 28px 0;
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(0,0,0,0.04));
}
.sample-q .eyebrow {
  display: block;
  margin-bottom: 12px;
}
.sample-stem {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 18px;
  line-height: 1.4;
}
.sample-display {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-feature-settings: 'tnum';
  color: var(--text);
  margin-bottom: 20px;
}
.sample-premises {
  background: var(--bg-soft);
  border-left: 3px solid var(--primary);
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 20px;
}
.sample-premises p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 4px 0;
  color: var(--text);
}
.sample-options {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
}
.sample-options li {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--text);
  padding: 6px 0;
}
.sample-options li strong {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--text-muted);
  margin-right: 8px;
}
.sample-reveal {
  border-top: 1px solid var(--border-soft);
  padding-top: 14px;
  margin-top: 6px;
}
.sample-reveal summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--primary);
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sample-reveal summary::-webkit-details-marker { display: none; }
.sample-reveal summary::after {
  content: '▸';
  font-size: 12px;
  transition: transform 0.15s;
}
.sample-reveal[open] summary::after { transform: rotate(90deg); }
.sample-reveal p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text);
  margin: 12px 0 8px;
}
.sample-domain-note {
  font-family: 'Manrope', sans-serif !important;
  font-size: 13.5px !important;
  color: var(--text-muted) !important;
  border-top: 1px dashed var(--border-soft);
  padding-top: 12px;
  margin-top: 14px !important;
}
.sample-domain-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.sample-domain-note a:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .sample-q { padding: 22px 18px 18px; }
  .sample-stem { font-size: 18px; }
  .sample-display { font-size: 22px; padding: 18px 12px; }
  .sample-options { grid-template-columns: 1fr; gap: 4px; }
}


/* ════════════════════════════════
   MINI TESTS (spatial, pattern, …)
   ════════════════════════════════ */

.mini-intro-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  max-width: 720px;
}

.mini-intro-card { text-align: center; }
.mini-intro-deck {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 22px;
  line-height: 1.55;
}

.mini-seo-content {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
}
.mini-seo-content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.mini-seo-content h2:not(:first-of-type) { margin-top: 28px; }
.mini-seo-content p {
  font-family: 'Manrope', sans-serif;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 12px;
}
.mini-seo-content a {
  color: var(--primary, #0D9488);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
.mini-seo-content .article-list {
  list-style: disc;
  padding-left: 22px;
  margin: 0;
}
.mini-seo-content .article-list li {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 8px;
  color: var(--text);
}

@media (max-width: 600px) {
  .mini-seo-content { padding: 24px 22px; }
}


/* Result card */
.mini-result-card {
  text-align: center;
  padding: 40px 32px 32px;
}
.mini-score-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 14px 0 18px;
}
.mini-score {
  font-family: 'Manrope', sans-serif;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.mini-score-divider {
  margin: 0 4px;
  color: var(--text-muted);
  font-weight: 500;
}
.mini-score-meta {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.result-band {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.result-band.band-exceptional { background: #DCFCE7; color: #14532D; }
.result-band.band-strong      { background: #D1FAE5; color: #065F46; }
.result-band.band-average     { background: #FEF3C7; color: #78350F; }
.result-band.band-developing  { background: #FEE2E2; color: #7F1D1D; }

.mini-result-blurb {
  font-family: 'Manrope', sans-serif;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text);
  max-width: 540px;
  margin: 0 auto 22px;
}

.result-strip {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 6px 0 22px;
  flex-wrap: wrap;
}
.result-strip .dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-block;
}
.result-strip .dot.right { background: #10B981; }
.result-strip .dot.wrong { background: #FCA5A5; }


/* Reuse cta-card for the "take full test" callout */
.cta-card {
  margin-top: 18px;
  padding: 28px 32px 32px;
}
.cta-card h3 {
  margin: 6px 0 12px;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.cta-card .card-list { margin-bottom: 18px; }


/* ════════════════════════════════
   INLINE MID-PAGE CTAs
   ════════════════════════════════ */

.inline-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 56px auto 0;
  text-align: center;
}
.inline-cta .btn { min-width: 220px; }
.inline-cta-meta {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.dot-live {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: dot-pulse 1.6s ease-out infinite;
}
@keyframes dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.inline-cta-bold {
  margin-top: 64px;
  padding: 32px 28px;
  border-radius: var(--radius-lg, 18px);
  background:
    radial-gradient(circle at 0% 0%, rgba(13,148,136,0.08), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(6,182,212,0.06), transparent 50%),
    var(--bg-soft);
  border: 1px solid rgba(13, 148, 136, 0.18);
  gap: 18px;
}
.inline-cta-headline {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
  max-width: 540px;
  line-height: 1.3;
}


/* ════════════════════════════════
   COGNITIVE ARCHETYPE CARD
   ════════════════════════════════ */

.archetype-card {
  background:
    radial-gradient(circle at top right, rgba(13,148,136,0.08), transparent 55%),
    radial-gradient(circle at bottom left, rgba(245,158,11,0.06), transparent 50%),
    #FFFFFF;
  border: 1px solid rgba(13,148,136,0.18);
  position: relative;
  overflow: hidden;
}

.archetype-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary, #0D9488);
  margin-bottom: 12px;
}
.archetype-mark {
  font-size: 14px;
  color: #F59E0B;
}

.archetype-name {
  font-family: 'Instrument Serif', 'Manrope', serif;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  background: linear-gradient(120deg, #0D9488 0%, #06B6D4 60%, #0D9488 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.archetype-rule {
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #F59E0B, #FBBF24);
  margin: 0 0 18px;
}

.archetype-tagline {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.archetype-description {
  font-family: 'Manrope', sans-serif;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 24px;
  max-width: 620px;
}

.archetype-narrative {
  margin: 0 0 22px;
  padding: 18px 20px 20px;
  background: rgba(13,148,136,0.04);
  border: 1px solid rgba(13,148,136,0.12);
  border-radius: 12px;
}
.archetype-narrative-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.archetype-narrative-body {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}
.archetype-narrative-body p {
  margin: 0 0 12px;
}
.archetype-narrative-body p:last-child {
  margin-bottom: 0;
}
.archetype-narrative-body p:first-child {
  font-weight: 600;
  color: var(--text);
}

.archetype-strengths {
  background: rgba(13,148,136,0.05);
  border: 1px solid rgba(13,148,136,0.15);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 0 0 18px;
}
.archetype-strengths-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.archetype-strengths-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.archetype-strengths-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
}
.archetype-strength-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.archetype-strength-score {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary, #0D9488);
  font-variant-numeric: tabular-nums;
}

.archetype-famous {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.archetype-famous-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.archetype-famous-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--text);
  letter-spacing: -0.005em;
}
.archetype-famous-sep {
  color: #CBD5E1;
  font-style: normal;
}

@media (max-width: 600px) {
  .archetype-name { font-size: 38px; }
  .archetype-tagline { font-size: 16.5px; }
  .archetype-famous-list { font-size: 19px; }
}


/* ════════════════════════════════
   PAYWALL (gates results)
   ════════════════════════════════ */

#state-paywall {
  background: linear-gradient(180deg, #FAF6EE 0%, #F8F2E5 100%);
  min-height: 100vh;
  padding-bottom: 64px;
}

/* — TOP TICKER — */
.paywall-ticker {
  background: #F0E8D4;
  border-bottom: 1px solid #E2D7BE;
  padding: 10px 16px;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  color: #4B4233;
  display: flex;
  justify-content: center;
  align-items: center;
}
.paywall-ticker-entry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.25s ease;
}
.paywall-ticker-entry.paywall-ticker-fading { opacity: 0; }
.paywall-ticker-entry b { font-weight: 700; color: #2C2620; }
.paywall-ticker-flag { font-size: 16px; }
.paywall-ticker-iq {
  background: #2F4742;
  color: #E4F2EE;
  font-weight: 700;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  margin-left: 4px;
}

/* — STICKY OFFER BAR — */
.paywall-bar {
  background: #FAF1DD;
  border-bottom: 1px solid #E8DCC0;
  padding: 12px 16px;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 30;
}
.paywall-bar-price {
  color: #0D9488;
  font-weight: 700;
}
.paywall-bar-offer {
  color: #4B4233;
  margin-left: 4px;
}
.paywall-bar-timer {
  display: inline-block;
  margin-left: 8px;
  color: #0B1F1C;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  min-width: 42px;
}

.paywall-main {
  padding-top: 32px;
}

/* — HERO — */
.paywall-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 32px 0 40px;
}
.paywall-hero-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0B1F1C;
  margin-bottom: 8px;
}
.paywall-hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 800;
  color: #0B1F1C;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.paywall-hero-title .hl-big {
  background: linear-gradient(90deg, #0D9488, #06B6D4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.paywall-hero-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 16.5px;
  line-height: 1.55;
  color: #4B5C5A;
  margin: 0 0 22px;
  max-width: 480px;
}
.paywall-hero-meta {
  margin-top: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: #6F7D7B;
}
.paywall-hero-callout {
  background: #FFFFFF;
  border: 1px solid rgba(13,148,136,0.18);
  border-radius: 16px;
  padding: 28px 28px 24px;
  text-align: center;
  box-shadow: 0 12px 32px -16px rgba(13,148,136,0.18);
}
.paywall-callout-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6F7D7B;
  margin-bottom: 14px;
}
.paywall-callout-pct {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  color: #0B1F1C;
  font-weight: 600;
  line-height: 1.3;
}
.paywall-callout-num {
  display: inline-block;
  font-size: 88px;
  line-height: 1;
  font-weight: 800;
  background: linear-gradient(120deg, #0D9488, #06B6D4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 6px;
}
.paywall-callout-pctsign {
  font-size: 44px;
  font-weight: 800;
  background: linear-gradient(120deg, #0D9488, #06B6D4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.paywall-callout-line {
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  color: #4B5C5A;
  margin-top: 4px;
}
.paywall-callout-foot {
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  color: #6F7D7B;
  margin-top: 14px;
  line-height: 1.45;
}

/* — PRESS ROW (paywall version) — */
.paywall-press-row {
  margin: 8px 0 32px;
  border: 0;
  padding: 0;
}
.paywall-press-marquee {
  margin: 8px 0 32px;
}

/* — PRICING CARD — */
.paywall-pricing-card {
  background: #FFFFFF;
  margin-bottom: 28px;
}
.paywall-pricing-title {
  font-family: 'Manrope', sans-serif;
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  color: #0B1F1C;
  margin: 0 0 28px;
  letter-spacing: -0.015em;
}
.paywall-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.paywall-pricing-left,
.paywall-pricing-right {
  background: #FAF6EE;
  border: 1px solid #ECE3CE;
  border-radius: 14px;
  padding: 22px 22px 26px;
}
.paywall-stat-block {
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  color: #4B4233;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ECE3CE;
}
.paywall-stat-block b { color: #0B1F1C; font-weight: 700; }

.paywall-trust-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6F7D7B;
  margin-bottom: 14px;
}
.paywall-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.paywall-trust-list li {
  font-family: 'Manrope', sans-serif;
}
.paywall-trust-item-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #0B1F1C;
  margin-bottom: 3px;
}
.paywall-trust-item-body {
  font-size: 13px;
  line-height: 1.5;
  color: #4B5C5A;
}

.paywall-benefit-checks {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.paywall-benefit-checks li {
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  color: #0B1F1C;
  padding-left: 26px;
  position: relative;
  line-height: 1.45;
}
.paywall-benefit-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0D9488;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.paywall-due-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid #ECE3CE;
  padding-top: 14px;
  margin-top: 4px;
}
.paywall-due-label {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #4B4233;
  font-weight: 600;
}
.paywall-due-price {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #0B1F1C;
  letter-spacing: -0.01em;
}
.paywall-due-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  color: #6F7D7B;
  margin: 4px 0 16px;
}
.paywall-secure {
  margin-top: 10px;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: #6F7D7B;
}

/* — LOCKED CARDS (blurred report + cert) — */
.paywall-locked-card {
  background: #FFFFFF;
  margin-bottom: 24px;
}
.paywall-locked-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #0B1F1C;
}
.paywall-locked-header h2 {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
}
.paywall-locked-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0D9488;
}
.paywall-locked-lede {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #4B5C5A;
  margin: 0 0 18px;
  max-width: 760px;
}
.paywall-blur-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 180px;
}
.paywall-blur-content {
  filter: blur(7px);
  user-select: none;
  pointer-events: none;
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  color: #4B5C5A;
  line-height: 1.6;
  padding: 4px 4px 28px;
}
.paywall-blur-content p { margin: 0 0 10px; }
.paywall-blur-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 60%, rgba(255,255,255,0.85) 100%);
  text-align: center;
  pointer-events: none;
}
.paywall-blur-overlay .paywall-locked-icon { color: #0D9488; }
.paywall-blur-overlay-text {
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #0D9488;
  max-width: 240px;
  line-height: 1.4;
}

/* certificate version */
.paywall-cert-wrap {
  min-height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  background: #FAF6EE;
}
.paywall-cert-blur {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
  transform: scale(0.95);
}
.paywall-cert-overlay {
  background: linear-gradient(180deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.7) 100%);
  pointer-events: none;
}
.paywall-cert-overlay .btn { pointer-events: auto; }

/* — BENEFITS COLUMNS — */
.paywall-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 28px 0;
}
.paywall-benefits-col {
  background: #FFFFFF;
  border: 1px solid rgba(13,148,136,0.12);
  border-radius: 14px;
  padding: 22px 24px;
}
.paywall-benefits-col h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 12px;
  color: #0B1F1C;
}
.paywall-benefits-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.paywall-benefits-col li {
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  color: #0B1F1C;
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}
.paywall-benefits-col li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(13,148,136,0.12);
  color: #0D9488;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* — REVIEWS — */
.paywall-reviews-block {
  margin: 28px 0;
}
.paywall-reviews-title {
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 22px;
  color: #0B1F1C;
}
.paywall-reviews {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.paywall-review {
  background: #FFFFFF;
  border: 1px solid rgba(13,148,136,0.10);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: 'Manrope', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 160px;
}
.paywall-review-stars {
  color: #00B67A;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.paywall-review-title {
  font-size: 14px;
  font-weight: 700;
  color: #0B1F1C;
  line-height: 1.3;
}
.paywall-review-body {
  font-size: 12.5px;
  line-height: 1.5;
  color: #4B5C5A;
  margin: 0;
  flex: 1;
}
.paywall-review-foot {
  font-size: 11.5px;
  color: #6F7D7B;
}
.paywall-reviews-foot {
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  color: #4B5C5A;
  margin-top: 16px;
}

/* — FINAL CTA — */
.paywall-final-cta {
  margin: 32px 0 12px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.paywall-final-meta {
  margin-top: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  color: #6F7D7B;
}

/* — RESPONSIVE — */
@media (max-width: 900px) {
  .paywall-hero { grid-template-columns: 1fr; gap: 28px; padding: 24px 0 28px; }
  .paywall-hero-title { font-size: 34px; }
  .paywall-pricing-grid { grid-template-columns: 1fr; gap: 18px; }
  .paywall-pricing-title { font-size: 24px; }
  .paywall-benefits { grid-template-columns: 1fr; gap: 16px; }
  .paywall-reviews { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .paywall-callout-num { font-size: 64px; }
  .paywall-callout-pctsign { font-size: 32px; }
  .paywall-due-price { font-size: 24px; }
  .paywall-reviews { grid-template-columns: 1fr; }
  .paywall-bar { font-size: 13px; }
  .paywall-ticker { font-size: 12.5px; padding: 8px 12px; }
  .paywall-locked-header h2 { font-size: 19px; }
  .paywall-cert-blur { transform: scale(0.7); }
}
