/* ═══════════════════════════════════════════════════════════════════════════════
   NextGenHR 2026 — site-final-original
   Direction: Original artifact revival — blue/orange editorial, dark-mode
   Typography: Instrument Serif (display italic) + Plus Jakarta Sans (UI) + DM Sans (body)
   Hero preserved 1:1 from the original artifact; everything else rebuilt with full features.
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ───────── Reset ───────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; text-size-adjust: 100%; -webkit-text-size-adjust: 100%; font-size: 16px; }
body { min-height: 100vh; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ───────── Tokens (from original artifact) ───────── */
:root {
  --black:    #0a0a0a;
  --black-2:  #151515;
  --white:    #f5f2ee;
  --white-dim:#cfc9c0;
  --orange:   #F17435;
  --orange-soft:#ff8a4a;
  --navy:     #1A2F4F;
  --navy-2:   #213955;
  --blue:     #3D9BE9;
  --blue-dim: #2b7cbf;
  --warm:     #F7F5F0;
  --warm-2:   #EEE9DE;
  --charcoal: #242D3C;
  --charcoal-2:#2e384a;
  --muted:    #9ca3af;
  --muted-dark:#5c6370;
  --line:     #D4D0C8;
  --destructive: #DC2626;

  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif:   "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-body:    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  --dur-fast: 150ms;
  --dur-base: 220ms;
  --dur-slow: 400ms;
  --ease: cubic-bezier(.2, 0, 0, 1);

  --nav-h: 68px;
}

/* ───────── Base typography ───────── */
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
strong { color: var(--white); font-weight: 600; }

/* ───────── Accessibility helpers ───────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  z-index: 1000;
  transition: top var(--dur-base) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ───────── Utility ───────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}
.section { padding: clamp(4rem, 10vw, 10rem) 0; position: relative; }

/* ═══════════════════════════════════════ NAV ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.5rem 0;
  background: var(--warm); /* #F7F5F0 — matches sponsors section */
  transition: padding var(--dur-slow), box-shadow var(--dur-slow), border-color var(--dur-slow);
  border-bottom: 1px solid rgba(26, 47, 79, 0.08);
}
.nav.scrolled {
  padding: 0.65rem 0;
  box-shadow: 0 6px 30px rgba(10, 10, 10, 0.2);
  border-bottom-color: rgba(26, 47, 79, 0.14);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  padding: 0;
  background: transparent;
  border: none;
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.nav-logo:hover,
.nav-logo:focus-visible {
  opacity: 0.9;
  transform: translateY(-1px);
}
.nav-logo img {
  height: 96px;
  width: auto;
  max-width: 440px;
  display: block;
  transition: height var(--dur-slow) var(--ease), max-width var(--dur-slow) var(--ease);
  /* No filter needed — logo is designed for light backgrounds */
}
.nav.scrolled .nav-logo img {
  height: 48px;
  max-width: 220px;
}

@media (max-width: 768px) {
  .nav-logo img { height: 64px; max-width: 260px; }
  .nav.scrolled .nav-logo img { height: 38px; max-width: 170px; }
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.nav-links a {
  color: var(--navy);
  transition: color var(--dur-fast) var(--ease);
  padding: 0.25rem 0;
  position: relative;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--orange); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--orange);
  color: var(--black);
  padding: 0.65rem 1.4rem;
  border-radius: 3px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  background: var(--orange-soft);
  box-shadow: 0 8px 24px rgba(241, 116, 53, 0.3);
}

/* ═══════════════════════════════════════ HERO (PRESERVED FROM ORIGINAL) ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 10rem 0 4rem; /* extra top padding to clear the taller cream nav */
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 65% 45%, rgba(61, 155, 233, 0.1), transparent 60%),
    radial-gradient(ellipse 40% 40% at 30% 60%, rgba(241, 116, 53, 0.06), transparent 50%),
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(26, 47, 79, 0.25), transparent);
}
.hero::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  width: min(550px, 70vw);
  height: min(550px, 70vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(61, 155, 233, 0.07);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.92;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.03em;
}
.hero-left h1 em {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue);
  display: block;
  font-size: 0.45em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.hero-lede {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 400px;
}
.hero-cta {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--orange);
  color: var(--black);
  padding: 0.85rem 2.2rem;
  border-radius: 3px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-2px);
  background: var(--orange-soft);
  box-shadow: 0 10px 30px rgba(241, 116, 53, 0.35);
}

.hero-right { padding-left: 2rem; }
.hero-date {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 242, 238, 0.2);
}
.hero-date span {
  display: block;
  -webkit-text-stroke-color: var(--blue);
}

.hero-meta {
  margin-top: 2rem;
  display: flex;
  gap: 3rem;
}
.hero-meta div p:first-child {
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.hero-meta div p:last-child {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}

/* Compact countdown added to hero-right (the only addition to the original) */
.hero-countdown {
  margin-top: 2rem;
  display: inline-flex;
  align-items: flex-end;
  gap: 1.5rem;
  padding: 1rem 1.4rem;
  border: 1px solid rgba(61, 155, 233, 0.25);
  background: rgba(36, 45, 60, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cd-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 2.8rem;
}
.cd-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.cd-lbl {
  font-family: var(--font-display);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 0.35rem;
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
  animation: pulse 2s infinite;
}
.hero-scroll span {
  font-family: var(--font-display);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: var(--white);
}
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.7; } }

@media (max-width: 1024px) {
  /* Hide scroll indicator on touch devices — collides with countdown and is unnecessary */
  .hero-scroll { display: none; }
}

/* ═══════════════════════════════════════ MARQUEE (from original) ═══════════════════════════════════════ */
.marquee-wrap {
  border-top: 1px solid rgba(245, 242, 238, 0.08);
  border-bottom: 1px solid rgba(245, 242, 238, 0.08);
  padding: 1rem 0;
  overflow: hidden;
  background: var(--black);
}
.marquee {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  will-change: transform;
}
.marquee .dot {
  color: var(--blue);
  font-size: 1.2em;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════ ABOUT ═══════════════════════════════════════ */
.about { background: var(--black); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
  margin-top: 2rem;
}
.about-left .big-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.03em;
}
.about-left .big-num sup {
  font-size: 0.4em;
  vertical-align: super;
  margin-left: 0.05em;
  color: var(--white);
}
.big-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-top: 0.5rem;
  font-weight: 500;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.02em;
}
.about-right p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 242, 238, 0.78);
  margin-bottom: 1.5rem;
  max-width: 65ch;
}
.about-right p strong { color: var(--white); font-weight: 600; }

/* ═══════════════════════════════════════ TRAILER ═══════════════════════════════════════ */
.trailer {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.trailer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 30% 50%, rgba(61, 155, 233, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 60% at 70% 50%, rgba(241, 116, 53, 0.07), transparent 60%);
  pointer-events: none;
}
.trailer > .container { position: relative; z-index: 2; }
.trailer-header {
  text-align: center;
  margin-bottom: 3rem;
}
.trailer-header h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  margin-top: 0.5rem;
  color: var(--white);
}
.trailer-header h2 em { color: var(--blue); font-style: italic; }
.trailer-header .section-lede { color: var(--muted); }

.trailer-frame {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  aspect-ratio: 1 / 1; /* square video */
  background: var(--navy);
  border: 1px solid rgba(61, 155, 233, 0.25);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(241, 116, 53, 0.15);
}
.trailer-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--black);
}
.trailer-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease), opacity var(--dur-slow) var(--ease);
  padding-left: 6px; /* optical alignment for play triangle */
  z-index: 3;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}
.trailer-play:hover,
.trailer-play:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
  transform: translate(-50%, -50%) scale(1.06);
}
.trailer-play.hidden {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 600px) {
  .trailer-play { width: 72px; height: 72px; }
  .trailer-play svg { width: 28px; height: 28px; }
}

/* ═══════════════════════════════════════ TOPICS ═══════════════════════════════════════ */
.topics {
  background: var(--warm);
  color: var(--black);
}
.topics-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 2rem;
}
.topics-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-style: italic;
  line-height: 1;
  font-weight: 400;
  color: var(--black);
}
.topics-header h2 em { color: var(--orange); font-style: italic; }
.topics-eyebrow { color: var(--navy); }

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.topic-card {
  background: var(--warm);
  padding: 1.8rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--dur-base) var(--ease), color var(--dur-base) var(--ease);
  cursor: default;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.topic-card:hover {
  background: var(--navy);
  color: var(--white);
}
.topic-card .num {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--muted-dark);
  margin-bottom: 0.75rem;
  transition: color var(--dur-base) var(--ease);
  font-weight: 600;
}
.topic-card:hover .num { color: var(--blue); }
.topic-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

/* ═══════════════════════════════════════ SPEAKERS ═══════════════════════════════════════ */
.speakers { background: var(--charcoal); padding-bottom: 0; }

.speakers-header {
  text-align: center;
  margin-bottom: 4rem;
}
.speakers-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  margin-top: 0.5rem;
}
.speakers-header h2 em { color: var(--blue); font-style: italic; }

.speakers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  margin-top: 4rem;
}
.speaker-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--navy);
  /* Default: 4 columns at wide viewport — last incomplete row centers via justify-content */
  flex: 0 0 calc((100% - 3 * 2px) / 4);
  max-width: calc((100% - 3 * 2px) / 4);
}
@media (max-width: 1100px) {
  .speaker-card {
    flex-basis: calc((100% - 2 * 2px) / 3);
    max-width: calc((100% - 2 * 2px) / 3);
  }
}
@media (max-width: 768px) {
  .speaker-card {
    flex-basis: calc((100% - 1 * 2px) / 2);
    max-width: calc((100% - 1 * 2px) / 2);
  }
}
@media (max-width: 480px) {
  .speaker-card {
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* ── Photo area ───────────────────────────────────────────── */
.speaker-photos {
  position: absolute;
  inset: 0;
  display: flex;
  overflow: hidden;
}
.speaker-photos.solo { }
.speaker-photos.solo .speaker-img {
  width: 100%;
  height: 100%;
}
.speaker-photos.duo {
  gap: 1px;
  background: rgba(61, 155, 233, 0.15);
}
.speaker-photos.duo .sp-photo {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.speaker-photos.duo .sp-photo .speaker-img {
  width: 100%;
  height: 100%;
}
.speaker-img {
  object-fit: cover;
  object-position: center 25%;
  display: block;
  /* Full black-and-white across all photos */
  filter: grayscale(1) contrast(1.05) brightness(0.95);
  transition: filter var(--dur-slow), transform var(--dur-slow);
}
.speaker-card:hover .speaker-img {
  transform: scale(1.04);
}

/* Photo gradient overlay to ensure info area is readable when revealed */
.speaker-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(10,10,10,.35) 65%, rgba(10,10,10,.92) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease);
  z-index: 2;
}
.speaker-card:hover::after { opacity: 1; }

/* Speaker name tag (top-left of card) — uppercase, stacked for duos */
.speaker-card .speaker-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: flex-start;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  font-weight: 700;
  z-index: 4;
  pointer-events: none;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9), 0 0 2px rgba(0, 0, 0, 0.7);
  line-height: 1.25;
}
.speaker-card .speaker-num span {
  display: inline-block;
  background: rgba(10, 10, 10, 0.78);
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(241, 116, 53, 0.45);
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Info reveal */
.speaker-card .speaker-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.4rem 1.4rem 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: transform var(--dur-slow) var(--ease), opacity var(--dur-slow) var(--ease);
  z-index: 3;
}
.speaker-card:hover .speaker-info {
  transform: translateY(0);
  opacity: 1;
}
.sp-name-row + .sp-name-row {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(61, 155, 233, 0.2);
}
.speaker-info h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.speaker-info .role {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.2rem;
  line-height: 1.35;
}
/* Company as logo on a pill */
.speaker-info .company.company-has-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 0.4rem 0.65rem;
  margin-top: 0.7rem;
  border: 1px solid rgba(61, 155, 233, 0.3);
  max-width: 100%;
}
.speaker-info .company.company-has-logo img {
  max-height: 24px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.speaker-info .company.company-text {
  display: inline-block;
  font-family: var(--font-display);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.7rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(61, 155, 233, 0.3);
  background: rgba(61, 155, 233, 0.06);
}
.speaker-info .talk {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--white);
  margin-top: 0.7rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(61, 155, 233, 0.25);
  line-height: 1.35;
}

/* Touch devices — always show info since hover doesn't fire */
@media (hover: none) {
  .speaker-card .speaker-info { transform: translateY(0); opacity: 1; }
  .speaker-card::after { opacity: 1; }
}

/* ═══════════════════════════════════════ AGENDA ═══════════════════════════════════════ */
.agenda { background: var(--black-2); }

.agenda-header {
  text-align: center;
  margin-bottom: 4rem;
}
.agenda-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  margin-top: 0.5rem;
  color: var(--white);
}
.agenda-header h2 em { color: var(--blue); font-style: italic; }

.agenda-list {
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid rgba(245, 242, 238, 0.1);
}
.ag-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid rgba(245, 242, 238, 0.1);
  transition: background var(--dur-base) var(--ease), padding var(--dur-base) var(--ease);
  align-items: start;
}
.ag-row:hover { background: rgba(61, 155, 233, 0.05); padding-left: 1.5rem; }
.ag-row.highlight {
  background: rgba(241, 116, 53, 0.06);
  border-left: 2px solid var(--orange);
}
.ag-row.highlight:hover { background: rgba(241, 116, 53, 0.1); }
.ag-row.is-break .ag-title { color: var(--blue); }
.ag-row.is-break .ag-body { opacity: 0.75; }

.ag-time {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  padding-top: 0.2rem;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ag-end {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.15rem;
  letter-spacing: 0;
}
.ag-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.3;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.ag-title em {
  font-style: italic;
  color: var(--blue);
}
.ag-icon {
  color: var(--blue);
  flex-shrink: 0;
}
.ag-speaker {
  margin-top: 0.45rem;
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
}
.ag-speaker span {
  font-family: var(--font-body);
  color: var(--muted);
  font-weight: 400;
  font-size: 0.78rem;
}
.live-dot {
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 0.5em;
  vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(241, 116, 53, 0.7);
  animation: live-pulse 2s ease-out infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(241, 116, 53, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(241, 116, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(241, 116, 53, 0); }
}
.agenda-note {
  max-width: 900px;
  margin: 2rem auto 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-dark);
  font-weight: 500;
}

/* ═══════════════════════════════════════ BENEFITS ═══════════════════════════════════════ */
.benefits { background: var(--black); }
.benefits-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic;
  margin-top: 0.5rem;
  font-weight: 400;
  color: var(--white);
}
.benefits-title em { color: var(--blue); font-style: italic; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.benefit {
  border-left: 2px solid var(--blue);
  padding-left: 1.5rem;
}
.benefit h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.benefit p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ═══════════════════════════════════════ SPONSORS ═══════════════════════════════════════ */
.sponsors {
  background: var(--warm);
  color: var(--black);
}
.sponsors-header {
  text-align: center;
  margin-bottom: 4rem;
}
.sponsors-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--black);
  margin-top: 0.5rem;
  line-height: 1;
}
.sponsors-header h2 em { color: var(--orange); font-style: italic; }
.sponsors-eyebrow { color: var(--navy); }

.sponsor-tier { margin-bottom: 4rem; }
.sponsor-tier:last-child { margin-bottom: 0; }
.sponsor-tier h3 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.sponsor-tier h3::before,
.sponsor-tier h3::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--navy);
  opacity: 0.35;
}
.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
/* Tile (both <a> and <span>) */
.sponsor-logos a,
.sponsor-logos .logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.sponsor-logos a:hover,
.sponsor-logos a:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(26, 47, 79, 0.18);
  border-color: var(--blue);
}
.sponsor-logos img {
  object-fit: contain;
  display: block;
  width: auto;
  height: auto;
}

/* ── Tier sizing — largest for People Innovators, smallest for Media/Experience ── */
.tier-xl .sponsor-logos { gap: 3rem; }
.tier-xl .sponsor-logos a,
.tier-xl .sponsor-logos .logo-tile {
  padding: 2.25rem 2.75rem;
  min-width: 300px;
  min-height: 180px;
}
.tier-xl .sponsor-logos img {
  max-height: 130px;
  max-width: 260px;
}

.tier-lg .sponsor-logos { gap: 2.5rem; }
.tier-lg .sponsor-logos a,
.tier-lg .sponsor-logos .logo-tile {
  padding: 1.75rem 2.25rem;
  min-width: 240px;
  min-height: 140px;
}
.tier-lg .sponsor-logos img {
  max-height: 100px;
  max-width: 200px;
}

.tier-md .sponsor-logos { gap: 2rem; }
.tier-md .sponsor-logos a,
.tier-md .sponsor-logos .logo-tile {
  padding: 1.4rem 1.8rem;
  min-width: 200px;
  min-height: 115px;
}
.tier-md .sponsor-logos img {
  max-height: 80px;
  max-width: 170px;
}

.tier-sm .sponsor-logos { gap: 1.25rem; }
.tier-sm .sponsor-logos a,
.tier-sm .sponsor-logos .logo-tile {
  padding: 1rem 1.3rem;
  min-width: 150px;
  min-height: 90px;
}
.tier-sm .sponsor-logos img {
  max-height: 58px;
  max-width: 130px;
}

@media (max-width: 768px) {
  .tier-xl .sponsor-logos a,
  .tier-xl .sponsor-logos .logo-tile { min-width: 220px; min-height: 140px; padding: 1.5rem 2rem; }
  .tier-xl .sponsor-logos img { max-height: 90px; max-width: 180px; }
  .tier-lg .sponsor-logos a,
  .tier-lg .sponsor-logos .logo-tile { min-width: 180px; min-height: 110px; padding: 1.2rem 1.5rem; }
  .tier-lg .sponsor-logos img { max-height: 72px; max-width: 150px; }
  .tier-md .sponsor-logos a,
  .tier-md .sponsor-logos .logo-tile { min-width: 160px; min-height: 95px; }
  .tier-sm .sponsor-logos a,
  .tier-sm .sponsor-logos .logo-tile { min-width: 130px; min-height: 80px; }
}

/* ═══════════════════════════════════════ FINAL CTA ═══════════════════════════════════════ */
.final-cta {
  background: var(--navy);
  text-align: center;
  padding: clamp(5rem, 12vw, 10rem) 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(61, 155, 233, 0.15), transparent 60%);
}
.final-cta > .container { position: relative; z-index: 2; }
.final-cta .eyebrow {
  margin-bottom: 1rem;
  color: var(--blue);
}
.final-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  font-weight: 400;
  color: var(--white);
}
.final-cta h2 em { color: var(--blue); font-style: italic; }
.fc-desc {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.cta-big {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  padding: 1.1rem 3rem;
  border-radius: 3px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--dur-base) var(--ease), background var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.cta-big:hover,
.cta-big:focus-visible {
  transform: translateY(-2px);
  background: var(--orange-soft);
  box-shadow: 0 15px 40px rgba(241, 116, 53, 0.35);
}

/* ═══════════════════════════════════════ FOOTER ═══════════════════════════════════════ */
.footer {
  background: var(--black);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(245, 242, 238, 0.06);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 242, 238, 0.06);
}
.foot-brand {
  display: inline-block;
  padding: 0;
  background: transparent;
  border: none;
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.foot-brand:hover,
.foot-brand:focus-visible {
  opacity: 0.9;
  transform: translateY(-2px);
}
.foot-brand img {
  height: 72px;
  width: auto;
  max-width: 320px;
  display: block;
  filter:
    drop-shadow(0 0 3px rgba(245, 242, 238, 0.95))
    drop-shadow(0 0 10px rgba(245, 242, 238, 0.6))
    drop-shadow(0 0 24px rgba(245, 242, 238, 0.3));
}
.foot-desc {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 36ch;
}
.foot-title {
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.foot-col a {
  display: block;
  padding: 0.4rem 0;
  color: var(--muted);
  font-size: 0.85rem;
  transition: color var(--dur-fast) var(--ease);
}
.foot-col a:hover,
.foot-col a:focus-visible { color: var(--blue); }
.foot-legal {
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-dark);
  font-weight: 500;
  flex-wrap: wrap;
  gap: 1rem;
}
.foot-legal a { color: var(--blue); transition: color var(--dur-fast) var(--ease); }
.foot-legal a:hover { color: var(--orange); }

/* ═══════════════════════════════════════ STICKY CTA ═══════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(61, 155, 233, 0.3);
  opacity: 0;
  transform: translateY(60px);
  pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease), background var(--dur-base) var(--ease);
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta:hover,
.sticky-cta:focus-visible {
  background: var(--orange-soft);
}

/* ═══════════════════════════════════════ SPEAKER MODAL ═══════════════════════════════════════ */
/* Speaker cards become clickable when modal is available */
.speaker-card {
  cursor: pointer;
}
.speaker-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
  z-index: 5;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease);
}
.modal[hidden] { display: none; }
.modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 14, 0.75);
  backdrop-filter: blur(14px) saturate(0.7);
  -webkit-backdrop-filter: blur(14px) saturate(0.7);
}
/* Blur the whole page behind the modal */
body.modal-open main,
body.modal-open header.nav,
body.modal-open footer.footer,
body.modal-open .sticky-cta {
  filter: blur(6px) brightness(0.7);
  transition: filter var(--dur-slow) var(--ease);
  pointer-events: none;
}
body.modal-open {
  overflow: hidden;
}
.modal-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  width: 100%;
  max-height: calc(100vh - 2rem);
  background: linear-gradient(180deg, #13131a 0%, #0d0d12 100%);
  border: 1px solid rgba(61, 155, 233, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(245, 242, 238, 0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(30px) scale(0.96);
  transition: transform var(--dur-slow) var(--ease);
}
.modal.open .modal-content {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 242, 238, 0.2);
  background: rgba(10, 10, 10, 0.7);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease), color var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
  padding: 0;
}
.modal-close:hover,
.modal-close:focus-visible {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}
.modal-scroll {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem) 3rem;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) transparent;
}
.modal-scroll::-webkit-scrollbar { width: 8px; }
.modal-scroll::-webkit-scrollbar-track { background: transparent; }
.modal-scroll::-webkit-scrollbar-thumb { background: rgba(61, 155, 233, 0.4); border-radius: 4px; }
.modal-scroll::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* Modal inner content */
.m-speakers {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.m-speaker {
  display: flex;
  gap: 1rem;
  flex: 1 1 260px;
  min-width: 0;
}
.m-photo {
  flex: 0 0 88px;
  width: 88px;
  height: 110px;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(61, 155, 233, 0.25);
}
.m-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.98);
}
.m-who {
  flex: 1 1 auto;
  min-width: 0;
}
.m-who h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--white);
  line-height: 1.1;
  font-weight: 400;
  margin: 0.1rem 0 0.35rem;
}
.m-who .m-role {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 500;
}
.m-who .m-company {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  font-weight: 700;
}
.m-logo {
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(61, 155, 233, 0.2);
}
.m-logo img {
  max-height: 22px;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

.m-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(61, 155, 233, 0.35), transparent);
  margin: 1.5rem 0;
}
.m-section-label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--blue);
  margin-bottom: 0.9rem;
  font-weight: 700;
}
.m-bio h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.9rem;
  font-weight: 400;
}
.m-bio p,
.m-speech p {
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(245, 242, 238, 0.82);
  margin-bottom: 1rem;
}
.m-speech-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--blue);
  line-height: 1.25;
  font-weight: 400;
  margin-bottom: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .modal,
  .modal .modal-content,
  body.modal-open main,
  body.modal-open .nav,
  body.modal-open .footer,
  body.modal-open .sticky-cta {
    transition: none !important;
    filter: none !important;
  }
  .modal.open .modal-content { transform: none; }
  body.modal-open main,
  body.modal-open header.nav,
  body.modal-open footer.footer { filter: brightness(0.5) !important; }
}

@media (max-width: 560px) {
  .modal-content { max-height: calc(100dvh - 1rem); }
  .modal-scroll { padding: 3rem 1.25rem 2rem; }
  .m-speakers { flex-direction: column; gap: 1rem; }
  .m-photo { flex: 0 0 72px; width: 72px; height: 92px; }
  .m-who h2 { font-size: 1.4rem; }
  .m-speech-title { font-size: 1.15rem; }
  .m-bio p, .m-speech p { font-size: 0.9rem; }
}

/* ═══════════════════════════════════════ REVEAL ON SCROLL ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════ RESPONSIVE ═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .nav-links { display: none; }
  .nav-logo { padding: 0.4rem 0.7rem; }
  .nav-logo img { height: 26px; max-width: 120px; }
  .nav-cta { padding: 0.55rem 1.1rem; font-size: 0.65rem; }

  .hero { padding: 5.5rem 0 2rem; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-right { padding-left: 0; }
  .hero-date { font-size: clamp(3.5rem, 15vw, 7rem); line-height: 0.85; }
  .hero-meta { gap: 1.5rem; flex-wrap: wrap; }
  .hero-countdown { gap: 1rem; padding: 0.85rem 1rem; }
  .cd-num { font-size: 1.3rem; }
  .cd-cell { min-width: 2.4rem; }
  .hero h1 { font-size: clamp(2.4rem, 8vw, 3.2rem); }
  .hero-lede { font-size: 0.95rem; margin-top: 0.5rem; }

  .topics-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .ag-row { grid-template-columns: 80px 1fr; gap: 1rem; padding: 1.5rem 0.5rem; }
  .ag-time { font-size: 1.2rem; }
  .ag-title { font-size: 0.95rem; }
  .ag-desc { font-size: 0.85rem; }

  .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; padding-bottom: 2rem; }
  .foot-legal { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  .sticky-cta {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    padding: 0.85rem 1.1rem;
    font-size: 0.72rem;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero { padding: 5rem 0 1.5rem; }
  .hero-grid { gap: 1rem; }
  .hero-date { font-size: clamp(3rem, 13vw, 5.5rem); }
  .hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-lede { font-size: 0.88rem; }
  .hero-cta { padding: 0.7rem 1.8rem; font-size: 0.8rem; }
  .hero-meta { gap: 0.75rem; }
  .hero-countdown { gap: 0.7rem; }
  .cd-cell { min-width: 2.1rem; }
  .cd-num { font-size: 1.1rem; }
  .foot-grid { grid-template-columns: 1fr; }
  /* Stats: 2 columns at narrowest */
  .about-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .about-stats > div { text-align: left; }
}

@media (max-width: 768px) {
  /* Footer needs bottom padding so the sticky CTA bar doesn't cover the copyright */
  .footer { padding-bottom: 5rem; }
}

/* ═══════════════════════════════════════ MOTION PREFERENCES ═══════════════════════════════════════ */
@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;
  }
  .marquee, .live-dot, .hero-scroll { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
