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

:root {
  --bg:           #0f0f10;
  --panel:        #18181b;
  --panel-light:  #1f1f23;
  --border:       rgba(228, 229, 228, 0.08);
  --text-primary: #f4f4f5;
  --text-sec:     #a1a1aa;
  --line-art:     #e7e5e4;
  --amber:        #d4a373;
  --gold:         #f2c14e;
  --blue-deep:    #334155;
  --green-muted:  #4d7c0f;
  --red-muted:    #991b1b;

  --font-head:    'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:       6px;
  --radius-lg:    12px;

  --max-w:        1200px;
  --section-gap:  120px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  background: var(--amber);
  color: var(--bg);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

/* ─── GRAIN OVERLAY ────────────────────────────────────────────────────────── */
.hero__grain, .cta__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.4;
  z-index: 0;
}

/* ─── LAYOUT ───────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── TYPOGRAPHY ───────────────────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-body {
  font-size: 1.125rem;
  color: var(--text-sec);
  line-height: 1.7;
  max-width: 620px;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header .section-title {
  margin-bottom: 1.25rem;
}

/* ─── SCROLL REVEAL ────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ─── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
}

.btn--primary {
  background: var(--amber);
  color: #0f0f10;
}
.btn--primary:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 163, 115, 0.25);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text-sec);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  color: var(--text-primary);
  border-color: rgba(228, 229, 228, 0.2);
  background: rgba(255,255,255,0.04);
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* ─── NAV ──────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 15, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.nav.scrolled {
  background: rgba(15, 15, 16, 0.97);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.875rem;
  color: var(--text-sec);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text-primary); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  background: var(--amber);
  color: #0f0f10 !important;
  border-radius: var(--radius);
  font-weight: 500;
  font-family: var(--font-head);
  font-size: 0.875rem !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav__cta:hover {
  background: var(--gold) !important;
  transform: translateY(-1px);
}

.nav__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav__menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__menu-toggle.open span:nth-child(2) { opacity: 0; }
.nav__menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 2rem 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(212, 163, 115, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(51, 65, 85, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--text-sec);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 1.25rem;
}

.hero__tagline {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero visual / animation */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.evolution-stage {
  position: relative;
  width: 280px;
  height: 320px;
}

.evo-frame {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.evo-frame.active {
  opacity: 1;
}

.evo-figure {
  width: 160px;
  height: 240px;
}

/* Fragment animations */
@keyframes fragAppear {
  0% { opacity: 0; transform: translateY(4px); }
  100% { opacity: 1; transform: translateY(0); }
}

.frag { animation: none; }
.frag-1 { animation: fragAppear 0.5s ease forwards 0.2s; }
.frag-2 { animation: fragAppear 0.5s ease forwards 0.5s; }
.frag-3 { animation: fragAppear 0.5s ease forwards 0.8s; }
.frag-4 { animation: fragAppear 0.5s ease forwards 1.1s; }
.frag-5 { animation: fragAppear 0.5s ease forwards 1.4s; }

/* Pulse on mature figure */
@keyframes haloRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.evo-figure--mature circle:last-of-type {
  transform-origin: 50px 19px;
  animation: haloRotate 12s linear infinite;
}

/* Stage indicators */
.evo-indicators {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 8px;
}

.evo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--panel-light);
  border: 1px solid rgba(212, 163, 115, 0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.evo-dot.active {
  background: var(--amber);
  border-color: var(--amber);
  transform: scale(1.3);
}

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--amber));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 0.8; transform: scaleY(1); }
}

/* ─── PROBLEM ──────────────────────────────────────────────────────────────── */
.problem {
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.problem-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
}

.problem-card:hover {
  border-color: rgba(153, 27, 27, 0.35);
  transform: translateY(-2px);
}

.problem-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
}

.problem-card__icon svg {
  width: 100%;
  height: 100%;
}

.problem-card__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.problem-card__desc {
  font-size: 0.875rem;
  color: var(--text-sec);
  line-height: 1.6;
}

/* ─── TIMELINE ─────────────────────────────────────────────────────────────── */
.timeline {
  padding: var(--section-gap) 0;
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.timeline__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.timeline__track::before {
  content: '';
  position: absolute;
  top: 68px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    rgba(212, 163, 115, 0.2) 10%,
    rgba(242, 193, 78, 0.4) 50%,
    rgba(77, 124, 15, 0.4) 80%,
    transparent
  );
  z-index: 0;
}

.timeline__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.timeline__figure {
  width: 80px;
  height: 90px;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.timeline__figure svg {
  width: 100%;
  height: 100%;
}

.timeline__connector {
  /* Visual connector already done via ::before */
}

.timeline__stage-num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--amber);
  opacity: 0.6;
  display: block;
  margin-bottom: 0.4rem;
}

.timeline__stage-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}

.timeline__stage-desc {
  font-size: 0.8rem;
  color: var(--text-sec);
  line-height: 1.55;
}

/* ─── HOW IT WORKS ─────────────────────────────────────────────────────────── */
.how {
  padding: var(--section-gap) 0;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.how__step {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}

.how__step:hover {
  border-color: rgba(212, 163, 115, 0.25);
  transform: translateY(-2px);
}

.how__step-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(212, 163, 115, 0.18);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  letter-spacing: -0.02em;
}

.how__step-content {
  flex: 1;
}

.how__step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.how__step-icon svg {
  width: 100%;
  height: 100%;
}

.how__step-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}

.how__step-desc {
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.65;
}

/* ─── PRIVACY ──────────────────────────────────────────────────────────────── */
.privacy {
  padding: var(--section-gap) 0;
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.privacy__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.privacy-card {
  background: var(--panel-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}

.privacy-card:hover {
  border-color: rgba(212, 163, 115, 0.3);
  transform: translateY(-2px);
}

.privacy-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
}

.privacy-card__icon svg {
  width: 100%;
  height: 100%;
}

.privacy-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}

.privacy-card__desc {
  font-size: 0.875rem;
  color: var(--text-sec);
  line-height: 1.6;
}

.privacy__note {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(51, 65, 85, 0.15);
  border: 1px solid rgba(51, 65, 85, 0.3);
  border-radius: var(--radius-lg);
}

.privacy__note-line {
  width: 3px;
  height: 36px;
  background: linear-gradient(to bottom, var(--amber), var(--gold));
  border-radius: 2px;
  flex-shrink: 0;
}

.privacy__note p {
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.6;
}

.privacy__note strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* ─── AUDIENCE ─────────────────────────────────────────────────────────────── */
.audience {
  padding: var(--section-gap) 0;
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.audience-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s, transform 0.3s;
}

.audience-card:hover {
  border-color: rgba(212, 163, 115, 0.25);
  transform: translateY(-2px);
}

.audience-card__icon {
  width: 48px;
  height: 48px;
}

.audience-card__icon svg {
  width: 100%;
  height: 100%;
}

.audience-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.audience-card__desc {
  font-size: 0.875rem;
  color: var(--text-sec);
  line-height: 1.6;
}

/* ─── CTA ──────────────────────────────────────────────────────────────────── */
.cta {
  position: relative;
  padding: var(--section-gap) 0;
  background: var(--panel);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(212, 163, 115, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cta__badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: rgba(212, 163, 115, 0.12);
  border: 1px solid rgba(212, 163, 115, 0.25);
  border-radius: 20px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.cta__title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.cta__body {
  font-size: 1rem;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta__small-print {
  font-size: 0.8rem;
  color: rgba(161, 161, 170, 0.65);
  margin-top: 1.25rem;
  font-style: italic;
}

/* ─── FOOTER ───────────────────────────────────────────────────────────────── */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__tagline {
  font-family: var(--font-head);
  font-size: 0.875rem;
  color: var(--text-sec);
  font-style: italic;
  padding-left: 0.25rem;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--text-sec);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--amber); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__legal {
  font-size: 0.8rem;
  color: rgba(161, 161, 170, 0.5);
}

/* ─── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline__track {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline__track::before { display: none; }

  .timeline__stage {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .timeline__figure {
    width: 64px;
    height: 80px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .timeline__label { flex: 1; }
}

@media (max-width: 900px) {
  :root { --section-gap: 80px; }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__visual { order: -1; }

  .evolution-stage {
    width: 220px;
    height: 260px;
  }

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

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

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

@media (max-width: 768px) {
  :root { --section-gap: 64px; }

  .nav__links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 16, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    font-size: 1.25rem;
  }

  .nav__menu-toggle {
    display: flex;
  }

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

  .hero {
    padding: 100px 1.5rem 60px;
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__sub { margin-left: auto; margin-right: auto; }

  .section-header {
    text-align: center;
  }

  .section-body { margin-left: auto; margin-right: auto; }

  .footer__inner {
    flex-direction: column;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__links ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .how__step {
    flex-direction: column;
    gap: 1rem;
  }

  .how__step-num {
    font-size: 1.5rem;
    width: auto;
  }
}

@media (max-width: 480px) {
  :root { --section-gap: 48px; }

  .container { padding: 0 1.25rem; }

  .hero__headline {
    font-size: 1.9rem;
  }

  .btn--large {
    width: 100%;
    justify-content: center;
  }

  .evolution-stage {
    width: 180px;
    height: 220px;
  }

  .evo-figure {
    width: 130px;
    height: 195px;
  }

  .privacy__note {
    padding: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─── FOCUS STYLES ─────────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ─── REPORT / INTERVIEW QUESTIONS ─────────────────────────────────────────── */
.report {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--panel) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.report__highlight {
  margin: -1.5rem 0 3rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(212, 163, 115, 0.24);
  background: rgba(212, 163, 115, 0.08);
  border-radius: var(--radius-lg);
}

.report__highlight p {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--text-primary);
  letter-spacing: -0.02em;
  font-style: italic;
}

.report__questions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.report-question {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--panel-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.3s;
}

.report-question:hover {
  border-color: rgba(212, 163, 115, 0.3);
  transform: translateY(-2px);
}

.report-question span {
  font-family: var(--font-head);
  color: var(--amber);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  flex: 0 0 auto;
  padding-top: 0.1rem;
}

.report-question p {
  color: var(--text-sec);
  font-size: 0.925rem;
  line-height: 1.6;
}

.report__body-extra {
  margin-top: 1rem;
}

.report__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .report__questions {
    grid-template-columns: 1fr;
  }

  .report__actions {
    justify-content: center;
  }
}

/* ─── REDUCED MOTION ───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .evo-frame {
    transition: none;
  }

  .scroll-line {
    animation: none;
  }

  .frag-1, .frag-2, .frag-3, .frag-4, .frag-5 {
    animation: none;
    opacity: 1;
  }
}
