/* ==========================================================================
   FLIPO V4 REVAMP — STYLESHEET
   Aesthetics inspired by closewithcopy.co
   Typography: Manrope & Playfair Display
   Color Palette: Warm Alabaster, Espresso Noir, Electric Vermilion
   ========================================================================== */

:root {
  --paper: #fdfcfa;
  --cream: #f9f5f0;
  --cream-soft: #f4efe8;
  --ink: #422b21;
  --ink-dark: #261710;
  --muted: #756961;
  --muted-light: #9c9088;
  --orange: #ff5100;
  --orange-hover: #d74200;
  --orange-soft: rgba(255, 81, 0, 0.08);
  --line: #e8e1d9;
  --line-light: rgba(66, 43, 33, 0.08);
  --dark-bg: #0e0d0c;
  --dark-card: #181615;
  --dark-line: rgba(255, 255, 255, 0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

button, input, select, textarea {
  font: inherit;
}

button, a, input, textarea, select {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
  border: 0;
  background: transparent;
}

button:disabled {
  cursor: default;
}

a, button {
  touch-action: manipulation;
}

button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

::selection {
  background: var(--orange);
  color: #fff;
}

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

h1, h2, h3, h4, p {
  margin: 0;
}

h1, h2, h3, h4 {
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--ink);
}

em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
}

.wrap {
  width: min(1320px, calc(100% - 96px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -70px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  font-weight: 700;
  border-radius: 6px;
  z-index: 999;
  transition: top 0.2s;
}

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

/* ==========================================================================
   AMBIENT CURSOR GLOW
   ========================================================================== */

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 81, 0, 0.06) 0%, rgba(255, 81, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
  transform: translate3d(-50%, -50%, 0);
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ==========================================================================
   ON-SCROLL SEXY REVEAL ANIMATIONS (GPU ACCELERATED & VISIBLE)
   ========================================================================== */

/* Sections & general content blocks */
.motion-ready:not(.reduced-motion) .reveal-on-scroll:not(.is-revealed) {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Individual cards & interactive components - reveal on their OWN viewport intersection */
.motion-ready:not(.reduced-motion) .reveal-card:not(.is-revealed) {
  opacity: 0;
  transform: translateY(36px) scale(0.97);
  will-change: transform, opacity;
}

.reveal-card {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

.reveal-card.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delay for cards appearing together in grid/flex layouts */
.reveal-card.is-revealed:nth-child(1) { transition-delay: 0.04s; }
.reveal-card.is-revealed:nth-child(2) { transition-delay: 0.12s; }
.reveal-card.is-revealed:nth-child(3) { transition-delay: 0.20s; }
.reveal-card.is-revealed:nth-child(4) { transition-delay: 0.28s; }
.reveal-card.is-revealed:nth-child(5) { transition-delay: 0.36s; }
.reveal-card.is-revealed:nth-child(6) { transition-delay: 0.44s; }

/* 3D Tilt Card Physics with Dynamic Spotlight Glow */
.tilt-card {
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              rotate 0.25s var(--ease);
  overflow: hidden;
}

.tilt-card > * {
  position: relative;
  z-index: 2;
}

.tilt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px -12px rgba(66, 43, 33, 0.14);
}

.card-glow-layer {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(380px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 81, 0, 0.14), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1 !important;
}

.tilt-card:hover .card-glow-layer {
  opacity: 1;
}

/* Dark themed card hover & glow */
.methodology-card .card-glow-layer,
.roster-card .card-glow-layer {
  background: radial-gradient(380px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 100, 30, 0.2), transparent 65%);
}

.methodology-card:hover {
  border-color: rgba(255, 81, 0, 0.4);
  box-shadow: 0 20px 42px -12px rgba(0, 0, 0, 0.6), 0 0 24px -6px rgba(255, 81, 0, 0.25);
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 56px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  padding: 15px 26px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  transition: background 0.2s, transform 0.25s var(--ease), box-shadow 0.25s;
  box-shadow: 0 4px 14px rgba(255, 81, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.button span:last-child {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s var(--ease);
}

.button:hover {
  background: var(--orange-hover);
  box-shadow: 0 8px 26px rgba(255, 81, 0, 0.38);
  transform: translateY(-2px);
}

.button:hover span:last-child {
  transform: translate(3px, -3px);
}

.button-small {
  font-size: 13px;
  min-height: 44px;
  padding: 11px 18px;
  gap: 16px;
}

.button-outline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.button-magnetic {
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), background 0.2s, box-shadow 0.2s;
}

.section-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: inline-block;
  margin-bottom: 12px;
}

.section-tag-accent {
  color: var(--orange);
}

.section-tag-light {
  color: #ffffffa0;
}

.badge-pill {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cream-soft);
  color: var(--muted);
}

.accent-pill {
  background: rgba(255, 81, 0, 0.12);
  color: var(--orange);
}

/* ==========================================================================
   F01: HEADER & NAVIGATION
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-light);
  transition: background 0.3s;
}

.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  font-size: 44px;
  letter-spacing: -3px;
  line-height: 1;
  font-weight: 800;
  display: inline-flex;
  align-items: flex-start;
  color: var(--ink);
}

.wordmark span {
  font-size: 11px;
  letter-spacing: 0;
  margin: 6px 0 0 4px;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 28px;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  transition: color 0.2s;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--orange);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.mobile-nav[hidden] {
  display: none;
}

/* ==========================================================================
   F02: FULL-BLEED SCROLL-DRIVEN HERO SECTION
   ========================================================================== */

.hero-scroll-track {
  position: relative;
  height: 240vh; /* Pinned scroll distance */
  background: var(--dark-bg);
}

.hero-sticky-frame {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Fullscreen Background Video Scene */
.hero-bg-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  background: #000;
}

.hero-fullscreen-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* High-Performance Hero Video: Naturally transitions from black demographic balls to candy fandom spheres */
#hero-video {
  transform: translateZ(0);
  will-change: transform;
}

/* Dark studio fade on left ensuring 100% text legibility */
.hero-vignette-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 13, 12, 0.95) 0%, rgba(14, 13, 12, 0.85) 35%, rgba(14, 13, 12, 0.3) 65%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-vignette-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 13, 12, 0.85) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Hero Content Stage & Transition Frames */
.hero-content-stage {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-frame {
  max-width: 680px;
  color: #fff;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.hero-frame.frame-1 {
  opacity: 1;
  transform: translateY(0);
}

.hero-frame.frame-1.fade-out {
  opacity: 0;
  transform: translateY(-40px);
  pointer-events: none;
}

.hero-frame.frame-2 {
  position: absolute;
  top: 50%;
  transform: translateY(-30%) scale(0.95);
  opacity: 0;
  pointer-events: none;
}

.hero-frame.frame-2.active {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  pointer-events: auto;
}

/* Frame 1 Typography */
.hero-frame .eyebrow {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.hero-frame h1 {
  color: #fff;
  font-size: clamp(48px, 5.4vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

.hero-frame h1 em {
  color: var(--orange);
}

.hero-frame .hero-statement {
  font-size: 21px;
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}

.hero-frame .hero-statement span {
  color: var(--orange);
}

.hero-frame .hero-description {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-wheel {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: var(--orange);
  border-radius: 999px;
  animation: scrollPulse 1.8s infinite;
}

@keyframes scrollPulse {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 14px); opacity: 0; }
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof img {
  width: 100px;
  height: auto;
  border-radius: 999px;
}

.hero-proof p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.hero-proof strong {
  color: #fff;
  font-weight: 700;
}

/* Frame 2 Typography */
.eyebrow-accent {
  color: var(--orange);
}

.hero-reveal-heading {
  color: #fff;
  font-size: clamp(40px, 4.6vw, 70px);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-reveal-heading em {
  color: var(--orange);
}

.hero-reveal-text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: 32px;
}

.fandom-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.fandom-tag {
  font-size: 11px;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.fandom-tag.anime { border-color: #ff3b30; color: #ff8b85; }
.fandom-tag.hello-kitty { border-color: #ff9500; color: #ffd18a; }
.fandom-tag.movies { border-color: #34c759; color: #a6f3b9; }
.fandom-tag.retail { border-color: #007aff; color: #a4cdff; }
.fandom-tag.kawaii { border-color: #af52de; color: #e5b9ff; }

/* Stage Bar & Progress Tracker */
.hero-stage-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding-top: 20px;
}

.stage-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #34c759;
  border-radius: 50%;
  box-shadow: 0 0 10px #34c759;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.dot-sep {
  color: var(--orange);
  margin: 0 8px;
}

.hero-scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 5;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--orange);
  transition: width 0.1s linear;
}

/* ==========================================================================
   BRAND STRIP
   ========================================================================== */

.brand-strip {
  border-block: 1px solid var(--line-light);
  background: var(--cream);
  padding: 36px 0;
}

.brand-strip > .wrap {
  display: flex;
  align-items: center;
  gap: 50px;
}

.brand-strip p {
  font-size: 10px;
  letter-spacing: 0.14em;
  line-height: 1.8;
  flex-shrink: 0;
  color: var(--muted);
  font-weight: 800;
}

.brand-names {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
  color: var(--muted);
}

.transformers {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.pony {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 700;
}

.rangers {
  font-size: 17px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.5px;
}

.hasbro {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
}

/* ==========================================================================
   SECTION COMMON HEADINGS
   ========================================================================== */

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 32px;
}

.section-heading-row h2 {
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-intro {
  max-width: 440px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ==========================================================================
   F03: PHILOSOPHY & AXIOM
   ========================================================================== */

.philosophy-section {
  padding: 100px 0 80px;
}

.philosophy-header {
  margin-bottom: 36px;
}

.philosophy-quote {
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.04em;
  max-width: 1050px;
}

.philosophy-quote em {
  color: var(--orange);
}

.philosophy-card {
  background: var(--cream);
  border: 1px solid var(--line-light);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}

.lead-statement {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

.secondary-statement {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.philosophy-badge-cluster {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 12px 30px -10px rgba(66, 43, 33, 0.06);
}

.metric-highlight {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric-num {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
  color: var(--ink);
}

.accent-symbol {
  color: var(--orange);
}

.metric-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ==========================================================================
   F04: WHAT WE ARE (DUAL ENGINE)
   ========================================================================== */

.what-we-are-section {
  padding: 80px 0 100px;
}

.dual-engine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.engine-card {
  background: var(--cream);
  border: 1px solid var(--line-light);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
}

.featured-engine-card {
  background: #fff;
  border-color: rgba(255, 81, 0, 0.22);
  box-shadow: 0 16px 36px -8px rgba(255, 81, 0, 0.08);
}

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

.card-icon {
  font-size: 24px;
  color: var(--muted);
}

.accent-icon {
  color: var(--orange);
}

.engine-card h3 {
  font-size: 32px;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.card-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 32px;
  flex-grow: 1;
}

.feature-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line-light);
  padding-top: 24px;
}

.feature-checklist li {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-checklist li span {
  color: var(--orange);
  font-weight: 700;
}

/* ==========================================================================
   F05: HOW IT WORKS
   ========================================================================== */

.how-it-works-section {
  padding: 80px 0 100px;
  border-top: 1px solid var(--line-light);
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.workflow-step {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 10px 30px -10px rgba(66, 43, 33, 0.04);
}

.step-indicator {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}

.step-num {
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -2px;
}

.step-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.workflow-step h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.workflow-step p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 24px;
}

.step-meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted-light);
  border-top: 1px solid var(--line-light);
  padding-top: 16px;
}

.workflow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--orange);
  padding: 0 12px;
}

/* ==========================================================================
   F06: METHODOLOGY (WITH FLUID VIDEO BG)
   ========================================================================== */

.methodology-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--dark-bg);
  color: #fff;
}

.methodology-bg-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

#methodology-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  filter: contrast(110%) saturate(120%);
  transition: transform 0.2s linear;
}

.methodology-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(14, 13, 12, 0.5) 20%, rgba(14, 13, 12, 0.94) 100%);
}

.relative-layer {
  position: relative;
  z-index: 2;
}

.light-heading h2 {
  color: #fff;
}

.light-subtext {
  color: rgba(255, 255, 255, 0.7);
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.methodology-card {
  position: relative;
  background: rgba(25, 23, 21, 0.75);
  backdrop-filter: blur(18px);
  border: 1px solid var(--dark-line);
  border-radius: 20px;
  padding: 44px 34px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card-num-watermark {
  position: absolute;
  right: 20px;
  top: 16px;
  font-size: 52px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}

.methodology-card h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 14px;
}

.methodology-card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-detail {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

/* ==========================================================================
   F07: ANIMATED IDENTITY ("WE ARE ________")
   ========================================================================== */

.identity-section {
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-line);
  padding: 90px 0;
  text-align: center;
}

.identity-stage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 16px;
  font-size: clamp(38px, 5.2vw, 76px);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #fff;
}

.identity-prefix {
  color: rgba(255, 255, 255, 0.85);
}

.identity-roller {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 1.25em;
  vertical-align: middle;
  perspective: 600px;
}

.roller-item {
  position: absolute;
  left: 0;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--orange);
  opacity: 0;
  transform: translateY(60%) rotateX(-45deg);
  transition: transform 0.5s var(--ease), opacity 0.4s ease;
  pointer-events: none;
}

.roller-item.active {
  position: relative;
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
  pointer-events: auto;
}

.roller-item.exit {
  opacity: 0;
  transform: translateY(-60%) rotateX(45deg);
}

/* ==========================================================================
   F08: OUTCOMES & METRICS GRID
   ========================================================================== */

.outcomes-section {
  padding: 100px 0;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.outcome-cell {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 20px;
  padding: 38px 32px;
  box-shadow: 0 8px 24px -6px rgba(66, 43, 33, 0.04);
}

.highlight-cell {
  background: var(--cream);
  border-color: rgba(255, 81, 0, 0.22);
}

.outcome-stat {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
}

.stat-suffix, .stat-prefix {
  color: var(--orange);
  font-size: 0.75em;
}

.text-stat {
  color: var(--orange);
  font-size: 48px;
}

.outcome-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.outcome-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.affordability-quote-block {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
}

.affordability-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
}

/* ==========================================================================
   F09: AUDIENCE INTENT (HORIZONTAL TRACK)
   ========================================================================== */

.intent-section {
  padding: 80px 0 100px;
  background: var(--cream);
  border-top: 1px solid var(--line-light);
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  display: inline-grid;
  place-items: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.carousel-btn:hover:not(:disabled) {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: scale(1.05);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.carousel-page-indicator {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  min-width: 48px;
  text-align: center;
}

.intent-track-wrapper {
  overflow: hidden;
  margin-inline: -12px;
  padding-inline: 12px;
}

.intent-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px 0 32px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.intent-track::-webkit-scrollbar {
  display: none;
}

.intent-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 320px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -10px rgba(66, 43, 33, 0.06);
}

.intent-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.role-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: var(--orange-soft);
  padding: 4px 10px;
  border-radius: 999px;
}

.role-index {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted-light);
}

.intent-card h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.intent-statement {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 14px;
}

.intent-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.intent-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid var(--line-light);
  padding-top: 16px;
  transition: gap 0.2s;
}

.intent-link:hover {
  gap: 10px;
}

/* ==========================================================================
   F10: ACCOUNTS MARQUEE
   ========================================================================== */

.accounts-section {
  padding: 80px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.accounts-header {
  text-align: center;
  margin-bottom: 40px;
}

.accounts-header h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  margin-bottom: 10px;
}

.accounts-subtitle {
  font-size: 15px;
  color: var(--muted);
}

.accounts-marquee {
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
}

.accounts-marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.acc-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--muted);
  opacity: 0.65;
  transition: opacity 0.2s, color 0.2s;
}

.acc-logo:hover {
  opacity: 1;
  color: var(--ink);
}

/* ==========================================================================
   F11: TEAM SECTION
   ========================================================================== */

.team-section {
  padding: 100px 0;
}

.team-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}

.founder-card {
  background: var(--cream);
  border: 1px solid var(--line-light);
  border-radius: 24px;
  padding: 44px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  align-items: center;
}

.founder-photo-wrap {
  width: 180px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px -8px rgba(66, 43, 33, 0.15);
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s var(--ease);
}

.founder-card:hover .founder-photo {
  transform: scale(1.05);
}

.founder-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: var(--orange-soft);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 8px;
}

.founder-content h3 {
  font-size: 32px;
  margin-bottom: 4px;
}

.founder-role-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 16px;
}

.founder-bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 20px;
}

.linkedin-btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.linkedin-btn:hover {
  text-decoration: underline;
}

.team-roster-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team-commitment-box {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 24px -8px rgba(66, 43, 33, 0.05);
}

.commitment-icon {
  font-size: 22px;
  color: var(--orange);
}

.commitment-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

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

.roster-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.roster-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-soft);
  color: var(--ink);
  font-weight: 800;
  font-size: 16px;
  display: inline-grid;
  place-items: center;
}

.roster-card h4 {
  font-size: 17px;
  margin-bottom: 2px;
}

.roster-role {
  font-size: 13px;
  color: var(--muted);
}

/* ==========================================================================
   F12: RESPONDENTS POOL (+300M)
   ========================================================================== */

.respondents-section {
  padding: 80px 0 100px;
  background: var(--cream);
  border-top: 1px solid var(--line-light);
}

.respondents-banner {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 28px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 16px 40px -12px rgba(66, 43, 33, 0.06);
}

.respondents-copy h2 {
  font-size: clamp(34px, 3.8vw, 52px);
  margin-bottom: 8px;
}

.respondents-subhead {
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
}

.respondents-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 32px;
}

.respondents-visual {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.audience-strip-img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  border: 1px solid var(--line-light);
}

.panels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.panel-item {
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.panel-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.panel-item img {
  max-height: 28px;
  max-width: 80px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.7);
  transition: filter 0.2s;
}

.panel-item:hover img {
  filter: grayscale(0) opacity(1);
}

/* ==========================================================================
   F13: TESTIMONIALS
   ========================================================================== */

.testimonials-section {
  padding: 100px 0;
}

.source-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--line-light);
  border-radius: 24px;
  padding: 40px 34px;
  margin: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.quote-glyph {
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1;
  color: var(--orange);
  opacity: 0.6;
  margin-bottom: -16px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 28px;
  flex-grow: 1;
}

.testimonial-author {
  border-top: 1px solid var(--line-light);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
}

.author-name {
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
}

.author-title {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 2px;
}

.author-org {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  margin-top: 2px;
}

/* ==========================================================================
   F14: ENQUIRY JOURNEY ("WANT TO SEE WHAT DATA ACTUALLY LOOKS LIKE?")
   ========================================================================== */

.journey-section {
  padding: 100px 0;
  background: var(--cream);
  border-top: 1px solid var(--line-light);
}

.journey-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 28px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.05fr 1.35fr;
  gap: 60px;
  box-shadow: 0 20px 50px -15px rgba(66, 43, 33, 0.08);
}

.journey-intro h2 {
  font-size: clamp(34px, 3.6vw, 48px);
  margin-bottom: 16px;
}

.journey-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 28px;
}

.journey-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.journey-checklist div {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.chk-icon {
  color: var(--orange);
  font-weight: 800;
}

.direct-contact-note {
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line-light);
  padding-top: 20px;
}

.direct-contact-note a {
  color: var(--orange);
  font-weight: 700;
}

/* Enquiry Form */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.form-group .req {
  color: var(--orange);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-soft);
  outline: none;
}

.form-group input.error,
.form-group select.error {
  border-color: #d9381e;
}

.field-error {
  font-size: 11px;
  color: #d9381e;
  font-weight: 600;
  min-height: 16px;
}

.form-submit-row {
  margin-top: 8px;
}

.form-status {
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.form-status.success {
  background: #eef7ee;
  color: #1e6b24;
  border: 1px solid #c2e2c5;
}

.form-status.error {
  background: #fdf0ee;
  color: #a72314;
  border: 1px solid #f8c9c4;
}

/* ==========================================================================
   F15: FAQ SECTION
   ========================================================================== */

.faq-section {
  padding: 100px 0 120px;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item[open] {
  border-color: rgba(255, 81, 0, 0.3);
  box-shadow: 0 8px 24px -8px rgba(66, 43, 33, 0.05);
}

.faq-question {
  padding: 24px 28px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--orange);
  transition: transform 0.25s var(--ease);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* ==========================================================================
   F16: FOOTER
   ========================================================================== */

.footer {
  border-top: 1px solid var(--line-light);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .wordmark {
  font-size: 40px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.footer-sub {
  font-size: 13px;
  color: var(--muted);
  max-width: 320px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--muted-light);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted-light);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .philosophy-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .dual-engine-grid {
    gap: 24px;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .workflow-divider {
    transform: rotate(90deg);
    padding: 8px 0;
  }
  .methodology-grid {
    grid-template-columns: 1fr;
  }
  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-layout {
    grid-template-columns: 1fr;
  }
  .respondents-banner {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .journey-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .desktop-nav, .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: grid;
    align-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
  }
  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin: auto;
    transition: transform 0.25s var(--ease);
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .mobile-nav {
    position: absolute;
    top: 84px;
    left: 0;
    width: 100%;
    background: var(--paper);
    padding: 24px 32px 36px;
    box-shadow: 0 20px 40px rgba(66, 43, 33, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid var(--line-light);
  }
  .mobile-nav a {
    font-size: 20px;
    font-weight: 700;
  }
  .mobile-cta {
    margin-top: 10px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }
  .dual-engine-grid {
    grid-template-columns: 1fr;
  }
}



@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero-frame h1 {
    font-size: 42px;
  }
  .brand-strip > .wrap {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .brand-names {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .section-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-photo-wrap {
    margin: 0 auto;
  }
  .roster-grid {
    grid-template-columns: 1fr;
  }
  .panels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-nav {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ==========================================================================
   REDUCED MOTION SUPPORT
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-on-scroll, .reveal-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .hero-lens-cursor, .cursor-glow {
    display: none !important;
  }
  #color-video {
    clip-path: none !important;
  }
  .marquee-track {
    animation: none !important;
  }
}

/* Local fonts prevent a third-party font connection from delaying the layout. */
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 400 800; font-display: swap; src: url('assets/fonts/manrope-latin.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 400 900; font-display: swap; src: url('assets/fonts/playfair-italic-latin.woff2') format('woff2'); }

/* The scroll track and the sticky viewport share the same measured geometry. */
:root { --header-height: 85px; }
.hero-scroll-track { height: auto; }
.hero-sticky-frame { position: relative; height: auto; min-height: calc(100svh - var(--header-height)); }
.hero-content-stage { padding-block: 54px 90px; }
.hero-frame { transition: none; }
.hero-frame.frame-2 { position: relative; top: auto; transform: none; opacity: 1; pointer-events: auto; margin-top: 60px; }
.hero-stage-bar { position: absolute; bottom: 22px; left: 0; right: 0; gap: 20px; padding-top: 0; }
.hero-stage-bar .round-button { flex-shrink: 0; width: 44px; height: 44px; color: white; background: #201d1a99; border: 1px solid #ffffff66; }
.stage-nav-hint { margin-left: auto; font-size: 9px; }
.progress-bar-fill { width: 100%; transform: scaleX(0); transform-origin: left; transition: none; }
.hero-scroll-progress { display: none; }
.motion-ready:not(.reduced-motion):not(.hero-static) .hero-scroll-track { height: calc(100svh - var(--header-height) + clamp(1000px, 160svh, 1800px)); }
.motion-ready:not(.reduced-motion):not(.hero-static) .hero-sticky-frame { position: sticky; top: var(--header-height); height: calc(100svh - var(--header-height)); min-height: 0; padding: 0; }
.motion-ready:not(.reduced-motion):not(.hero-static) .hero-content-stage { padding-block: 30px 80px; }
.motion-ready:not(.reduced-motion):not(.hero-static) .hero-frame.frame-2 { position: absolute; top: calc(50% - 20px); margin: 0; padding: 0; border: 0; opacity: 0; transform: translateY(-50%); }
.motion-ready:not(.reduced-motion):not(.hero-static) .hero-scroll-progress { display: block; }
.hero-content-stage { pointer-events: none; }
.hero-frame, .hero-stage-bar { pointer-events: auto; }
.hero-frame[inert] { pointer-events: none !important; }
.hero-fullscreen-video { object-position: center; }
#hero-video { will-change: auto; }
.motion-paused *, .motion-paused *::before, .motion-paused *::after { animation-play-state: paused !important; }
.motion-offscreen .marquee-track, .accounts-marquee:focus-within .marquee-track { animation-play-state: paused; }
body.motion-paused .tilt-card { rotate: none !important; transform: none !important; }
html.reduced-motion .reveal-on-scroll, html.reduced-motion .reveal-card { opacity: 1 !important; transform: none !important; transition: none !important; }
html.reduced-motion .scroll-indicator { display: none; }
.form-delivery-note { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.form-status p { margin-bottom: 16px; }
.form-status .button { margin-bottom: 10px; }
.form-status textarea { width: 100%; min-height: 180px; }
.mobile-nav { max-height: calc(100svh - var(--header-height)); overflow-y: auto; }

@media (max-height: 800px) and (min-width: 768px) {
  .hero-frame h1 { font-size: clamp(44px, 7.5vh, 68px); margin-bottom: 16px; }
  .hero-frame .hero-statement { font-size: 18px; }
  .hero-frame .hero-description { margin-bottom: 20px; }
  .hero-proof { margin-top: 18px; padding-top: 12px; }
  .hero-reveal-heading { font-size: clamp(36px, 6.8vh, 58px); }
}
@media (max-width: 900px) {
  .stage-nav-hint { display: none; }
  .hero-stage-bar { font-size: 9px; letter-spacing: 0.06em; }
}
@media (max-width: 767px) {
  .motion-ready:not(.reduced-motion):not(.hero-static) .hero-scroll-track { height: calc(100svh - var(--header-height) + 180svh); }
  .hero-content-stage { gap: 0; }
  .hero-frame { max-width: 100%; }
  .hero-frame h1 { font-size: clamp(36px, 9.8vw, 58px); margin-bottom: 16px; }
  .hero-frame .hero-statement { font-size: 17px; margin-bottom: 12px; }
  .hero-frame .hero-description { font-size: 14px; line-height: 1.55; margin-bottom: 22px; }
  .hero-frame .eyebrow { font-size: 10px; margin-bottom: 16px; }
  .hero-proof, .scroll-indicator { display: none; }
  .hero-actions { gap: 12px; }
  .hero-actions .button { padding: 14px 18px; font-size: 12px; min-height: 46px; }
  .hero-reveal-heading { font-size: clamp(32px, 8vw, 44px); margin-bottom: 16px; }
  .hero-reveal-text { font-size: 15px; line-height: 1.55; margin-bottom: 20px; }
  .fandom-tags-row { margin-top: 18px; gap: 6px; }
  .fandom-tag { padding: 4px 8px; font-size: 10px; backdrop-filter: none; }
  .hero-vignette-left { background: linear-gradient(180deg, rgba(14, 13, 12, 0.72) 0%, rgba(14, 13, 12, 0.35) 45%, rgba(14, 13, 12, 0.72) 100%); }
  .hero-stage-bar { bottom: 14px; }
  .hero-stage-bar .round-button { width: 40px; height: 40px; }
  .intent-card { min-width: 0; flex-basis: 88%; padding: 28px 24px; }
  .identity-stage {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 8px;
    font-size: clamp(20px, 5.2vw, 32px);
    width: 100%;
    text-align: center;
  }
  .identity-prefix {
    white-space: nowrap;
    flex-shrink: 0;
  }
  .identity-roller {
    display: inline-flex;
    align-items: center;
    height: 1.3em;
    min-width: 0;
    vertical-align: middle;
  }
  .roller-item {
    white-space: nowrap;
    font-size: inherit;
    line-height: 1;
  }
  .journey-card, .respondents-banner { padding: 28px 22px; }
}
@media (max-height: 650px) and (max-width: 767px) {
  .hero-frame h1 { font-size: 34px; margin-bottom: 12px; }
  .hero-frame .eyebrow { margin-bottom: 10px; }
  .hero-frame .hero-description { font-size: 13px; margin-bottom: 14px; }
  .hero-frame .hero-statement { font-size: 15px; }
  .hero-reveal-heading { font-size: 30px; }
  .hero-reveal-text { font-size: 14px; }
  .fandom-tags-row { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-track { height: auto !important; }
  .hero-sticky-frame { position: relative !important; height: auto !important; }
  .hero-frame { opacity: 1 !important; transform: none !important; }
  .hero-frame.frame-2 { position: relative !important; top: auto !important; margin-top: 48px !important; }
  .hero-content-stage { padding-block: 48px 90px !important; }
  .hero-scroll-progress { display: none !important; }
}
