/* ============================================================
   KEVIN BEATTY — Personal Website
   Design ref: Apple Vision Pro — cinematic, scroll-driven
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --black: #080808;
  --white: #f5f4f0;
  --dim: rgba(245, 244, 240, 0.52);
  --dimmer: rgba(245, 244, 240, 0.22);
  --line: rgba(245, 244, 240, 0.07);

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-sans: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;

  /* Tag pill colors */
  --tag-blue-bg: rgba(29, 78, 216, 0.2);
  --tag-blue-text: #93b4fd;
  --tag-blue-border: rgba(29, 78, 216, 0.35);

  --tag-purple-bg: rgba(109, 40, 217, 0.2);
  --tag-purple-text: #c4a8fd;
  --tag-purple-border: rgba(109, 40, 217, 0.35);

  --tag-teal-bg: rgba(13, 120, 100, 0.2);
  --tag-teal-text: #5ee8d0;
  --tag-teal-border: rgba(13, 120, 100, 0.35);

  --tag-green-bg: rgba(20, 140, 60, 0.2);
  --tag-green-text: #86efac;
  --tag-green-border: rgba(20, 140, 60, 0.35);

  --tag-orange-bg: rgba(180, 60, 10, 0.2);
  --tag-orange-text: #fca87a;
  --tag-orange-border: rgba(180, 60, 10, 0.35);

  --tag-slate-bg: rgba(80, 100, 130, 0.2);
  --tag-slate-text: #b8c8e0;
  --tag-slate-border: rgba(80, 100, 130, 0.35);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

::selection {
  background: rgba(245, 244, 240, 0.18);
}

/* --- Typography --- */
.font-display {
  font-family: var(--font-display);
}

.font-mono {
  font-family: var(--font-mono);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dimmer);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dimmer);
  text-align: center;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 56px;
  transition: background-color 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 0.5px solid transparent;
}

.nav.scrolled {
  background-color: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-name {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 28px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(245, 244, 240, 0.75);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 7px 18px;
  border-radius: 2px;
  transition: opacity 0.2s ease;
}

.nav-cta:hover {
  opacity: 0.88;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- Hero Carousel --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  background: var(--black);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide.departing {
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8, 8, 8, 0.85) 0%, rgba(8, 8, 8, 0.5) 45%, rgba(8, 8, 8, 0.1) 100%),
    linear-gradient(to top, rgba(8, 8, 8, 0.6) 0%, transparent 40%);
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 48px 108px;
  max-width: 660px;
  z-index: 3;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dimmer);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.8vw, 84px);
  font-weight: 400;
  line-height: 1.06;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-stat {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--dim);
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-subhead {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(245, 244, 240, 0.85);
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  border: 0.5px solid;
}

.hero-tag.tag-slate {
  background: var(--tag-slate-bg);
  color: var(--tag-slate-text);
  border-color: var(--tag-slate-border);
}

.hero-tag.tag-teal {
  background: var(--tag-teal-bg);
  color: var(--tag-teal-text);
  border-color: var(--tag-teal-border);
}

.hero-tag.tag-purple {
  background: var(--tag-purple-bg);
  color: var(--tag-purple-text);
  border-color: var(--tag-purple-border);
}

.hero-tag.tag-orange {
  background: var(--tag-orange-bg);
  color: var(--tag-orange-text);
  border-color: var(--tag-orange-border);
}

.hero-tag.tag-blue {
  background: var(--tag-blue-bg);
  color: var(--tag-blue-text);
  border-color: var(--tag-blue-border);
}

.hero-tag.tag-green {
  background: var(--tag-green-bg);
  color: var(--tag-green-text);
  border-color: var(--tag-green-border);
}

/* Custom scroll indicator — replaces native scrollbar */
.scroll-indicator {
  position: fixed;
  right: 20px;
  top: 15%;
  z-index: 50;
  width: 2px;
  height: 70vh;
  background: rgba(245, 244, 240, 0.12);
  pointer-events: none;
  transition: opacity 0.5s ease;
  border-radius: 1px;
}

.scroll-indicator-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 244, 240, 0.6);
  transition: top 0.15s ease-out, width 0.4s ease, height 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  animation: scrollDotBreathe 3s ease-in-out infinite;
}

@keyframes scrollDotBreathe {
  0%, 100% { box-shadow: 0 0 4px 1px rgba(245, 244, 240, 0.08); }
  50% { box-shadow: 0 0 8px 2px rgba(245, 244, 240, 0.18); }
}

/* When actively scrolling — dot grows and glows */
.scroll-indicator.active .scroll-indicator-dot {
  width: 8px;
  height: 8px;
  background: rgba(245, 244, 240, 0.9);
  box-shadow: 0 0 14px 4px rgba(245, 244, 240, 0.3);
  animation: none;
}

/* When resting — dot shrinks and breathes gently */
.scroll-indicator.resting .scroll-indicator-dot {
  width: 5px;
  height: 5px;
  background: rgba(245, 244, 240, 0.25);
}

.scroll-indicator.hidden {
  opacity: 0;
}

.scroll-indicator.resting {
  opacity: 0.06;
}

.scroll-indicator.active {
  opacity: 1;
}

/* Hero Learn More Link */
.hero-cta-arrow {
  display: inline-block;
  font-size: inherit;
  color: rgba(245, 244, 240, 0.4);
  text-decoration: none;
  margin-left: 4px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.hero-cta-arrow:hover {
  color: rgba(245, 244, 240, 0.9);
  transform: translateX(4px);
}

/* Hero Scroll Hint — centered in controls bar */
.hero-scroll-hint {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(245, 244, 240, 0.4);
  transition: opacity 0.5s ease;
}

.hero-scroll-hint span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.55);
}

.hero-scroll-hint svg {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(4px); opacity: 0.8; }
}

.hero-scroll-hint.hidden {
  opacity: 0;
  pointer-events: none;
}


/* Ch2 — Disney+ Video Background */
.ch2-video-bg video {
  playback-rate: 0.5;
}

/* Ch1 — Rotating Earth + Connections */
.ch1-bg {
  background: #040810;
}

.ch1-earth {
  position: absolute;
  inset: -15%;
  background-size: cover;
  background-position: center;
  animation: ch1Rotate 120s linear infinite;
  will-change: transform;
}

@keyframes ch1Rotate {
  from { transform: rotate(0deg) scale(1.1); }
  to { transform: rotate(360deg) scale(1.1); }
}

#heroParticles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .ch1-earth {
    animation: none;
  }
}

/* Hero Controls */
.hero-controls {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-dot {
  width: 32px;
  height: 24px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: width 0.3s ease;
  display: flex;
  align-items: center;
}

.hero-dot::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(245, 244, 240, 0.2);
  border-radius: 1px;
}

.hero-dot.active {
  width: 48px;
}

.hero-dot-fill {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 0%;
  background: var(--white);
  border-radius: 1px;
}

.hero-dot-fill {
  transition: width 0.1s linear;
}

.hero-arrows {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(245, 244, 240, 0.35);
  background: rgba(8, 8, 8, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.hero-arrow:hover {
  border-color: rgba(245, 244, 240, 0.7);
  background: rgba(245, 244, 240, 0.12);
}

.hero-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  stroke-width: 2;
  fill: none;
}

/* Play/Pause button with progress ring */
.hero-playpause {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.hero-playpause:hover {
  background: rgba(245, 244, 240, 0.12);
}

.hero-progress-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.hero-progress-bg {
  fill: none;
  stroke: rgba(245, 244, 240, 0.15);
  stroke-width: 1.5;
}

.hero-progress-fill {
  fill: none;
  stroke: rgba(245, 244, 240, 0.7);
  stroke-width: 1.5;
  stroke-dasharray: 138.23;
  stroke-dashoffset: 138.23;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.3s ease-out;
}

.hero-pause-icon,
.hero-play-icon {
  width: 18px;
  height: 18px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

/* Ch2 — Disney+ Stats Panel */
.ch2-stats {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  text-align: center;
  background: rgba(8, 8, 8, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 0.5px solid rgba(245, 244, 240, 0.1);
  border-radius: 8px;
  padding: 40px 44px;
}

.ch2-disney-logo {
  width: 160px;
  height: 48px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.ch2-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}

.ch2-stat-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px 32px;
}

.ch2-stat {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.ch2-stat-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}

.ch2-stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 6px;
}

/* --- Logo Strip --- */
.logo-strip {
  height: 35vh;
  min-height: 200px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.logo-strip-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-strip-row svg {
  height: 22px;
  fill: var(--white);
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.logo-strip-row svg:hover {
  opacity: 0.9;
}

/* --- POV Manifesto --- */
.pov-beat {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}


.pov-text {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1000px;
  width: 100%;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pov-text h2 {
  font-family: var(--font-sans);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* Underline reveal animation */
/* Typewriter cursor */
.typewriter-cursor {
  display: inline-block;
  font-weight: 300;
  color: var(--white);
  animation: cursorBlink 0.8s step-end infinite;
  margin-left: 2px;
}

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

.underline-reveal {
  position: relative;
  display: inline-block;
}

.underline-reveal {
  --underline-width: 0%;
}

.underline-reveal::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: var(--underline-width);
  height: 3px;
  background: var(--white);
  border-radius: 2px;
}

.pov-beat-4 .pov-text h2 {
  font-size: clamp(40px, 6vw, 86px);
  font-style: normal;
  line-height: 1.1;
}

.pov-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  will-change: transform;
}

.pov-bg img,
.pov-bg video {
  width: 100%;
  height: 120%;
  object-fit: cover;
  position: absolute;
  top: -10%;
  left: 0;
}

.pov-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* POV Beat 3 — Logo Reveal */
.pov-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin: 32px 0 48px;
}

.pov-logos svg {
  height: 28px;
  fill: var(--white);
  opacity: 0;
}

/* --- Advisory --- */
/* --- Advisory --- */
.advisory {
  padding: 120px 48px;
  background: var(--black);
}

.advisory .section-label {
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--dim);
  margin-bottom: 8px;
  text-align: center;
}

.advisory-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--white);
  margin-top: 16px;
  text-align: center;
}

.advisory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 64px auto 0;
}

.advisory-card {
  background: rgba(245, 244, 240, 0.03);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 12px;
  border: 0.5px solid var(--line);
  border-top: 3px solid rgba(245, 244, 240, 0.08);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
  color: inherit;
}

.advisory-card:hover {
  border-color: rgba(245, 244, 240, 0.15);
}

.advisory-card[data-accent="#ff6b35"]:hover { border-top-color: #ff6b35; background: rgba(255, 107, 53, 0.06); box-shadow: 0 -2px 30px rgba(255, 107, 53, 0.1); }
.advisory-card[data-accent="#4a8eff"]:hover { border-top-color: #4a8eff; background: rgba(74, 142, 255, 0.06); box-shadow: 0 -2px 30px rgba(74, 142, 255, 0.1); }
.advisory-card[data-accent="#b31b1b"]:hover { border-top-color: #b31b1b; background: rgba(179, 27, 27, 0.06); box-shadow: 0 -2px 30px rgba(179, 27, 27, 0.1); }

.advisory-card-org {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.advisory-card-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 4px;
}

.advisory-card-copy {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--dim);
  margin-top: 12px;
  flex: 1;
}

.advisory-card-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--dim);
  margin-top: 20px;
  display: inline-block;
  transition: color 0.2s ease;
}

.advisory-card:hover .advisory-card-link {
  color: var(--white);
}

/* --- About --- */
.about {
  padding: 140px 48px;
  background: var(--black);
}

.about-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  max-width: 400px;
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
}

.about-copy {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 300;
  line-height: 1.8;
  color: var(--dim);
}

.about-links {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-top: 36px;
}

.about-btn {
  flex: 1;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 14px 24px;
  border-radius: 4px;
  border: 1px solid rgba(245, 244, 240, 0.25);
  background: transparent;
  color: var(--white);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  text-align: center;
}

.about-btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

/* --- Footer --- */
.footer {
  padding: 48px 48px 32px;
  background: var(--black);
  border-top: 0.5px solid var(--line);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 0.5px solid var(--line);
}

.footer-logo {
  height: 20px;
  width: auto;
  opacity: 0.5;
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--dim);
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}

.footer-left {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--dimmer);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--dimmer);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding: 0 24px 80px;
    max-width: 100%;
  }

  .hero-controls {
    padding: 0 24px;
    bottom: 32px;
  }

  .hero-stat-card {
    display: none;
  }

  .hero-headline {
    font-size: clamp(28px, 7vw, 42px);
  }

  .logo-strip-row {
    gap: 24px;
    padding: 0 20px;
  }

  .logo-strip-row svg {
    height: 16px;
  }

  .pov-text h2 {
    font-size: clamp(28px, 7vw, 52px);
  }

  .pov-beat-4 .pov-text h2 {
    font-size: clamp(36px, 10vw, 80px);
  }

  .advisory {
    padding: 80px 20px;
  }

  .advisory-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about {
    padding: 80px 20px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .about-heading {
    text-align: center;
  }

  .cta {
    padding: 80px 20px;
  }

  .footer {
    padding: 32px 20px 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

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

  .hero-slide {
    transition: none;
  }
}
