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

:root {
  --bg-0: #070708;
  --bg-1: #0d0d10;
  --bg-2: #14141a;
  --bg-3: #1c1d24;
  --bg-4: #242733;
  --text: #f5f5f7;
  --muted: #b8bcc8;
  --line: rgba(255,255,255,0.08);
  --gold: #d7b46a;
  --red: #cf5a5a;
  --blue: #668bff;
  --green: #6fc59a;
  --purple: #a17df5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: var(--text);
  line-height: 1.6;
}

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

.timeline-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(to right, #ffffff, var(--gold), var(--red));
  z-index: 9999;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 24px 48px 42px;
  overflow: hidden;
  filter: grayscale(100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.75)),
    radial-gradient(circle at 20% 25%, rgba(255,255,255,0.08), transparent 25%),
    radial-gradient(circle at 75% 20%, rgba(255,255,255,0.05), transparent 20%),
    radial-gradient(circle at 50% 80%, rgba(215,180,106,0.08), transparent 30%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.02), rgba(0,0,0,0.2)),
    url("assets/hero.jpg") center/cover no-repeat;
  opacity: 0.32;
  mix-blend-mode: screen;
}

.navbar,
.hero-inner,
.hero-scroll-hint {
  position: relative;
  z-index: 2;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: #d9dce4;
  font-size: 0.95rem;
}

.hero-inner {
  min-height: calc(100vh - 160px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.eyebrow,
.section-label,
.mini-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.96;
  margin-bottom: 18px;
}

.subtitle {
  max-width: 650px;
  font-size: 1.15rem;
  color: #d6d9e2;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: 0.25s ease;
}

.cta.primary {
  background: rgba(255,255,255,0.1);
}

.cta.secondary {
  background: transparent;
}

.cta:hover {
  transform: translateY(-2px);
}

.year-counter-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(10px);
  max-width: 320px;
  margin-left: auto;
}

.year-counter {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
}

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

.hero-scroll-hint {
  text-align: center;
  color: #d2d6df;
  opacity: 0.85;
  animation: floaty 1.8s infinite;
}

.section {
  padding: 100px 48px;
  border-top: 1px solid var(--line);
}

.section-dark {
  background: rgba(0,0,0,0.18);
}

.intro-section {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}

.narrow {
  max-width: 820px;
}

.section-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.section-copy p {
  color: var(--muted);
}

.section-copy.centered {
  text-align: center;
  margin: 0 auto 40px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: center;
}

.viz-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

.viz-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.viz-header h3 {
  font-size: 1.05rem;
}

.badge {
  font-size: 0.82rem;
  color: #dce0ea;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 10px;
  border-radius: 999px;
}

.chart-placeholder {
  position: relative;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to top, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(180deg, #13141a, #1d2028);
  background-size: 44px 44px, 44px 44px, cover;
}











.controls,
.toggle-group,
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chip,
.toggle {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  transition: 0.2s ease;
}

.chip.active,
.toggle.active {
  background: rgba(215,180,106,0.18);
  border-color: rgba(215,180,106,0.4);
}

.control-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
  color: var(--muted);
}

.control-row input[type="range"] {
  width: 220px;
}

.annotation {
  margin-top: 18px;
  font-size: 0.96rem;
  color: #d5d9e2;
  opacity: 0.86;
}

.dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-right: 8px;
}

.genre-1 { background: var(--red); }
.genre-2 { background: var(--blue); }
.genre-3 { background: var(--green); }
.genre-4 { background: var(--purple); }

.mini-timeline-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 22px;
  min-height: 280px;
}

.mini-timeline-line {
  position: absolute;
  left: 34px;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), var(--gold));
}

.mini-node {
  position: relative;
  margin-left: 48px;
  margin-bottom: 40px;
  color: #e0e4ed;
}

.movies-section {
  background: linear-gradient(to bottom, rgba(255,255,255,0.02), rgba(255,255,255,0.04));
}

.movie-strip {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.movie-card,
.movie-detail-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}

.movie-card.featured {
  transform: scale(1.02);
}

.poster-placeholder {
  height: 300px;
}

.poster-a {
  background: linear-gradient(135deg, #3f434d, #121318);
}
.poster-b {
  background: linear-gradient(135deg, #6a3f3f, #1b1116);
}
.poster-c {
  background: linear-gradient(135deg, #3c4f66, #111823);
}

.movie-info,
.movie-detail-panel {
  padding: 18px;
}

.movie-era {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

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

.findings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.finding-card {
  text-align: left;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
}

.finding-number {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.closing-timeline {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
  color: #d6dae4;
}

.closing-line {
  width: 200px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(to right, rgba(255,255,255,0.25), var(--gold), var(--red));
}

.stage-muted {
  filter: saturate(0.45);
}

.stage-accent {
  filter: saturate(0.72);
}

.stage-richer {
  filter: saturate(0.95);
}

.stage-richest {
  filter: saturate(1.1);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 1100px) {
  .hero-inner,
  .intro-section,
  .split-section,
  .movie-strip,
  .findings-grid {
    grid-template-columns: 1fr;
  }

  .year-counter-card {
    margin-left: 0;
  }
}

@media (max-width: 800px) {
  .hero,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero h1 {
    font-size: 3rem;
  }
}
/* ─────────────────────────────────────────────
   REPRESENTATIVE MOVIES PANEL 
   ───────────────────────────────────────────── */

/* Decade tab bar */
.movie-decade-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* Scrollable strip */
#movie-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* hide scrollbar visually but keep it functional */
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
#movie-strip::-webkit-scrollbar { height: 5px; }
#movie-strip::-webkit-scrollbar-track { background: transparent; }
#movie-strip::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 999px; }

/* Individual card */
.movie-card {
  flex: 0 0 220px;           /* fixed width, no shrink */
  scroll-snap-align: start;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.movie-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.movie-card.featured {
  flex: 0 0 260px;           /* slightly wider featured card */
}

/* Poster area */
.poster-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;         /* standard movie poster ratio */
  overflow: hidden;
  background: #0d0d10;
}
.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.movie-card:hover .poster-img {
  transform: scale(1.04);
}
.poster-fallback {
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

/* Genre badge on poster */
.poster-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
}
.genre-badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid;
  backdrop-filter: blur(6px);
  color: #fff;
}

/* Text area */
.movie-info {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.movie-era {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin: 0;
}
.movie-title {
  font-size: 0.95rem;
  line-height: 1.3;
  margin: 0;
  color: var(--text);
  /* clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.movie-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.movie-year {
  font-size: 0.82rem;
  color: var(--muted);
}
.movie-rating {
  font-size: 0.8rem;
  color: var(--gold);
}
.movie-revenue {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}
.movie-overview {
  font-size: 0.78rem;
  color: rgba(184,188,200,0.7);
  line-height: 1.5;
  margin: 4px 0 0;
  /* clamp to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Remove the old grid layout that was set on .movie-strip */
/* (the old rule in style.css set grid-template-columns — override it) */
.movie-strip {
  display: flex !important;
}


/* Make the stat highlights gold */
.finding-card strong {
  color: var(--gold);
  font-weight: 700;
}

/* Give cards slightly more breathing room */
.finding-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-top: 8px;
}

.finding-card h3 {
  font-size: 1rem;
  line-height: 1.35;
  color: var(--text);
}

/* ════════════════════════════════════════════════════════
   YOUR CINEMA ERA
   ════════════════════════════════════════════════════════ */

/* ── Findings card polish (from earlier) ── */
.finding-card strong { color: var(--gold); font-weight: 700; }
.finding-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; margin-top: 8px; }
.finding-card h3 { font-size: 1rem; line-height: 1.35; }

/* ── Personalizer wrapper ── */
.era-personalizer {
  margin-top: 56px;
  padding: 40px 36px 44px;
  background: linear-gradient(135deg, rgba(215,180,106,0.06), rgba(103,107,178,0.06));
  border: 1px solid rgba(215,180,106,0.18);
  border-radius: 28px;
  text-align: center;
}

.era-header { margin-bottom: 28px; }
.era-header h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  margin: 8px 0 6px;
}
.era-sub { color: var(--muted); font-size: 0.9rem; }

/* ── Slider ── */
.era-slider-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}
.era-slider-label { color: var(--muted); font-size: 0.85rem; min-width: 32px; }

.era-slider {
  -webkit-appearance: none;
  appearance: none;
  width: min(480px, 80%);
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--gold), var(--blue));
  outline: none;
  cursor: pointer;
}
.era-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gold);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  cursor: grab;
  transition: transform 0.15s;
}
.era-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.2); }
.era-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gold);
  cursor: grab;
}

/* ── Selected year display ── */
.era-year-display {
  margin-bottom: 32px;
}
#era-selected-year {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
  transition: opacity 0.15s;
}

/* ── Stat cards ── */
.era-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .era-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .era-stats { grid-template-columns: 1fr; }
}

.era-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.era-stat-card.era-pop {
  border-color: rgba(215,180,106,0.4);
  transform: translateY(-3px);
}

.era-stat-icon { font-size: 1.5rem; margin-bottom: 10px; }

.era-stat-value {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 6px;
  min-height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.era-stat-text {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.2;
}
.era-stat-unit { font-size: 0.9rem; color: var(--muted); font-weight: 400; }

.era-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

/* ── Sparkline ── */
.era-chart-wrap { margin-top: 8px; }
.era-chart-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
#era-sparkline { display: block; overflow: visible; }

/* ═══════════════════════════════════════════════════════════════
   DATAFLIX — CINEMATIC V3
   ═══════════════════════════════════════════════════════════════ */


/* ── 1. COUNTDOWN LOADER ──────────────────────────────────────── */

.countdown-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: countdown-fade 1.8s ease-in-out forwards;
  pointer-events: none;
}

.countdown-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2);
  animation: countdown-flicker 0.1s infinite;
}

.countdown-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.15) 3px,
    rgba(0,0,0,0.15) 4px
  );
  pointer-events: none;
}

@keyframes countdown-fade {
  0%   { opacity: 1; }
  70%  { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes countdown-flicker {
  0%, 100% { opacity: 1; }
  48%       { opacity: 0.92; }
  52%       { opacity: 1; }
}


/* Revert to original body gradient */
body {
  background: linear-gradient(to bottom, #050505 0%, #0d0d10 18%, #15171d 40%, #20232c 70%, #2b3140 100%);
}

.hero       { background: transparent; }
#overview   { background: transparent; }
#production { background: transparent; }
#genres     { background: transparent; }
#ratings    { background: transparent; }
#finance    { background: transparent; }
#movies     { background: transparent; }
#findings   { background: transparent; }

.strip-divider { background: transparent; }
.section-dark  { background: rgba(0,0,0,0.18); }

.stage-muted   { filter: saturate(0.45); }
.stage-accent  { filter: saturate(0.72); }
.stage-richer  { filter: saturate(0.95); }
.stage-richest { filter: saturate(1.1);  }


/* ── 3. HERO — FIXES ──────────────────────────────────────────── */

.hero {
  filter: none; /* remove old grayscale(100%) */
}

.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.42) 45%,
    rgba(0,0,0,0.68) 100%
  );
  mix-blend-mode: normal;
  opacity: 1;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: grayscale(1) brightness(0.65);
  z-index: 0;
  pointer-events: none;
}

.hero-filmstrip {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: cover;
  opacity: 0.16;
  filter: grayscale(1) contrast(1.1);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .hero-filmstrip { display: none; }
}

.navbar, .hero-inner, .hero-scroll-hint, .hero-overlay {
  position: relative;
  z-index: 2;
}



/* ── 5. KODAK STRIP DIVIDER ───────────────────────────────────── */

.strip-divider {
  width: 100%;
  height: 56px;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 2;
}

.strip-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
  filter: grayscale(1) contrast(1.2);
  display: block;
}


/* ── 6. SECTION BACKGROUND IMAGES ────────────────────────────── */

#findings {
  position: relative;
  overflow: hidden;
}

.section-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  filter: none;
}

/* Finance: NO background image (removed TVs) */

/* Movies: NO background image (removed scattered strips) */

/* Findings: red negatives — very subtle warmth */
#findings .section-bg-img {
  opacity: 0.05;
  filter: none;
}

/* Ensure section content sits above bg */
#findings > *:not(.section-bg-img) {
  position: relative;
  z-index: 1;
}


/* ── 7. "THE END" — FIXED ─────────────────────────────────────── */

/*
  Problem: image was cropped showing only the top.
  Fix: use object-position: center center so the text
  is fully visible. Also increase height so more shows.
*/
.the-end-wrap {
  position: relative;
  width: 100%;
  height: 600px;          /* taller so full text is visible */
  margin-top: 20px;
  border-radius: 20px;
  overflow: hidden;
}

.the-end-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;  /* was showing top only — fixed */
  opacity: 0.82;
  display: block;
}

.the-end-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,    rgba(0,0,0,0.5) 0%,  transparent 40%),
    linear-gradient(to bottom, rgba(0,0,0,0.2) 0%,  transparent 25%),
    linear-gradient(to right,  rgba(0,0,0,0.15) 0%, transparent 20%),
    linear-gradient(to left,   rgba(0,0,0,0.15) 0%, transparent 20%);
}


/* ── 8. HERO TEXT FADE-IN ─────────────────────────────────────── */

.hero-left > * {
  opacity: 0;
  transform: translateY(14px);
  animation: hero-in 0.65s ease forwards;
}

.hero-left .eyebrow      { animation-delay: 2.0s; }
.hero-left h1            { animation-delay: 2.2s; }
.hero-left .subtitle     { animation-delay: 2.4s; }
.hero-left .hero-actions { animation-delay: 2.6s; }

.hero-scroll-hint {
  opacity: 0;
  animation: hero-in 0.65s ease 2.8s forwards,
             floaty 1.8s ease-in-out 3.5s infinite;
}

@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}


/* ── 9. FINDING CARD POLISH ───────────────────────────────────── */

.finding-card strong { color: var(--gold); font-weight: 700; }
.finding-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-top: 8px;
}
.finding-card h3 { font-size: 1rem; line-height: 1.35; }