/* ===== Windy Isle Entertainment — Dark Theme (close-match clone) ===== */
:root {
  /* Brand colors extracted from the original site */
  --c-bg: #0A0512;            /* near-black charcoal */
  --c-bg-2: #120920;
  --c-bg-soft: #1A0E2C;
  --c-purple: #4F1863;
  --c-purple-deep: #2E0D3B;
  --c-orange: #DB5300;
  --c-orange-2: #F26B12;
  --c-orange-text: #A74000;
  --c-pink: #EBBCDC;
  --c-pink-soft: #F8E1EE;
  --c-pink-deep: #B79BD7;     /* lavender from awards */
  --c-mustard: #CE823A;
  --c-gold: #D4A017;
  --c-cream-1: #F4C89C;       /* peach gradient stop 1 */
  --c-cream-2: #F0D4A8;       /* peach gradient stop 2 */
  --c-cream-3: #F2DACA;       /* peach gradient stop 3 */
  --c-cream-4: #F0D9C0;
  --c-cream-5: #EECDB5;
  --c-text-on-dark: #FFFFFF;
  --c-text-soft-on-dark: rgba(255, 255, 255, 0.7);
  --c-text-mute-on-dark: rgba(255, 255, 255, 0.5);
  --c-text-on-light: #0A0512;
  --c-text-mute-on-light: #555555;
  --c-line-dark: rgba(255, 255, 255, 0.08);

  --font-body: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Sora", "Nunito", system-ui, sans-serif;
  --weight-display: 600;
  --weight-display-accent: 600;
  --weight-interface: 500;
  --weight-interface-strong: 600;
  --weight-figure: 700;
  --weight-body: 400;
  --weight-body-emphasis: 500;
  --weight-body-strong: 600;

  /* 8pt spacing scale */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;

  /* Signature motion */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 50px;

  --header-h: 76px;

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.25);
  --shadow: 0 18px 50px -18px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 30px 80px -20px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: var(--font-body);
  font-weight: var(--weight-body);
  color: var(--c-text-on-dark);
  background: var(--c-bg);
  overflow-x: hidden;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1;
}
/* Reserve the first viewport if a minimal shell is ever served before a route
   renders, preventing the static footer from flashing at the top. */
#main:empty { min-height: 100svh; }

/* Meaningful source content for crawlers and no-JavaScript visitors. The app
   replaces this section as soon as the current route renders. */
.app-booting .seo-fallback {
  visibility: hidden;
}
.seo-fallback {
  min-height: 100svh;
  display: grid;
  align-content: center;
  gap: 24px;
  width: min(100% - 64px, 980px);
  margin: 0 auto;
  padding: calc(var(--header-h) + 72px) 0 96px;
}
.seo-fallback .eyebrow {
  margin: 0;
  color: var(--c-pink);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.seo-fallback h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .98;
}
.seo-fallback > p:not(.eyebrow) {
  max-width: 740px;
  margin: 0;
  color: var(--c-text-soft-on-dark);
  font-size: clamp(18px, 2vw, 24px);
}
.seo-fallback nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.seo-fallback nav a {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-pill);
  font-weight: 600;
}
@media (max-width: 640px) {
  .seo-fallback {
    width: min(100% - 40px, 980px);
    padding-top: calc(var(--header-h) + 56px);
  }
  .seo-fallback h1 { font-size: clamp(42px, 13vw, 64px); }
}
h1, h2, h3, .section-title, .hero-h1 { text-wrap: balance; letter-spacing: -0.01em; }
h1, h2, h3, .hero-h1, .section-title, .mission-h2, .cta-banner h2,
.prod-section-head h2, .partners-head h2 {
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  letter-spacing: 0;
}
/* Heading accents stay in the same display family for a unified studio voice. */
h1 em, h2 em, h3 em, .hero-h1 em, .section-title em,
.section-title .italic-orange, .section-title .italic-pink,
.section-title .italic-purple, .mission-h2 .orange-it {
  font-family: var(--font-display);
  font-weight: var(--weight-display-accent);
}
p { text-wrap: pretty; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; line-height: 1.2; cursor: pointer; border: 0; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--c-purple); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 1000;
}
.skip-link:focus { left: 8px; }

/* ============ Header ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  min-height: var(--header-h);
}
.site-header.scrolled {
  background: rgba(10, 5, 18, 0.95);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--c-line-dark);
}
.nav-row {
  display: flex; align-items: center; gap: 20px;
  height: var(--header-h);
  flex-wrap: nowrap;
  min-width: 0;
}
/* Keep primary nav from overflowing the row between breakpoints */
.primary-nav { flex-wrap: nowrap; min-width: 0; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden; background: transparent;
  display: inline-block;
}
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.brand-text { display: inline-flex; align-items: center; }
.brand-text img { height: 22px; width: auto; display: block; }

.primary-nav {
  display: flex; align-items: center; gap: 14px; margin-left: auto;
}
.primary-nav a {
  padding: 10px 14px; border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: var(--weight-interface); font-size: 15px; letter-spacing: .01em;
  line-height: 1.2;
  color: rgba(255,255,255,.92);
  transition: background 0.2s ease, color 0.2s ease;
}
.primary-nav a:hover { color: #fff; background: rgba(255,255,255,.06); }
.primary-nav a.active { color: var(--c-pink); }

.search-btn, .menu-btn {
  background: transparent; border: 1px solid rgba(255,255,255,.18);
  color: #fff; width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.search-btn:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }
.menu-btn { display: none; flex-direction: column; gap: 4px; }
.menu-btn span { display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px; }

/* Between the mobile breakpoint and ~1120px, tighten the desktop nav so it
   doesn't overflow and leave a black strip */
@media (max-width: 1120px) {
  .nav-row { gap: 16px; }
  .primary-nav { gap: 6px; }
  .primary-nav a { padding: 8px 10px; font-size: 14px; }
}

@media (max-width: 1024px) {
  .site-header .nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .site-header .nav-row > .brand { margin-right: auto; }
  .site-header .nav-row > .search-btn,
  .site-header .nav-row > .menu-btn { flex-shrink: 0; }
  .site-header .primary-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; gap: 4px; padding: 18px 24px 26px;
    background: var(--c-bg); border-bottom: 1px solid var(--c-line-dark);
    /* translate by (full own height + header offset) so the drawer is fully
       above the viewport and nothing peeks into the nav area */
    transform: translateY(calc(-100% - var(--header-h)));
    transition: transform 0.3s cubic-bezier(.22,.61,.36,1);
    visibility: hidden;
    align-items: stretch;
    margin-left: 0;
  }
  .site-header .primary-nav.open {
    transform: translateY(0);
    visibility: visible;
  }
  .site-header .primary-nav a { padding: 14px 18px; font-size: 16px; }
  .site-header .menu-btn { display: inline-flex; }
  .brand-line-2 { display: block; }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 36px; border-radius: var(--radius-pill);
  font-weight: var(--weight-interface-strong); font-size: 15px; letter-spacing: 0.4px;
  line-height: 1.2;
  transition: transform 0.28s var(--ease-spring), background 0.2s ease, box-shadow 0.28s var(--ease-soft);
  cursor: pointer;
  border: 0;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:active { transform: translateY(0) scale(0.99); transition-duration: 0.08s; }
.btn svg { flex-shrink: 0; transition: transform 0.28s var(--ease-spring); }
.btn:hover svg { transform: translateX(2px); }
.btn-orange { background: var(--c-orange); color: var(--c-text-on-light); }
.btn-orange:hover { background: var(--c-orange-2); box-shadow: 0 12px 28px -8px rgba(219,83,0,.6); }
.btn-pink { background: var(--c-pink); color: var(--c-purple); }
.btn-pink:hover { background: #f5cfe5; box-shadow: 0 12px 28px -8px rgba(235,188,220,.6); }
.btn-ghost-light {
  background: rgba(255,255,255,.08); color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.14); box-shadow: 0 12px 28px -10px rgba(255,255,255,.25); }
.btn-purple { background: var(--c-purple); color: #fff; }
.btn-purple:hover { background: #631F7B; box-shadow: 0 12px 28px -8px rgba(79,24,99,.6); }

.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ============ Hero (Home) ============ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--c-bg);
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-video, .hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.hero-video {
  opacity: 0;
  will-change: opacity;
  pointer-events: none;
}
.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
.hero-video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
}
.hero-video::-webkit-media-controls {
  display: none !important;
}
.hero-video::-webkit-media-controls-panel {
  display: none !important;
}
.hero-video::-webkit-media-controls-play-button {
  display: none !important;
}
.hero-video.is-active { opacity: 1; }
.hero-video-first-frame-cover { display: none; }
.hero-video.is-initial-reveal,
.digital-hero-video.is-initial-reveal {
  opacity: 0;
  transition: opacity 650ms cubic-bezier(.22, 1, .36, 1);
}
.hero-video.is-initial-reveal.is-active.is-first-frame-ready,
.digital-hero-video.is-initial-reveal.is-first-frame-ready { opacity: 1; }
.hero-overlay-1 {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,5,18,.78) 0%, rgba(10,5,18,.45) 35%, rgba(10,5,18,.05) 60%, rgba(10,5,18,.0) 100%),
    linear-gradient(180deg, rgba(10,5,18,.55) 0%, rgba(10,5,18,.0) 30%, rgba(10,5,18,.0) 60%, rgba(10,5,18,.7) 100%);
  z-index: 1;
}
.hero-orb-1, .hero-orb-2 {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(50px); z-index: 1;
}
.hero-orb-1 {
  top: 30%; left: 10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(219,83,0,.18) 0%, transparent 70%);
}
.hero-orb-2 {
  top: 15%; right: 15%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(235,188,220,.18) 0%, transparent 70%);
}
.hero-fade-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 45%;
  background: linear-gradient(to top, var(--c-bg) 0%, transparent 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 10;
  max-width: 1280px; margin: 0 auto; padding: 140px 32px 80px;
}
.hero-eyebrow {
  font-weight: 700; font-size: clamp(13px, 1.5vw, 16px);
  color: var(--c-pink); letter-spacing: 0.18em;
  text-transform: uppercase; margin: 0 0 24px;
}
.hero-h1 {
  font-weight: 900; font-size: clamp(40px, 6.5vw, 80px);
  line-height: 1.05; color: #fff; margin: 0 0 28px;
  max-width: 900px; letter-spacing: -0.5px;
}
.hero-h1 .pink { color: var(--c-pink); }
.hero-h1 em.hero-care-line {
  display: block;
  white-space: nowrap;
  font-size: clamp(.78em, 10vw, 1em);
  color: var(--c-pink) !important;
  font-style: italic;
  transform: translateX(-4px);
}
.hero-h1 em { font-style: italic; color: var(--c-orange); font-weight: 900; }
.hero-sub {
  font-weight: var(--weight-body); font-size: clamp(17px, 1.4vw, 19px);
  color: rgba(255,255,255,.7); max-width: 540px; line-height: 1.75;
  margin: 0 0 44px;
}
.hero-scroll {
  position: absolute; bottom: 32px; right: 48px; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.35); font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll span { writing-mode: vertical-rl; }
@keyframes scrollBounce { 0%,100% { transform: translateY(0);} 50% { transform: translateY(6px);} }

/* ============ Sections ============ */
.section { padding: var(--space-7) 0; position: relative; }
.section.dark { background: var(--c-bg); color: #fff; }
.section.purple { background: var(--c-purple); color: #fff; }
.section.peach {
  background: linear-gradient(135deg, var(--c-cream-1) 0%, var(--c-cream-2) 30%, var(--c-cream-3) 55%, var(--c-cream-4) 75%, var(--c-cream-5) 100%);
  color: var(--c-text-on-light);
}
.section.pink-soft {
  background: linear-gradient(135deg, var(--c-cream-1) 0%, var(--c-cream-2) 30%, var(--c-cream-3) 55%, var(--c-cream-4) 75%, var(--c-cream-5) 100%);
  color: var(--c-text-on-light);
}
.section.white { background: #fff; color: var(--c-text-on-light); }

.eyebrow {
  display: inline-block; font-weight: 800; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-orange); margin-bottom: 20px;
}
.dark .eyebrow, .purple .eyebrow { color: var(--c-pink); }

.section-title {
  font-weight: 900; font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.1; margin: 0 0 24px; letter-spacing: -0.5px;
}
.section-title em, .section-title .italic-orange {
  font-style: italic; color: var(--c-orange); font-weight: 900;
}
.section-title .italic-pink { font-style: italic; color: var(--c-pink); font-weight: 900; }
.section-title .italic-purple { color: var(--c-purple); font-weight: 900; }
.dark .section-title, .purple .section-title { color: #fff; }
.dark .section-title .italic-purple { color: var(--c-pink); }

.section-divider {
  width: 80px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--c-orange), var(--c-pink));
  margin: 32px auto 32px;
}
.section-lead {
  font-weight: var(--weight-body); font-size: clamp(16px, 1.2vw, 17px);
  color: var(--c-text-mute-on-light);
  max-width: 700px; line-height: 1.8;
}
.dark .section-lead, .purple .section-lead { color: var(--c-text-soft-on-dark); }

.section-head { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 56px; }
.section-head.center { align-items: center; text-align: center; }

/* ============ Mission section ============ */
.mission {
  text-align: center; padding: 120px 32px;
  overflow: hidden;
}
.mission-inner { max-width: 960px; margin: 0 auto; }
.mission-h2 {
  font-weight: 900; font-size: clamp(32px, 5.5vw, 64px);
  line-height: 1.2; margin: 0 0 0; color: var(--c-text-on-light);
}
.mission-h2 .orange-it { color: var(--c-orange); font-style: italic; }
.mission-h2 .purple { color: var(--c-purple); }
.mission-divider {
  width: 80px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--c-orange), var(--c-pink));
  margin: 48px auto;
}
.mission-sub {
  font-weight: var(--weight-body); font-size: clamp(16px, 1.3vw, 18px);
  color: #555; line-height: 1.8; max-width: 700px; margin: 0 auto;
}
.mission-sub strong { color: var(--c-purple); font-weight: var(--weight-body-strong); }

/* ============ Productions grid (split panels) ============ */
.productions-section { background: var(--c-bg); padding: 60px 0 0; }
.prod-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.prod-row.reverse > .prod-cell-image { order: 2; }
.prod-row.reverse > .prod-cell-text { order: 1; }
.prod-cell {
  position: relative;
  background: var(--c-bg);
}
.prod-cell-image {
  position: relative;
  overflow: hidden;
}
.prod-cell-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.prod-cell-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(20px, 4vw, 60px) clamp(24px, 6vw, 80px);
  background: var(--c-bg);
  overflow: hidden;
}
.prod-cell-text .badge {
  align-self: flex-start; padding: 6px 14px; border-radius: var(--radius-pill);
  font-weight: 800; font-size: 11px; letter-spacing: 1.2px;
  text-transform: uppercase; margin-bottom: 14px;
}
.prod-cell-text .meta {
  font-weight: 700; font-size: 12px; color: var(--c-orange);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px;
}
.prod-cell-text h3 {
  font-weight: 900; font-size: clamp(20px, 3vw, 42px);
  margin: 0 0 clamp(8px, 1.5vw, 18px); color: #fff; line-height: 1.1;
}
.prod-cell-text p {
  color: rgba(255,255,255,.7); font-size: clamp(14px, 1.1vw, 16px); line-height: 1.6;
  margin: 0 0 24px;
}
.prod-cell-text .learn {
  align-self: flex-start; color: var(--c-orange);
  font-weight: 800; font-size: 14px; letter-spacing: 0.5px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.2s ease;
}
.prod-row:hover .prod-cell-text .learn { gap: 14px; color: var(--c-orange-2); }
.prod-cell-link { position: absolute; inset: 0; z-index: 1; }

.prod-section-head {
  text-align: center;
  padding: 0 32px 36px;
}
.prod-section-head .eyebrow { color: var(--c-pink); }
.prod-section-head h2 {
  font-weight: 900; font-size: clamp(38px, 5vw, 60px);
  color: #fff; margin: 0;
}
.prod-section-head .divider {
  width: 60px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--c-orange), var(--c-pink));
  margin: 22px auto 0;
}

@media (max-width: 800px) {
  .prod-row, .prod-row.reverse { grid-template-columns: 1fr; }
  .prod-row.reverse > .prod-cell-image, .prod-row.reverse > .prod-cell-text { order: unset; }
  .prod-cell-text { padding: 36px; }
  .prod-cell { aspect-ratio: auto; min-height: 300px; }
}

/* ============ Awards ============ */
.section.pink-soft {
  margin-top: -1px;
  padding-top: 101px;
}
.awards-head {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; margin-bottom: 50px;
}
.awards-head .titles { flex: 1; min-width: min(300px, 100%); }
.awards-pill {
  display: inline-flex; flex-direction: row; align-items: center; gap: 18px;
  background: var(--c-purple); color: #fff;
  padding: 22px 36px; border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s ease;
  cursor: default;
}
.awards-pill::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(235,188,220,.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.awards-pill:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 50px -18px rgba(79,24,99,.7), 0 6px 16px rgba(0,0,0,.2);
}
.awards-pill:hover::before { transform: translateX(100%); }
.awards-pill:hover .awards-pill-icon { animation: awardsStarSpin 0.8s cubic-bezier(.2,.7,.2,1); }
.awards-pill:hover .awards-pill-text b { animation: awardsCountPop 0.6s cubic-bezier(.2,.7,.2,1); }
@keyframes awardsStarSpin {
  0%   { transform: rotate(0deg)   scale(1); }
  40%  { transform: rotate(-18deg) scale(1.25); }
  70%  { transform: rotate( 12deg) scale(1.15); }
  100% { transform: rotate(0deg)   scale(1); }
}
@keyframes awardsCountPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.awards-pill-icon { display: inline-flex; color: var(--c-pink); transform-origin: center; }
.awards-pill-icon svg { width: 28px; height: 28px; }
.awards-pill-text b { display: inline-block; transform-origin: center; }
.awards-pill-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.awards-pill-text b { font-size: 38px; font-weight: 900; line-height: 1; color: #fff; }
.awards-pill-text span {
  font-size: 12px; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase; margin-top: 8px; color: rgba(235,188,220,.95);
}

.awards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.award-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 22px; display: flex; gap: 16px; align-items: flex-start;
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
}
.award-card-logo {
  width: 56px; height: 56px; flex-shrink: 0;
  background: transparent; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.award-card-logo img { width: 100%; height: 100%; object-fit: contain; }
.award-card-body { flex: 1; min-width: 0; }
.award-row-1 {
  display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
}
.award-year { font-weight: 800; font-size: 13px; color: #888; }
.award-status {
  font-weight: 800; font-size: 11px; padding: 3px 10px; border-radius: var(--radius-pill);
  text-transform: uppercase; letter-spacing: 0.8px; color: var(--c-text-on-light);
}
.award-org { font-weight: 900; font-size: 16px; color: var(--c-text-on-light); margin: 0 0 4px; }
.award-cat { font-size: 13px; color: #555; line-height: 1.5; margin: 0 0 8px; }
.award-show { font-weight: 700; font-size: 13px; color: var(--c-purple); }
@media (max-width: 900px) { .awards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .awards-grid { grid-template-columns: 1fr; } }

/* ============ Partners ============ */
.partners-section { padding: 70px 0 90px; background: var(--c-pink-soft); }
.partners-head { text-align: center; margin-bottom: 40px; }
.partners-head .eyebrow { color: var(--c-orange); }
.partners-head h2 {
  font-weight: var(--weight-display); font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2; color: var(--c-text-on-light); margin: 0;
}
.partners-marquee {
  width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  padding: 4px 0 22px;
}
.partners-track {
  display: flex; align-items: stretch;
  width: max-content;
  animation: partners-scroll 40s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.partners-track.is-loading {
  opacity: 0;
  animation-play-state: paused;
}
.partners-track.is-ready {
  opacity: 1;
  transition: opacity .3s ease;
}
.partners-group {
  display: flex; gap: 22px; align-items: stretch;
  padding-inline-end: 22px;
  flex: 0 0 auto;
}
.partners-mobile-viewport { display: none; }
.partners-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;
}
@keyframes partners-scroll {
  from { transform: translate3d(0, 0, 0); }
  /* Each identical group owns its trailing gap, so half the complete track
     always lands the duplicate in the exact starting position. */
  to { transform: translate3d(-50%, 0, 0); }
}
.partner-card {
  flex: 0 0 200px; height: 130px;
  background: #fff; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; box-shadow: 0 2px 12px rgba(10,5,18,0.04);
  transition: transform 0.2s ease;
}
.partner-card img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ============ Testimonials ============ */
.testimonials {
  padding: 110px 32px; text-align: center;
  position: relative;
  overflow: visible;
}
/* Cover the seam */
.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  height: 30px;
  background: var(--c-purple);
  z-index: 100;
}
/* Decorative circles */
.testimonials::after {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 720px; height: 720px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06); pointer-events: none;
}
.testimonials .eyebrow { color: var(--c-orange); margin-bottom: 28px; }
.quote-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(235, 188, 220, 0.14);
  color: var(--c-orange);
  display: flex; align-items: center; justify-content: center;
  margin: 24px auto 28px; position: relative; z-index: 3;
}
.quote-icon svg { width: 28px; height: 28px; transform: rotate(180deg); }

#testimonial-stage {
  display: grid;
  position: relative; z-index: 2;
  max-width: 920px; margin: 0 auto;
}
.t-slide {
  grid-column: 1; grid-row: 1;
  display: flex; flex-direction: column; align-items: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.4s ease;
}
.t-slide.active { opacity: 1; visibility: visible; pointer-events: auto; }

.t-quote {
  font-style: italic; font-weight: 500; font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.55; color: #fff; max-width: 880px;
  margin: 0 auto;
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding-bottom: 40px;
}
.t-author {
  display: inline-flex; align-items: center; gap: 16px;
}
.t-author img {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(255,255,255,.2);
}
.t-author-text { text-align: left; }
.t-author b { font-weight: 800; color: #fff; display: block; }
.t-author span { font-size: 13px; color: rgba(255,255,255,.6); }
.t-controls {
  display: flex; justify-content: center; align-items: center;
  gap: 16px; margin-top: 40px;
}
.t-controls button {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.16);
  transition: background 0.2s ease;
}
.t-controls button:hover { background: rgba(255,255,255,.12); }
.t-dots { display: flex; gap: 6px; }
.t-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: all 0.2s ease;
}
.t-dot.active {
  width: 36px;
  border-radius: 4px;
  background: rgba(255,255,255,.18);
  position: relative;
  overflow: hidden;
}
/* Inner fill grows left-to-right while the timer counts down */
.t-dot.active::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--t-progress, 0%);
  background: var(--c-orange);
  border-radius: 4px;
  transition: width 0.05s linear;
}

/* ============ News ============ */
.news-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; margin-bottom: 48px;
}
.news-head .section-title { margin: 0; }
.news-feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  align-items: stretch;
}
.news-three-up { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .news-three-up { grid-template-columns: 1fr; } }
.news-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--c-bg-soft); display: block;
  box-shadow: var(--shadow-sm); transition: transform 0.3s ease;
}
.news-card:hover { transform: translateY(-4px); }
.news-card.feature { min-height: 420px; aspect-ratio: 4 / 5; }
.news-card.feature .news-img { position: absolute; inset: 0; z-index: 0; }
.news-card.feature .news-overlay { position: absolute; inset: 0; z-index: 1; }
.news-card.feature .news-top {
  position: absolute; top: 16px; left: 16px; right: 16px; z-index: 3;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.news-card.feature .news-date {
  color: rgba(255,255,255,.85); font-family: var(--font-display); font-size: 12px; font-weight: var(--weight-interface);
  letter-spacing: 0.2px;
}
.news-card.feature .news-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 22px 24px; z-index: 2; }
.news-card.feature .news-overlay {
  background: linear-gradient(180deg, transparent 35%, rgba(10,5,18,.55) 65%, rgba(10,5,18,.95) 100%);
  z-index: 1;
}
.news-card.feature .news-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card.feature h3 { font-size: clamp(22px, 2vw, 28px); color: #fff; margin: 0; font-weight: var(--weight-display); line-height: 1.25; }
.news-card.feature p { color: rgba(255,255,255,.78); margin: 0 0 14px; font-size: 14px; line-height: 1.6; }

.news-card.compact { display: flex; flex-direction: column; }
.news-card.compact .news-img { aspect-ratio: 16 / 9; overflow: hidden; flex: 0 0 auto; }
.news-card.compact .news-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card.compact .news-body {
  padding: 22px 24px 20px; display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.news-card.compact .news-cat { align-self: flex-start; }
.news-card.compact h3 {
  font-size: 18px; color: #fff; margin: 4px 0 0;
  line-height: 1.3; font-weight: 900;
}
.news-card.compact p {
  color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.55;
  margin: 0; flex: 1;
}
.news-card.compact .news-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 10px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.news-card.compact .news-meta {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.5); font-size: 12px;
}
.news-card.compact .news-link {
  color: #fff; font-size: 12px;
}
.news-meta-light { color: rgba(255,255,255,.6); font-size: 12px; }

.news-cat {
  display: inline-block; padding: 4px 11px; border-radius: var(--radius-pill);
  font-weight: 800; font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; color: #fff; align-self: flex-start; margin-bottom: 10px;
}
.news-meta {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.55); font-size: 12px; margin-left: 10px;
}
.news-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 6px;
  color: #fff; font-weight: 800; font-size: 13px;
}
.news-link svg { transition: transform .2s ease; }
.news-card:hover .news-link svg { transform: translateX(4px); }

.news-bottom { text-align: center; margin-top: 50px; }
@media (max-width: 900px) {
  .news-feature-grid { grid-template-columns: 1fr; gap: 16px; }
  .news-card.compact {
    min-height: 280px;
    display: flex;
    flex-direction: column;
  }
  .news-card.compact .news-img {
    aspect-ratio: 16/9;
    flex: 0 0 auto;
  }
  .news-card.compact .news-body {
    flex: 1;
    padding: 16px;
  }
  .news-card.compact h3 { font-size: 18px; line-height: 1.3; }
  .news-card.compact p { font-size: 14px; line-height: 1.6; }
  .news-card.feature {
    min-height: 400px;
  }
  .news-card.feature .news-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 16px 16px;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(10,5,18,0.7) 20%, rgba(10,5,18,0.95) 100%);
  }
  .news-card.feature h3 { font-size: 20px; line-height: 1.25; margin-bottom: 6px; }
  .news-card.feature p { font-size: 14px; line-height: 1.6; margin-bottom: 8px; }
}

/* ============ CTA banner ============ */
.cta-banner {
  position: relative; overflow: hidden; isolation: isolate;
  padding: 120px 32px; text-align: center;
  background: linear-gradient(135deg, var(--c-purple) 0%, var(--c-orange) 100%);
  color: #fff;
}
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute; border-radius: 50%;
  z-index: 0;
  border: 1px solid rgba(255,255,255,.12); pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner::before { left: 50%; top: -200px; transform: translateX(-50%); width: 420px; height: 420px; }
.cta-banner::after { left: 50%; bottom: -180px; transform: translateX(-50%); width: 360px; height: 360px; }
.cta-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.16); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.cta-banner h2 {
  font-weight: 900; font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.1; margin: 0 0 22px;
}
.cta-banner h2 em { font-style: italic; color: var(--c-pink); font-weight: 900; }
.cta-banner p {
  max-width: 560px; margin: 0 auto 40px;
  font-size: 18px; color: rgba(255,255,255,.85);
}
.cta-actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta-banner .btn-orange {
  background: var(--c-orange-action, var(--c-orange));
  color: var(--c-text-on-light);
  border: 1px solid rgba(10,5,18,.22);
  box-shadow: 0 14px 32px -12px rgba(10,5,18,.72);
  opacity: 1;
}
.cta-banner .btn-orange:hover {
  background: var(--c-orange-action-hover, var(--c-orange-2));
  box-shadow: 0 16px 34px -10px rgba(10,5,18,.76);
}

/* ============ Video Modal ============ */
.video-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s ease;
  padding: 24px;
}
.video-modal.is-open { opacity: 1; }
.video-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,5,18,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.video-modal-frame {
  position: relative;
  width: 100%; max-width: 1100px;
  z-index: 1;
}
.video-modal-iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.7);
}
.video-modal-iframe-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-modal-close {
  position: absolute; top: -44px; right: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 22px; line-height: 1;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.video-modal-close:hover { background: rgba(255,255,255,.2); }

/* ============ Footer ============ */
.site-footer {
  background: #0A0512; padding: 70px 0 24px;
  border-top: 1px solid var(--c-line-dark);
  position: relative;
}
.site-footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(219,83,0,0) 4%,
    var(--c-orange) 22%,
    var(--c-pink) 50%,
    var(--c-purple) 78%,
    rgba(79,24,99,0) 96%,
    transparent 100%);
  opacity: 0.85;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px;
  margin-bottom: 50px;
}
.footer-brand-block { color: rgba(255,255,255,.85); }
.footer-brand-block .footer-tag {
  margin: 18px 0 22px; color: rgba(255,255,255,.7);
}
.footer-social {
  display: flex; gap: 10px;
}
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); color: #fff;
  transition: background 0.2s ease;
  border: 1px solid rgba(255,255,255,.08);
}
.footer-social a:hover { background: var(--c-orange); border-color: var(--c-orange); }
.footer-col h4 {
  font-weight: var(--weight-interface-strong); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--c-orange); margin: 0 0 18px;
}
.footer-grid > .footer-col:last-of-type h4 { color: #B79BD7; }
.footer-col a {
  display: block; padding: 5px 0;
  color: rgba(255,255,255,.7); font-size: 14px; font-weight: 400;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 22px; border-top: 1px solid var(--c-line-dark);
  font-size: 12px; color: rgba(255,255,255,.45);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ============ Search overlay ============ */
.search-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10, 5, 18, 0.85);
  backdrop-filter: blur(10px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 80px 20px;
}
.search-overlay[hidden] { display: none; }
.search-modal {
  background: var(--c-bg-soft); width: 100%; max-width: 640px;
  border-radius: var(--radius-lg); padding: 22px;
  box-shadow: var(--shadow-lg); position: relative;
  border: 1px solid rgba(255,255,255,.08);
}
.search-modal input {
  width: 100%; padding: 14px 18px; font-size: 18px; font-family: inherit;
  line-height: 1.45;
  border: 0; border-bottom: 2px solid var(--c-line-dark); outline: none;
  background: transparent; color: #fff;
}
.search-modal input::placeholder { color: rgba(255,255,255,.4); }
.search-modal input:focus { border-color: var(--c-orange); }
#search-close {
  position: absolute; right: 14px; top: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff; font-size: 22px;
}
.search-results { margin-top: 14px; max-height: 380px; overflow-y: auto; }
.search-results a {
  display: block; padding: 12px 14px; border-radius: 10px; color: #fff;
}
.search-results a:hover { background: rgba(255,255,255,.06); }
.search-results .res-meta { display: block; color: rgba(255,255,255,.5); font-size: 12px; margin-top: 2px; }

/* ============ About page hero ============ */
.about-hero {
  position: relative; min-height: 70vh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 60px) 32px 100px;
  overflow: hidden;
}
.about-hero-bg, .about-hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.about-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, rgba(10,5,18,.68) 0%, rgba(10,5,18,.42) 50%, rgba(10,5,18,.15) 100%);
}
.about-hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; width: 100%; }
.about-hero h1 {
  font-weight: 900; font-size: clamp(48px, 7vw, 88px);
  line-height: 1.05; margin: 16px 0 24px; max-width: 740px;
}
.about-hero h1 em { font-style: italic; color: var(--c-pink); font-weight: 900; }
.about-hero p { font-size: 18px; color: rgba(255,255,255,.78); max-width: 580px; }

/* About: storytelling card */
.story-row {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center;
}
.story-row .eyebrow { color: var(--c-orange); }
.story-row h2 {
  font-weight: 900; font-size: clamp(36px, 5vw, 56px);
  color: var(--c-text-on-light); margin: 0 0 28px;
  line-height: 1.06;
}
.story-row h2 em { font-style: italic; color: var(--c-orange); font-weight: 900; }
.story-row p { color: #444; font-size: 17px; line-height: 1.78; margin: 0 0 18px; }
.story-row p strong { color: var(--c-purple); font-weight: var(--weight-body-strong); }
.story-photo {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.story-photo img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.story-photo .badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--c-purple); color: #fff;
  padding: 12px 16px; border-radius: 14px;
  display: flex; flex-direction: column; align-items: center;
  font-weight: 900;
}
.story-photo .badge b { font-size: 24px; line-height: 1; }
.story-photo .badge span {
  font-size: 10px; letter-spacing: 1.3px; text-transform: uppercase;
  font-weight: 800; opacity: 0.9; margin-top: 4px;
}
@media (max-width: 800px) { .story-row { grid-template-columns: 1fr; } }

.stats-bar {
  background: var(--c-orange); padding: 50px 32px;
}
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1100px; margin: 0 auto; text-align: center; color: #fff;
}
.stat b {
  display: block; font-weight: 900; font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
}
.stat span {
  font-weight: var(--weight-interface); font-size: 12px; line-height: 1.3; letter-spacing: 1.2px;
  text-transform: uppercase; opacity: 0.9; margin-top: 8px; display: block;
}
@media (max-width: 700px) { .stats-row { grid-template-columns: repeat(3, 1fr); gap: 10px; } }

.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.value-card {
  background: var(--c-bg-soft); border-radius: var(--radius-lg);
  padding: 32px 28px; color: #fff;
  border: 1px solid var(--c-line-dark);
}
.value-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(219,83,0,.18); color: var(--c-orange);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.value-card h3 { font-weight: 900; font-size: 22px; margin: 0 0 12px; }
.value-card p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.7; margin: 0; }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .values-grid { grid-template-columns: 1fr; } }

/* Timeline */
.timeline-wrap {
  position: relative; padding: 40px 0;
  max-width: 960px; margin: 0 auto;
}
.timeline-wrap::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--c-orange), var(--c-pink));
  transform: translateX(-50%);
}
.tl-item { position: relative; display: grid; grid-template-columns: 1fr 80px 1fr; gap: 24px; margin-bottom: 60px; align-items: center; }
.tl-card {
  background: var(--c-bg-soft); padding: 26px 28px; border-radius: var(--radius-lg);
  border: 1px solid var(--c-line-dark);
}
.tl-card h3 { font-weight: 800; font-size: 22px; color: #fff; margin: 0 0 8px; }
.tl-card p { color: rgba(255,255,255,.7); margin: 0; font-size: 14px; line-height: 1.7; }
.tl-item:nth-child(odd) .tl-card { grid-column: 1; text-align: right; }
.tl-item:nth-child(even) .tl-card { grid-column: 3; }
.tl-year-wrap {
  grid-column: 2; display: flex; justify-content: center;
}
.tl-year {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: #fff; font-size: 14px;
  position: relative; z-index: 2; box-shadow: 0 0 0 6px var(--c-bg);
}
@media (max-width: 800px) {
  .timeline-wrap::before { left: 30px; }
  .tl-item, .tl-item:nth-child(even) { grid-template-columns: 60px 1fr; }
  .tl-item .tl-card, .tl-item:nth-child(even) .tl-card { grid-column: 2; text-align: left; }
  .tl-year-wrap { grid-column: 1; }
  .tl-year { width: 60px; height: 60px; font-size: 13px; }
}

/* Founders */
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.founder-card {
  background: var(--c-bg-soft); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--c-line-dark);
}
.founder-photo { aspect-ratio: 5 / 4; overflow: hidden; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-body { padding: 32px; }
.founder-body h3 { font-weight: 900; font-size: 32px; margin: 0 0 6px; color: #fff; }
.founder-role { color: var(--c-orange); font-weight: 800; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; }
.founder-bio { color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.7; margin-top: 18px; }
@media (max-width: 800px) { .founders-grid { grid-template-columns: 1fr; } }

/* ============ Productions list page ============ */
.prods-page-hero {
  padding: calc(var(--header-h) + 80px) 32px 60px;
  background: var(--c-bg);
}
.prods-page-hero .eyebrow { color: var(--c-pink); }
.prods-page-hero h1 {
  font-weight: 900; font-size: clamp(48px, 6.5vw, 80px);
  margin: 8px 0 20px; color: #fff;
}
.prods-page-hero p { color: rgba(255,255,255,.7); max-width: 640px; }

.prods-carousel {
  background: var(--c-bg); padding: 0;
  position: relative;
}
.prods-carousel:first-child { padding-top: var(--header-h); }
.prods-stage {
  position: relative;
  width: 100%;
  height: clamp(360px, 56vw, 620px);
  display: flex; align-items: stretch;
  overflow: hidden;
}
.prods-slide {
  position: absolute; top: 0; bottom: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(.4,.0,.2,1);
  display: block;
}
.prods-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.prods-slide.active {
  left: 21%; right: 21%;
  z-index: 3;
}
.prods-slide.prev,
.prods-slide.next {
  /* Keep each neighbour as a complete, full-bleed 16:9 frame. The carousel
     viewport crops the outer portion; the image itself is never squeezed into
     the narrow visible strip. */
  width: 58%;
  cursor: pointer;
  z-index: 1;
  background: rgba(18,9,32,.72);
}
.prods-slide.prev { left: -37%; }
.prods-slide.next { right: -37%; }
.prods-slide.prev img,
.prods-slide.next img {
  object-fit: cover;
  object-position: center;
}
.prods-slide.prev::after,
.prods-slide.next::after {
  display: none;
}

/* Anchor the side fades to the carousel viewport—not to percentage-offset
   slides—so no strip of raw artwork can show at either outer edge. */
.prods-stage::before,
.prods-stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 21%;
  pointer-events: none;
}
.prods-stage::before {
  left: 0;
  background:
    linear-gradient(to right, rgba(10,5,18,.96) 0%, rgba(10,5,18,.42) 52%, rgba(10,5,18,.08) 100%),
    radial-gradient(120% 100% at 100% 50%, transparent 48%, rgba(10,5,18,.24) 100%);
}
.prods-stage::after {
  right: 0;
  background:
    linear-gradient(to left, rgba(10,5,18,.96) 0%, rgba(10,5,18,.42) 52%, rgba(10,5,18,.08) 100%),
    radial-gradient(120% 100% at 0% 50%, transparent 48%, rgba(10,5,18,.24) 100%);
}

.prods-pagination {
  position: absolute; right: 18px; bottom: 18px;
  display: flex; gap: 4px; align-items: center;
  background: rgba(10,5,18,.65); backdrop-filter: blur(10px);
  padding: 6px 10px; border-radius: 50px; color: #fff;
  font-weight: 600; font-size: 13px; z-index: 4;
}
.prods-pagination button {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; transition: background 0.2s ease;
}
.prods-pagination button:hover { background: rgba(255,255,255,.18); }
.prods-pagination button svg { width: 14px; height: 14px; stroke-width: 2.4; }
.prods-pagination span { padding: 0 6px; min-width: 30px; text-align: center; }

@media (max-width: 768px) {
  .prods-stage { height: 360px; }
  .prods-stage::before,
  .prods-stage::after { display: none; }
  .prods-slide.prev, .prods-slide.next { display: none; }
  .prods-slide.active { left: 0; right: 0; }
}

.prods-detail-grid {
  max-width: 1200px; margin: 0 auto; padding: 60px 32px 100px;
}
.prods-detail-grid > .swap-pane {
  display: grid; grid-template-columns: 1.8fr 1fr; gap: 60px;
  align-content: start;
}
.prods-detail-side {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #5A1C70 0%, #3A1052 60%, #2A0B40 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 30px 30px 34px;
  align-self: start;
  box-shadow: 0 24px 60px -30px rgba(79,24,99,.7);
}
.prods-detail-side::before {
  content: ""; position: absolute; width: 200px; height: 200px; border-radius: 50%;
  top: -70px; right: -70px; pointer-events: none;
  background: radial-gradient(circle at 30% 30%, rgba(235,188,220,.35), transparent 70%);
}
.prods-detail-side::after {
  content: ""; position: absolute; width: 140px; height: 140px; border-radius: 50%;
  bottom: -50px; left: -40px; pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(219,83,0,.28), transparent 70%);
}
.prods-detail-side > * { position: relative; z-index: 1; }
.prods-detail-grid h2 { font-weight: 900; font-size: clamp(40px, 5vw, 66px); margin: 16px 0 18px; line-height: 1.08; color: #fff; }
.prods-detail-grid .badge {
  display: inline-block; padding: 5px 14px; border-radius: 50px;
  font-weight: 800; font-size: 11px; letter-spacing: 1.2px;
  text-transform: uppercase;
}
.prods-detail-meta { color: var(--c-orange); font-weight: 800; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; margin-left: 12px; }
.prods-detail-grid .body {
  max-width: 68ch;
  color: rgba(255,255,255,.78);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: var(--weight-body);
  line-height: 1.75;
}
.prods-detail-side .stat-num {
  font-weight: 900; font-size: 64px; line-height: 1; margin: 0;
  background: linear-gradient(120deg, #fff 0%, var(--c-pink) 55%, var(--c-orange) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.prods-detail-side small {
  display: block; color: rgba(255,255,255,.72); font-size: 12px;
  letter-spacing: 0.5px; margin-bottom: 26px;
}
.prods-detail-side .label {
  font-weight: 800; font-size: 11px; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--c-pink); margin-top: 18px;
}
.prods-detail-side .label + p,
.prods-detail-value {
  margin: 4px 0 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: var(--weight-body-emphasis);
  line-height: 1.5;
}
.prods-awards-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.78);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--weight-body);
  line-height: 1.6;
}
.prods-awards-list li + li { margin-top: 7px; }
.prods-detail-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.7); font-weight: 700; font-size: 13px;
  letter-spacing: 1.2px; text-transform: uppercase;
}
.prods-detail-actions {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 28px 32px 12px;
}
.prods-detail-actions.listing-actions { justify-content: flex-end; }
.prods-detail-actions a, .prods-detail-actions button {
  color: rgba(255,255,255,.85); font-weight: 700; font-size: 12px;
  letter-spacing: 1.4px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color .2s ease;
}
.prods-detail-actions a:hover, .prods-detail-actions button:hover { color: #fff; }
.prods-detail-actions svg { width: 14px; height: 14px; }
.prods-trailer .play-circle {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.85);
  display: inline-flex; align-items: center; justify-content: center;
}
.prods-trailer .play-circle svg { width: 10px; height: 10px; margin-left: 1px; }
.prods-visit {
  margin-top: 30px; display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 800; font-size: 14px; letter-spacing: .04em;
  text-transform: none; padding-bottom: 6px;
  border-bottom: 1px solid var(--c-orange);
}
@media (max-width: 800px) { .prods-detail-grid > .swap-pane { grid-template-columns: 1fr; } }

/* Productions: stats band */
.prods-stats { padding: 8px 32px 8px; }
.prods-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 1200px; margin: 0 auto;
}
.prods-stat {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,.03); border: 1px solid var(--c-line-dark);
  border-radius: var(--radius-lg); padding: 26px 24px;
  text-align: center;
}
.prods-stat .num {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 4vw, 52px); line-height: 1;
  background: linear-gradient(120deg, #fff 0%, var(--c-pink) 55%, var(--c-orange) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.prods-stat .lbl {
  display: block; margin-top: 10px; color: rgba(255,255,255,.6);
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
}
@media (max-width: 720px) { .prods-stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* Productions: showcase eyebrow */
.prods-showcase-wrap { padding-top: 56px; }
.prods-showcase-wrap > .container { margin-bottom: 4px; }

/* Productions: full slate grid */
.prods-slate-head {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px;
  align-items: end; margin-bottom: 44px;
}
.prods-slate-head .section-title { margin: 6px 0 0; }
.prods-slate-intro { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.8; }
.prods-slate-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.slate-card {
  display: flex; flex-direction: column;
  background: var(--c-bg-soft); border: 1px solid var(--c-line-dark);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, border-color 0.3s ease;
}
.slate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -24px rgba(0,0,0,.6);
  border-color: rgba(235,188,220,.4);
}
.slate-card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.slate-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-soft); }
.slate-card:hover .slate-card-media img { transform: scale(1.06); }
.slate-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 12px; border-radius: var(--radius-pill);
  font-weight: 800; font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
}
.slate-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.slate-genre {
  color: var(--c-pink); font-weight: 800; font-size: 11px;
  letter-spacing: 1.2px; text-transform: uppercase; margin: 0 0 8px;
}
.slate-card-body h3 { color: #fff; font-weight: 800; font-size: 22px; margin: 0 0 10px; line-height: 1.15; }
.slate-desc { color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.7; margin: 0 0 20px; flex: 1; }
.slate-meta {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding-top: 16px; border-top: 1px solid var(--c-line-dark);
}
.slate-networks { color: rgba(255,255,255,.5); font-size: 12px; font-weight: 600; }
.slate-cta {
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
  color: #fff; font-weight: 800; font-size: 12px; letter-spacing: 0.6px;
  text-transform: uppercase;
}
.slate-cta svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease-spring); }
.slate-card:hover .slate-cta svg { transform: translateX(3px); }
.slate-card:hover .slate-cta { color: var(--c-orange); }
@media (max-width: 1000px) { .prods-slate-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .prods-slate-head { grid-template-columns: 1fr; gap: 16px; align-items: start; } }
@media (max-width: 600px) { .prods-slate-grid { grid-template-columns: 1fr; } }

/* ============ Digital page ============ */
.digital-hero {
  position: relative; padding: calc(var(--header-h) + 80px) 32px 120px;
  text-align: center; min-height: 92vh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--c-bg);
}
/* Hard solid dark band at the bottom of the hero to guarantee no bright
   video edge peeks through the gradient. */
.digital-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, var(--c-bg) 80%);
  pointer-events: none;
  z-index: 1;
}
.digital-hero-bg { position: absolute; inset: 0 0 8px 0; overflow: hidden; }
.digital-hero-bg img,
.digital-hero-bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; border: 0; outline: 0; }
.digital-hero-overlay {
  position: absolute; inset: -1px 0;
  background: linear-gradient(180deg,
    rgba(10,5,18,0.55) 0%,
    rgba(10,5,18,0.65) 45%,
    rgba(10,5,18,0.95) 78%,
    var(--c-bg) 95%,
    var(--c-bg) 100%);
}
.digital-hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.digital-hero h1 {
  font-weight: 900; font-size: clamp(48px, 8vw, 96px);
  line-height: 1; margin: 18px 0 22px;
}
.digital-hero h1 em { font-style: italic; color: var(--c-orange); font-weight: 900; }
.digital-hero p { color: rgba(255,255,255,.85); font-size: 18px; margin: 0 0 36px; }
.trusted-row {
  display: flex; gap: 44px; align-items: center; justify-content: center;
  margin-top: 40px; flex-wrap: wrap;
}
.trusted-row .label {
  font-weight: 800; font-size: 11px; letter-spacing: 1.6px;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}
.trusted-row img { height: 60px; width: auto; opacity: 1; filter: brightness(1.15) contrast(1.05); }
.trusted-row img.on-plate {
  filter: none;
  background: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  box-sizing: content-box;
}

.digital-section {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-purple-deep) 12%, var(--c-purple) 60%, var(--c-purple-deep) 100%);
  padding: 100px 32px; text-align: center;
}

/* ----- Pixel-art "Windy Isle Digital" mark centerpiece ----- */
.digital-mark {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 30px;
  perspective: 800px;
  animation: digital-mark-float 6s ease-in-out infinite;
}
.digital-mark-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  transform-style: preserve-3d;
  transition: transform 0.3s cubic-bezier(.2,.6,.2,1);
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.45));
}
.digital-mark-glow {
  position: absolute;
  inset: -20% -20% -25% -20%;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 55%, rgba(235,188,220,0.55) 0%, rgba(219,83,0,0.25) 35%, transparent 70%);
  filter: blur(28px);
  animation: digital-mark-pulse 4.5s ease-in-out infinite;
  pointer-events: none;
}
.digital-mark::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -18px;
  transform: translateX(-50%);
  width: 64%;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.55) 0%, transparent 70%);
  filter: blur(2px);
  animation: digital-mark-shadow 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes digital-mark-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes digital-mark-pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.08); }
}
@keyframes digital-mark-shadow {
  0%, 100% { transform: translateX(-50%) scaleX(1);    opacity: 0.6; }
  50%      { transform: translateX(-50%) scaleX(0.82); opacity: 0.4; }
}
/* ----- Window glow flicker (positioned over the cabin's lit windows) ----- */
.digital-mark-windows {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    /* small left window (front of cabin) */
    radial-gradient(ellipse 14% 6% at 32% 67%, rgba(255,200,90,0.9) 0%, rgba(255,160,40,0.4) 50%, transparent 80%),
    /* right side small windows */
    radial-gradient(ellipse 14% 6% at 56% 73%, rgba(255,200,90,0.9) 0%, rgba(255,160,40,0.4) 50%, transparent 80%),
    /* door / center warm glow */
    radial-gradient(ellipse 6% 8% at 41% 70%, rgba(255,170,60,0.7) 0%, transparent 75%);
  mix-blend-mode: screen;
  filter: blur(0.5px);
  animation: digital-mark-windows-flicker 3.6s ease-in-out infinite;
}
@keyframes digital-mark-windows-flicker {
  0%, 100% { opacity: 0.85; }
  20%      { opacity: 1; }
  35%      { opacity: 0.7; }
  42%      { opacity: 0.95; }
  60%      { opacity: 0.8; }
  72%      { opacity: 1; }
  85%      { opacity: 0.75; }
}

@media (max-width: 600px) {
  .digital-mark { width: 160px; height: 160px; }
}
@media (prefers-reduced-motion: reduce) {
  .digital-mark,
  .digital-mark-glow,
  .digital-mark::after,
  .digital-mark-windows { animation: none; }
}
.digital-section .eyebrow { color: var(--c-pink); }
.digital-section h2 { font-weight: 900; font-size: clamp(36px, 5vw, 56px); color: #fff; margin: 0 0 18px; line-height: 1.1; }
.digital-section h2 em { font-style: italic; color: var(--c-pink); font-weight: 900; }
.digital-section .lead { color: rgba(255,255,255,.85); font-size: 17px; max-width: 760px; margin: 0 auto 50px; line-height: 1.8; }

/* Difference section keeps the dark white headline */
.digital-section.digital-difference .section-title { color: #fff; }
.digital-section.digital-difference .section-title em { color: var(--c-pink); }
.digital-section.digital-difference .section-divider { margin: 24px auto 32px; }
/* FAQ uses light peach — dark headline + orange italic em */
.digital-faqs .section-title { color: var(--c-text-on-light); }
.digital-faqs .section-title em { color: var(--c-orange); font-style: italic; }
/* Get Started is dark — white headline + pink italic em */
.digital-getstarted .section-title { color: #fff; }
.digital-getstarted .section-title em { color: var(--c-pink); font-style: italic; }
.digital-faqs .section-divider,
.digital-getstarted .section-divider { display: none !important; }

/* ============ Editorial typography (Digital → Difference) ============ */
/* Kicker eyebrow with thin rules either side */
.editorial-kicker {
  display: inline-flex; align-items: center; gap: 14px;
  margin: 0 auto 18px;
}
.editorial-kicker .kicker-rule {
  display: inline-block; width: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(235,188,220,0.7), transparent);
}

/* Headline: oversized italic word + colored period */
.editorial-h2 {
  display: block;
  margin: 0 auto 30px;
  line-height: 0.92;
  text-align: center;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.editorial-h2 .editorial-line-1 {
  display: block;
  font-size: clamp(28px, 3.4vw, 42px);
  color: rgba(255,255,255,0.78);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.editorial-h2 .editorial-line-2 {
  display: block;
  font-size: clamp(64px, 11vw, 168px);
  line-height: 0.85;
  letter-spacing: -0.04em;
}
.editorial-h2 .editorial-line-2 em {
  font-style: italic;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, var(--c-pink) 55%, var(--c-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 4px;
}
.editorial-h2 .editorial-dot {
  display: inline-block;
  color: var(--c-orange);
  font-style: normal;
  transform: translateY(0.05em);
}

/* Callout — magazine-style heading with em-dash marker */
.editorial-callout h3 {
  font-family: var(--font-display, var(--font-body));
  font-weight: 900;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.01em;
}
.editorial-callout h3 .callout-marker {
  color: var(--c-orange);
  font-weight: 900;
  letter-spacing: -0.06em;
  font-size: 1.4em;
  line-height: 0.8;
  margin-right: 8px;
}
.editorial-callout h3 em {
  font-style: italic;
  color: var(--c-pink);
  font-weight: 900;
}

/* ---- "Executives come to us when..." Rotating Spotlight ---- */
.spotlight {
  max-width: 1100px;
  margin: 50px auto 0;
}
.spotlight-heading {
  font-family: var(--font-display, var(--font-body));
  font-weight: 900;
  font-size: clamp(24px, 2.25vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 36px;
  text-align: center;
  color: #fff;
}
.spotlight-heading em {
  padding-right: .14em;
  font-style: italic;
  color: var(--c-pink);
  font-weight: 900;
}
.spotlight-heading .callout-marker {
  color: var(--c-orange);
  font-weight: 900;
  letter-spacing: -0.06em;
  font-size: 1.4em;
  line-height: 0.8;
  margin-right: 8px;
}
.spotlight-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: stretch;
}

/* Active panel display — all panels share one grid cell so container grows to fit the tallest */
.spotlight-stage {
  position: relative;
  padding: 44px 48px;
  display: grid;
  background: #FFF6EC;
  border: 1px solid rgba(78,24,99,0.12);
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 30px 60px -24px rgba(0,0,0,0.45);
}
.spotlight-panel {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(.2,.6,.2,1);
  pointer-events: none;
  position: relative;
  z-index: 1;
}
.spotlight-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.spotlight-num {
  display: inline-block;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
  background: rgba(219,83,0,0.10);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  user-select: none;
}
.spotlight-title {
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--c-text-on-light);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.spotlight-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(10,5,18,0.72);
  max-width: 480px;
}

/* Thumbnail list */
.spotlight-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 0;
}
.spotlight-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 4px;
  cursor: pointer;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: padding 0.3s ease;
}
.spotlight-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.spot-num {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease, transform 0.3s ease;
  text-align: right;
}
.spot-title {
  font-weight: 800;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.005em;
  transition: color 0.3s ease;
}
.spotlight-item:hover .spot-num,
.spotlight-item:hover .spot-title {
  color: rgba(255,255,255,0.85);
}
.spotlight-item.active {
  padding-left: 14px;
}
.spotlight-item.active .spot-num {
  color: var(--c-orange);
  transform: scale(1.05);
}
.spotlight-item.active .spot-title {
  color: #fff;
}

/* Progress bar on active item */
.spot-progress {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: transparent;
  pointer-events: none;
}
.spotlight-item.active .spot-progress {
  background: rgba(255,255,255,0.06);
}
.spot-progress::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--c-orange), var(--c-pink));
}
.spotlight-item.active .spot-progress::after {
  animation: none;
}
.spotlight-item.active.is-timing .spot-progress::after {
  animation: spot-progress 5500ms linear forwards;
}
.spotlight.is-paused .spotlight-item.active.is-timing .spot-progress::after {
  animation-play-state: paused;
}
@keyframes spot-progress {
  from { width: 0%; }
  to   { width: 100%; }
}
.spotlight-item:focus { outline: none; }
.spotlight-item:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 2px;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .spotlight-inner { grid-template-columns: 1fr; gap: 24px; }
  .spotlight-stage { padding: 28px; }
}

/* Reveal stack — short bold pain-point titles that expand to reveal body on hover/focus */
.reveal-stack {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.reveal-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: start;
  gap: 18px;
  padding: 22px 4px 22px 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: padding 0.35s cubic-bezier(.2,.6,.2,1);
}
.reveal-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.reveal-item::before {
  content: "";
  position: absolute;
  inset: 0 -16px;
  background: linear-gradient(90deg, rgba(219,83,0,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}
.reveal-item:hover::before,
.reveal-item:focus-within::before { opacity: 1; }
.reveal-item > * { position: relative; z-index: 1; }

.reveal-num {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--c-orange);
  line-height: 1.1;
  letter-spacing: 0.02em;
  padding-top: 4px;
}
.reveal-title {
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.reveal-item:hover .reveal-title,
.reveal-item:focus-within .reveal-title {
  color: var(--c-pink);
}
.reveal-body {
  max-height: 0;
  opacity: 0;
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.65;
  overflow: hidden;
  transform: translateY(-4px);
  transition: max-height 0.45s cubic-bezier(.2,.6,.2,1),
              opacity 0.35s ease 0.05s,
              transform 0.4s cubic-bezier(.2,.6,.2,1),
              margin 0.4s ease;
}
.reveal-item:hover .reveal-body,
.reveal-item:focus-within .reveal-body {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 10px;
}
.reveal-chev {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  padding-top: 2px;
  transition: transform 0.35s cubic-bezier(.2,.6,.2,1), color 0.3s ease;
}
.reveal-item:hover .reveal-chev,
.reveal-item:focus-within .reveal-chev {
  color: var(--c-orange);
  transform: translateX(6px);
}
.reveal-item:focus { outline: none; }
@media (max-width: 600px) {
  .reveal-item { grid-template-columns: 38px 1fr auto; gap: 12px; }
  .reveal-num { font-size: 18px; }
}

/* Feature card titles get an italic accent line */
.digital-feature h4 em {
  font-style: italic;
  font-weight: 900;
  background: linear-gradient(135deg, var(--c-pink) 0%, var(--c-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.digital-callout {
  max-width: 880px; margin: 30px auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 4px solid var(--c-orange);
  padding: 28px 32px; text-align: left;
  border-radius: 14px;
}
.digital-callout h3 { font-weight: 900; font-size: 20px; color: #fff; margin: 0 0 14px; }
.digital-callout ul:not(.reveal-stack) { padding-left: 22px; margin: 0; color: rgba(255,255,255,.85); }
.digital-callout ul:not(.reveal-stack) li { margin-bottom: 10px; line-height: 1.6; font-size: 15px; }
.digital-callout ul:not(.reveal-stack) li::marker { color: var(--c-orange); }

.digital-features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 50px;
}
.digital-feature {
  position: relative;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,.08);
  text-align: left;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.2,.6,.2,1),
              background 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease;
  cursor: default;
}
/* Animated gradient ring on hover */
.digital-feature::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-pink) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
/* Subtle radial spotlight that follows hover */
.digital-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 0%),
              rgba(219,83,0,0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.digital-feature:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.5);
}
.digital-feature:hover::before,
.digital-feature:hover::after { opacity: 1; }
.digital-feature .icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(219,83,0,.18); color: var(--c-orange);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.4s cubic-bezier(.2,.6,.2,1), background 0.35s ease, color 0.35s ease;
}
.digital-feature:hover .icon {
  transform: rotate(-8deg) scale(1.08);
  background: linear-gradient(135deg, rgba(219,83,0,0.35), rgba(235,188,220,0.25));
  color: #fff;
}
.digital-feature h4 {
  font-weight: 900; font-size: 17px; color: #fff; margin: 0 0 8px;
  line-height: 1.25;
  position: relative; z-index: 1;
}
.digital-feature p {
  color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.65; margin: 0;
  position: relative; z-index: 1;
}
@media (max-width: 1000px) { .digital-features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .digital-features { grid-template-columns: 1fr; } }

.faq-list { max-width: 820px; margin: 0 auto; text-align: left; }
.faq-item {
  background: rgba(255,255,255,.05); border-radius: 14px;
  margin-bottom: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.faq-q {
  width: 100%; text-align: left; padding: 22px 26px;
  font-weight: 800; color: #fff; font-size: 15px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::after {
  content: ""; width: 12px; height: 12px;
  border-right: 2px solid var(--c-orange);
  border-bottom: 2px solid var(--c-orange);
  transform: rotate(45deg); transition: transform 0.25s ease;
}
.faq-item.open .faq-q::after { transform: rotate(-135deg); }
.faq-a {
  padding: 0 26px; max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: rgba(255,255,255,.75);
}
.faq-item.open .faq-a { padding: 0 26px 22px; max-height: 600px; }
.faq-a p { margin: 0; line-height: 1.7; font-size: 14px; }

/* ============ News page ============ */
.news-page-hero {
  padding: calc(var(--header-h) + 60px) 32px 0;
}
.news-page-hero .eyebrow { color: var(--c-orange); margin-bottom: 14px; display: inline-flex; align-items: center; gap: 8px; }
.news-page-hero h1 {
  font-weight: 900; font-size: clamp(64px, 10vw, 120px);
  background: linear-gradient(90deg, #fff 0%, #fff 40%, var(--c-pink) 65%, var(--c-orange) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 0; line-height: 1;
}
.news-page-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 50px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  font-weight: 600; font-size: 13px; color: rgba(255,255,255,.85);
}
.news-page-tag b { color: var(--c-orange); font-weight: 800; }
.news-page-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 20px; max-width: 1280px; margin: 0 auto;
}
.news-page-rule {
  max-width: 1280px; margin: 36px auto 0;
  height: 1px; background: var(--c-line-dark);
}
.news-featured-section { padding-top: 56px; }
.news-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--c-orange); font-weight: 800; font-size: 11px;
  letter-spacing: 1.6px; text-transform: uppercase;
  margin: 0 0 22px;
}
.news-eyebrow .dash {
  display: inline-block; width: 28px; height: 2px;
  background: var(--c-orange); border-radius: 2px;
}
.news-other-head {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  margin-top: 80px; margin-bottom: 6px;
}
.news-other-head h2 {
  font-size: 28px; margin: 0; font-weight: 900; color: #fff;
}
.news-filter {
  display: inline-flex; align-items: center; gap: 14px;
}
.news-filter-label {
  font-weight: 800; font-size: 11px; letter-spacing: 1.4px;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.news-filter-pill {
  display: inline-flex; align-items: center; justify-content: space-between;
  gap: 28px; min-width: 120px;
  padding: 10px 16px; border-radius: 10px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  color: #fff; font-weight: 600; font-size: 13px;
  cursor: pointer; transition: border-color 0.2s ease, background 0.2s ease;
}
.news-filter-pill:hover { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.06); }
.news-filter-pill svg { color: rgba(255,255,255,.6); }
.news-list {
  border-top: 1px solid var(--c-line-dark); margin-top: 18px;
}
.news-list-row {
  display: grid; grid-template-columns: 120px 1fr auto;
  padding: 18px 16px; border-bottom: 1px solid var(--c-line-dark);
  align-items: center; gap: 24px; border-radius: 16px;
  transition: background 0.25s ease, transform 0.25s var(--ease-soft);
}
.news-list-row:hover { background: rgba(255,255,255,.05); transform: translateX(4px); }
.news-list-thumb {
  width: 120px; aspect-ratio: 16 / 10; border-radius: 12px;
  overflow: hidden; background: var(--c-bg-soft);
}
.news-list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-list-main { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.news-list-row .meta {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.news-list-row .meta .cat {
  display: inline-block; padding: 4px 11px; border-radius: var(--radius-pill);
  font-weight: 800; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: #fff;
}
.news-list-row .meta .date { color: rgba(255,255,255,.5); font-weight: 600; font-size: 13px; }
.news-list-row .title { color: #fff; font-weight: 800; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.35; }
.news-list-arrow {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.6);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s var(--ease-spring);
}
.news-list-arrow svg { width: 16px; height: 16px; }
.news-list-row:hover .news-list-arrow { background: var(--cat, var(--c-orange)); color: #fff; transform: translateX(2px); }
@media (max-width: 600px) {
  .news-list-row { grid-template-columns: 88px 1fr; gap: 16px; padding: 14px 12px; }
  .news-list-thumb { width: 88px; }
  .news-list-arrow { display: none; }
}
.news-page-intro {
  color: rgba(255,255,255,.66); font-size: 16px; line-height: 1.8;
  max-width: 640px; margin: 18px 0 0;
}
.news-card.feature .news-feature-excerpt {
  color: rgba(255,255,255,.82); margin: 10px 0 14px; font-size: 14px; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-feature-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: #fff; font-weight: 800; font-size: 12px; letter-spacing: 0.6px; text-transform: uppercase;
}
.news-feature-link svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease-spring); }
.news-card.feature:hover .news-feature-link svg { transform: translateX(3px); }
.news-loop {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  flex-wrap: wrap; margin-top: 64px; padding: 38px 40px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(219,83,0,.30) 0%, transparent 55%),
    radial-gradient(120% 160% at 100% 100%, rgba(235,188,220,.26) 0%, transparent 55%),
    linear-gradient(135deg, #3A1052 0%, #2A0B40 100%);
  border: 1px solid rgba(255,255,255,.1);
}
.news-loop-text h2 { font-weight: 800; font-size: clamp(24px, 3vw, 32px); color: #fff; margin: 0 0 8px; }
.news-loop-text p { color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.7; margin: 0; max-width: 560px; }
@media (max-width: 600px) { .news-loop { padding: 28px 24px; } }
@media (max-width: 900px) {
  .news-feature-grid { grid-template-columns: 1fr; }
  .news-card.feature { aspect-ratio: 16 / 10; min-height: 320px; }
}

/* ============ News detail / Article ============ */
.article-hero {
  position: relative;
  min-height: 64vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 96px) 32px 84px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.article-hero-overlay {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 50% 30%, rgba(10,5,18,.30) 0%, rgba(10,5,18,.62) 55%, rgba(10,5,18,.86) 100%),
    linear-gradient(180deg, rgba(10,5,18,.30) 0%, rgba(10,5,18,.55) 55%, var(--c-bg) 100%);
}
.article-hero-center { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.article-hero .meta { display: flex; gap: 14px; align-items: center; justify-content: center; margin-bottom: 22px; }
.article-date { color: rgba(255,255,255,.7); font-size: 13px; font-weight: 600; letter-spacing: 0.3px; }
.article-hero h1 {
  font-weight: 900; font-size: clamp(38px, 5.4vw, 68px); color: #fff;
  margin: 0 auto 22px; max-width: 900px; line-height: 1.08; letter-spacing: -0.015em;
  text-shadow: 0 2px 30px rgba(0,0,0,.45);
}
.article-hero .lede {
  color: rgba(255,255,255,.9); font-size: clamp(17px, 1.5vw, 21px);
  max-width: 680px; margin: 0 auto; line-height: 1.6;
  text-shadow: 0 1px 16px rgba(0,0,0,.4);
}
.article-back {
  position: absolute; top: calc(var(--header-h) + 28px); left: 32px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 700; font-size: 13px;
  padding: 9px 16px 9px 12px; border-radius: var(--radius-pill);
  background: rgba(10,5,18,.45); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px); transition: background 0.2s ease, border-color 0.2s ease;
}
.article-back:hover { background: rgba(10,5,18,.7); border-color: rgba(255,255,255,.35); }
.article-body {
  max-width: 760px; margin: 0 auto; padding: 72px 32px 80px;
}
.article-body p { font-size: 18px; color: rgba(255,255,255,.85); line-height: 1.85; margin: 0 0 22px; }
.article-body p a {
  color: var(--c-pink);
  font-weight: var(--weight-body-strong);
  text-decoration: underline;
  text-decoration-color: rgba(235,188,220,.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.article-body p a:hover {
  color: #fff;
  text-decoration-color: var(--c-orange);
}
.article-body > p:first-child {
  font-size: 21px; line-height: 1.7; color: #fff; font-weight: 500;
}
.article-body .article-source {
  margin: 48px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.article-body .article-source a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-orange-2);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: var(--weight-interface-strong);
  text-decoration: none;
}
.article-body .article-source a:hover { color: var(--c-pink); }
.article-body .article-source svg { width: 16px; height: 16px; }
.article-h2 {
  position: relative;
  font-weight: 900; font-size: clamp(24px, 2.6vw, 32px);
  color: #fff; letter-spacing: -0.01em; line-height: 1.2;
  margin: 52px 0 18px; padding-top: 4px;
}
.article-h2::before {
  content: ""; display: block; width: 46px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--c-orange), var(--c-pink));
  margin-bottom: 18px;
}
.article-figure {
  margin: 40px 0; 
}
.article-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); display: block;
}
.article-figure figcaption {
  margin-top: 12px; text-align: center;
  font-size: 13px; color: rgba(255,255,255,.5); font-style: italic;
}
.article-video {
  margin: 40px 0;
}
.article-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(235,188,220,.2);
  border-radius: var(--radius-lg);
  background: #050208;
  box-shadow: var(--shadow-lg);
}
.article-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.article-video figcaption {
  margin-top: 12px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}
.related-articles-section { border-top: 1px solid var(--c-line-dark); }
.related-articles-section .news-eyebrow { margin-bottom: 10px; }
.related-articles-title {
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.12;
}

/* ============ Image load fade-in ============ */
.img-fade { opacity: 0; transition: opacity 0.55s ease; }
.img-fade.img-ready { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .img-fade { transition: none; }
}
@media (max-width: 600px) {
  .article-hero { min-height: 54vh; padding: calc(var(--header-h) + 80px) 22px 60px; }
  .article-back { left: 22px; top: calc(var(--header-h) + 18px); }
}

/* ============ Contact page ============ */
.contact-hero {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 70px) 32px 40px;
  background:
    radial-gradient(60% 90% at 12% 0%, rgba(219,83,0,.30) 0%, transparent 60%),
    radial-gradient(55% 90% at 92% 20%, rgba(235,188,220,.32) 0%, transparent 60%),
    radial-gradient(70% 120% at 50% 120%, rgba(79,24,99,.55) 0%, transparent 70%);
}
.contact-hero .container { position: relative; z-index: 1; }
.contact-hero .eyebrow { color: var(--c-pink); }
.contact-hero h1 {
  font-weight: var(--weight-display); font-size: clamp(48px, 7vw, 88px); margin: 8px 0 20px;
  background: linear-gradient(100deg, #fff 0%, #fff 35%, var(--c-pink) 62%, var(--c-orange) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.contact-hero p { color: rgba(255,255,255,.78); max-width: 600px; }

.contact-grid {
  position: relative;
  display: grid; grid-template-columns: 1.55fr 1fr; gap: 30px;
  align-items: start;
  max-width: 1120px; margin: 0 auto; padding: 30px 32px 100px;
}
.contact-grid.contact-grid-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 880px;
}
.contact-form-card {
  background: #fff; color: var(--c-text-on-light);
  padding: 40px; border-radius: 22px;
  box-shadow: var(--shadow-lg);
}
.contact-form-head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
}
.contact-form-head .icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--c-orange); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-form-card h2 { font-weight: var(--weight-display); font-size: 26px; line-height: 1.15; margin: 0; color: var(--c-text-on-light); }
.contact-form-card .sub { color: #555; margin: 0 0 22px; font-size: 14px; }
.contact-form-head .sub { margin: 4px 0 0; font-size: 14px; line-height: 1.5; }
.contact-form-card .label {
  font-weight: var(--weight-interface-strong); font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--c-orange); margin: 18px 0 12px;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 14px; border-radius: 50px; cursor: pointer;
  background: #F7F4F0; color: #333; font-weight: var(--weight-interface); font-size: 13px;
  border: 1px solid #ECE6E0; transition: all 0.15s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.chip:hover { border-color: #D8CFC4; }
.chip.active { background: var(--c-bg); color: #fff; border-color: var(--c-bg); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.form-field { display: flex; flex-direction: column; }
.form-field label { font-weight: var(--weight-interface-strong); font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--c-orange); margin-bottom: 8px; }
.form-field input, .form-field textarea {
  font-family: inherit; font-size: 16px;
  line-height: 1.45;
  padding: 14px 16px; border: 1.5px solid #ECE6E0; border-radius: 12px;
  background: #fff; color: var(--c-text-on-light);
  transition: border 0.2s ease;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--c-orange); }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.netlify-captcha {
  min-height: 78px;
  max-width: 100%;
}
.contact-captcha {
  margin-top: 22px;
}
.gs-captcha {
  margin: 26px 0 4px;
}
.contact-form-card button[type=submit] {
  margin-top: 24px;
}
.form-success {
  display: none; padding: 18px; border-radius: 12px;
  background: #FFF4EC; color: var(--c-orange);
  font-weight: var(--weight-interface-strong); border: 1px solid #FBD9C0; margin-top: 16px;
}
.form-success.show { display: block; }

.contact-side { display: flex; flex-direction: column; gap: 18px; }
.contact-side-card {
  position: relative; overflow: hidden;
  color: #fff;
  padding: 26px; border-radius: 22px; box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}
.contact-side-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-side-card h3 { font-weight: var(--weight-display); font-size: 19px; line-height: 1.25; margin: 0 0 16px; color: #fff; }
/* Reach us — purple */
.contact-side-card.reach { background: linear-gradient(150deg, #5A1C70 0%, #3A1052 100%); }
/* Partner — orange */
.contact-side-card.partner { background: linear-gradient(150deg, var(--c-orange-2) 0%, var(--c-orange) 100%); }
/* Key contacts — pink/cream with dark text */
.contact-side-card.team { background: linear-gradient(150deg, #FAD8EC 0%, #F4C89C 100%); color: var(--c-text-on-light); }
.contact-side-card.team h3 { color: var(--c-purple); }
.contact-side-card::after {
  content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%;
  top: -40px; right: -36px; background: rgba(255,255,255,.10); pointer-events: none;
}
.contact-side-card .row {
  display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start;
  position: relative; z-index: 1;
}
.contact-side-card .row:last-child { margin-bottom: 0; }
.contact-side-card .icon {
  width: 38px; height: 38px; border-radius: 11px;
  background: rgba(255,255,255,.18); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-side-card .row b {
  font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase;
  color: rgba(255,255,255,.7); font-weight: var(--weight-interface-strong); display: block;
}
.contact-side-card .row a, .contact-side-card .row p { color: #fff; font-weight: var(--weight-interface); margin: 2px 0 0; font-size: 15px; }
.contact-side-card.partner p { color: #fff; font-size: 14px; line-height: 1.65; margin: 0; position: relative; z-index: 1; }
.contact-side-card .person {
  display: flex; gap: 12px; margin-bottom: 14px; align-items: center;
  position: relative; z-index: 1;
}
.contact-side-card .person:last-child { margin-bottom: 0; }
.contact-side-card .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: var(--weight-figure); color: #fff; font-size: 13px; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.contact-side-card.team .person b { color: var(--c-purple); font-size: 14px; }
.contact-side-card.team .person small { color: #6b4a78; font-size: 12px; }

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

/* Contact: ways to work with us */
.contact-ways { padding: 8px 32px 0; }
.contact-ways .container { max-width: 1120px; }
.contact-ways-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 8px;
}
.contact-way {
  background: rgba(255,255,255,.03); border: 1px solid var(--c-line-dark);
  border-radius: var(--radius-lg); padding: 24px 22px;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s ease, background 0.3s ease;
}
.contact-way:hover { transform: translateY(-4px); border-color: rgba(235,188,220,.4); background: rgba(255,255,255,.05); }
.way-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(219,83,0,.9), rgba(235,188,220,.85)); color: #fff;
  margin-bottom: 16px;
}
.way-icon svg { width: 18px; height: 18px; }
.contact-way h3 { color: #fff; font-weight: var(--weight-display); font-size: 16px; margin: 0 0 8px; }
.contact-way p { color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.65; margin: 0; }
@media (max-width: 980px) { .contact-ways-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .contact-ways-grid { grid-template-columns: 1fr; } }

/* Contact: what happens next */
.contact-steps .section-title { margin: 6px 0 44px; }
.contact-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.contact-step {
  position: relative; padding: 30px 26px 28px;
  background: rgba(255,255,255,.03); border: 1px solid var(--c-line-dark);
  border-radius: var(--radius-lg);
}
.contact-step .step-num {
  display: block; font-family: var(--font-display); font-weight: 700; font-size: 40px;
  line-height: 1; margin-bottom: 14px;
  background: linear-gradient(120deg, var(--c-pink), var(--c-orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.contact-step h3 { color: #fff; font-weight: var(--weight-display); font-size: 19px; margin: 0 0 10px; }
.contact-step p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.7; margin: 0; }
@media (max-width: 820px) { .contact-steps-grid { grid-template-columns: 1fr; } }

/* ============ Values carousel (About) ============ */
.values-carousel {
  --vc: #4F1863;
  max-width: 900px; margin: 0 auto; position: relative; padding: 0 30px;
  perspective: 1200px;
}
.values-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(46, 18, 70, 0.3), 0 4px 12px rgba(46, 18, 70, 0.06);
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), box-shadow 0.5s ease;
  will-change: transform;
  max-width: 520px;
  margin: 0 auto;
}
.values-card.is-tilting {
  transition: transform 0.08s linear, box-shadow 0.5s ease;
}
.values-card:hover {
  box-shadow: 0 38px 70px -28px rgba(46, 18, 70, 0.4), 0 6px 18px rgba(46, 18, 70, 0.1);
}
.values-card-head {
  background: var(--vc);
  color: #fff;
  padding: 22px 28px 38px;
  position: relative;
  overflow: hidden;
  transition: background 0.5s ease;
}
.values-counter {
  position: relative;
  display: block;
  text-align: center;
  font-weight: 700; font-size: 11px; letter-spacing: 2.4px;
  color: rgba(255,255,255,.75);
  margin-bottom: 18px;
}
.values-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.values-bubble-1 { width: 110px; height: 110px; top: -30px; right: -30px; }
.values-bubble-2 { width: 50px; height: 50px; top: 60%; right: 60px; background: rgba(255,255,255,0.06); }
.values-bubble-3 { width: 60px; height: 60px; bottom: -25px; left: 80px; background: rgba(255,255,255,0.06); }
.values-head-row {
  position: relative;
  display: flex; align-items: center; gap: 14px;
}
.values-icon-tile {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.16);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  color: #fff;
}
.values-icon-tile svg { width: 18px; height: 18px; }
.values-head-row h3 {
  font-weight: 900; font-size: 22px; margin: 0;
  line-height: 1.2; color: #fff;
  letter-spacing: -0.2px;
}
.values-card-body {
  position: relative;
  padding: 28px 32px 32px;
  text-align: center;
  overflow: hidden;
}
.values-watermark {
  position: absolute;
  right: 24px; top: 50%; transform: translateY(-50%);
  font-weight: 900; font-size: 70px;
  color: rgba(46, 18, 70, 0.015);
  letter-spacing: -2px;
  line-height: 1;
  pointer-events: none;
}
.values-card-body p {
  position: relative;
  color: #3a2547;
  font-size: 15px; line-height: 1.65;
  margin: 0 auto;
  max-width: 380px;
  font-weight: var(--weight-body);
}
.values-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(46, 18, 70, 0.05);
  color: rgba(46, 18, 70, 0.4);
  display: inline-flex; align-items: center; justify-content: center;
  border: none;
  transition: all 0.2s ease; cursor: pointer;
  z-index: 2;
}
.values-arrow svg { width: 14px; height: 14px; }
.values-arrow:hover { background: rgba(46, 18, 70, 0.12); color: #2c1a3a; }
.values-arrow.prev { left: 30px; }
.values-arrow.next { right: 30px; }
.values-chips {
  display: flex; gap: 10px; justify-content: center; flex-wrap: nowrap;
  margin: 36px auto 0;
  position: relative;
}
.value-chip { white-space: nowrap; flex-shrink: 0; }
.value-chip {
  --vc: #4F1863;
  padding: 10px 16px;
  border-radius: 50px;
  background: #fff;
  color: var(--vc);
  font-weight: 700; font-size: 13px;
  border: 1px solid rgba(46, 18, 70, 0.06);
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease, opacity 0.8s cubic-bezier(.2,.6,.2,1);
  box-shadow: 0 2px 8px rgba(46, 18, 70, 0.04);
}
.value-chip svg { width: 14px; height: 14px; }
.value-chip:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(46, 18, 70, 0.10); }
.value-chip.active {
  background: var(--vc);
  color: #fff;
  border-color: var(--vc);
  box-shadow: 0 8px 24px -8px var(--vc);
}
.values-progress {
  position: relative;
  margin-top: 18px;
  height: 3px;
  pointer-events: none;
}
.values-progress span {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 60px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--c-orange), var(--c-pink));
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1), width 0.45s cubic-bezier(.2,.7,.2,1);
}
@media (max-width: 700px) {
  .values-carousel { padding: 0 12px; }
  .values-arrow { display: none; }
  .values-card-head { padding: 22px 24px 44px; }
  .values-head-row h3 { font-size: 22px; }
  .values-watermark { font-size: 80px; right: 18px; }
}

/* Story photo polaroid stack */
.story-photo-wrap { position: relative; padding-right: 50px; padding-bottom: 50px; }
.story-photo-wrap .main-photo { width: 100%; aspect-ratio: 5/4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.story-photo-wrap .main-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-photo-wrap .overlay-photo { position: absolute; right: 0; bottom: 0; width: 38%; aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; border: 4px solid var(--c-cream-2); box-shadow: var(--shadow-lg); transform: rotate(-2deg); background: #000; }
.story-photo-wrap .overlay-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-photo-wrap .badge { position: absolute; top: 18px; left: 18px; background: var(--c-orange); color: #fff; padding: 12px 18px; border-radius: 14px; display: flex; flex-direction: column; align-items: center; font-weight: 900; box-shadow: var(--shadow); z-index: 2; }
.story-photo-wrap .badge b { font-size: 26px; line-height: 1; }
.story-photo-wrap .badge span { font-size: 10px; letter-spacing: 1.3px; text-transform: uppercase; font-weight: 800; opacity: 0.95; margin-top: 4px; }

/* About-page figures use the current editorial display face, not the rounded
   legacy body face. */
.stats-row .stat b,
.story-photo .badge b,
.story-photo-wrap .badge b {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.04em;
}

/* Founders (purple bg) */
.founders-purple { background: var(--c-purple); color: #fff; padding: 100px 0; }
.founders-purple .section-title { color: #fff; }
.founders-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1100px; margin: 0 auto; }
.founder-card-v2 { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.founder-photo-wrap { position: relative; aspect-ratio: 4/3.4; overflow: hidden; }
.founder-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.founder-photo-wrap .name-overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 24px; background: linear-gradient(180deg, transparent 0%, rgba(10,5,18,.85) 100%); color: #fff; }
.founder-photo-wrap .name-overlay h3 { margin: 0; font-weight: 900; font-size: 30px; line-height: 1.15; }
.founder-photo-wrap .founder-card-role {
  display: inline-flex;
  width: fit-content;
  margin: 10px 0 0;
  padding: 5px 14px;
  border-radius: 50px;
  background: var(--founder-role-color, var(--c-orange));
  color: #fff;
  font-size: 11px;
  font-weight: var(--weight-interface-strong);
  letter-spacing: 1px;
  line-height: 1.3;
  text-transform: uppercase;
}
.founder-card-v2 .body { padding: 28px; }
.founder-card-v2 .body p { color: #444; font-size: 16px; line-height: 1.75; margin: 0 0 12px; }
.founder-card-v2 .body .get-in-touch { color: var(--c-orange); font-weight: 800; font-size: 12px; letter-spacing: 1px; display: inline-flex; gap: 6px; align-items: center; margin-top: 4px; text-transform: uppercase; }
@media (max-width: 800px) { .founders-cards { grid-template-columns: 1fr; } }

/* Peach CTA banner */
.peach-cta { background: linear-gradient(135deg, var(--c-cream-1) 0%, var(--c-cream-3) 50%, var(--c-cream-5) 100%); padding: 100px 32px; text-align: center; color: var(--c-text-on-light); }
.peach-cta .icon-circle { width: 60px; height: 60px; border-radius: 50%; background: rgba(79,24,99,0.1); color: var(--c-purple); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.peach-cta h2 { font-weight: 900; font-size: clamp(36px, 5vw, 56px); color: var(--c-text-on-light); margin: 0 0 16px; }
.peach-cta h2 em { font-style: italic; color: var(--c-purple); font-weight: 900; }
.peach-cta p { color: #555; max-width: 540px; margin: 0 auto 30px; line-height: 1.7; }
.btn-purple { background: var(--c-purple); color: #fff; padding: 14px 28px; border-radius: 50px; font-weight: 800; font-size: 14px; display: inline-flex; align-items: center; gap: 10px; transition: transform 0.28s var(--ease-spring), box-shadow 0.28s var(--ease-soft), background 0.2s ease; border: none; cursor: pointer; }
.btn-purple:hover { background: #6a2284; transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 28px -8px rgba(79,24,99,.6); }

/* Digital: How it works */
.digital-howitworks { background: linear-gradient(180deg, #FBE6F0 0%, #F8E1EE 100%); padding: 90px 32px; text-align: center; }
.digital-howitworks .eyebrow { color: var(--c-orange); }
.digital-howitworks h2 { color: var(--c-text-on-light); font-weight: 900; font-size: clamp(34px, 4vw, 48px); margin: 0 0 16px; }
.digital-howitworks p { color: #555; max-width: 640px; margin: 0 auto 40px; line-height: 1.7; }
.howitworks-video { max-width: 820px; margin: 0 auto; aspect-ratio: 16/9; border-radius: 18px; overflow: hidden; position: relative; background: #000; box-shadow: var(--shadow-lg); cursor: pointer; }
.howitworks-video img, .howitworks-video video { width: 100%; height: 100%; object-fit: cover; }
.howitworks-video .play { position: absolute; left: 50%; top: 50%; width: 76px; height: 76px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--c-orange); display: flex; align-items: center; justify-content: center; transform: translate(-50%,-50%); transition: transform 0.2s ease; }
.howitworks-video:hover .play { transform: translate(-50%,-50%) scale(1.06); }

/* Digital: FAQs section — light pink-soft, matches home/about peach sections */
.digital-faqs {
  background: linear-gradient(135deg, var(--c-cream-1) 0%, var(--c-cream-2) 30%, var(--c-cream-3) 55%, var(--c-cream-4) 75%, var(--c-cream-5) 100%);
  color: var(--c-text-on-light);
  position: relative;
  overflow: hidden;
}
.digital-faqs::before,
.digital-faqs::after { content: none !important; display: none !important; }
.digital-faqs > * { position: relative; z-index: 1; }
.digital-faqs .eyebrow { color: var(--c-orange); }
.digital-faqs .ed-lead { color: var(--c-text-mute-on-light); }

/* Digital: Get Started — deep purple CTA finale with warm glow, white text */
.digital-getstarted {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(219,83,0,0.18) 0%, transparent 60%),
    linear-gradient(180deg, #2A0E38 0%, var(--c-purple) 60%, #1F0A2C 100%);
  color: #fff;
  padding: 110px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.digital-getstarted > .digital-getstarted-bg {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .92;
  filter: saturate(1.06) contrast(1.03);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.24) 16%, #000 38%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.24) 16%, #000 38%, #000 100%);
}
.digital-getstarted-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center bottom;
}
.digital-getstarted::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(42,14,56,.96) 0%, rgba(42,14,56,.72) 22%, rgba(10,5,18,.34) 58%, rgba(10,5,18,.7) 100%),
    radial-gradient(ellipse 75% 48% at 50% 8%, rgba(219,83,0,.16), transparent 70%);
}
.digital-getstarted > :not(.digital-getstarted-bg) { position: relative; z-index: 2; }
.digital-getstarted .eyebrow { color: var(--c-pink); }
.digital-getstarted .ed-lead { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto 50px; line-height: 1.7; }
.gs-form { max-width: 600px; margin: 0 auto; text-align: left; }
.gs-section-label { text-align: center; color: rgba(255,255,255,.6); font-size: 13px; font-weight: 700; margin: 0 0 20px; }
.gs-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.gs-form .form-field label { color: var(--c-pink); font-weight: 700; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 6px; display: block; }
.gs-form .form-field input, .gs-form .form-field textarea { width: 100%; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 14px 16px; color: #fff; font-family: inherit; font-size: 16px; box-sizing: border-box; }
.gs-form .form-field input::placeholder, .gs-form .form-field textarea::placeholder { color: rgba(255,255,255,.35); }
.gs-form .form-field input:focus, .gs-form .form-field textarea:focus { outline: none; border-color: var(--c-pink); }
.gs-form .form-field textarea { min-height: 120px; resize: vertical; }
.gs-form .single { margin-bottom: 14px; }
.gs-form .submit-row { text-align: center; margin-top: 20px; }
@media (max-width: 600px) { .gs-form .form-row { grid-template-columns: 1fr; } }
.btn-outline { background: transparent; color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.25); padding: 14px 26px; border-radius: 50px; font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s ease; cursor: pointer; }
.btn-outline:hover { border-color: var(--c-orange); color: var(--c-orange); }
.faq-tail { text-align: center; margin-top: 36px; color: rgba(255,255,255,.7); }
.faq-tail b { color: #fff; font-weight: 800; display: block; margin-bottom: 6px; font-size: 16px; }
.faq-tail p { margin: 0 0 16px; font-size: 14px; }

/* =================================================================
   FAQ + Get Started — editorial (matches Difference section language)
   ================================================================= */
.ed-section { padding: 110px 32px; text-align: center; position: relative; }

/* Section heading reuses kicker pattern + italic gradient em */
.ed-h2 {
  font-weight: 900;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 8px 0 18px;
}
.ed-h2 em {
  font-style: italic;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, var(--c-pink) 55%, var(--c-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 4px;
  display: inline-block;
  padding-bottom: 6px;
}
.ed-h2 .editorial-dot {
  color: var(--c-orange);
  margin-left: -2px;
}
.ed-lead {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 56px;
}

/* ---- FAQ tabs (stable, no layout shift) ---- */
.faq-tabs {
  max-width: 1100px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 56px;
  align-items: start;
  text-align: left;
}
/* Make eyebrow + lead spacing match home page rhythm */
.digital-faqs .ed-lead,
.digital-getstarted .ed-lead {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto 12px;
  max-width: 640px;
}
.digital-faqs,
.digital-getstarted { padding: 100px 32px 110px; }

/* Question list */
.faq-tab-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.faq-tab-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 18px;
  align-items: center;
  gap: 14px;
  padding: 18px 4px;
  cursor: pointer;
  border-top: 1px solid rgba(10,5,18,0.10);
  transition: padding 0.3s ease;
}
.faq-tab-item:last-child { border-bottom: 1px solid rgba(10,5,18,0.10); }
.faq-tab-num {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  color: rgba(10,5,18,0.4);
  text-align: right;
  transition: color 0.3s ease, transform 0.3s ease;
}
.faq-tab-q {
  font-weight: 800;
  font-size: 15px;
  color: rgba(10,5,18,0.6);
  letter-spacing: -0.005em;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.faq-tab-arrow {
  width: 14px;
  height: 14px;
  position: relative;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.faq-tab-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-right: 2px solid var(--c-orange);
  border-top: 2px solid var(--c-orange);
  width: 8px; height: 8px;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}
.faq-tab-item:hover .faq-tab-num,
.faq-tab-item:hover .faq-tab-q {
  color: var(--c-text-on-light);
}
.faq-tab-item.active .faq-tab-num {
  color: var(--c-orange);
  transform: scale(1.05);
}
.faq-tab-item.active .faq-tab-q { color: var(--c-text-on-light); }
.faq-tab-item.active .faq-tab-arrow {
  opacity: 1;
  transform: translateX(0);
}
.faq-tab-item:focus { outline: none; }
.faq-tab-item:focus-visible {
  outline: 2px solid rgba(219,83,0,0.4);
  outline-offset: -2px;
  border-radius: 4px;
}

/* Answer panel — warm cream card that blends with peach bg */
.faq-tab-stage {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 300px;
  background: #FFF6EC;
  border: 1px solid rgba(78,24,99,0.10);
  border-radius: 20px;
  padding: 44px 48px;
  overflow: hidden;
  box-shadow: 0 12px 40px -20px rgba(78,24,99,0.18);
}
.faq-tab-panel {
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s cubic-bezier(.4,0,.2,1), transform 0.45s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.faq-tab-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.faq-tab-panel-num {
  display: inline-block;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 18px;
  padding: 6px 12px;
  background: rgba(219,83,0,0.10);
  border-radius: 999px;
}
.faq-tab-panel-q {
  font-weight: 900;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--c-text-on-light);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.faq-tab-panel-a {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(10,5,18,0.72);
  max-width: 560px;
}

/* Mobile — stack: list on top, panel below; panel still grows to its content */
@media (max-width: 900px) {
  .faq-tabs { grid-template-columns: 1fr; gap: 28px; }
  .faq-tab-stage { padding: 32px 28px; min-height: 220px; }
  .faq-tab-panel-num { font-size: 56px; }
  .faq-tab-item { padding: 14px 4px; }
}

/* ---- Get Started form (dark glass on dark bg) ---- */
.ed-form {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 48px 48px 40px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
}
.ed-step {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.ed-step:not(:first-child) { margin-top: 36px; }
.ed-step-num {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
  background: rgba(219,83,0,0.18);
  padding: 5px 10px;
  border-radius: 999px;
  line-height: 1;
}
.ed-step-label {
  font-weight: 900;
  font-size: 17px;
  line-height: 1.35;
  color: #fff;
  letter-spacing: -0.005em;
}
.ed-step-label em {
  font-style: italic;
  color: var(--c-pink);
  font-weight: var(--weight-display-accent);
}

/* Form fields (dark form) */
.ed-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.ed-form .single { margin-bottom: 14px; }
.ed-form .form-field { display: flex; flex-direction: column; }
.ed-form .form-field label {
  color: rgba(255,255,255,0.72);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
  transition: color 0.25s ease;
}
.ed-form .form-field input,
.ed-form .form-field textarea {
  width: 100%;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.45;
  box-sizing: border-box;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.ed-form .form-field input::placeholder,
.ed-form .form-field textarea::placeholder {
  color: rgba(255,255,255,0.46);
}
.ed-form .form-field input:hover,
.ed-form .form-field textarea:hover {
  border-color: rgba(255,255,255,0.22);
}
.ed-form .form-field input:focus,
.ed-form .form-field textarea:focus {
  outline: none;
  border-color: var(--c-orange);
  background: rgba(0,0,0,0.35);
  box-shadow: 0 0 0 3px rgba(219,83,0,0.18);
}
.ed-form .form-field:focus-within label { color: var(--c-orange); }
.ed-form .form-field textarea { min-height: 130px; resize: vertical; }

/* Submit row */
.ed-form .submit-row {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.ed-submit {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  isolation: isolate;
}
.ed-submit::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.32) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: -1;
}
.ed-submit:hover::before { transform: translateX(100%); }
.ed-submit svg { transition: transform 0.3s ease; }
.ed-submit:hover svg { transform: translateX(4px); }
.ed-fineprint { margin: 0; font-size: 12px; line-height: 1.5; color: rgba(255,255,255,0.5); }

@media (max-width: 700px) {
  .ed-section { padding: 80px 22px; }
  .ed-form { padding: 28px 24px; }
  .ed-faq .faq-q { grid-template-columns: 44px 1fr auto; padding: 20px 22px; gap: 14px; }
  .ed-faq-num { font-size: 18px; }
  .ed-faq .faq-a p { padding: 4px 22px 20px 80px; }
}
@media (max-width: 540px) {
  .ed-form .form-row { grid-template-columns: 1fr; }
  .ed-faq .faq-a p { padding: 4px 22px 20px 22px; }
}

/* === Legacy arcade styles, kept inert (no markup uses them now) === */
.arcade-section { padding: 110px 32px; text-align: center; }

/* Header / dialog-box title */
.arcade-head { max-width: 900px; margin: 0 auto 56px; }
.arcade-eyebrow {
  font-family: var(--arcade-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-pink);
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 0 22px;
}
.arcade-eyebrow .px {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--c-orange);
  box-shadow:
    -3px 0 0 var(--c-orange),
     3px 0 0 var(--c-orange),
     0 -3px 0 var(--c-orange),
     0  3px 0 var(--c-orange);
}
.arcade-title {
  font-weight: 900;
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 18px;
  text-shadow: 4px 4px 0 rgba(26,10,20,0.55);
}
.arcade-sub {
  font-family: var(--arcade-mono);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
  line-height: 1.7;
  margin: 0;
}

/* Pixel-style chunky button (used for both "Press Start" CTA and submit) */
.arcade-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--arcade-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--c-orange);
  padding: 16px 26px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  /* Chunky stepped-corner pixel border via box-shadow */
  box-shadow:
    /* outer dark border */
    0 -4px 0 0 var(--arcade-dark),
    0  4px 0 0 var(--arcade-dark),
    -4px 0 0 0 var(--arcade-dark),
     4px 0 0 0 var(--arcade-dark),
    /* hard offset shadow gives the 8-bit depth */
    6px 6px 0 0 rgba(0,0,0,0.55);
}
.arcade-btn:hover {
  transform: translate(2px, 2px);
  background: #f06419;
  box-shadow:
    0 -4px 0 0 var(--arcade-dark),
    0  4px 0 0 var(--arcade-dark),
    -4px 0 0 0 var(--arcade-dark),
     4px 0 0 0 var(--arcade-dark),
    4px 4px 0 0 rgba(0,0,0,0.55);
}
.arcade-btn:active {
  transform: translate(6px, 6px);
  box-shadow:
    0 -4px 0 0 var(--arcade-dark),
    0  4px 0 0 var(--arcade-dark),
    -4px 0 0 0 var(--arcade-dark),
     4px 0 0 0 var(--arcade-dark),
    0 0 0 0 rgba(0,0,0,0.55);
}
.arcade-btn-arrow {
  position: relative;
  width: 14px; height: 12px;
  flex-shrink: 0;
}
.arcade-btn-arrow::before,
.arcade-btn-arrow::after {
  content: "";
  position: absolute;
  background: currentColor;
  width: 4px;
}
.arcade-btn-arrow::before {
  /* arrow shaft */
  left: 0; top: 50%; transform: translateY(-50%);
  width: 10px; height: 4px;
}
.arcade-btn-arrow::after {
  /* arrow head: stepped pixel triangle using box-shadow */
  right: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px;
  box-shadow:
    -2px -2px 0 currentColor,
    -2px  2px 0 currentColor;
}
.arcade-btn-primary {
  background: var(--c-orange);
}

/* ---- FAQ section ---- */
.digital-faqs.arcade-section {
  /* Faint scanlines overlay for arcade CRT vibe */
  position: relative;
}
.digital-faqs.arcade-section::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    180deg,
    transparent 0 3px,
    rgba(0,0,0,0.06) 3px 4px
  );
  pointer-events: none;
  z-index: 0;
}
.digital-faqs.arcade-section > * { position: relative; z-index: 1; }

.arcade-list {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
  display: flex; flex-direction: column;
  gap: 14px;
}

/* Pixel dialog-box row */
.arcade-row {
  background: var(--arcade-dark);
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  margin: 0;
  /* 4-direction outline + dark offset shadow forms the chunky pixel frame */
  box-shadow:
    0 -3px 0 0 #fff2,
    0  3px 0 0 #fff2,
    -3px 0 0 0 #fff2,
     3px 0 0 0 #fff2,
    7px 7px 0 0 rgba(0,0,0,0.45);
  transition: box-shadow 0.2s ease, transform 0.2s ease, background 0.25s ease;
}
.arcade-row:hover {
  transform: translate(-1px, -1px);
  box-shadow:
    0 -3px 0 0 var(--c-pink),
    0  3px 0 0 var(--c-pink),
    -3px 0 0 0 var(--c-pink),
     3px 0 0 0 var(--c-pink),
    8px 8px 0 0 rgba(0,0,0,0.45);
}
.arcade-row.open {
  background: linear-gradient(180deg, rgba(219,83,0,0.18), var(--arcade-dark) 60%);
  box-shadow:
    0 -3px 0 0 var(--c-orange),
    0  3px 0 0 var(--c-orange),
    -3px 0 0 0 var(--c-orange),
     3px 0 0 0 var(--c-orange),
    7px 7px 0 0 rgba(0,0,0,0.45);
}
/* Pixel corner "studs" for arcade detail */
.arcade-row::before,
.arcade-row::after {
  content: "";
  position: absolute;
  width: 6px; height: 6px;
  background: var(--c-orange);
  pointer-events: none;
  z-index: 2;
}
.arcade-row::before { left: -3px; top: -3px; }
.arcade-row::after  { right: -3px; bottom: -3px; }

.arcade-row .faq-q {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: #fff;
}
/* Hide the legacy chevron */
.arcade-row .faq-q::after { display: none; }

.arcade-arrow {
  width: 0; height: 0;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent var(--c-orange);
  transition: transform 0.3s cubic-bezier(.2,.6,.2,1);
  transform-origin: 30% 50%;
}
.arcade-row.open .arcade-arrow {
  transform: rotate(90deg);
  border-color: transparent transparent transparent var(--c-pink);
}

.arcade-row .faq-q-text {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.005em;
  line-height: 1.4;
  color: #fff;
}
.arcade-row .faq-num {
  font-family: var(--arcade-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--c-pink);
  background: rgba(235,188,220,0.1);
  padding: 4px 8px;
  white-space: nowrap;
}
.arcade-row .faq-a {
  padding: 0 22px 0 60px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: rgba(255,255,255,0.78);
}
.arcade-row.open .faq-a {
  padding: 0 22px 22px 60px;
  max-height: 600px;
}
.arcade-row .faq-a p {
  margin: 0;
  font-family: var(--arcade-mono);
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

/* CTA block under the FAQ list */
.arcade-cta {
  margin-top: 56px;
  text-align: center;
}
.arcade-cta p {
  font-family: var(--arcade-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 18px;
}

/* ---- Get Started form ---- */
.digital-getstarted.arcade-section { text-align: center; }
.digital-getstarted.arcade-section h2 { margin-bottom: 18px; }

.arcade-form {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  background: var(--arcade-dark);
  border-radius: 0;
  padding: 36px 36px 30px;
  position: relative;
  /* Chunky pixel frame */
  box-shadow:
    0 -4px 0 0 var(--c-orange),
    0  4px 0 0 var(--c-orange),
    -4px 0 0 0 var(--c-orange),
     4px 0 0 0 var(--c-orange),
    10px 10px 0 0 rgba(0,0,0,0.55);
}
/* Corner studs */
.arcade-form::before,
.arcade-form::after {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  background: var(--c-pink);
  z-index: 2;
}
.arcade-form::before { top: -4px; left: -4px; }
.arcade-form::after  { bottom: -4px; right: -4px; }

/* Stage banners (Stage 01 / Stage 02) */
.gs-stage {
  display: flex; align-items: center; gap: 14px;
  margin: 0 0 18px;
  padding: 10px 14px;
  background: rgba(219,83,0,0.18);
  border-left: 4px solid var(--c-orange);
  border-right: 4px solid var(--c-orange);
}
.gs-stage:not(:first-child) { margin-top: 30px; }
.gs-stage-tag {
  font-family: var(--arcade-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-orange);
  background: var(--arcade-dark);
  padding: 4px 8px;
}
.gs-stage-label {
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
}

/* Form field overrides for arcade form */
.arcade-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.arcade-form .single { margin-bottom: 14px; }

.arcade-form .form-field { display: flex; flex-direction: column; }
.arcade-form .form-field label {
  font-family: var(--arcade-mono);
  color: var(--c-pink);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.arcade-form .form-field input,
.arcade-form .form-field textarea {
  font-family: var(--arcade-mono);
  width: 100%;
  background: rgba(0,0,0,0.45);
  border: 0;
  border-radius: 0;
  padding: 13px 14px;
  color: #fff;
  font-size: 14px;
  box-sizing: border-box;
  /* pixel border via inset shadow + outer line */
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.18),
    3px 3px 0 0 rgba(0,0,0,0.45);
  transition: box-shadow 0.2s ease, background 0.2s ease, transform 0.15s ease;
  caret-color: var(--c-orange);
}
.arcade-form .form-field input:hover,
.arcade-form .form-field textarea:hover {
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.32),
    3px 3px 0 0 rgba(0,0,0,0.45);
}
.arcade-form .form-field input:focus,
.arcade-form .form-field textarea:focus {
  outline: none;
  background: rgba(0,0,0,0.55);
  box-shadow:
    inset 0 0 0 2px var(--c-orange),
    3px 3px 0 0 rgba(0,0,0,0.45);
}
.arcade-form .form-field textarea { min-height: 130px; resize: vertical; }
.arcade-form .form-field input::placeholder,
.arcade-form .form-field textarea::placeholder {
  color: rgba(255,255,255,0.32);
  font-family: var(--arcade-mono);
}

.arcade-form .submit-row {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 2px dashed rgba(255,255,255,0.12);
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.arcade-form .gs-fineprint {
  margin: 0;
  font-family: var(--arcade-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 900px) {
  .arcade-section { padding: 80px 24px; }
  .arcade-form { padding: 28px 22px; }
  .arcade-row .faq-q { grid-template-columns: 18px 1fr auto; padding: 18px 18px; gap: 12px; }
  .arcade-row .faq-a { padding: 0 18px 0 50px; }
  .arcade-row.open .faq-a { padding: 0 18px 20px 50px; }
}
@media (max-width: 600px) {
  .arcade-form .form-row { grid-template-columns: 1fr; }
  .arcade-row .faq-num { font-size: 10px; padding: 3px 6px; }
}

/* ============ Polish layer (motion + micro-interactions) ============ */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(.2,.6,.2,1), transform 0.9s cubic-bezier(.2,.6,.2,1);
  will-change: transform, opacity;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
/* First-viewport hero copy should never drift into position after a hard
   refresh. Keep its entrance subtle and geometry-stable. */
.prods-hero-copy[data-reveal],
.news-hero-copy[data-reveal],
.contact-hero-copy[data-reveal] {
  transform: none;
}
/* Sections with full-width colored backgrounds: fade only, don't translate
   so we never expose the dark page bg underneath during the animation. */
.testimonials[data-reveal] { transform: none; }
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="left"].is-visible { transform: none; }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="right"].is-visible { transform: none; }
[data-reveal="zoom"] { transform: scale(0.96); }
[data-reveal="zoom"].is-visible { transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.4s; }

.page-enter { opacity: 0; transform: none; }
.page-enter-active { opacity: 1; transform: none; transition: opacity 0.4s var(--ease-soft); }

.btn, .btn-orange, .btn-pink, .btn-purple, .btn-ghost-light, .btn-outline {
  position: relative; overflow: hidden;
  transition: transform 0.28s var(--ease-spring), box-shadow 0.28s var(--ease-soft), background 0.2s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-outline:hover { transform: translateY(-2px) scale(1.02); }
.btn::after, .btn-orange::after, .btn-pink::after, .btn-purple::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  transform: translateX(-110%); pointer-events: none;
  transition: transform 0.7s ease;
}
.btn:hover::after, .btn-orange:hover::after, .btn-pink:hover::after, .btn-purple:hover::after { transform: translateX(110%); }

.learn, .news-cta { position: relative; transition: color 0.25s ease, transform 0.25s ease; }
.learn::after, .news-cta::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(.2,.6,.2,1);
}
.learn:hover::after, .news-cta:hover::after { transform: scaleX(1); }
.news-cta:hover { transform: translateX(2px); }

.prod-cell-image img, .news-card img, .news-feature-card img {
  transition: transform 0.7s cubic-bezier(.2,.6,.2,1);
}
.prod-cell-image:hover img, .news-card:hover img, .news-feature-card:hover img { transform: scale(1.045); }

.award-card, .news-card, .news-feature-card, .partner-card, .value-chip, .contact-form-card {
  transition: transform 0.3s cubic-bezier(.2,.6,.2,1), box-shadow 0.3s ease, border-color 0.25s ease, opacity 0.8s cubic-bezier(.2,.6,.2,1);
}
.award-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px -22px rgba(79,24,99,0.35); }
.news-card:hover, .news-feature-card:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -28px rgba(0,0,0,0.6); }

.section-divider { transform-origin: left center; transition: transform 0.9s cubic-bezier(.2,.6,.2,1) 0.2s; }
[data-reveal] .section-divider { transform: scaleX(0); }
[data-reveal].is-visible .section-divider { transform: scaleX(1); }

.site-header { transition: background 0.3s ease, box-shadow 0.3s ease; }
.site-header.scrolled { box-shadow: 0 12px 30px -20px rgba(0,0,0,.6); }

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

:focus-visible { outline: 2px solid var(--c-orange); outline-offset: 3px; border-radius: 4px; }

.prods-carousel, .prods-detail-grid {
  position: relative; overflow: hidden;
}
.swap-pane { will-change: clip-path, opacity, filter; }
.prods-carousel.is-swapping > .swap-pane {
  position: absolute; top: 0; left: 0; right: 0;
  pointer-events: none;
  transition:
    clip-path .48s cubic-bezier(.76,0,.24,1),
    opacity .38s ease,
    filter .38s ease;
}
.prods-carousel:first-child.is-swapping > .swap-pane { top: var(--header-h); }

/* Carousel mode: a cinematic curtain reveal. Artwork geometry stays fixed;
   the next slate is uncovered by a directional editorial wipe. */
.prods-carousel.is-swapping > .swap-incoming {
  z-index: 3;
  clip-path: inset(0);
}
.prods-carousel.is-swapping > .swap-incoming.swap-from-next {
  clip-path: inset(0 0 0 100%);
}
.prods-carousel.is-swapping > .swap-incoming.swap-from-prev {
  clip-path: inset(0 100% 0 0);
}
.swap-pane.swap-leaving-next,
.swap-pane.swap-leaving-prev {
  opacity: .34;
  filter: saturate(.7) brightness(.68);
}

.prods-carousel.is-swapping::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  width: clamp(9px, .8vw, 14px);
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(180deg, var(--c-orange), var(--c-pink) 54%, #fff);
  box-shadow:
    -26px 0 48px rgba(235,188,220,.24),
    26px 0 52px rgba(219,83,0,.22);
}
.prods-carousel.swap-direction-next::after {
  left: -24px;
  animation: prods-wipe-next .48s cubic-bezier(.76,0,.24,1) both;
}
.prods-carousel.swap-direction-prev::after {
  right: -24px;
  animation: prods-wipe-prev .48s cubic-bezier(.76,0,.24,1) both;
}
@keyframes prods-wipe-next {
  0% { opacity: 0; transform: translateX(0); }
  12%, 88% { opacity: .95; }
  100% { opacity: 0; transform: translateX(calc(100vw + 48px)); }
}
@keyframes prods-wipe-prev {
  0% { opacity: 0; transform: translateX(0); }
  12%, 88% { opacity: .95; }
  100% { opacity: 0; transform: translateX(calc(-100vw - 48px)); }
}

/* Fade mode: text swaps with pure opacity crossfade (no vertical translate) */
.prods-detail-grid.is-swapping > .swap-pane {
  position: absolute; top: 60px; left: 32px; right: 32px;
  transition: opacity 0.55s ease;
}
.swap-pane.swap-fade-from { opacity: 0; }
.swap-pane.swap-fade-leaving { opacity: 0; }

/* ============ Design Flourishes ============ */
/* Soft glow orbs in corners of dark sections */
.section.dark { position: relative; overflow: hidden; }
.section.dark::before {
  content: ""; position: absolute; pointer-events: none;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(235,188,220,.08) 0%, transparent 60%);
  top: -180px; left: -180px; z-index: 0;
}
.section.dark::after {
  content: ""; position: absolute; pointer-events: none;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(219,83,0,.07) 0%, transparent 60%);
  bottom: -140px; right: -140px; z-index: 0;
}
.section.dark > * { position: relative; z-index: 1; }

/* Subtle dotted texture on peach mission section */
.section.peach { position: relative; }
.section.peach::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(219,83,0,.10) 1px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.5; z-index: 0;
}
.section.peach > * { position: relative; z-index: 1; }

/* Sparkle accent next to italic-pink words in section titles */
.section-title .italic-pink { position: relative; }
.section-title .italic-pink::after {
  content: ""; position: absolute;
  top: -6px; right: -22px;
  width: 14px; height: 14px;
  background: radial-gradient(circle, var(--c-orange) 0%, var(--c-orange) 35%, transparent 60%);
  border-radius: 50%;
  opacity: 0.85;
  animation: sparkle-pulse 2.6s ease-in-out infinite;
}
@keyframes sparkle-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.4); opacity: 0.4; }
}

/* Floating gradient orbs in pink-soft awards section */
.section.pink-soft { position: relative; overflow: hidden; }
.section.pink-soft::before {
  content: ""; position: absolute; pointer-events: none;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(183,155,215,.18) 0%, transparent 65%);
  top: 10%; right: -120px; z-index: 0;
  animation: orb-drift 14s ease-in-out infinite;
}
.section.pink-soft::after {
  content: ""; position: absolute; pointer-events: none;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(219,83,0,.12) 0%, transparent 65%);
  bottom: 8%; left: -100px; z-index: 0;
  animation: orb-drift 16s ease-in-out infinite reverse;
}
.section.pink-soft > * { position: relative; z-index: 1; }
@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

/* ============ Gradient accent lines ============ */
.cta-banner { position: relative; }

/* Top-of-section accent on dark sections (subtle) */
.section.dark + .section.dark::before,
.section.purple::before {
  content: ""; position: absolute; left: 50%; top: 0;
  width: 200px; height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(219,83,0,.6), transparent);
}

/* Underline accent under section titles */
.section-title { position: relative; }

/* Decorative gradient bar before headings on the about/digital pages */
.about-hero h1, .digital-hero h1, .prods-page-hero h1 {
  position: relative;
}

/* Card hover lift: stronger pop with shadow */
.award-card { position: relative; overflow: hidden; }
.award-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--c-orange), var(--c-pink));
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.award-card:hover::before { transform: scaleY(1); }

/* Productions row: orange accent bar before titles */
.prod-cell-text h3 { position: relative; padding-left: 0; }
.prod-cell-text .prod-eyebrow { position: relative; padding-left: 18px; }
.prod-cell-text .prod-eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 12px; height: 2px; background: var(--c-orange);
  transform: translateY(-50%);
}

/* News card subtle gradient border on hover */
.news-card { position: relative; }
.news-card::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg,
    rgba(219,83,0,.5),
    rgba(235,188,220,.5)) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0; transition: opacity 0.3s ease;
  pointer-events: none;
}
.news-card:hover::after { opacity: 1; }

/* Section title: small gradient underline below */
.section-title::after {
  content: ""; display: block;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--c-orange), var(--c-pink));
  border-radius: 2px;
  margin-top: 14px;
}
/* Some titles are centered — center their underline */
.about-hero h1::after,
.digital-hero h1::after,
.section-head.center .section-title::after,
[style*="text-align:center"] .section-title::after { margin-left: auto; margin-right: auto; }

/* Existing .section-divider is used in some places — keep it if present */
.section-head .section-title::after,
.about-values-head .section-title::after,
.values-card .section-title::after,
.digital-faqs .section-title::after,
.digital-getstarted .section-title::after,
.digital-section .section-title::after { display: none; }

.hero { position: relative; }
.hero .hero-content { position: relative; z-index: 2; }

/* Buttons: subtle gradient sheen on hover */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.btn:hover::after { left: 130%; }

/* Pulsing dot on the eyebrow color accent (only for orange eyebrows) */
.prods-page-hero .eyebrow,
.about-hero .hero-eyebrow,
.digital-hero .hero-eyebrow { position: relative; }

/* Section-divider element (already in markup) — gradient now */
.section-divider {
  height: 3px; width: 60px; margin: 18px 0 28px;
  background: linear-gradient(90deg, var(--c-orange), var(--c-pink));
  border-radius: 2px;
}
.section-head.center .section-divider,
[style*="text-align:center"] .section-divider { margin-left: auto; margin-right: auto; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   LARGE-SCREEN SCALING LAYER  (additive — desktop ≥1600px)
   Reclaims dead side-space on 1600 / 1920 / 2560 / 4K monitors
   without altering the tuned ≤1440px / mobile layouts.
   ============================================================ */

/* ---- 1600px+ : widen shells, breathe vertical rhythm ---- */
@media (min-width: 1600px) {
  .container       { max-width: 1380px; padding: 0 40px; }
  .container-wide  { max-width: 1560px; padding: 0 40px; }
  .section         { padding: 120px 0; }
  .mission         { padding: 140px 40px; }
  .testimonials    { padding: 130px 40px; }

  .hero-content    { max-width: 1380px; padding: 150px 40px 90px; }
  .hero-sub        { max-width: 600px; }

  /* productions detail + faq read better a touch wider */
  .prods-detail-grid { max-width: 1320px; }
  .faq-tabs          { max-width: 1200px; }
}

/* ---- 2000px+ : true wide-desktop — denser, larger type ---- */
@media (min-width: 2000px) {
  body { font-size: 18px; }

  .container       { max-width: 1560px; padding: 0 48px; }
  .container-wide  { max-width: 1800px; padding: 0 48px; }
  .section         { padding: 140px 0; }
  .mission         { padding: 160px 48px; }
  .testimonials    { padding: 150px 48px; }

  .hero-content    { max-width: 1560px; }
  .hero-h1         { max-width: 1040px; }
  .hero-sub        { max-width: 660px; font-size: 20px; }

  .awards-grid       { grid-template-columns: repeat(3, 1fr); }
  .news-three-up     { grid-template-columns: repeat(4, 1fr); }

  .prods-detail-grid { max-width: 1480px; }
  .faq-tabs          { max-width: 1320px; }
  .mission-inner     { max-width: 1080px; }
  .mission-sub       { max-width: 760px; }
}

/* ---- 2560px+ / 4K : maximise canvas, prevent island layout ---- */
@media (min-width: 2560px) {
  body { font-size: 19px; }

  .container       { max-width: 1760px; padding: 0 64px; }
  .container-wide  { max-width: 2040px; padding: 0 64px; }
  .section         { padding: 160px 0; }
  .mission         { padding: 190px 64px; }
  .testimonials    { padding: 170px 64px; }

  .hero-content    { max-width: 1760px; padding: 190px 64px 110px; }
  .hero-h1         { max-width: 1180px; }
  .hero-sub        { max-width: 720px; }

  .awards-grid       { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .news-feature-grid { gap: 24px; }
  .digital-features  { grid-template-columns: repeat(4, 1fr); gap: 24px; }

  .prods-detail-grid { max-width: 1680px; }
  .faq-tabs          { max-width: 1480px; }
}

/* ============================================================
   MOBILE-FIRST OPTIMIZATION LAYER  (additive — ≤640px / ≤380px)
   Tightens vertical rhythm, reclaims edge padding, enlarges touch
   targets, and hardens against horizontal overflow on small phones
   (iPhone SE 375px, Pixel, etc.). Branding/design unchanged.
   ============================================================ */

/* ---- ≤640px : phones & small tablets portrait ---- */
@media (max-width: 640px) {
  /* Calmer vertical rhythm — 100px sections waste a phone screen */
  .section            { padding: 64px 0; }
  .mission            { padding: 72px 24px; }
  .testimonials       { padding: 72px 24px; }
  .ed-section         { padding: 72px 22px; }
  .digital-getstarted { padding: 72px 22px; }
  .partners-section   { padding: 56px 0 64px; }

  /* Carousel pager: bump tiny 22px controls to a comfortable tap area */
  .prods-pagination button { width: 36px; height: 36px; }
  .prods-pagination span    { min-width: 36px; }

  /* Defensive: shrink decorative orbs so they never force scroll */
  .hero-orb-1            { width: 320px; height: 320px; }
  .hero-orb-2            { width: 260px; height: 260px; }
  .testimonials::after   { width: 420px; height: 420px; }

  /* Headings/leads keep comfortable reading width edge-to-edge */
  .hero-content { padding-left: 22px; padding-right: 22px; }
}

/* ---- ≤380px : iPhone SE / compact Android ---- */
@media (max-width: 380px) {
  .container,
  .container-wide { padding-left: 20px; padding-right: 20px; }
  .hero-content   { padding: 120px 20px 64px; }
  .awards-pill    { padding: 18px 24px; }
}
/* ================================================================
   2026 editorial page refresh — Productions, Newsroom, Contact
   ================================================================ */

/* ---------- Productions: cinematic editorial opening ---------- */
.prods-page-hero.prods-detail-intro {
  position: relative;
  padding-bottom: 54px;
  background:
    radial-gradient(55% 120% at 82% 0%, rgba(235,188,220,.17) 0%, transparent 68%),
    radial-gradient(45% 100% at 0% 100%, rgba(219,83,0,.12) 0%, transparent 72%),
    var(--c-bg);
}
.prods-detail-intro .container { max-width: 1280px; }
.prods-detail-intro .eyebrow { margin-top: 28px; }
.prods-detail-intro h1 { max-width: 920px; font-size: clamp(52px, 7vw, 96px); line-height: .95; }
.prods-detail-intro p { max-width: 720px; }
.prods-detail-description { max-width: 720px; }
.prods-detail-description p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 17px;
  font-weight: var(--weight-body);
  line-height: 1.72;
}
.prods-detail-description p + p { margin-top: 1em; }
.prods-detail-crumb { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.62); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.prods-detail-crumb:hover { color: #fff; }
.prods-page-hero.prods-hero-v2 {
  position: relative;
  min-height: min(880px, 92vh);
  padding: calc(var(--header-h) + 72px) 32px 112px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #08040e;
}
.prods-hero-layout {
  position: relative;
  z-index: 5;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .7fr);
  gap: 48px;
  align-items: end;
}
.prods-hero-copy { max-width: 690px; }
.prods-hero-v2 .eyebrow { color: var(--c-pink); margin-bottom: 26px; }
.prods-page-hero.prods-hero-v2 h1 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(62px, 8vw, 116px);
  line-height: .86;
  letter-spacing: -.045em;
}
.prods-page-hero.prods-hero-v2 h1 em { color: var(--c-pink); font-style: italic; }
.prods-page-hero.prods-hero-v2 .prods-hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.72;
}
.prods-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 34px; }
.prods-hero-actions .btn { padding: 15px 24px; }
.prods-hero-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.35);
}
.prods-hero-contact svg { transition: transform .25s var(--ease-spring); }
.prods-hero-contact:hover svg { transform: translateX(4px); }
.prods-network-rail {
  position: absolute;
  z-index: 6;
  left: max(32px, calc((100vw - 1280px) / 2 + 32px));
  right: 32px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 42px);
  padding-top: 22px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  white-space: nowrap;
}
.prods-network-rail .rail-label { color: var(--c-orange); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.prods-stats { position: relative; z-index: 8; margin-top: -28px; padding: 0 32px 8px; }
.prods-stat {
  padding: 25px 18px;
  background: rgba(20,12,27,.9);
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
  backdrop-filter: blur(16px);
}
.prods-stat::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: linear-gradient(var(--c-pink), var(--c-orange)); opacity: .8; }
.prods-slate { background: linear-gradient(180deg, #0d0714 0%, #100817 100%); }
.prods-slate-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.slate-card { border-color: rgba(255,255,255,.09); }
.slate-card:hover { border-color: var(--show-accent, var(--c-pink)); }
.slate-card-lead { grid-column: span 2; display: grid; grid-template-columns: 1.35fr .85fr; }
.slate-card-lead .slate-card-media { aspect-ratio: auto; min-height: 440px; }
.slate-card-lead .slate-card-body { padding: 34px; justify-content: flex-end; }
.slate-card-lead .slate-card-body h3 { font-size: clamp(30px, 3vw, 44px); }
.slate-card-lead .slate-desc { font-size: 15px; }
.slate-genre { color: var(--show-accent, var(--c-pink)); }

/* ---------- Newsroom: lead-story hierarchy and working archive ---------- */
.news-page-hero.news-hero-v2 {
  position: relative;
  padding: calc(var(--header-h) + 54px) 32px 0;
  overflow: hidden;
  background:
    radial-gradient(48% 70% at 8% 24%, rgba(79,24,99,.5) 0%, transparent 72%),
    radial-gradient(45% 65% at 92% 10%, rgba(219,83,0,.2) 0%, transparent 70%),
    #08040e;
}
.news-hero-layout {
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(520px, 1.22fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
  min-height: 720px;
}
.news-hero-copy { padding: 42px 0 80px; }
.news-hero-v2 .eyebrow { color: var(--c-pink); }
.news-page-hero.news-hero-v2 h1 {
  margin: 18px 0 26px;
  color: #fff;
  background: none;
  font-size: clamp(62px, 7vw, 104px);
  line-height: .9;
  letter-spacing: -.045em;
}
.news-page-hero.news-hero-v2 h1 > span,
.news-page-hero.news-hero-v2 h1 > em {
  display: block;
  margin: 0;
  padding: 0;
  text-indent: 0;
}
.news-page-hero.news-hero-v2 h1 em {
  color: var(--c-orange);
  font-style: italic;
  transform: translateX(-.12em);
}
.news-hero-v2 .news-page-intro { margin: 0 0 28px; max-width: 520px; font-size: 17px; color: rgba(255,255,255,.75); }
.news-lead-story {
  position: relative;
  min-height: 600px;
  display: block;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  border: 1px solid rgba(255,255,255,.12);
  border-bottom: 0;
  box-shadow: 0 36px 90px rgba(0,0,0,.42);
  isolation: isolate;
}
.news-lead-story > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-soft);
}
.news-lead-story:hover > img { transform: scale(1.045); }
.news-lead-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8,4,14,.08) 5%, rgba(8,4,14,.18) 35%, rgba(8,4,14,.92) 100%);
}
.news-lead-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px; }
.news-lead-top time { padding: 8px 12px; border-radius: 999px; color: #fff; background: rgba(10,5,18,.62); backdrop-filter: blur(10px); font-size: 12px; font-weight: 700; }
.news-hero-v2 .news-cat,
.news-secondary-grid .news-cat,
.news-list-row .meta .cat { color: #17091c; }
.news-lead-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 36px 38px; }
.news-lead-kicker { display: block; margin-bottom: 12px; color: var(--c-pink); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.news-lead-body h2 { margin: 0 0 14px; max-width: 760px; color: #fff; font-size: clamp(30px, 3.4vw, 51px); line-height: 1.04; }
.news-lead-body p { display: -webkit-box; max-width: 680px; margin: 0 0 20px; overflow: hidden; color: rgba(255,255,255,.78); line-height: 1.65; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.news-ticker {
  --ticker-duration: 90s;
  position: relative;
  width: calc(100% + 64px);
  margin-top: clamp(28px, 3vw, 44px);
  margin-left: -32px;
  min-height: 64px;
  padding: 0;
  overflow: hidden;
  color: #211326;
  background: linear-gradient(90deg, #e7b4d6 0%, var(--c-pink) 45%, #efc9e2 100%);
  font-family: var(--font-display);
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: var(--weight-interface-strong);
  white-space: nowrap;
  cursor: default;
  user-select: none;
  pointer-events: none;
}
.news-ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: newsTickerDrift var(--ticker-duration) linear infinite;
}
.news-ticker-cycle {
  min-height: 64px;
  padding-inline: clamp(10px, 1vw, 18px);
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(12px, 1.4vw, 20px);
}
.news-ticker-cycle span {
  display: inline-block;
  letter-spacing: -.01em;
}
.news-ticker i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--c-orange);
  opacity: .9;
}
@keyframes newsTickerDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.news-featured-section { padding-top: 90px; }
.news-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 28px; }
.news-section-heading .news-eyebrow { margin-bottom: 10px; }
.news-section-heading h2 { margin: 0; color: #fff; font-size: clamp(34px, 4vw, 54px); }
.news-jump { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 7px; color: rgba(255,255,255,.78); border-bottom: 1px solid rgba(255,255,255,.25); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.news-secondary-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.news-card.feature.news-secondary-card { min-height: 470px; aspect-ratio: 16 / 10; }
.news-secondary-card .news-body { max-width: 88%; }
.news-secondary-card .news-body h3 { font-size: clamp(22px, 2.4vw, 32px); }
.news-other-head { align-items: end; margin-top: 104px; margin-bottom: 22px; }
.news-other-head .news-eyebrow { margin-bottom: 8px; }
.news-other-head h2 { font-size: clamp(32px, 3.4vw, 46px); }
.news-filter { justify-content: flex-end; flex-wrap: wrap; }
.news-filter-pill { min-width: 0; padding: 9px 15px; border-radius: 999px; justify-content: center; gap: 0; }
.news-filter-pill.active {
  gap: 9px;
  color: #1b0b20;
  background: var(--c-pink);
  border-color: var(--c-pink);
}
.news-list-row { grid-template-columns: 164px minmax(0, 1fr) auto; padding: 22px 16px; gap: 28px; }
.news-list-thumb { width: 164px; border-radius: 14px; }
.news-list-main { gap: 8px; }
.news-list-row .title { font-size: clamp(18px, 1.65vw, 23px); }
.news-list-main > p { max-width: 740px; margin: 0; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.6; }
.news-list-row[hidden] { display: none; }

/* ---------- Contact: human, clear, conversion-focused ---------- */
.contact-hero.contact-hero-v2 {
  position: relative;
  min-height: 790px;
  padding: calc(var(--header-h) + 76px) 32px 94px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(55% 80% at 8% 20%, rgba(219,83,0,.26) 0%, transparent 72%),
    radial-gradient(50% 80% at 92% 30%, rgba(235,188,220,.22) 0%, transparent 72%),
    #09050f;
}
.contact-hero-layout { display: block; }
.contact-hero-copy { position: relative; z-index: 2; max-width: 1080px; }
.contact-hero-v2 .eyebrow { color: var(--c-pink); }
.contact-hero.contact-hero-v2 h1 {
  max-width: 1040px;
  margin: 18px 0 26px;
  color: #fff;
  background: none;
  font-size: clamp(58px, 8vw, 116px);
  line-height: .9;
  letter-spacing: -.045em;
}
.contact-hero.contact-hero-v2 h1 em { color: var(--c-pink); font-style: italic; }
.contact-hero.contact-hero-v2 .contact-hero-copy > p:not(.eyebrow) { max-width: 610px; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.7; }
.contact-hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 34px; }
.contact-email-link { display: inline-flex; align-items: center; gap: 11px; color: #fff; font-weight: var(--weight-interface); }
.contact-email-link > svg { width: 22px; height: 22px; color: var(--c-pink); }
.contact-email-link span { display: flex; flex-direction: column; gap: 1px; }
.contact-email-link small { color: rgba(255,255,255,.5); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.contact-trust-rail { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.58); font-size: 12px; font-weight: 400; }
.contact-trust-rail span { display: inline-flex; gap: 4px; }
.contact-trust-rail b { color: #fff; font-weight: var(--weight-interface-strong); }
.contact-hero-media {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.contact-signal-stage::before {
  content: "HELLO";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -2;
  transform: translate(-50%, -50%) rotate(-8deg);
  color: rgba(255,255,255,.025);
  font-family: var(--font-display);
  font-size: clamp(130px, 15vw, 230px);
  font-weight: 900;
  letter-spacing: -.08em;
}
.contact-signal-stage::after {
  content: "";
  position: absolute;
  inset: 5%;
  z-index: -3;
  background: radial-gradient(circle at center, rgba(235,188,220,.18) 0%, rgba(79,24,99,.12) 32%, transparent 68%);
  filter: blur(14px);
}
.signal-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.signal-ring::before,
.signal-ring::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-orange);
  box-shadow: 0 0 18px rgba(219,83,0,.85);
}
.signal-ring::before { left: 10%; top: 18%; }
.signal-ring::after { right: 8%; bottom: 23%; background: var(--c-pink); box-shadow: 0 0 18px rgba(235,188,220,.8); }
.signal-ring.ring-one { width: min(100%, 560px); aspect-ratio: 1; border-color: rgba(235,188,220,.16); }
.signal-ring.ring-two { width: min(76%, 430px); aspect-ratio: 1; border-style: dashed; }
.signal-ring.ring-three { width: min(50%, 284px); aspect-ratio: 1; border-color: rgba(219,83,0,.3); }
.signal-core {
  position: relative;
  z-index: 2;
  width: 230px;
  aspect-ratio: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #210f29;
  background: linear-gradient(145deg, #f4c8e4 0%, #e8b4da 62%, #df9fcf 100%);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  box-shadow: 0 28px 70px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.65);
}
.signal-live { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 12px; font-size: 9px; font-weight: var(--weight-interface-strong); letter-spacing: .15em; text-transform: uppercase; }
.signal-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--c-orange); box-shadow: 0 0 0 5px rgba(219,83,0,.12); }
.signal-core strong { font-family: var(--font-display); font-size: 48px; line-height: .82; letter-spacing: -.04em; }
.signal-core strong em { color: var(--c-orange); font-style: italic; }
.signal-core small { margin-top: 18px; color: #6a456f; font-size: 9px; font-weight: var(--weight-interface-strong); letter-spacing: .12em; text-transform: uppercase; }
.signal-route {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  color: #fff;
  background: rgba(24,12,33,.78);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: var(--weight-interface);
  white-space: nowrap;
}
.signal-route b { color: var(--c-pink); font-size: 9px; font-weight: var(--weight-interface-strong); letter-spacing: .08em; }
.signal-route.route-one { left: 1%; top: 19%; }
.signal-route.route-two { right: 0; top: 24%; }
.signal-route.route-three { left: 2%; bottom: 19%; }
.signal-route.route-four { right: 2%; bottom: 17%; }
.signal-response {
  position: absolute;
  right: 4%;
  top: 49%;
  z-index: 4;
  padding: 12px 14px;
  color: #2a1331;
  background: var(--c-orange);
  border-radius: 4px 14px 14px 14px;
  box-shadow: 0 16px 38px rgba(0,0,0,.28);
  font-size: 9px;
  font-weight: var(--weight-interface-strong);
  line-height: 1.35;
  text-transform: uppercase;
}
.signal-response b { color: #fff; font-size: 11px; font-weight: var(--weight-interface-strong); }
.contact-ways { padding: 88px 32px 94px; color: var(--c-text-on-light); background: linear-gradient(135deg, #faeadf 0%, #f5d9e9 100%); }
.contact-ways-head { display: grid; grid-template-columns: 1fr minmax(280px, .65fr); gap: 42px; align-items: end; margin-bottom: 34px; }
.contact-ways-head .news-eyebrow { margin-bottom: 8px; }
.contact-ways-head h2 { margin: 0; color: var(--c-text-on-light); font-size: clamp(36px, 4vw, 54px); }
.contact-ways-head > p { max-width: 430px; margin: 0 0 6px auto; color: #6c5366; line-height: 1.7; }
.contact-ways-grid { gap: 16px; }
.contact-way {
  position: relative;
  min-height: 310px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  color: var(--c-text-on-light);
  background: rgba(255,255,255,.72);
  border-color: rgba(79,24,99,.1);
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(79,24,99,.07);
}
.contact-way:hover { color: var(--c-text-on-light); background: #fff; border-color: rgba(219,83,0,.35); box-shadow: 0 20px 44px rgba(79,24,99,.12); }
.contact-way h3 { color: var(--c-purple); font-size: 18px; }
.contact-way p { color: #6a586a; font-size: 13px; }
.contact-way-cta { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 20px; color: var(--c-orange); font-size: 10px; font-weight: var(--weight-interface-strong); letter-spacing: .12em; text-transform: uppercase; }
.contact-way-cta svg { width: 13px; transition: transform .22s var(--ease-spring); }
.contact-way:hover .contact-way-cta svg { transform: translateX(4px); }
.contact-grid { margin-top: 70px; padding-bottom: 120px; }
.contact-form-card { padding: 46px; border-radius: 28px; background: #fffaf6; box-shadow: 0 36px 90px -35px rgba(0,0,0,.8); }
.contact-form-head { align-items: flex-start; margin-bottom: 28px; }
.contact-form-head .form-kicker { margin: 0 0 4px; color: var(--c-orange); font-size: 9px; font-weight: var(--weight-interface-strong); letter-spacing: .16em; text-transform: uppercase; }
.contact-form-card h2 { font-size: clamp(28px, 3vw, 38px); }
.contact-form-card .label,
.contact-form-card .form-field label { color: #9a3b08; }
.form-field input:focus,
.form-field textarea:focus { box-shadow: 0 0 0 4px rgba(219,83,0,.1); }
.contact-privacy { display: inline-block; margin: 24px 0 0 14px; color: #766b72; font-size: 12px; line-height: 1.5; }
.contact-side {
  padding: 10px;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background: linear-gradient(155deg, #541768 0%, #2b0c3c 100%);
  box-shadow: 0 30px 70px -30px rgba(79,24,99,.75);
}
.contact-side-card,
.contact-side-card.reach,
.contact-side-card.partner,
.contact-side-card.team { padding: 25px 24px; color: #fff; background: transparent; border-radius: 18px; box-shadow: none; }
.contact-side-card + .contact-side-card { border-top: 1px solid rgba(255,255,255,.11); border-radius: 0; }
.contact-side-card:hover { transform: none; box-shadow: none; background: rgba(255,255,255,.035); }
.contact-side-card.team h3,
.contact-side-card.team .person b { color: #fff; }
.contact-side-card.team .person small { color: rgba(255,255,255,.58); }
.contact-side-card .avatar { overflow: hidden; border: 2px solid rgba(255,255,255,.3); box-shadow: none; }
.contact-side-card .avatar img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; }
.contact-steps { padding-top: 72px; border-top: 1px solid var(--c-line-dark); }
.contact-steps-grid { position: relative; gap: 0; margin: 0; padding: 0; list-style: none; }
.contact-steps-grid::before { content: ""; position: absolute; left: 10%; right: 10%; top: 27px; height: 1px; background: linear-gradient(90deg, var(--c-orange), var(--c-pink)); opacity: .5; }
.contact-step { padding: 0 30px 28px; text-align: center; background: transparent; border: 0; border-radius: 0; }
.contact-step .step-num { position: relative; z-index: 1; width: 56px; height: 56px; margin: 0 auto 22px; display: grid; place-items: center; color: #1d0a25; background: var(--c-pink); border: 7px solid var(--c-bg); border-radius: 50%; font-size: 17px; }

@media (max-width: 1100px) {
  .prods-hero-layout { grid-template-columns: 1fr; }
  .news-hero-layout { grid-template-columns: .8fr 1.2fr; gap: 36px; }
}

@media (max-width: 900px) {
  .prods-page-hero.prods-hero-v2 { min-height: 820px; align-items: flex-end; }
  .prods-hero-copy { padding-top: 250px; }
  .prods-hero-network-rail { overflow-x: auto; }
  .slate-card-lead { grid-column: auto; display: flex; }
  .slate-card-lead .slate-card-media { min-height: 0; aspect-ratio: 16 / 10; }
  .news-hero-layout { grid-template-columns: 1fr; min-height: 0; }
  .news-hero-copy { padding: 30px 0 0; }
  .news-lead-story { min-height: 560px; }
  .news-secondary-grid { grid-template-columns: 1fr; }
  .news-card.feature.news-secondary-card { aspect-ratio: 16 / 10; min-height: 390px; }
  .contact-hero.contact-hero-v2 { padding-bottom: 72px; }
  .contact-ways-head { grid-template-columns: 1fr; gap: 12px; }
  .contact-ways-head > p { margin-left: 0; }
  .contact-grid { margin-top: 0; padding-top: 76px; }
}

@media (max-width: 700px) {
  .prods-page-hero.prods-hero-v2,
  .news-page-hero.news-hero-v2,
  .contact-hero.contact-hero-v2,
  .contact-ways { padding-left: 20px; padding-right: 20px; }
  .prods-page-hero.prods-hero-v2 { min-height: 760px; padding-bottom: 118px; }
  .prods-hero-copy { padding-top: 170px; }
  .prods-page-hero.prods-hero-v2 h1 { font-size: clamp(55px, 17vw, 78px); }
  .prods-network-rail { left: 20px; right: 20px; gap: 24px; overflow-x: auto; scrollbar-width: none; }
  .prods-stats { margin-top: 0; padding: 22px 20px; }
  .prods-stats .container { padding: 0; }
  .prods-stat { padding: 20px 10px; }
  .prods-stat .lbl { font-size: 11px; }
  .prods-slate-grid { grid-template-columns: 1fr; }
  .news-hero-layout { gap: 28px; }
  .news-page-hero.news-hero-v2 h1 { font-size: clamp(56px, 16vw, 80px); }
  .news-lead-story { min-height: 510px; margin: 0 -4px; border-radius: 22px 22px 0 0; }
  .news-lead-body { padding: 26px 24px 30px; }
  .news-lead-body p { display: none; }
  .news-ticker { width: calc(100% + 40px); margin-top: 24px; margin-left: -20px; }
  .news-section-heading { align-items: flex-start; flex-direction: column; }
  .news-card.feature.news-secondary-card { min-height: 350px; aspect-ratio: 4 / 5; }
  .news-other-head { align-items: flex-start; }
  .news-filter { width: 100%; flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
  .news-filter-pill { flex: 0 0 auto; }
  .news-list-row { grid-template-columns: 92px minmax(0, 1fr); padding: 16px 0; gap: 15px; border-radius: 0; }
  .news-list-thumb { width: 92px; }
  .news-list-main > p { display: none; }
  .contact-hero.contact-hero-v2 h1 { font-size: clamp(52px, 15vw, 76px); }
  .contact-hero.contact-hero-v2 .contact-hero-copy > p:not(.eyebrow) { font-size: 16px; }
  .contact-hero-actions { align-items: flex-start; flex-direction: column; }
  .contact-ways { padding-top: 70px; padding-bottom: 70px; }
  .contact-ways .container { padding: 0; }
  .contact-way { min-height: 0; }
  .contact-grid { padding: 64px 20px 90px; }
  .contact-form-card { padding: 28px 22px; border-radius: 22px; }
  .contact-form-card .form-row { grid-template-columns: 1fr; }
  .contact-form-card button[type=submit] { width: 100%; justify-content: center; }
  .contact-privacy { display: block; margin: 13px 0 0; text-align: center; }
  .netlify-captcha {
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }
  .contact-steps-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-steps-grid::before { left: 27px; right: auto; top: 22px; bottom: 24px; width: 1px; height: auto; }
  .contact-step { min-height: 130px; padding: 0 0 34px 82px; text-align: left; }
  .contact-step .step-num { position: absolute; left: 0; margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .news-lead-story > img { transition: none; }
  .news-ticker-track { animation: none !important; }
  .news-ticker-track { transform: none; }
  .news-ticker-cycle:not(:first-child) { display: none; }
}

/* ============================================================
   Design-system audit: consistent type, rhythm, and interaction
   ============================================================ */
:root {
  --page-gutter: clamp(20px, 3vw, 32px);
  --section-y: clamp(64px, 6vw, 104px);
  --page-title-size: clamp(40px, 6.5vw, 80px);
  --section-title-size: clamp(36px, 4.2vw, 56px);
  --c-orange-action: var(--c-orange);
  --c-orange-action-hover: var(--c-orange-2);
}

.container,
.container-wide { padding-inline: var(--page-gutter); }

h1, h2, h3, h4,
.hero-h1,
.section-title,
.mission-h2,
.cta-banner h2,
.prod-section-head h2,
.partners-head h2,
.spotlight-heading,
.spotlight-title,
.ed-h2 {
  font-family: var(--font-display);
  font-weight: var(--weight-display) !important;
  letter-spacing: -.02em;
}

h1 em, h2 em, h3 em, h4 em,
.hero-h1 em,
.section-title em,
.section-title .italic-orange,
.section-title .italic-pink,
.section-title .italic-purple,
.mission-h2 .orange-it,
.ed-h2 em {
  font-family: var(--font-display);
  font-weight: var(--weight-display-accent) !important;
}

.eyebrow,
.news-eyebrow,
.hero-eyebrow {
  font-size: 12px;
  line-height: 1.25;
  font-weight: var(--weight-interface-strong);
  letter-spacing: .16em;
}

.hero-h1,
.about-hero h1,
.digital-hero h1,
.prods-page-hero.prods-hero-v2 h1,
.prods-detail-intro h1,
.news-page-hero.news-hero-v2 h1,
.contact-hero.contact-hero-v2 h1 {
  font-size: var(--page-title-size);
  line-height: .98;
  letter-spacing: -.03em;
}

.section-title,
.mission-h2,
.prod-section-head h2,
.news-section-heading h2,
.contact-ways-head h2,
.digital-howitworks h2,
.peach-cta h2,
.ed-h2 {
  font-size: var(--section-title-size);
  line-height: 1.08;
}

.section,
.mission,
.founders-purple,
.partners-section,
.digital-section,
.digital-howitworks,
.digital-faqs,
.digital-getstarted,
.news-featured-section {
  padding-block: var(--section-y);
}

.prods-page-hero.prods-hero-v2,
.news-page-hero.news-hero-v2,
.contact-hero.contact-hero-v2,
.about-hero { padding-inline: 0; }

.contact-hero.contact-hero-v2 {
  min-height: min(700px, 80svh);
  padding-block: calc(var(--header-h) + 64px) 80px;
}
.contact-hero.contact-hero-v2 .contact-hero-copy > p:not(.eyebrow) { margin: 0; }
.contact-ways { padding: clamp(96px, 7vw, 120px) 0; }
.contact-ways-head { margin-bottom: 40px; }
.contact-way { min-height: 270px; padding: 26px 24px; }
.contact-way h3 { font-size: 18px; line-height: 1.25; }
.contact-way p { font-size: 15px; line-height: 1.65; }
.contact-way-cta { font-size: 11px; }
.contact-grid {
  margin: 0 auto;
  padding: 64px var(--page-gutter) 104px;
}
.contact-form-head .form-kicker,
.contact-email-link small { font-size: 11px; }

.about-values-head {
  margin-bottom: 48px;
  text-align: center;
}
.about-values-head .section-title { margin-bottom: 18px; }
.about-values-head .section-lead { margin: 0 auto; }

.faq-tab-num,
.spot-num,
.reveal-num { font-family: var(--font-body); }
.faq-tab-item,
.spotlight-item { width: 100%; text-align: left; }
.faq-tab-panel-num { font-size: 12px; }
.search-modal input { padding-right: 60px; }
.gs-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.78);
  text-align: center;
  font-size: 14px;
}

.btn-orange { background: var(--c-orange-action); color: var(--c-text-on-light); }
.btn-orange:hover { background: var(--c-orange-action-hover); }
.peach .eyebrow,
.pink-soft .eyebrow,
.contact-ways .news-eyebrow,
.contact-way-cta { color: var(--c-orange-action); }

.news-filter-pill,
.chip,
.value-chip,
.values-arrow,
.prods-pagination button,
.footer-social a,
#search-close,
.search-btn,
.menu-btn,
.video-modal-close { min-width: 44px; min-height: 44px; }

.founder-card-v2 .body p { font-size: 16px; line-height: 1.75; }
main h1[tabindex="-1"]:focus { outline: none; }

@media (max-width: 700px) {
  :root {
    --page-gutter: 20px;
    --section-y: 64px;
    --section-title-size: clamp(34px, 10vw, 48px);
  }

  .prods-page-hero.prods-hero-v2,
  .news-page-hero.news-hero-v2,
  .contact-hero.contact-hero-v2,
  .contact-ways { padding-inline: 0; }

  .contact-hero.contact-hero-v2 {
    min-height: auto;
    padding-block: calc(var(--header-h) + 56px) 72px;
  }
  .contact-ways { padding-block: 88px; }
  .contact-grid { padding: 56px var(--page-gutter) 80px; }
  .contact-way { min-height: 0; }

  .values-carousel {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .values-chips {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
    padding: 4px 2px 12px;
  }
  .values-chips::-webkit-scrollbar { display: none; }
  .value-chip { scroll-snap-align: start; }
  .values-progress { display: none; }

  .footer-col a { min-height: 44px; display: flex; align-items: center; }
  .faq-tab-panel-num { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Productions: calmer hero, richer brand-color surfaces */
.prods-page-hero.prods-hero-v2 {
  min-height: min(720px, 82svh);
  padding-block: calc(var(--header-h) + 64px) 88px;
  background:
    radial-gradient(32rem 32rem at 92% 12%, rgba(235,188,220,.34), transparent 68%),
    radial-gradient(28rem 28rem at 76% 100%, rgba(219,83,0,.28), transparent 70%),
    linear-gradient(120deg, #08040e 0%, #180821 48%, var(--c-purple) 100%);
}
.prods-page-hero.prods-hero-v2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 6px;
  background: linear-gradient(90deg, var(--c-orange), var(--c-pink), var(--c-purple));
}
.prods-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, .98fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}
.prods-hero-copy {
  max-width: 740px;
  padding-top: 0;
  align-self: center;
  text-align: left;
}
.prods-page-hero.prods-hero-v2 h1 > span,
.prods-page-hero.prods-hero-v2 h1 > em {
  display: block;
  margin: 0;
  padding: 0;
  text-align: left;
  text-indent: 0;
}
.prods-page-hero.prods-hero-v2 h1 > em {
  transform: translateX(-.08em);
}
.prods-hero-art {
  position: relative;
  z-index: 1;
  width: min(52vw, 760px);
  min-width: 0;
  justify-self: end;
  transform: rotate(-3.5deg) translateY(8px);
  transform-origin: 52% 54%;
  isolation: isolate;
}
.prods-hero-media {
  position: relative;
  display: block;
  will-change: transform;
  animation: prods-hero-float 7s ease-in-out infinite;
}
.prods-hero-art picture { display: block; }
.prods-hero-art img {
  display: block;
  width: 100%;
  height: auto;
  filter:
    brightness(1.12)
    contrast(1.04)
    saturate(1.14)
    drop-shadow(0 34px 44px rgba(0,0,0,.38));
}
@keyframes prods-hero-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-4px, -9px, 0) scale(1.012); }
}
@media (prefers-reduced-motion: reduce) {
  .prods-hero-media { animation: none; }
  .prods-hero-media { transform: none; }
}
.prods-page-hero.prods-hero-v2 h1 em {
  background: linear-gradient(100deg, var(--c-pink), #f6c7dc 48%, #f07a32);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.prods-showcase-wrap {
  padding-top: 0;
  background: var(--c-bg);
}
.prods-spotlight-bar {
  padding: 28px 0;
  background: linear-gradient(100deg, var(--c-pink) 0%, #f4cad8 48%, var(--c-cream-3) 100%);
}
.prods-spotlight-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.prods-spotlight-bar .news-eyebrow {
  margin: 0;
  color: var(--c-purple-deep);
}
.prods-spotlight-bar .dash { background: var(--c-orange-action); }
.prods-spotlight-hint {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: rgba(46,13,59,.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
}
.prods-spotlight-hint strong {
  margin-right: 3px;
  color: var(--c-purple-deep);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  letter-spacing: -.02em;
}
.prods-spotlight-hint .browse-cue {
  padding-left: 14px;
  border-left: 1px solid rgba(46,13,59,.24);
}
.prods-spotlight-bar + .prods-carousel { margin-top: 10px; }

.prods-carousel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 6;
  height: 5px;
  background: var(--show-accent, var(--c-pink));
  pointer-events: none;
}
.prods-pagination {
  color: var(--show-accent-text, #1a0b20);
  background: var(--show-accent, var(--c-pink));
  border: 1px solid rgba(255,255,255,.28);
}
.prods-pagination button { color: inherit; }
.prods-pagination button:hover { background: rgba(255,255,255,.3); }

.prods-detail-grid {
  max-width: 1200px;
  margin: 40px auto 96px;
  padding: 56px;
  border: 1px solid rgba(79,24,99,.08);
  border-radius: 32px;
  background:
    radial-gradient(22rem 18rem at 100% 0%, color-mix(in srgb, var(--show-accent) 24%, transparent), transparent 72%),
    linear-gradient(135deg, var(--c-pink-soft), var(--c-cream-3));
  box-shadow: 0 26px 70px -42px rgba(79,24,99,.5);
}
.prods-detail-grid h2 { color: var(--c-purple-deep); }
.prods-detail-grid .body { color: rgba(46,13,59,.78); }
.prods-detail-meta { color: var(--c-orange-action); }
.prods-detail-rule {
  width: 72px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--show-accent, var(--c-orange));
}
.prods-detail-side {
  border-color: color-mix(in srgb, var(--show-accent) 66%, white);
  border-top-width: 5px;
}
.prods-detail-side .label { color: var(--show-accent, var(--c-pink)); }
.prods-detail-grid .prods-visit {
  color: var(--c-purple-deep);
  border-color: var(--show-accent, var(--c-orange));
}
.prods-detail-grid .prods-visit:hover { color: var(--c-orange-action); }

@media (max-width: 900px) {
  .prods-page-hero.prods-hero-v2 {
    min-height: 700px;
    padding-block: calc(var(--header-h) + 60px) 84px;
    align-items: center;
  }
  .prods-hero-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .prods-hero-copy { padding-top: 0; }
  .prods-hero-art {
    width: min(92vw, 760px);
    justify-self: center;
    transform: rotate(-2.5deg);
  }
}

@media (max-width: 700px) {
  .prods-page-hero.prods-hero-v2 {
    min-height: auto;
    padding-block: calc(var(--header-h) + 56px) 72px;
    background:
      radial-gradient(20rem 20rem at 110% 5%, rgba(235,188,220,.24), transparent 68%),
      radial-gradient(18rem 18rem at 90% 100%, rgba(219,83,0,.2), transparent 72%),
      linear-gradient(145deg, #08040e 0%, #1c0925 58%, var(--c-purple) 100%);
  }
  .prods-page-hero.prods-hero-v2 h1 { font-size: var(--page-title-size); }
  .prods-hero-art {
    width: min(96vw, 650px);
    transform: rotate(-2deg);
  }
  .prods-hero-actions { gap: 18px; }
  .prods-spotlight-bar { padding: 20px 0; }
  .prods-spotlight-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .prods-spotlight-hint { flex-wrap: wrap; gap: 8px 12px; white-space: normal; }
  .prods-spotlight-hint .browse-cue { padding-left: 12px; }
  .prods-spotlight-bar + .prods-carousel { margin-top: 8px; }
  .prods-detail-grid {
    margin: 24px 20px 72px;
    padding: 32px 24px;
    border-radius: 24px;
  }
  .prods-detail-grid > .swap-pane { gap: 32px; }
}

/* ============================================================
   Site-wide responsive hardening + restrained finishing details
   ============================================================ */
body.menu-open,
body.search-open { overflow: hidden; }

#mission,
#spotlight,
#difference,
#faqs,
#getstarted,
#news-archive,
#contact-form { scroll-margin-top: calc(var(--header-h) + 24px); }

.hero { min-height: 100svh; }
.about-hero { min-height: 70svh; }

.site-header .primary-nav {
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  overscroll-behavior: contain;
}
.search-overlay {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: max(calc(var(--header-h) + 12px), env(safe-area-inset-top)) var(--page-gutter) 20px;
}
.search-modal {
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - var(--header-h) - 32px);
}
.search-modal::before {
  content: "";
  position: absolute;
  inset: 0 22px auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-orange), var(--c-pink), transparent);
}
.search-results {
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.search-results a { overflow-wrap: anywhere; }

.video-modal { padding: 56px 16px 16px; }
.video-modal-frame { max-width: min(1100px, calc(177.78dvh - 128px)); }
.video-modal-close { top: -48px; }

.about-hero-content > p:not(.hero-eyebrow) {
  margin: 0;
  max-width: 580px;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: var(--weight-body);
  line-height: 1.7;
}
.about-hero .hero-eyebrow {
  margin: 0 0 24px;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: .16em;
}
.partners-head { padding-inline: var(--page-gutter); }

.form-field,
.contact-form-head > div:last-child,
.news-list-row,
.news-list-main,
.news-list-row .title { min-width: 0; }
.form-field input,
.form-field textarea { width: 100%; max-width: 100%; }
.contact-form-head .icon { flex: 0 0 44px; }
.contact-form-card button:disabled,
.ed-submit:disabled {
  opacity: .62;
  cursor: wait;
  transform: none;
}

.digital-features.container-wide { padding-inline: 0; }
.howitworks-video img,
.howitworks-video video { display: block; }
.spotlight:is(:hover, :focus-within) .spot-progress::after { animation-play-state: paused; }

/* Productions */
.prods-page-hero.prods-detail-intro { padding-inline: 0; }
.prods-stage {
  height: clamp(260px, 32.625vw, 640px);
  max-width: none;
  touch-action: pan-y;
}
.prods-slide.active {
  background: color-mix(in srgb, var(--show-accent, var(--c-pink)) 10%, var(--c-bg));
}
.prods-slide.active img {
  /* The artwork is a full-frame visual, not a poster on a matte. Slightly
     crop wider key art such as On Track instead of letterboxing it. */
  object-fit: cover;
  object-position: center;
}
.prods-detail-grid {
  --swap-y: 56px;
  --swap-x: 56px;
}
.prods-detail-grid[data-stable-height] {
  min-height: var(--prods-stable-height);
}
.prods-detail-intro[data-stable-height] {
  min-height: var(--prods-intro-stable-height);
}
.prods-detail-grid.is-swapping > .swap-pane {
  top: var(--swap-y);
  left: var(--swap-x);
  right: var(--swap-x);
}
.prods-detail-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.prods-detail-meta {
  margin-left: 0;
  overflow-wrap: anywhere;
}
.prods-detail-actions {
  gap: 16px;
  flex-wrap: wrap;
  padding-inline: var(--page-gutter);
}
.prods-detail-actions a,
.prods-detail-actions button,
.prods-detail-crumb,
.prods-visit { min-height: 44px; }
.prods-slide.active::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--show-accent) 55%, white),
    inset 0 -70px 80px -80px rgba(10,5,18,.55);
}

/* News */
.news-ticker {
  width: 100%;
  margin-left: 0;
  padding: 0;
}
.news-card.feature,
.news-card.feature.news-secondary-card {
  min-width: 0;
  width: 100%;
}
.news-card.feature.news-secondary-card { aspect-ratio: auto; }
.news-list-row .title,
.article-hero h1,
.article-body { overflow-wrap: anywhere; }
.article-hero { padding-inline: var(--page-gutter); }
.article-back {
  left: var(--page-gutter);
  min-height: 44px;
}
.article-hero .meta { flex-wrap: wrap; }
.article-body { padding-inline: var(--page-gutter); }
.news-filter-pill.active::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--c-orange-action);
}
.news-list-thumb img { transition: transform .55s var(--ease-soft); }

/* Contact */
.contact-way { overflow: hidden; }
.contact-way::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--c-orange), var(--c-pink));
  opacity: .45;
  transform: scaleX(.25);
  transform-origin: left;
  transition: transform .3s ease, opacity .3s ease;
}
.contact-way:is(:hover, :focus-visible)::after {
  opacity: 1;
  transform: scaleX(1);
}
.contact-form-card {
  border: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.contact-form-card:focus-within {
  border-color: rgba(219,83,0,.18);
  box-shadow: 0 38px 90px -34px rgba(219,83,0,.32);
}

.site-footer {
  background:
    radial-gradient(28rem 18rem at 100% 100%, rgba(79,24,99,.14), transparent 72%),
    #0A0512;
}

@media (min-width: 1000px) {
  .prod-row { min-height: clamp(400px, 32vw, 560px); }
}

@media (max-width: 1100px) {
  .contact-ways-grid,
  .digital-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .prods-detail-grid > .swap-pane {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .values-carousel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
    padding-inline: var(--page-gutter);
  }
  .values-chips {
    width: calc(100% + var(--page-gutter) + var(--page-gutter));
    max-width: none;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
    margin: 22px calc(0px - var(--page-gutter)) -18px;
    padding: 18px var(--page-gutter) 30px;
  }
  .values-chips::-webkit-scrollbar { display: none; }
  .value-chip { scroll-snap-align: center; }
  .values-progress { display: none; }

  .founder-card-v2 {
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
  }

  .faq-tab-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, min(76vw, 380px));
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
    padding: 2px 2px 12px;
  }
  .faq-tab-list::-webkit-scrollbar { display: none; }
  .faq-tab-item {
    min-height: 88px;
    padding: 14px;
    grid-template-columns: 32px minmax(0, 1fr) 14px;
    border: 1px solid rgba(10,5,18,.1) !important;
    border-radius: 14px;
    background: rgba(255,255,255,.3);
    scroll-snap-align: start;
  }
  .faq-tab-item.active {
    background: rgba(255,255,255,.58);
    box-shadow: inset 3px 0 0 var(--c-orange);
  }
  .faq-tab-stage { min-height: clamp(300px, 58vw, 360px); }
}

@media (max-width: 800px) {
  .prod-row,
  .prod-row.reverse,
  .prod-cell-text { min-height: 0; }
  .prod-cell-image {
    position: relative;
    width: 100%;
    height: clamp(190px, 56.25vw, 450px);
    min-height: 190px;
    max-height: 450px;
    aspect-ratio: auto;
  }
  .prod-cell-image img {
    position: absolute;
    inset: 0;
  }
  .prod-cell-text { padding: 32px var(--page-gutter); }

  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-brand-block { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .prods-stage { height: clamp(200px, 56.25vw, 430px); }
}

@media (max-width: 700px) {
  /* Mobile WebKit can refuse autoplay when the video itself begins fully
     transparent. Keep the active media visible to the playback engine and
     fade a black cover away instead. */
  .hero-video.is-active,
  .hero-video.is-initial-reveal.is-active {
    opacity: 1;
  }
  .hero-video-first-frame-cover {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    background: var(--c-bg);
    pointer-events: none;
  }
  .hero-video.is-initial-reveal ~ .hero-video-first-frame-cover {
    opacity: 1;
    visibility: visible;
    transition:
      opacity 650ms cubic-bezier(.22, 1, .36, 1),
      visibility 0s linear 650ms;
  }
  .hero-video.is-initial-reveal.is-first-frame-ready ~ .hero-video-first-frame-cover {
    opacity: 0;
    visibility: hidden;
  }

  .hero-content {
    padding: clamp(80px, 12svh, 108px) var(--page-gutter) 72px;
  }
  .hero-scroll,
  .digital-hero .hero-scroll { display: none; }
  .hero-overlay-1 {
    background:
      linear-gradient(180deg, rgba(10,5,18,.66), rgba(10,5,18,.42) 48%, rgba(10,5,18,.88)),
      linear-gradient(90deg, rgba(10,5,18,.78), rgba(10,5,18,.28));
  }
  .about-hero-overlay {
    background: linear-gradient(120deg, rgba(10,5,18,.78), rgba(10,5,18,.38));
  }

  .stats-bar { padding: 44px var(--page-gutter); }
  .stats-row { gap: 24px 16px; }
  .stat span { font-size: 11px; letter-spacing: 1px; line-height: 1.4; }

  .cta-banner { padding: 64px var(--page-gutter); }
  .cta-banner p { font-size: 16px; }
  .cta-actions,
  .cta-actions .btn { width: 100%; max-width: 320px; }

  .prods-detail-grid {
    --swap-y: 32px;
    --swap-x: 24px;
  }
  .prods-detail-actions { padding-block: 18px 8px; }

  .news-lead-story { min-height: clamp(420px, 125vw, 510px); }
  .news-lead-top { padding: 20px; }
  .news-lead-body { padding: 22px 20px 26px; }
  .news-filter {
    max-width: 100%;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
  }
  .news-filter-pill { scroll-snap-align: start; }
  .news-filter::-webkit-scrollbar { display: none; }

  .contact-ways > .container { padding-inline: var(--page-gutter); }

  .digital-hero {
    min-height: 100svh;
    padding: calc(var(--header-h) + 40px) var(--page-gutter) 76px;
  }
  .trusted-row { gap: 18px 24px; margin-top: 32px; }
  .trusted-row .label { flex-basis: 100%; }
  .trusted-row img { height: 42px; max-width: min(100%,180px); }
  .trusted-row img.on-plate {
    box-sizing: border-box;
    height: 54px;
    padding: 6px 10px;
  }
  .digital-section.digital-difference,
  .digital-howitworks { padding-inline: var(--page-gutter); }
  .spotlight-stage,
  .faq-tab-stage { padding: 26px 20px; }
  .spotlight-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, min(78vw, 320px));
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
    padding-bottom: 10px;
  }
  .spotlight-list::-webkit-scrollbar { display: none; }
  .spotlight-item {
    padding: 14px;
    border: 1px solid rgba(255,255,255,.1) !important;
    border-radius: 12px;
    scroll-snap-align: start;
  }
  .howitworks-video { border-radius: 14px; }
  .howitworks-video .play { width: 60px; height: 60px; }
}

@media (max-width: 600px) {
  .partners-marquee {
    -webkit-mask-image: none;
            mask-image: none;
    overflow: hidden;
    touch-action: pan-y;
  }
  .partners-track {
    display: none;
  }
  .partners-mobile-viewport {
    display: block;
    width: 100%;
    overflow: hidden;
    padding-inline-start: var(--page-gutter);
    touch-action: pan-y;
  }
  .partners-mobile-track {
    --partners-mobile-gap: clamp(14px, 4vw, 18px);
    display: flex;
    align-items: stretch;
    width: max-content;
    gap: var(--partners-mobile-gap);
    transform: translate3d(0, 0, 0);
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
  }
  .partners-mobile-track .partner-card {
    flex-basis: clamp(140px, 40vw, 164px);
    height: 106px;
    padding: 18px;
    -webkit-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
  }
  .article-body { padding-block: 48px 64px; }
  .article-body p { font-size: 17px; }
  .article-body > p:first-child { font-size: 19px; }
  .article-figure { margin-block: 32px; }
  .news-feature-grid .news-card.feature {
    min-height: 360px;
    aspect-ratio: auto;
  }
  .related-articles-section .news-card.feature {
    min-height: 280px;
    aspect-ratio: auto;
  }
  .news-feature-grid > .news-card.feature { min-width: 0; }
}

@media (max-width: 600px) and (prefers-reduced-motion: reduce) {
  .partners-marquee,
  .partners-mobile-viewport {
    touch-action: auto;
  }
  .partners-mobile-viewport {
    overflow-x: auto;
    padding-inline: var(--page-gutter);
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
  }
  .partners-mobile-viewport::-webkit-scrollbar { display: none; }
  .partners-mobile-track {
    transform: none !important;
    transition: none !important;
    padding-inline-end: var(--page-gutter);
  }
  .partners-mobile-track .partner-card { scroll-snap-align: start; }
}

@media (max-width: 560px) {
  .contact-ways-grid,
  .digital-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-block { grid-column: auto; }
  .footer-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }
  .footer-col a { width: 100%; }
  .site-footer { padding-top: 56px; }
  .contact-side-card a,
  .contact-side-card p { overflow-wrap: anywhere; }
}

@media (max-width: 500px) {
  .story-photo-wrap { padding-right: 28px; padding-bottom: 28px; }
  .story-photo-wrap .overlay-photo { width: 42%; border-width: 3px; }
  .story-photo-wrap .badge { top: 12px; left: 12px; padding: 10px 14px; }
}

@media (max-width: 480px) {
  .prods-detail-actions { flex-direction: column; align-items: flex-start; }
  .prods-detail-grid h2 {
    font-size: clamp(34px, 10vw, 40px);
    overflow-wrap: anywhere;
  }
  .prods-detail-side { padding-inline: 24px; }
}

@media (max-width: 380px) {
  .nav-row { gap: 8px; }
  .brand { gap: 8px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-text img { height: 19px; }

  .news-list-row { grid-template-columns: 76px minmax(0,1fr); gap: 12px; }
  .news-list-thumb { width: 76px; align-self: start; }
  .news-list-row .meta { gap: 6px; }
  .news-list-row .meta .date { font-size: 12px; }
  .news-loop .btn { width: 100%; justify-content: center; }
}

@media (pointer: coarse) {
  .footer-col a,
  .prod-cell-text .learn,
  .news-jump,
  .contact-email-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (hover: hover) and (pointer: fine) {
  .partner-card:hover { transform: translateY(-3px); }
  .contact-way:hover,
  .digital-feature:hover { transform: translateY(-4px); }
  .news-list-row:hover .news-list-thumb img { transform: scale(1.045); }
}

@media (hover: none), (pointer: coarse) {
  /* These logos are informational rather than controls. Keeping the moving
     track out of touch hit-testing prevents iOS from synthesizing a sticky
     hover/transform state that can make the animated layer stop painting. */
  .partners-track { pointer-events: none; -webkit-tap-highlight-color: transparent; }
  .partner-card,
  .partner-card img {
    -webkit-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
  }
  .btn:hover,
  .award-card:hover,
  .news-card:hover,
  .partner-card:hover,
  .value-chip:hover,
  .contact-way:hover,
  .digital-feature:hover { transform: none; }
  .prod-cell-image:hover img,
  .news-card:hover img { transform: none; }
}

@media (min-width: 1600px) {
  .contact-ways .container,
  .contact-grid { max-width: 1280px; }
  .digital-difference > .spotlight { max-width: 1200px; }
}

@media (min-width: 2000px) {
  .hero-h1 { max-width: 1180px; }
  .partner-card { flex-basis: 240px; height: 150px; }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; transform: none; }
  .partners-marquee { overflow: visible; }
  .partners-track {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    padding-inline: var(--page-gutter);
  }
  .partners-group {
    animation: none;
    transform: none;
    will-change: auto;
    display: contents;
  }
  .partners-group[aria-hidden="true"] { display: none; }
  .spot-progress::after { display: none; }
  .prods-carousel.is-swapping::after { display: none; }
}

/* ============================================================
   Unified heading treatment: one display family, solid accents
   ============================================================ */
main :is(h1, h2, h3, h4),
main :is(h1, h2, h3, h4) :is(em, span) {
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
}

main :is(h1, h2, h3, h4) :is(em, .italic-orange, .italic-pink, .italic-purple),
.mission-h2 .orange-it,
.editorial-h2 .editorial-line-2 em,
.ed-h2 em {
  font-family: var(--font-display) !important;
  font-weight: var(--weight-display-accent) !important;
}

.news-page-hero h1,
.contact-hero h1 { color: #fff !important; }

.prods-page-hero.prods-hero-v2 h1 em,
.contact-hero.contact-hero-v2 h1 em,
.section-title .italic-pink,
.digital-section:not(.digital-faqs) .section-title em,
.editorial-h2 .editorial-line-2 em,
.digital-feature h4 em,
.ed-h2 em { color: var(--c-pink) !important; }

.hero-h1 em,
.digital-hero h1 em,
.news-page-hero.news-hero-v2 h1 em,
.section-title .italic-orange,
.mission-h2 .orange-it,
.digital-faqs .section-title em { color: var(--c-orange) !important; }

.section-title .italic-purple,
.peach-cta h2 em { color: var(--c-purple) !important; }

/* Contact hero: floating 3D Windy Isle mark */
.contact-hero.contact-hero-v2 .contact-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  align-items: center;
  gap: clamp(36px, 5vw, 84px);
}
.contact-hero.contact-hero-v2 .contact-hero-copy { max-width: 720px; }
.contact-hero-logo {
  position: relative;
  min-width: 0;
  min-height: clamp(380px, 40vw, 560px);
  display: grid;
  place-items: center;
  isolation: isolate;
}
.contact-hero-logo::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 46%, rgba(235,188,220,.48) 0%, rgba(219,83,0,.2) 38%, rgba(79,24,99,.18) 58%, transparent 74%);
  filter: blur(20px);
  animation: contact-logo-glow 5.8s ease-in-out infinite;
}
.contact-hero-logo::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 17%;
  right: 17%;
  bottom: 7%;
  height: 12%;
  border-radius: 50%;
  background: rgba(0,0,0,.58);
  filter: blur(18px);
  transform: scaleX(.9);
  animation: contact-logo-shadow 6.2s ease-in-out infinite;
}
.contact-logo-art {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  aspect-ratio: 1;
  animation: contact-logo-float 6.2s ease-in-out infinite;
}
.contact-logo-art picture { display: contents; }
.contact-hero-logo img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.03) drop-shadow(0 30px 38px rgba(0,0,0,.38));
  -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 68%, rgba(0,0,0,.96) 78%, transparent 100%);
  mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 68%, rgba(0,0,0,.96) 78%, transparent 100%);
}
.contact-window-light,
.contact-star-light {
  position: absolute;
  z-index: 3;
  display: block;
  pointer-events: none;
}
.contact-window-light {
  border-radius: 44% 44% 36% 36%;
  background: rgba(255,218,114,.92);
  mix-blend-mode: screen;
  filter: blur(.35px);
  box-shadow:
    0 0 5px rgba(255,224,126,.95),
    0 0 13px rgba(255,154,54,.78),
    0 0 24px rgba(219,83,0,.38);
  opacity: .82;
  animation: contact-window-flicker var(--flicker-speed, 5.8s) steps(1, end) infinite;
  animation-delay: var(--flicker-delay, 0s);
}
/* Two tall windows, followed by the three smaller front windows. */
.contact-window-light.window-one { left: 28.9%; top: 54.1%; width: 2.65%; height: 6%; --flicker-speed: 5.7s; }
.contact-window-light.window-two { left: 39.8%; top: 54.1%; width: 2.65%; height: 6%; --flicker-speed: 6.4s; --flicker-delay: -1.8s; }
.contact-window-light.window-three { left: 49.6%; top: 55.4%; width: 2.65%; height: 4.5%; --flicker-speed: 5.2s; --flicker-delay: -3.1s; }
.contact-window-light.window-four { left: 54.6%; top: 55.4%; width: 2.65%; height: 4.5%; --flicker-speed: 6.8s; --flicker-delay: -2.4s; }
.contact-window-light.window-five { left: 59.5%; top: 55.4%; width: 2.65%; height: 4.5%; --flicker-speed: 5.9s; --flicker-delay: -4.2s; }

.contact-star-light {
  width: 1.05%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffe0a6;
  box-shadow: 0 0 7px rgba(255,215,145,.9), 0 0 16px rgba(255,150,84,.5);
  opacity: .28;
  transform: translate(-50%, -50%) scale(.65);
  animation: contact-star-shimmer var(--star-speed, 3.4s) ease-in-out infinite;
  animation-delay: var(--star-delay, 0s);
}
.contact-star-light::before,
.contact-star-light::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  background: linear-gradient(transparent, rgba(255,245,218,.9), transparent);
  transform: translate(-50%, -50%);
}
.contact-star-light::before { width: 1px; height: 360%; }
.contact-star-light::after { width: 360%; height: 1px; }
.contact-star-light.star-one { left: 53.5%; top: 5.7%; --star-speed: 3.1s; }
.contact-star-light.star-two { left: 57.9%; top: 7.9%; --star-speed: 4.2s; --star-delay: -1.7s; }
.contact-star-light.star-three { left: 53.7%; top: 10.2%; --star-speed: 3.7s; --star-delay: -2.8s; }
.contact-star-light.star-four { left: 66.3%; top: 12%; --star-speed: 4.6s; --star-delay: -.9s; }
.contact-star-light.star-five { left: 38.5%; top: 18.2%; --star-speed: 3.9s; --star-delay: -3.2s; }

.contact-water-shimmer {
  position: absolute;
  z-index: 3;
  left: 18.5%;
  top: 70.5%;
  width: 65%;
  height: 18%;
  display: block;
  overflow: hidden;
  pointer-events: none;
  clip-path: ellipse(48% 42% at 48% 54%);
  mix-blend-mode: screen;
  opacity: .34;
  background:
    linear-gradient(90deg, transparent, rgba(255,230,189,.7), transparent) 24% 34% / 27% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(235,188,220,.66), transparent) 53% 57% / 34% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(255,255,255,.46), transparent) 38% 78% / 22% 1px no-repeat;
  animation: contact-water-ripples 5.8s ease-in-out infinite;
}
.contact-water-shimmer::before {
  content: "";
  position: absolute;
  inset: -35% -25%;
  background: linear-gradient(104deg, transparent 36%, rgba(255,245,220,.08) 43%, rgba(255,221,172,.56) 49%, rgba(235,188,220,.28) 53%, transparent 61%);
  filter: blur(4px);
  transform: translateX(-58%) skewX(-12deg);
  animation: contact-water-sweep 7.2s cubic-bezier(.45,0,.25,1) infinite;
}

@keyframes contact-window-flicker {
  0%, 10% { opacity: .34; }
  12% { opacity: .96; }
  13% { opacity: .58; }
  15%, 48% { opacity: .96; }
  49% { opacity: .66; }
  51%, 84% { opacity: .92; }
  85% { opacity: .48; }
  87%, 100% { opacity: .94; }
}
@keyframes contact-star-shimmer {
  0%, 100% { opacity: .18; transform: translate(-50%, -50%) scale(.55) rotate(0deg); }
  45% { opacity: .45; }
  58% { opacity: .92; transform: translate(-50%, -50%) scale(1.18) rotate(45deg); }
  72% { opacity: .3; }
}
@keyframes contact-water-ripples {
  0%, 100% { opacity: .24; filter: brightness(.92); }
  48% { opacity: .46; filter: brightness(1.18); }
  62% { opacity: .32; }
}
@keyframes contact-water-sweep {
  0%, 20% { opacity: 0; transform: translateX(-58%) skewX(-12deg); }
  34% { opacity: .78; }
  66% { opacity: .46; }
  82%, 100% { opacity: 0; transform: translateX(58%) skewX(-12deg); }
}
@keyframes contact-logo-float {
  0%, 100% { transform: translate3d(0, 4px, 0) rotate(-.8deg); }
  50% { transform: translate3d(0, -14px, 0) rotate(.8deg); }
}
@keyframes contact-logo-glow {
  0%, 100% { opacity: .72; transform: scale(.94); }
  50% { opacity: 1; transform: scale(1.05); }
}
@keyframes contact-logo-shadow {
  0%, 100% { opacity: .72; transform: scaleX(.92); }
  50% { opacity: .46; transform: scaleX(.76); }
}

@media (max-width: 900px) {
  .contact-hero.contact-hero-v2 .contact-hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-hero.contact-hero-v2 .contact-hero-copy { max-width: 760px; }
  .contact-hero-logo {
    min-height: 340px;
    margin-top: 10px;
  }
  .contact-logo-art { width: min(78vw, 430px); }
}

@media (max-width: 560px) {
  .contact-hero-logo { min-height: 280px; }
  .contact-logo-art { width: min(88vw, 340px); }
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero-logo::before,
  .contact-hero-logo::after,
  .contact-logo-art,
  .contact-window-light,
  .contact-star-light,
  .contact-water-shimmer,
  .contact-water-shimmer::before { animation: none; }

  .contact-hero-logo::before { opacity: .82; transform: scale(1); }
  .contact-hero-logo::after { opacity: .6; transform: scaleX(.84); }
  .contact-window-light { opacity: .82; }
  .contact-star-light { opacity: .36; transform: translate(-50%, -50%) scale(.8); }
  .contact-water-shimmer { opacity: .28; filter: none; }
  .contact-water-shimmer::before { opacity: 0; }
}

/* Restore wide-screen rhythm after the generic design-system layer. */
@media (min-width: 1600px) {
  :root { --page-gutter: 40px; --section-y: 120px; }
  .mission { padding-block: 140px; }
  .testimonials { padding-block: 130px; }
}

@media (min-width: 2000px) {
  :root { --page-gutter: 48px; --section-y: 140px; }
  .mission { padding-block: 160px; }
  .testimonials { padding-block: 150px; }
}

@media (min-width: 2560px) {
  :root { --page-gutter: 64px; --section-y: 160px; }
  .mission { padding-block: 190px; }
  .testimonials { padding-block: 170px; }
}

/* Small text on pale surfaces uses a deeper accessible orange. Buttons and
   large color fields keep the original bright brand orange. */
.peach .eyebrow,
.pink-soft .eyebrow,
.contact-ways .news-eyebrow,
.contact-way-cta,
.contact-form-head .form-kicker,
.story-row .eyebrow,
.founder-card-v2 .body .get-in-touch,
.prods-detail-meta,
.prods-detail-grid .prods-visit:hover { color: var(--c-orange-text); }

.hero-scroll { color: rgba(255,255,255,.62); }
.footer-bottom { color: rgba(255,255,255,.64); }
.search-results .res-meta,
.slate-networks { color: rgba(255,255,255,.68); }
.contact-email-link small,
.contact-trust-rail { color: rgba(255,255,255,.7); }

/* ============================================================
   Typography roles: Sora for display and interface text

   Nunito remains the reading face for paragraphs, descriptions, articles,
   form inputs, and other long-form copy. These compact UI roles previously
   inherited Nunito and looked like remnants of the old headline system.
   ============================================================ */
button,
.btn,
.hero-eyebrow,
.eyebrow,
.news-eyebrow,
.prod-cell-text .badge,
.prod-cell-text .meta,
.prod-cell-text .learn,
.awards-pill-text,
.award-year,
.award-status,
.award-org,
.award-show,
.news-cat,
.news-date,
.news-meta,
.news-link,
.news-feature-link,
.footer-col h4,
.footer-col a,
.founder-role,
.founder-photo-wrap .founder-card-role,
.founder-card-v2 .body .get-in-touch,
.story-photo .badge,
.story-photo-wrap .badge,
.stats-row .stat,
.tl-year,
.prods-pagination,
.prods-detail-crumb,
.prods-detail-grid .badge,
.prods-detail-meta,
.prods-detail-side .stat-num,
.prods-detail-side small,
.prods-detail-side .label,
.prods-detail-back,
.prods-detail-actions a,
.prods-detail-actions button,
.prods-visit,
.prods-network-rail,
.prods-spotlight-hint,
.prods-hero-contact,
.prods-stat .lbl,
.slate-badge,
.slate-genre,
.slate-networks,
.slate-cta,
.trusted-row .label,
.values-counter,
.values-watermark,
.value-chip,
.spotlight-num,
.spot-num,
.spot-title,
.reveal-num,
.reveal-title,
.faq-q,
.faq-tab-num,
.faq-tab-q,
.faq-tab-panel-num,
.faq-tab-panel-q,
.ed-step-num,
.ed-step-label,
.news-page-tag,
.news-filter-label,
.news-filter-pill,
.news-list-row .meta,
.news-list-row .title,
.news-jump,
.article-date,
.article-back,
.search-results strong,
.contact-email-link,
.contact-way-cta,
.contact-form-head .form-kicker,
.contact-trust-rail,
.contact-form-card .label,
.form-field label,
.contact-side-card .row b,
.gs-section-label,
.gs-form .form-field label,
.news-lead-top time,
.news-lead-kicker,
.signal-live,
.signal-core small,
.signal-route,
.signal-response,
.chip,
.t-author b {
  font-family: var(--font-display);
  font-weight: var(--weight-interface-strong);
}

/* Calmer supporting roles use the newly loaded regular/medium Sora faces.
   This keeps the site polished and playful without making every label compete
   with the page headings. */
.primary-nav a,
.prod-cell-text .meta,
.award-year,
.news-date,
.news-meta,
.prods-detail-side small,
.prods-stat .lbl,
.slate-networks,
.values-counter,
.news-page-tag,
.news-list-row .meta .date,
.article-date,
.contact-email-link,
.contact-side-card .row a,
.contact-side-card .row p,
.news-lead-top time,
.signal-route,
.chip {
  font-weight: var(--weight-interface);
}

.footer-col a,
.contact-trust-rail {
  font-weight: 400;
}

.story-photo .badge span,
.story-photo-wrap .badge span,
.awards-pill-text span,
.news-page-tag b,
.news-list-row .meta .cat,
.contact-trust-rail b,
.contact-side-card .person b {
  font-weight: var(--weight-interface-strong);
}

/* Prominent figures share the tighter, calmer display treatment. */
.awards-pill-text b,
.prods-detail-side .stat-num,
.values-watermark {
  font-weight: var(--weight-figure);
  letter-spacing: -.04em;
}

/* ============================================================
   Stable, paged newsroom archive

   Five fixed row slots and a persistent control rail keep the CTA/footer in
   one place while filters and future pages change the visible story set.
   ============================================================ */
.news-filter-pill {
  position: relative;
  min-height: 44px;
  gap: 9px;
  white-space: nowrap;
}
.news-filter-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--c-orange-action);
  opacity: 0;
  transform: scale(.65);
  transition: opacity .18s ease, transform .18s var(--ease-soft);
}
.news-filter-pill.active::before {
  opacity: 1;
  transform: scale(1);
}

.news-list {
  --news-row-height: 156px;
  --news-page-height: 781px;
  position: relative;
  display: grid;
  grid-template-rows: repeat(5, var(--news-row-height));
  block-size: var(--news-page-height);
  min-block-size: var(--news-page-height);
  overflow: hidden;
  border-top: 1px solid var(--c-line-dark);
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 calc(var(--news-row-height) - 1px),
    var(--c-line-dark) calc(var(--news-row-height) - 1px) var(--news-row-height)
  );
}
.news-list.is-changing {
  animation: newsArchiveRefresh .28s var(--ease-soft) both;
}
@keyframes newsArchiveRefresh {
  from { opacity: .38; }
  to { opacity: 1; }
}
.news-list-row {
  box-sizing: border-box;
  block-size: var(--news-row-height);
  min-block-size: 0;
  padding-block: 16px;
  border-bottom: 0;
}
.news-list-row .title,
.news-list-main > p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.news-list-row .title {
  margin: 0;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.news-list-main > p {
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.news-list-empty {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 5px;
  text-align: center;
  color: rgba(255,255,255,.58);
}
.news-list-empty[hidden] { display: none; }
.news-list-empty strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--weight-display);
}
.news-list-empty span { font-size: 14px; }

.news-pagination-shell {
  min-block-size: 76px;
  display: flex;
  align-items: flex-end;
}
.news-pagination {
  width: 100%;
  min-height: 52px;
  padding: 16px 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.62);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: var(--weight-interface);
}
.news-pagination-status {
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: var(--weight-body);
  line-height: 1.5;
}
.news-pagination-controls,
.news-pagination-pages {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.news-pagination-pages { min-width: 96px; justify-content: center; }
.news-page-btn,
.news-page-number {
  min-width: 44px;
  height: 44px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.78);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: var(--weight-interface-strong);
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.news-page-btn svg { width: 14px; height: 14px; }
.news-page-btn:is(:hover, :focus-visible),
.news-page-number:is(:hover, :focus-visible) {
  border-color: rgba(235,188,220,.55);
  background: rgba(235,188,220,.1);
  color: #fff;
}
.news-page-number[aria-current="page"] {
  border-color: var(--c-pink);
  background: var(--c-pink);
  color: #1b0b20;
}
.news-page-btn:disabled {
  opacity: .32;
  cursor: default;
}
.news-page-ellipsis {
  width: 24px;
  color: rgba(255,255,255,.42);
  text-align: center;
}

@media (max-width: 700px) {
  .news-filter {
    scroll-padding-inline: 2px;
    touch-action: pan-x;
  }
  .news-list {
    --news-row-height: 112px;
    --news-page-height: 561px;
  }
  .news-list-row { padding-block: 14px; }
  .news-list-main > p { display: none; }
  .news-pagination { padding-inline: 0; }
  .news-page-btn > span { display: none; }
}

@media (max-width: 480px) {
  .news-pagination-shell { min-block-size: 104px; }
  .news-pagination {
    min-height: 88px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
  .news-pagination-pages .news-page-number:not([aria-current="page"]),
  .news-page-ellipsis { display: none; }
}

@media (max-width: 380px) {
  .news-list {
    --news-row-height: 128px;
    --news-page-height: 641px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-list.is-changing { animation: none; }
  .news-filter-pill::before { transition: none; }
}

/* Contact pathway cards are clickable containers, but their descriptions are
   reading copy—not interface labels. Restore the original light body face;
   the h3 and CTA descendants retain their explicit display treatments. */
.contact-way {
  font-family: var(--font-body);
  font-weight: 400;
}

/* ============================================================
   Premium mobile refinement pass
   ============================================================ */
.nav-backdrop {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 49;
  background: rgba(10,5,18,.64);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.nav-backdrop[hidden] { display: none; }

/* Keep the Learn more label still; only the arrow gets the fine-pointer cue. */
.prod-row:hover .prod-cell-text .learn { gap: 8px; }
.prod-cell-text .learn svg { transition: transform .24s var(--ease-soft); }
@media (hover: hover) and (pointer: fine) {
  .prod-row:hover .prod-cell-text .learn svg { transform: translateX(4px); }
}

@media (min-width: 1025px) {
  .nav-backdrop { display: none !important; }
}

@media (max-width: 768px) {
  /* Give the artwork the full mobile canvas and move the large tap targets
     into a dedicated rail instead of covering the image. */
  .prods-stage {
    display: block;
    height: auto;
    min-height: 0;
  }
  .prods-slide.active {
    position: relative;
    inset: auto;
    width: 100%;
    display: grid;
    grid-template-rows: auto 64px;
  }
  .prods-slide.active img {
    grid-row: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
  }
  .prods-pagination {
    position: static;
    grid-row: 2;
    align-self: center;
    justify-self: end;
    margin-right: var(--page-gutter);
  }
  .prods-slide.active::after { bottom: 64px; }
}

@media (max-width: 700px) {
  /* The hero already clears the fixed header; avoid paying that offset twice. */
  .hero-content {
    padding: clamp(24px, 4svh, 32px) var(--page-gutter) 56px;
  }

  .section.pink-soft { padding-top: var(--section-y); }

  .ed-form .form-field input,
  .ed-form .form-field textarea {
    font-size: 16px;
  }
}

/* A narrow desktop window can be much taller than it is wide. Keep the
   landscape hero reel cinematic instead of forcing it to cover an extremely
   tall canvas and magnifying a tiny slice of each shot. */
@media (min-width: 701px) and (max-width: 1024px) and (max-aspect-ratio: 4 / 5) {
  .hero {
    min-height: min(100svh, 120vw);
  }

  .hero-content {
    padding: clamp(44px, 6svh, 64px) var(--page-gutter) 64px;
  }

  .hero-scroll { display: none; }

  .hero-overlay-1 {
    background:
      linear-gradient(180deg, rgba(10,5,18,.66), rgba(10,5,18,.42) 48%, rgba(10,5,18,.88)),
      linear-gradient(90deg, rgba(10,5,18,.78), rgba(10,5,18,.28));
  }
}

@media (max-width: 560px) {
  /* Preserve the full-width team composition on narrow screens. */
  .story-photo-wrap .main-photo { aspect-ratio: 16 / 9; }
  .story-photo-wrap .overlay-photo { width: 36%; }

  .values-card-body { padding: 24px 22px 26px; }
  .values-card-body p {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 430px) {
  .news-list {
    --news-row-height: 128px;
    --news-page-height: 641px;
  }

  .contact-email-link { max-width: 100%; }
  .contact-email-link > svg { flex: 0 0 22px; }
  .contact-email-link span {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

/* ============================================================
   Digital difference — cinematic Roblox world
   ============================================================ */
.digital-section.digital-difference {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      var(--c-bg) 0,
      rgba(10,5,18,.94) 72px,
      rgba(10,5,18,.5) 176px,
      transparent 300px
    ),
    radial-gradient(70rem 34rem at 50% 8%, rgba(79,24,99,.26), transparent 72%),
    linear-gradient(180deg, #0a0512 0%, #220b31 42%, #41134f 72%, #2e0d3b 100%);
}

.difference-intro {
  position: relative;
  isolation: isolate;
  width: min(1240px, 100%);
  min-height: clamp(520px, 48vw, 680px);
  margin: 0 auto;
  display: grid;
  align-items: center;
  overflow: hidden;
  text-align: left;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: clamp(26px, 3vw, 38px);
  background: #16091f;
  box-shadow:
    0 44px 100px -48px rgba(0,0,0,.82),
    0 42px 96px -44px rgba(235,188,220,.62),
    0 68px 138px -70px rgba(219,83,0,.48),
    0 0 80px -54px rgba(235,188,220,.55);
}

.difference-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 58%);
  mask-image: linear-gradient(90deg, #000, transparent 58%);
}

.difference-intro::after {
  content: "";
  position: absolute;
  left: clamp(28px, 5vw, 64px);
  right: clamp(28px, 5vw, 64px);
  bottom: 0;
  z-index: 3;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--c-orange) 10%,
    var(--c-pink) 56%,
    transparent 100%
  );
  opacity: .82;
}

.difference-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.difference-scene picture {
  position: absolute;
  inset: 0;
  display: block;
}
.difference-scene img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.difference-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,5,18,.96) 0%, rgba(10,5,18,.83) 30%, rgba(10,5,18,.48) 52%, rgba(10,5,18,.08) 74%),
    linear-gradient(0deg, rgba(10,5,18,.7) 0%, transparent 36%);
}

.difference-copy {
  position: relative;
  z-index: 2;
  width: min(58%, 640px);
  padding: clamp(42px, 6vw, 78px);
}
.digital-section.digital-difference .difference-copy .eyebrow {
  margin: 0 0 18px;
  color: var(--c-pink);
}
.digital-section.digital-difference .difference-copy .section-title {
  max-width: 600px;
  margin: 0 0 22px;
  color: #fff;
  text-align: left;
  text-wrap: balance;
}
.digital-section.digital-difference .difference-copy .section-title > span,
.digital-section.digital-difference .difference-copy .section-title > em {
  display: block;
}
.digital-section.digital-difference .difference-copy .section-title > span {
  white-space: nowrap;
}
.digital-section.digital-difference .difference-copy .section-title em { color: var(--c-pink); }
.digital-section.digital-difference .difference-copy .lead {
  max-width: 570px;
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.75;
}

.difference-pillars {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
}
.difference-pillars li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(10,5,18,.3);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.9);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: var(--weight-interface-strong);
  letter-spacing: .02em;
}
.difference-pillars li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 2px;
  background: var(--c-orange);
  box-shadow: 0 0 12px rgba(219,83,0,.6);
}

.digital-difference > .spotlight {
  margin-top: clamp(64px, 7vw, 96px);
}
.digital-difference .spotlight-inner {
  gap: 24px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background: rgba(10,5,18,.3);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 80px -46px rgba(0,0,0,.9);
}
.digital-difference .spotlight-list {
  padding: 8px 14px;
  border-radius: 18px;
  background: rgba(10,5,18,.24);
}
.digital-difference .spotlight-stage {
  background: linear-gradient(145deg, #fff8ef 0%, #f8edf3 100%);
  box-shadow: 0 24px 55px -28px rgba(0,0,0,.58);
}

@media (max-width: 700px) {
  .difference-intro {
    min-height: 0;
    display: flex;
    flex-direction: column;
    border-radius: 22px;
  }
  .difference-intro::before { display: none; }
  .difference-intro::after { left: 22px; right: 22px; }

  .difference-scene {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    flex: 0 0 auto;
  }
  .difference-scene img {
    position: absolute;
    inset: 0;
    object-position: 70% center;
  }
  .difference-scene::after {
    background: linear-gradient(0deg, rgba(22,9,31,.92) 0%, rgba(22,9,31,.2) 38%, transparent 66%);
  }

  .difference-copy {
    width: 100%;
    padding: 30px 22px 38px;
    background: linear-gradient(180deg, #16091f, #1d0a29);
  }
  .digital-section.digital-difference .difference-copy .lead {
    font-size: 16px;
    line-height: 1.7;
  }
  .difference-pillars { gap: 8px; margin-top: 22px; }
  .difference-pillars li { min-height: 36px; padding: 7px 11px; }

  .digital-difference > .spotlight { margin-top: 56px; }
  .digital-difference .spotlight-inner { padding: 12px; border-radius: 20px; }
  .digital-difference .spotlight-list {
    padding: 4px 4px 12px;
    background: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  .difference-scene img { transform: none; }
}

/* ============================================================
   Page-hero vertical rhythm

   Split editorial heroes share one top inset on tablet/phone. On
   desktop the Contact copy needs a small optical correction because
   its taller action/trust stack otherwise makes the heading appear
   higher than the Newsroom heading beside its feature card.
   ============================================================ */
@media (min-width: 901px) {
  .prods-hero-copy,
  .news-hero-copy { padding-top: 42px; }

  .contact-hero.contact-hero-v2 .contact-hero-copy {
    padding-top: clamp(48px, 4vw, 64px);
  }
}

@media (max-width: 900px) {
  .prods-page-hero.prods-hero-v2,
  .prods-page-hero.prods-detail-intro,
  .news-page-hero.news-hero-v2,
  .contact-hero.contact-hero-v2 {
    padding-top: calc(var(--header-h) + 60px);
  }

  .prods-hero-copy,
  .news-hero-copy,
  .contact-hero.contact-hero-v2 .contact-hero-copy { padding-top: 0; }
}

@media (max-width: 700px) {
  .prods-page-hero.prods-hero-v2,
  .prods-page-hero.prods-detail-intro,
  .news-page-hero.news-hero-v2,
  .contact-hero.contact-hero-v2 {
    padding-top: calc(var(--header-h) + 56px);
  }
}

/* ============================================================
   Digital expertise + process — one clear idea per section
   ============================================================ */
.digital-features-block {
  width: min(1120px, 100%);
  margin: clamp(72px, 7vw, 104px) auto 0;
  text-align: left;
}
.digital-features-head { max-width: none; }
.digital-features-head .eyebrow {
  margin: 0 0 14px;
  color: var(--c-pink);
}
.digital-features-head h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.06;
  letter-spacing: -.025em;
  white-space: nowrap;
}
.digital-features-head h3 em {
  color: var(--c-pink);
  font-style: italic;
}
.digital-difference .digital-features {
  max-width: none;
  margin: 34px 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
}
.digital-difference .digital-feature {
  min-width: 0;
  min-height: 240px;
  padding: clamp(30px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}
.digital-difference .digital-feature h4 {
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.18;
}
.digital-difference .digital-feature p {
  max-width: 520px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.7;
}

.digital-howitworks .howitworks-process {
  max-width: 820px;
  margin: 0 auto clamp(36px, 4vw, 52px);
  padding: 0;
  color: #555;
  background: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.7;
  box-shadow: none;
}

/* Keep Digital section headings on one shared vertical anchor. */
.digital-howitworks,
.digital-faqs { padding-top: var(--section-y); }
.digital-howitworks > .eyebrow,
.digital-faqs > .eyebrow,
.digital-getstarted > .eyebrow {
  margin: 0 0 16px;
}
.digital-faqs > :is(.eyebrow, .section-title)[data-reveal],
.digital-getstarted > :is(.eyebrow, .section-title)[data-reveal] {
  transform: none;
}

@media (max-width: 700px) {
  .digital-features-block { margin-top: 56px; }
  .digital-getstarted-bg img {
    inset: auto auto 0 76%;
    width: auto;
    height: 66%;
    max-width: none;
    transform: translateX(-76%);
  }
  .digital-features-head h3 {
    font-size: clamp(30px, 10vw, 42px);
    white-space: normal;
  }
  .digital-difference .digital-features {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 26px;
  }
  .digital-difference .digital-feature {
    min-height: 0;
    padding: 26px 22px;
  }
  .digital-howitworks .howitworks-process {
    margin-bottom: 32px;
    padding: 0;
    font-size: 17px;
  }
}

/* The homepage hero always uses the same gentle first-frame fade. It is a
   required part of this silent video treatment, independent of OS motion
   preferences; all other site motion continues to use the global preference. */
@media (prefers-reduced-motion: reduce) {
  .hero-video.is-initial-reveal {
    transition: opacity 650ms cubic-bezier(.22, 1, .36, 1) !important;
  }
}
