/* ==========================================================================
   Let Your Voice Be Heard Media — Version 2 (Immersive 3D)
   On-air studio palette: black + crimson + gold, glass UI, WebGL stage
   ========================================================================== */

:root {
  --void: #080507;
  --navy-900: #0d0709;
  --navy-800: #160a0d;
  --navy-700: #2a0f13;
  --navy-500: #6e1a1e;
  --red-500: #e01b24;
  --red-400: #ff3f43;
  --red-600: #8a1418;
  --ember: #ff6a3a;
  --gold-500: #e0a326;
  --gold-400: #f5c95c;
  --red-glow: rgba(224, 27, 36, 0.72);
  --gold-glow: rgba(224, 163, 38, 0.5);
  --ink: #ffffff;
  --ink-dim: #d6c8c8;
  --ink-faint: #9c8a8c;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.13);
  --line: rgba(255, 255, 255, 0.17);
  --line-strong: rgba(255, 255, 255, 0.3);
  --radius: 16px;
  --radius-lg: 26px;
  --maxw: 1240px;
  --font-display: "Bebas Neue", "Barlow Condensed", Impact, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background:
    radial-gradient(1150px 760px at 80% 2%, rgba(224, 27, 36, 0.40), transparent 60%),
    radial-gradient(900px 620px at 18% 60%, rgba(255, 106, 58, 0.14), transparent 62%),
    radial-gradient(1100px 780px at 4% 96%, rgba(138, 20, 24, 0.42), transparent 66%),
    linear-gradient(178deg, #170a0c 0%, #0e0708 46%, #080507 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- WebGL backdrop ---------- */
/* Studio backdrop — full width, anchored to the top, behind the WebGL stage.
   Height tracks width at the photo's own 2.17:1 ratio, so cover crops almost
   nothing: the whole mic stays in frame instead of being cut in half.
   Bottom edge is masked so it dissolves into the black rather than ending. */
.studio-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: min(84vh, 47vw);
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  perspective: 1400px;
  -webkit-mask-image: linear-gradient(180deg, #000 56%, rgba(0, 0, 0, 0.5) 82%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 56%, rgba(0, 0, 0, 0.5) 82%, transparent 100%);
}
.studio-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  transform: scale(1.04);
  filter: brightness(1.24) contrast(1.05) saturate(1.06);
  will-change: transform;
}
.studio-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 5, 7, 0.7) 0%, rgba(8, 5, 7, 0.4) 32%, rgba(8, 5, 7, 0.08) 60%, rgba(8, 5, 7, 0.44) 100%);
}
#bg {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.6s ease;
}
#bg.ready { opacity: 1; }
.bg-fallback {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 620px at 78% 10%, rgba(224, 27, 36, 0.4), transparent 66%),
    radial-gradient(860px 660px at 6% 92%, rgba(138, 20, 24, 0.44), transparent 70%),
    linear-gradient(178deg, #170a0c, #080507);
}
.veil {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(135% 95% at 50% 2%, transparent 54%, rgba(8, 5, 7, 0.3) 88%, rgba(8, 5, 7, 0.56) 100%);
}
/* film grain */
.veil::after {
  content: "";
  position: absolute; inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.035;
  animation: grain 8s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 1%); }
}

main, .site-header, .site-footer { position: relative; z-index: 3; }

/* ---------- Scroll progress ---------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--red-500), #ff8a63);
  z-index: 200;
  box-shadow: 0 0 14px var(--red-glow);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.98;
  margin: 0 0 0.42em;
  text-transform: uppercase;
}
h1 { font-size: clamp(3rem, 9vw, 8rem); }
h2 { font-size: clamp(2.2rem, 5.4vw, 4.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
p { margin: 0 0 1.1em; color: var(--ink-dim); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.narrow { max-width: 840px; }
section { padding: clamp(80px, 12vw, 170px) 0; position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red-400);
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--red-500); box-shadow: 0 0 10px var(--red-glow); }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.lede { font-size: 1.14rem; color: var(--ink-dim); max-width: 60ch; }
.center .lede { margin-left: auto; margin-right: auto; }
.accent { color: var(--red-400); }
.glow { text-shadow: 0 0 34px var(--red-glow); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s, color 0.35s;
}
.btn-primary {
  background: linear-gradient(120deg, var(--red-500), #ff6b3d);
  color: #fff;
  box-shadow: 0 16px 44px -14px var(--red-glow), inset 0 0 0 1px rgba(255,255,255,0.14);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 22px 54px -12px var(--red-glow); }
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.03);
}
.btn-ghost:hover { border-color: var(--red-400); transform: translateY(-3px); box-shadow: 0 0 30px -6px var(--red-glow); }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.center .btn-row { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 150;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.stuck {
  background: rgba(11, 6, 8, 0.86);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 108px; }
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand-logo {
  height: 78px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 22px rgba(224, 27, 36, 0.35));
  transition: transform 0.4s var(--ease), filter 0.4s;
}
.brand:hover .brand-logo { transform: scale(1.05); filter: drop-shadow(0 8px 26px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 30px var(--red-glow)); }
.site-footer .brand-logo { height: 104px; }
@media (max-width: 600px) { .brand-logo { height: 58px; } }
.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;
}

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  position: relative;
  display: block;
  padding: 10px 15px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 2px;
  height: 1px;
  background: var(--red-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: #fff; }
.nav-cta { padding: 12px 24px; font-size: 0.72rem; flex-shrink: 0; }

.nav-toggle {
  display: none; background: none; padding: 0; cursor: pointer;
  border: 1px solid var(--line-strong); border-radius: 11px;
  width: 46px; height: 46px; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; transition: background 0.2s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
  transition: transform 0.35s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 108px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(11, 6, 8, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 14px 26px 26px;
    transform: translateY(-130%);
    transition: transform 0.5s var(--ease);
  }
  .nav-open .nav-links { transform: translateY(0); }
  .nav-links a { padding: 15px 2px; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .nav-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(96deg,
    rgba(8, 5, 7, 0.72) 0%,
    rgba(8, 5, 7, 0.42) 26%,
    rgba(8, 5, 7, 0.08) 50%,
    transparent 66%);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 110px;
}
.hero h1 { max-width: none; font-size: clamp(2.9rem, 7vw, 6.4rem); }
.hero h1 .line { display: block; overflow: hidden; max-width: 14ch; }
.hero h1 .line > span {
  display: block;
  transform: translateY(110%);
  animation: riseIn 1.1s var(--ease) forwards;
}
.hero h1 .line:nth-child(2) > span { animation-delay: 0.13s; }
.hero h1 .line:nth-child(3) > span { animation-delay: 0.26s; }
@keyframes riseIn { to { transform: none; } }
.hero .fade-up { opacity: 0; animation: fadeUp 1s var(--ease) 0.5s forwards; }
.hero .fade-up.d2 { animation-delay: 0.68s; }
.hero .fade-up.d3 { animation-delay: 0.86s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero .lede { font-size: 1.22rem; margin: 22px 0 34px; }

.scroll-hint {
  position: absolute;
  left: 50%; bottom: 34px;
  transform: translateX(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint i { display: block; width: 1px; height: 40px; background: linear-gradient(var(--red-500), transparent); animation: drop 2s ease-in-out infinite; }
@keyframes drop { 0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

.stat-rail {
  display: flex; flex-wrap: wrap;
  gap: clamp(26px, 5vw, 60px);
  margin-top: 60px; padding-top: 30px;
  border-top: 1px solid var(--line);
}
.stat-rail div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.7rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 26px rgba(255, 255, 255, 0.16);
}
.stat-rail div span { font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-faint); }

/* ---------- Page banner ---------- */
.page-hero { padding: clamp(150px, 18vw, 230px) 0 clamp(60px, 8vw, 110px); }
.crumb { font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px; }
.crumb a:hover { color: var(--red-400); }

/* ---------- Glass cards & tilt ---------- */
.grid { display: grid; gap: 24px; }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 960px) { .g3, .g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.tilt { perspective: 1000px; }
.glass {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  backdrop-filter: blur(16px) saturate(130%);
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease), border-color 0.5s, background 0.5s, box-shadow 0.5s;
  overflow: hidden;
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(226, 36, 47, 0.16), transparent 62%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.glass:hover::before { opacity: 1; }
.glass:hover {
  border-color: rgba(226, 36, 47, 0.4);
  background: var(--glass-strong);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.9), 0 0 40px -18px var(--red-glow);
}
.glass > * { transform: translateZ(24px); }
.glass h3 { margin-bottom: 10px; }
.glass p:last-child { margin-bottom: 0; }
.glass .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(226, 36, 47, 0.7);
  display: block;
  margin-bottom: 16px;
}

.split { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(34px, 6vw, 84px); align-items: center; }
@media (max-width: 940px) { .split { grid-template-columns: 1fr; } }

.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { position: relative; padding: 14px 0 14px 36px; border-bottom: 1px solid var(--line); color: var(--ink-dim); }
.checklist li::before {
  content: ""; position: absolute; left: 4px; top: 23px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red-500); box-shadow: 0 0 12px var(--red-glow);
}

/* ---------- Video ---------- */
.video-card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.video-card:hover { transform: translateY(-8px); border-color: rgba(226, 36, 47, 0.45); box-shadow: 0 34px 70px -30px rgba(0,0,0,0.9), 0 0 44px -20px var(--red-glow); }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(80% 80% at 50% 40%, rgba(110, 26, 30, 0.8), rgba(13, 7, 9, 0.95));
  display: grid; place-items: center; overflow: hidden;
}
.video-frame::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 4px);
  opacity: 0.6;
}
.video-frame video, .video-frame iframe, .video-frame img { width: 100%; height: 100%; object-fit: cover; border: 0; position: relative; z-index: 2; }
.video-frame.is-placeholder::after {
  content: "Video slot";
  position: absolute; bottom: 12px; left: 14px;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint);
}
.play {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(226, 36, 47, 0.95);
  display: grid; place-items: center;
  position: relative; z-index: 3;
  animation: ping 2.8s ease-out infinite;
}
.play::after { content: ""; border-left: 18px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 6px; }
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(226, 36, 47, 0.55); }
  70% { box-shadow: 0 0 0 30px rgba(226, 36, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(226, 36, 47, 0); }
}
.video-meta { padding: 24px 26px 30px; }
.video-meta h3 { margin-bottom: 6px; }
.video-meta .role { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red-400); margin-bottom: 12px; }
.video-meta p { font-size: 0.95rem; margin: 0; }

.tag {
  display: inline-block; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 14px; border: 1px solid var(--line-strong); border-radius: 999px;
  color: var(--ink-dim); margin: 0 6px 8px 0; -webkit-backdrop-filter: blur(8px);
 backdrop-filter: blur(8px);
}

/* ---------- Testimonials ---------- */
.t-quote-mark { font-family: Georgia, serif; font-size: 5.5rem; line-height: 0.55; color: var(--red-500); opacity: 0.5; display: block; margin-bottom: 10px; }
.t-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  backdrop-filter: blur(16px) saturate(130%);
  display: flex; flex-direction: column;
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease), border-color 0.5s, background 0.5s, box-shadow 0.5s;
  overflow: hidden;
}
.t-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(226, 36, 47, 0.15), transparent 60%);
  opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
.t-card:hover::before { opacity: 1; }
.t-card:hover { border-color: rgba(226, 36, 47, 0.42); background: var(--glass-strong); box-shadow: 0 32px 70px -32px rgba(0,0,0,0.9), 0 0 44px -20px var(--red-glow); }
.t-card blockquote { margin: 0 0 24px; font-size: 1.02rem; line-height: 1.72; color: var(--ink); flex: 1; }
.t-person { display: flex; align-items: center; gap: 15px; padding-top: 20px; border-top: 1px solid var(--line); }
.t-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.05rem; color: #fff;
  background: linear-gradient(135deg, var(--red-500), var(--navy-500));
  box-shadow: 0 0 22px -6px var(--red-glow);
  overflow: hidden;
}
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-person strong { display: block; font-size: 0.96rem; }
.t-person span { font-size: 0.77rem; color: var(--ink-faint); }
.stars { color: var(--red-400); letter-spacing: 4px; font-size: 0.88rem; margin-bottom: 16px; }
.t-card.has-video { padding: 0; }
.t-card.has-video .t-body { padding: 28px 32px 32px; display: flex; flex-direction: column; flex: 1; }

.t-strip { overflow: hidden; padding: 28px 0; border-block: 1px solid var(--line); background: rgba(22, 10, 13, 0.6); -webkit-backdrop-filter: blur(12px);
 backdrop-filter: blur(12px); position: relative; z-index: 3; }
.t-track { display: flex; gap: 62px; width: max-content; animation: scrollX 46s linear infinite; }
.t-strip:hover .t-track { animation-play-state: paused; }
.t-track span { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.05em; color: var(--ink-faint); white-space: nowrap; text-transform: uppercase; }
.t-track span b { color: var(--red-400); }
@keyframes scrollX { to { transform: translateX(-50%); } }

.t-featured {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 70px);
  background: linear-gradient(135deg, rgba(226, 36, 47, 0.16), rgba(27, 47, 102, 0.24));
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  overflow: hidden;
}
.t-featured::after {
  content: "";
  position: absolute; top: -60%; right: -20%;
  width: 60%; height: 220%;
  background: radial-gradient(closest-side, rgba(226,36,47,0.25), transparent);
  pointer-events: none;
}
.t-featured blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.9vw, 3.1rem);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 30px;
  color: #fff;
  position: relative; z-index: 2;
}
.t-featured .t-person { position: relative; z-index: 2; }

/* ---------- Marquee headline ---------- */
.kinetic { overflow: hidden; padding: 10px 0; }
.kinetic-track { display: flex; gap: 46px; width: max-content; animation: scrollX 34s linear infinite; }
.kinetic-track span {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
  white-space: nowrap;
}
.kinetic-track span:nth-child(even) { color: rgba(226, 36, 47, 0.14); -webkit-text-stroke: 0; }

/* ---------- Form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
label { display: block; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 9px; }
input, select, textarea {
  width: 100%; padding: 15px 17px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--ink);
  font-family: inherit; font-size: 0.98rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--red-500);
  box-shadow: 0 0 0 3px rgba(226, 36, 47, 0.16), 0 0 26px -10px var(--red-glow);
  background: rgba(255, 255, 255, 0.06);
}
textarea { min-height: 160px; resize: vertical; }
select option { background: var(--navy-800); }
.form-note { font-size: 0.8rem; color: var(--ink-faint); }

.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-list .ico {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px;
  background: rgba(226, 36, 47, 0.14); border: 1px solid rgba(226, 36, 47, 0.32);
  display: grid; place-items: center; color: var(--red-400);
  box-shadow: 0 0 20px -8px var(--red-glow);
}
.info-list strong { display: block; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint); }
.info-list a, .info-list p { color: var(--ink); margin: 3px 0 0; }
.info-list a:hover { color: var(--red-400); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 74px 0 32px; background: rgba(8, 5, 7, 0.86); -webkit-backdrop-filter: blur(16px);
 backdrop-filter: blur(16px); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 44px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.26em; color: var(--ink-faint); margin-bottom: 18px; text-transform: uppercase; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 11px; }
.site-footer a { color: var(--ink-dim); font-size: 0.93rem; transition: color 0.25s; }
.site-footer a:hover { color: var(--red-400); }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.8rem; color: var(--ink-faint); }
.socials { display: flex; gap: 11px; margin-top: 20px; }
.socials a {
  width: 40px; height: 40px; border: 1px solid var(--line-strong); border-radius: 12px;
  display: grid; place-items: center;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.socials a:hover { border-color: var(--red-500); background: rgba(226, 36, 47, 0.14); transform: translateY(-3px); box-shadow: 0 0 24px -8px var(--red-glow); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }

/* ---------- Hero layout, accolades & player ---------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
@media (max-width: 1000px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 .sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1.24rem);
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--red-400);
  margin-top: 18px;
  max-width: 34ch;
  text-shadow: 0 0 26px var(--red-glow);
}

.accolades { display: flex; flex-direction: column; gap: 10px; margin: 26px 0 30px; }
.accolade {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px 11px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  width: fit-content;
  max-width: 100%;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.accolade:hover { transform: translateX(5px); border-color: var(--red-400); box-shadow: 0 0 28px -10px var(--red-glow); }
.accolade .mark {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  font-size: 0.62rem; font-weight: 800; color: #2a1a00;
  box-shadow: 0 0 16px -3px var(--gold-glow);
}

/* hero video player card */
.stage-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  padding: 14px;
  box-shadow: 0 40px 90px -34px rgba(0, 0, 0, 0.75), 0 0 60px -26px var(--red-glow);
  transform: perspective(1400px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.7s var(--ease);
}
.stage-card:hover { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg) translateY(-6px); }
.stage-card .video-frame { border-radius: 16px; }
.hero-video video { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-video .video-missing {
  position: absolute; inset: 0; z-index: 4;
  display: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  text-align: center; padding: 22px;
  background: radial-gradient(80% 80% at 50% 40%, rgba(110, 26, 30, 0.75), rgba(8, 5, 7, 0.96));
}
.hero-video.is-missing .video-missing { display: flex; }
.hero-video.is-missing video { opacity: 0; }
.video-missing p { margin: 0; font-size: 0.75rem; letter-spacing: 0.05em; color: var(--ink-dim); }
.video-missing code { color: var(--gold-400); font-size: 0.73rem; }
.stage-label {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 14px 8px 6px;
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-dim);
}
.live {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 700;
}
.live::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--red-400); box-shadow: 0 0 12px var(--red-400);
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.8); } }
@media (max-width: 1000px) { .stage-card { transform: none; } .stage-card:hover { transform: translateY(-4px); } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   MOBILE PARITY
   Goal: a phone should read as the same site — same brand, same studio
   backdrop, same frequency stage, same glass player — just restacked.
   ========================================================================== */

/* The photo is 2.17:1; a portrait viewport must crop it somewhere. Bias the
   crop to the left third so the microphone stays in frame (it lives at
   8–27% across), and give the band enough height to hold the same visual
   weight it has on desktop. */
@media (max-width: 1000px) {
  .studio-bg {
    height: min(46vh, 78vw);
  }
  .studio-bg img {
    object-position: 12% 46%;
  }
  .studio-tint {
    background: linear-gradient(180deg, rgba(8, 5, 7, 0.34) 0%, rgba(8, 5, 7, 0.12) 40%, rgba(8, 5, 7, 0.66) 100%);
  }
  /* iOS treats fixed attachment as scroll and judders — drop it on touch */
  body { background-attachment: scroll; }
}

@media (max-width: 600px) {
  /* header shrinks; the dropdown offset has to follow it exactly */
  .nav { height: 76px; }
  .nav-links { inset: 76px 0 auto 0; }
  .brand-logo { height: 54px; }

  .hero { padding: 96px 0 80px; min-height: auto; }
  .page-hero { padding: 118px 0 44px; }

  h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .hero h1 .line { max-width: none; }
  .hero h1 .sub { font-size: 1rem; max-width: none; margin-top: 14px; }
  .hero .lede { font-size: 1.02rem; }

  /* full-width pills read as chips rather than stretched lozenges */
  .accolade {
    width: 100%;
    border-radius: 14px;
    align-items: flex-start;
    font-size: 0.78rem;
    line-height: 1.45;
    padding: 12px 16px 12px 13px;
  }
  .accolade .mark { margin-top: 2px; }

  .btn { width: 100%; padding: 15px 24px; }
  .btn-row { gap: 12px; }
  .btn-row .btn { flex: 1 1 100%; }

  .stat-rail { gap: 22px 30px; margin-top: 38px; }
  .stat-rail div { flex: 1 1 40%; }
  .stat-rail div strong { font-size: 2.1rem; }

  .stage-label { flex-wrap: wrap; gap: 6px; font-size: 0.6rem; }

  section { padding: 66px 0; }
  .glass, .t-card { padding: 26px; }
  .t-card.has-video .t-body { padding: 22px 24px 26px; }

  .kinetic-track span { font-size: clamp(2.4rem, 16vw, 4rem); }
  .t-track span { font-size: 1.05rem; }
  .t-featured { padding: 28px 24px; }

  .site-footer { padding: 54px 0 26px; }
  .site-footer .brand-logo { height: 84px; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  /* the scroll cue collides with content once the hero is auto-height */
  .scroll-hint { display: none; }
}

/* very narrow phones */
@media (max-width: 380px) {
  .wrap { padding: 0 18px; }
  .brand-logo { height: 48px; }
  .nav { height: 68px; }
  .nav-links { inset: 68px 0 auto 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero h1 .line > span { transform: none; }
  .hero .fade-up { opacity: 1; }
  #bg { display: none; }
}
