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

:root {
  --autism-color: #9b85c9;
  --autism-dim: rgba(155, 133, 201, 0.12);
  --adhd-color: #d4935c;
  --adhd-dim: rgba(212, 147, 92, 0.10);
  --overlap-color: #6db88a;
  --bg: #141418;
  --surface: #1c1c22;
  --surface-2: #242430;
  --text: #dcdce4;
  --text-muted: #a0a0b0;
  --text-faint: #6e6e80;
  --border: #2a2a38;
  --radius: 12px;
  --focus-ring: 0 0 0 2px var(--autism-color);
}

::selection {
  background: var(--autism-color);
  color: var(--bg);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.65;
}

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 24px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--surface);
  color: var(--text);
  padding: 12px 20px;
  border-radius: 8px;
  z-index: 1000;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* Global Focus Styles */
:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

button:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Screens */
.screen { display: none; }
.screen.active { display: block; animation: fadeIn 0.35s ease-out; }

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

/* Hero / Landing */
.hero {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.highlight {
  color: var(--autism-color);
}

.subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 420px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* Venn Diagram */
.venn {
  position: relative;
  width: 240px;
  height: 180px;
  margin-bottom: 32px;
}

.venn-circle {
  position: absolute;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venn-asd {
  left: 0;
  background: rgba(155, 133, 201, 0.12);
  border: 1.5px solid rgba(155, 133, 201, 0.35);
  animation: vennBreatheLeft 4s ease-in-out infinite;
}

.venn-adhd {
  right: 0;
  background: rgba(212, 147, 92, 0.10);
  border: 1.5px solid rgba(212, 147, 92, 0.30);
  animation: vennBreatheRight 4s ease-in-out infinite;
}

@keyframes vennBreatheLeft {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-8px); }
}

@keyframes vennBreatheRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

.venn-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text-faint);
}

.venn-asd .venn-label { padding-right: 30px; }
.venn-adhd .venn-label { padding-left: 30px; }

.venn-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.venn-center span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.3px;
  opacity: 0;
  animation: vennCenterFade 1s ease-out 1.5s forwards;
}

@keyframes vennCenterFade {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-faint);
  line-height: 1.4;
  max-width: 110px;
  text-align: center;
}

/* Social Proof */
.social-proof {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-bottom: 20px;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.social-proof.visible {
  opacity: 1;
}

.social-proof .proof-count {
  color: var(--text-muted);
  font-weight: 600;
}

.trust-line {
  font-size: 0.8rem;
  color: var(--text-faint);
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}

.hero-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* Buttons */
.btn-primary {
  background: var(--autism-color);
  color: var(--bg);
  border: none;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary:hover:not(:disabled) {
  opacity: 0.85;
}

.btn-primary:focus-visible {
  box-shadow: var(--focus-ring);
}

.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-secondary {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 14px 28px;
  min-height: 44px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.btn-secondary:hover:not(:disabled) {
  color: var(--text);
  border-color: var(--text-faint);
}

.btn-secondary:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Progress Bar */
.progress-bar {
  width: 100%;
  height: 3px;
  background: var(--surface-2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background: var(--autism-color);
  border-radius: 2px;
  transition: width 0.4s ease-out;
  width: 0%;
}

.progress-text {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-bottom: 6px;
}


/* Question Card */
.question-card {
  padding: 28px 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  animation: slideIn 0.25s ease-out;
}

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

.question-card h2 {
  font-size: 1.15rem;
  font-weight: 500;
  min-height: 4.8em;
  margin-bottom: 24px;
  line-height: 1.6;
}

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

.option {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  min-height: 44px;
  font-size: 0.92rem;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s;
  font-family: inherit;
}

.option:hover {
  border-color: var(--text-faint);
  background: var(--surface-2);
}

.option:focus-visible {
  box-shadow: var(--focus-ring);
}

.option.selected {
  border-color: var(--autism-color);
  background: var(--autism-dim);
  animation: optionPulse 0.2s ease-out;
}

@keyframes optionPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.015); }
  100% { transform: scale(1); }
}

.adhd-section .option.selected {
  border-color: var(--adhd-color);
  background: var(--adhd-dim);
}

/* Nav Buttons */
.nav-buttons {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

/* Loading Screen */
.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
}

.loading-venn {
  position: relative;
  width: 120px;
  height: 80px;
  margin-bottom: 28px;
}

.loading-circle {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  top: 5px;
}

.loading-asd {
  left: 0;
  border: 1.5px solid rgba(155, 133, 201, 0.3);
  background: rgba(155, 133, 201, 0.06);
  animation: loadingPulseLeft 2s ease-in-out infinite;
}

.loading-adhd {
  right: 0;
  border: 1.5px solid rgba(212, 147, 92, 0.25);
  background: rgba(212, 147, 92, 0.05);
  animation: loadingPulseRight 2s ease-in-out infinite;
}

@keyframes loadingPulseLeft {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(8px); opacity: 1; }
}

@keyframes loadingPulseRight {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(-8px); opacity: 1; }
}

.loading-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  animation: loadingFade 1.5s ease-in-out infinite;
}

@keyframes loadingFade {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Results */
#results > h1 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 32px;
  text-align: center;
}

/* Results Venn Diagram */
.results-venn-container {
  margin-bottom: 32px;
}

.results-venn {
  position: relative;
  width: 290px;
  height: 200px;
  margin: 0 auto;
}

.rv-circle {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.8s ease-out, border-color 0.8s ease-out;
}

.rv-asd {
  left: 0;
  background: rgba(155, 133, 201, 0.06);
  border: 1.5px solid rgba(155, 133, 201, 0.15);
  opacity: 0;
  transform: translateX(-30px);
}

.rv-adhd {
  right: 0;
  background: rgba(212, 147, 92, 0.05);
  border: 1.5px solid rgba(212, 147, 92, 0.12);
  opacity: 0;
  transform: translateX(30px);
}

.rv-asd.animate-in {
  animation: rvSlideLeft 0.7s ease-out forwards;
}

.rv-adhd.animate-in {
  animation: rvSlideRight 0.7s ease-out 0.15s forwards;
}

@keyframes rvSlideLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes rvSlideRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Active states — circles brighten when above threshold */
.rv-asd.above {
  background: rgba(155, 133, 201, 0.14);
  border-color: rgba(155, 133, 201, 0.45);
}

.rv-adhd.above {
  background: rgba(212, 147, 92, 0.12);
  border-color: rgba(212, 147, 92, 0.40);
}

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

.rv-asd .rv-inner { padding-right: 40px; }
.rv-adhd .rv-inner { padding-left: 40px; }

.rv-score {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.rv-name {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text-faint);
}

.rv-asd .rv-name { color: var(--autism-color); }
.rv-adhd .rv-name { color: var(--adhd-color); }

.rv-threshold {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-faint);
  margin-top: 2px;
}

.rv-threshold.above { color: var(--text-muted); }

/* Overlap zone */
.rv-overlap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background-color 0.8s ease-out, box-shadow 0.8s ease-out;
}

.rv-overlap.active {
  background: rgba(155, 133, 201, 0.15);
  box-shadow: 0 0 20px rgba(155, 133, 201, 0.1), 0 0 20px rgba(212, 147, 92, 0.1);
  animation: rvOverlapIn 0.5s ease-out 0.8s both;
}

@keyframes rvOverlapIn {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.rv-overlap-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.3;
  transition: color 0.8s ease-out;
}

.rv-overlap.active .rv-overlap-label {
  color: var(--text);
}

/* Results summary text */
.results-summary {
  text-align: center;
  margin-bottom: 36px;
}

.results-summary p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* Bridge Analysis */
.bridge-section {
  margin-bottom: 40px;
}

.bridge-section > h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.bridge-intro {
  color: var(--text-faint);
  font-size: 0.88rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.bridge-summary {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--text-muted);
  text-align: left;
  background: var(--surface);
}

.bridge-summary.strong {
  border-left: 2px solid var(--autism-color);
}

.bridge-summary.moderate {
  border-left: 2px solid var(--adhd-color);
}

.bridge-summary.minimal {
  border-left: 2px solid var(--text-faint);
}

/* Bridge cards — accordion */
.bridge-card {
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(8px);
}

.bridge-card.stagger-in {
  animation: bridgeStagger 0.3s ease-out forwards;
}

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

.bridge-card:last-child {
  border-bottom: none;
}

.bridge-card.bridge-neither.stagger-in {
  animation: bridgeStaggerDim 0.3s ease-out forwards;
}

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

/* Collapsed row — always visible */
.bridge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.bridge-row:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 6px;
}

.bridge-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.bridge-title {
  font-size: 0.88rem;
  font-weight: 500;
  flex: 1;
  color: var(--text);
}

.bridge-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.dot {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 2px 7px;
  border-radius: 3px;
  background: var(--surface-2);
  color: var(--text-faint);
}

.dot-active.dot-asd {
  background: var(--autism-dim);
  color: var(--autism-color);
}

.dot-active.dot-adhd {
  background: var(--adhd-dim);
  color: var(--adhd-color);
}

.bridge-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  position: relative;
}

.bridge-chevron::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 3px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--text-faint);
  border-bottom: 1.5px solid var(--text-faint);
  transform: rotate(45deg);
  transition: transform 0.2s ease-out;
}

.bridge-card.open .bridge-chevron::after {
  transform: rotate(-135deg);
  top: 6px;
}

/* Expandable body — hidden by default */
.bridge-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-out, opacity 0.2s ease-out;
  opacity: 0;
}

.bridge-card.open .bridge-body {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 14px;
}

.bridge-lenses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lens {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-faint);
}

.lens.lens-active {
  color: var(--text-muted);
}

.lens-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}

.bridge-insight {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-left: 14px;
  border-left: 2px solid var(--autism-color);
}

.bridge-noro {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--text-faint);
  line-height: 1.6;
  padding-left: 14px;
}

/* Links */
.noro-link {
  color: var(--adhd-color);
  text-decoration: none;
  font-weight: 600;
}

.noro-link:hover {
  text-decoration: underline;
}

/* Info Accordions */
.info-accordions {
  margin-bottom: 24px;
}

.info-accordion {
  border-bottom: 1px solid var(--border);
}

.info-accordion:last-child {
  border-bottom: none;
}

.info-accordion summary {
  padding: 14px 0;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-faint);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-user-select: none;
  user-select: none;
}

.info-accordion summary::-webkit-details-marker {
  display: none;
}

.info-accordion summary::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--text-faint);
  border-bottom: 1.5px solid var(--text-faint);
  transform: rotate(45deg);
  transition: transform 0.2s ease-out;
  flex-shrink: 0;
  margin-left: 12px;
}

.info-accordion[open] summary::after {
  transform: rotate(-135deg);
}

.info-accordion summary:hover {
  color: var(--text-muted);
}

.accordion-body {
  padding: 0 0 16px;
}

.accordion-body p {
  font-size: 0.84rem;
  color: var(--text-faint);
  line-height: 1.7;
}

/* Resources */
.resources {
  display: none;
  padding: 20px 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--border);
}

.resources.visible {
  display: block;
}

.resources h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.resources ul {
  list-style: none;
  padding: 0;
}

.resources li {
  font-size: 0.84rem;
  color: var(--text-faint);
  line-height: 1.6;
  padding: 6px 0;
}

.resources li a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.resources li a:hover {
  color: var(--text);
}

.resources li .noro-link {
  color: var(--adhd-color);
  font-weight: 600;
}

/* Interpretation */
.interpretation {
  padding: 24px 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--border);
}

.interpretation h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.interpretation p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
  line-height: 1.7;
}

.interpretation ul {
  color: var(--text-muted);
  font-size: 0.88rem;
  padding-left: 18px;
  line-height: 1.8;
}

.interpretation li.noro-callout {
  list-style: none;
  margin-left: -18px;
  margin-top: 12px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--adhd-color);
  border-radius: 8px;
  color: var(--text);
}

/* Results Actions */
.results-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.btn-action {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 14px 18px;
  min-height: 44px;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  font-family: inherit;
}

.btn-action:hover {
  color: var(--text);
  border-color: var(--text-faint);
}

.btn-action:focus-visible {
  box-shadow: var(--focus-ring);
}

.action-icon {
  font-size: 0.9rem;
}

/* Email Capture */
.email-capture {
  display: none;
  text-align: center;
  margin-bottom: 28px;
}

.email-capture.visible {
  display: block;
  animation: fadeIn 0.25s ease-out;
}

.email-prompt {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.email-form {
  display: flex;
  gap: 8px;
  max-width: 360px;
  margin: 0 auto;
}

.email-form input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 16px;
  color: var(--text);
  font-family: inherit;
}

.email-form input::placeholder {
  color: var(--text-faint);
}

.email-form input:focus {
  outline: none;
  border-color: var(--autism-color);
}

.btn-sm {
  padding: 14px 20px;
  min-height: 44px;
  font-size: 0.85rem;
}

.email-note {
  display: none;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-faint);
}

.email-note.visible {
  display: block;
}

/* Share Section */
.share-section {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 20px;
  border-top: 1px solid var(--border);
}

.share-prompt {
  font-size: 0.84rem;
  color: var(--text-faint);
  margin-bottom: 10px;
}

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

.btn-share {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 14px 16px;
  min-height: 44px;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.15s, border-color 0.15s;
}

.btn-share:hover {
  color: var(--text);
  border-color: var(--text-faint);
}

.btn-share:focus-visible {
  box-shadow: var(--focus-ring);
}

.share-copied {
  font-size: 0.78rem;
  color: var(--overlap-color);
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.2s;
}

.share-copied.visible {
  opacity: 1;
}

/* Print Summary (hidden on screen) */
.print-summary {
  display: none;
}

@media print {
  /* Hide everything except print summary */
  body * {
    visibility: hidden;
  }

  .print-summary,
  .print-summary * {
    visibility: visible;
  }

  .print-summary {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 40px;
    background: white;
    color: #1a1a1a;
    font-size: 11pt;
    line-height: 1.6;
  }

  .print-summary h1 {
    font-size: 16pt;
    margin-bottom: 4px;
    color: #1a1a1a;
  }

  .print-date {
    font-size: 9pt;
    color: #666;
    margin-bottom: 24px;
  }

  .print-summary table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: 10pt;
  }

  .print-summary th,
  .print-summary td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }

  .print-summary th {
    font-weight: 600;
    color: #444;
    font-size: 9pt;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .print-highlight {
    font-weight: 600;
    margin: 12px 0;
    padding: 10px 14px;
    background: #f5f0ff;
    border-left: 3px solid #7c5cbf;
    font-size: 10pt;
  }

  .print-summary h2 {
    font-size: 13pt;
    margin: 24px 0 12px;
    padding-bottom: 4px;
    border-bottom: 1px solid #ddd;
  }

  .print-bridge {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
  }

  .print-bridge h3 {
    font-size: 11pt;
    margin-bottom: 4px;
  }

  .print-bridge p {
    font-size: 9.5pt;
    color: #444;
    margin-bottom: 3px;
  }

  .print-insight {
    font-style: italic;
    color: #555;
    margin-top: 6px;
  }

  .print-summary ul {
    padding-left: 20px;
  }

  .print-summary li {
    margin-bottom: 4px;
    font-size: 10pt;
  }

  .print-footer {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid #ccc;
    font-size: 8.5pt;
    color: #888;
  }

  .print-noro {
    margin-top: 8px;
    font-size: 9pt;
    color: #666;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 { font-size: 1.6rem; }
  .venn { width: 190px; height: 130px; }
  .venn-circle { width: 110px; height: 110px; }
  .hero-stats { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .stat-value { font-size: 1.1rem; }
  .stat-label { font-size: 0.68rem; }
  .results-venn { width: 280px; height: 180px; }
  .rv-circle { width: 155px; height: 155px; }
  .question-card { padding: 20px 0; }
  .question-card h2 { min-height: 3.2em; }
  .container { padding: 20px 16px; }
  .bridge-lenses { grid-template-columns: 1fr; }
  .bridge-card.open .bridge-body { max-height: 300px; }
  .results-actions { flex-direction: column; align-items: stretch; }
  .email-form { flex-direction: column; }
  .nav-buttons { flex-direction: column; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 1.35rem; }
  .venn { width: 160px; height: 115px; }
  .venn-circle { width: 95px; height: 95px; }
  .results-venn { width: 220px; height: 150px; }
  .rv-circle { width: 130px; height: 130px; }
  .container { padding: 16px 12px; }
  .hero-stats { gap: 12px; }
  .stat-value { font-size: 1rem; }
}
