/* ============================================================
   MMPAV — Video Production Service Page
   Exact parity with mmpav.pages.dev (DM Sans + Space Mono)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800;900&family=Space+Mono:wght@400;700&display=swap');

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

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

:root {
  --font-display: 'DM Sans', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-tech:    'Space Mono', monospace;
  --font-tag:     'DM Sans', sans-serif;

  --bg:           #000000;
  --bg-card:      rgba(30,30,30,0.75);
  --white:        #ffffff;
  --white-80:     rgba(255,255,255,0.80);
  --white-60:     rgba(255,255,255,0.60);
  --white-55:     rgba(255,255,255,0.55);
  --white-40:     rgba(255,255,255,0.40);
  --white-30:     rgba(255,255,255,0.30);
  --white-15:     rgba(255,255,255,0.15);
  --white-10:     rgba(255,255,255,0.10);
  --white-08:     rgba(255,255,255,0.08);
  --white-04:     rgba(255,255,255,0.04);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 9999px;

  --ease: cubic-bezier(0.16,1,0.3,1);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal--d1 { transition-delay: .15s; }
.reveal--d2 { transition-delay: .30s; }
.reveal--d3 { transition-delay: .45s; }
.reveal--d4 { transition-delay: .55s; }
.reveal--visible { opacity: 1; transform: translateY(0); }

/* ── Container ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Eyebrow ── */
.eyebrow {
  font-family: var(--font-tech);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white-55);
  margin-bottom: .75rem;
  display: block;
}
/* Black pill bar behind eyebrow for hero readability */
.eyebrow--pill {
  display: inline-block;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  padding: .35rem 1rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: .15em;
  margin-bottom: 1.5rem;
}
.eyebrow--muted { color: var(--white-30); }

/* ── Sections ── */
.section { padding: 6rem 0; position: relative; }

.section-header { max-width: 800px; margin-bottom: 3.5rem; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-sub {
  font-family: var(--font-tech);
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: -0.01em;
  color: var(--white-55);
  max-width: 600px;
}

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  transition: all .3s;
}
.nav--scrolled {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(20px);
}
.nav__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(20px);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-xl);
  padding: .75rem 1.5rem;
}
.nav__logo { text-decoration: none; flex-shrink: 0; }
.nav__links { list-style: none; display: flex; gap: 2rem; margin-left: auto; }
.nav__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white-60);
  text-decoration: none;
  transition: color .2s;
}
.nav__link:hover { color: var(--white); }
.nav__cta {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .625rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  background: linear-gradient(135deg, #3de0e0 0%, #6366f1 50%, #7c3aed 100%);
  transition: all .3s var(--ease);
}
.nav__cta:hover { transform: scale(1.03); box-shadow: 0 0 30px rgba(99,102,241,.35); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }
.nav__mobile { display: none; flex-direction: column; gap: 1rem; padding: 1.5rem 2rem; background: rgba(0,0,0,.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--white-08); }
.nav__mobile-link { color: var(--white-80); text-decoration: none; font-size: 1rem; font-weight: 500; }
.nav__mobile--open { display: flex; }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #000;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transform-origin: center; }

.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.05) 20%, rgba(0,0,0,0) 45%, rgba(0,0,0,.30) 70%, rgba(0,0,0,.88) 100%),
    linear-gradient(90deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,0) 50%);
}

/* Cyan glow top-left like homepage */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 16rem; height: 16rem;
  background: radial-gradient(at left top, rgba(61,224,224,.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero__content {
  position: relative; z-index: 3;
  max-width: 1280px; width: 100%;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}
.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero__sub {
  font-family: var(--font-tech);
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: -0.01em;
  color: var(--white-60);
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Buttons ── */
.btn-gradient, .btn.btn--primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .15em;
  color: var(--white); text-decoration: none;
  background: linear-gradient(135deg, #3de0e0 0%, #6366f1 50%, #7c3aed 100%);
  border: none; cursor: pointer;
  transition: all .3s var(--ease);
}
.btn-gradient:hover, .btn.btn--primary:hover { transform: scale(1.03); box-shadow: 0 0 30px rgba(99,102,241,.35), 0 0 60px rgba(124,58,237,.15); }

.btn.btn--ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .15em;
  color: var(--white); text-decoration: none;
  background: transparent;
  border: 1px solid rgba(99,102,241,.4);
  cursor: pointer; transition: all .3s var(--ease);
}
.btn.btn--ghost:hover { border-color: rgba(99,102,241,.7); background: rgba(99,102,241,.1); transform: scale(1.02); }

/* ── Hero stats ── */
.hero__stat-strip {
  position: relative; z-index: 3;
  display: flex; align-items: center; gap: 0;
  max-width: 1280px; margin: 0 auto;
  padding: 1.25rem 2rem 2rem;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--white-08);
}
.stat-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .25rem; padding: .5rem; }
.stat-item__num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; letter-spacing: -0.025em; color: var(--white); }
.stat-item__label { font-family: var(--font-tech); font-size: .7rem; color: var(--white-40); text-align: center; letter-spacing: .05em; }
.stat-item__divider { width: 1px; height: 2.5rem; background: var(--white-10); }

/* ─────────────────────────────────────────────
   LOGO STRIP
───────────────────────────────────────────── */
.logo-strip {
  background: var(--bg);
  border-top: 1px solid var(--white-04);
  border-bottom: 1px solid var(--white-04);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}
.logo-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 200px at center, rgba(99,102,241,.08) 0%, transparent 70%);
  pointer-events: none;
}
.logo-strip__label {
  font-family: var(--font-tag);
  font-size: .6875rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--white-30);
  text-align: center;
  margin-bottom: 2.5rem;
}
.logo-strip__track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 20%, black 80%, transparent 100%);
}
.logo-strip__scroll {
  display: flex; align-items: center; gap: 4rem;
  width: max-content;
  animation: logoScroll 40s linear infinite;
}
@keyframes logoScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-item {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--white-30);
  white-space: nowrap;
  letter-spacing: .05em;
}

/* ─────────────────────────────────────────────
   SERVICES GRID
───────────────────────────────────────────── */
/* ── Services section gradient blobs ── */
.services-grid {
  position: relative;
  overflow: visible;
  background: var(--bg);
}
.services-grid::before {
  content: '';
  position: absolute;
  top: 10%; right: -10%;
  width: 36rem; height: 36rem;
  background: radial-gradient(ellipse, rgba(99,102,241,.12) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.services-grid::after {
  content: '';
  position: absolute;
  bottom: 5%; left: -8%;
  width: 28rem; height: 28rem;
  background: radial-gradient(ellipse, rgba(61,224,224,.08) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.services-grid .container { position: relative; z-index: 1; }
.services-grid__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .services-grid__grid { grid-template-columns: 1fr; } }

/* Card with image */
.svc-card {
  background: rgba(20,20,20,.8);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.svc-card:hover { border-color: var(--white-15); transform: translateY(-4px); }
.svc-card__img-wrap { aspect-ratio: 16/9; overflow: hidden; }
.svc-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card:hover .svc-card__img-wrap img { transform: scale(1.05); }
.svc-card__body { padding: 1.75rem; }
.svc-card__body--text-only { padding: 2rem 2rem 2rem; display: flex; flex-direction: column; justify-content: center; min-height: 260px; }
.svc-card__tag {
  display: inline-block;
  font-family: var(--font-tag);
  font-size: .6875rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: .75rem;
}
.svc-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: -.015em;
  color: var(--white);
  margin-bottom: .75rem;
}
.svc-card__desc {
  font-family: var(--font-tech);
  font-size: .875rem; line-height: 1.75;
  letter-spacing: -.01em;
  color: var(--white-55);
}

/* pkg tags */
.content-pkg-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.pkg-tag {
  font-family: var(--font-body);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--white-60);
  background: var(--white-08);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-pill);
  padding: .3rem .75rem;
}

.process-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--white-04);
}
.process-section::before {
  content: '';
  position: absolute;
  top: 30%; left: 50%; transform: translate(-50%, -50%);
  width: 60rem; height: 30rem;
  background: radial-gradient(ellipse, rgba(124,58,237,.12) 0%, rgba(99,102,241,.08) 40%, transparent 70%);
  pointer-events: none;
}
.process-section::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 32rem; height: 24rem;
  background: radial-gradient(ellipse at bottom right, rgba(61,224,224,.09) 0%, transparent 65%);
  pointer-events: none;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  position: relative; z-index: 1;
}
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

.process-step {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--white-08);
  background: var(--surface, #111);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .4s var(--ease);
}
.process-step:hover { border-color: var(--white-20, rgba(255,255,255,.2)); transform: translateY(-4px); }

.process-step__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.process-step__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease);
}
.process-step:hover .process-step__img img { transform: scale(1.05); }
.process-step__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.94) 0%,
    rgba(0,0,0,0.60) 50%,
    rgba(0,0,0,0.18) 100%
  );
}

.process-step__content {
  position: relative; z-index: 2;
  margin-top: auto;
  padding: 1.75rem;
}

.process-step__num {
  font-family: var(--font-tech);
  font-size: 2.75rem; font-weight: 700;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: .6rem;
  display: block;
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1.125rem; font-weight: 800;
  letter-spacing: -.015em;
  color: var(--white);
  margin-bottom: .5rem;
}
.process-step__desc {
  font-family: var(--font-tech);
  font-size: .8rem; line-height: 1.7;
  color: var(--white-55);
}

/* ─────────────────────────────────────────────
   REEL — centered, extra gradient
───────────────────────────────────────────── */
.reel-section {
  background: var(--bg);
  border-top: 1px solid var(--white-04);
  position: relative;
  overflow: hidden;
}
.reel-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 72rem; height: 22rem;
  background: radial-gradient(ellipse, rgba(61,224,224,.10) 0%, rgba(99,102,241,.08) 35%, transparent 65%);
  pointer-events: none;
}
.reel-section::after {
  content: '';
  position: absolute;
  bottom: -4rem; right: -4rem;
  width: 36rem; height: 36rem;
  background: radial-gradient(ellipse, rgba(124,58,237,.10) 0%, transparent 65%);
  pointer-events: none;
}
.reel-section .container { position: relative; z-index: 1; }
.reel-embed { margin-top: 1rem; }
.reel-embed__wrapper {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--white-08);
}
.reel-embed__wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.faq-section {
  background: var(--bg);
  border-top: 1px solid var(--white-04);
  position: relative;
}
.faq-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 25%;
  transform: translateY(-50%);
  width: 24rem; height: 24rem;
  background: radial-gradient(ellipse, rgba(61,224,224,.07) 0%, transparent 70%);
  pointer-events: none;
}
/* Centered FAQ like homepage */
.faq-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-header--center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.faq-list {
  width: 100%;
  max-width: 780px;
}
.faq-item { border-bottom: 1px solid var(--white-10); transition: background .2s; }
.faq-item:hover { background: rgba(255,255,255,.02); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 2rem 0;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: -.015em;
  color: var(--white-55);
  transition: color .3s;
}
.faq-q:hover { color: var(--white-80); }
.faq-item--open .faq-q { color: var(--white); }
.faq-chevron { flex-shrink: 0; transition: transform .3s var(--ease); color: currentColor; }
.faq-item--open .faq-chevron { transform: rotate(180deg); }
.faq-a { padding: 0 0 1.5rem; }
.faq-a p {
  font-family: var(--font-tech);
  font-size: .875rem; line-height: 1.75;
  letter-spacing: -.01em;
  color: var(--white-55);
}

/* ── Accordion toggle circle ── */
.faq-toggle {
  width: 3rem; height: 3rem; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--white-15);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
  color: var(--white);
}
.faq-toggle svg { transition: transform .3s var(--ease); }
.faq-item--open .faq-toggle {
  background: var(--white);
  border-color: var(--white);
  color: #000;
}
.faq-item--open .faq-toggle svg { transform: rotate(45deg); }

/* ─────────────────────────────────────────────
   CTA
───────────────────────────────────────────── */
.cta-section {
  background: var(--bg);
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 25%; transform: translateY(-50%);
  width: 24rem; height: 24rem;
  background: radial-gradient(ellipse, rgba(61,224,224,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: 50%; right: 25%; transform: translateY(-50%);
  width: 24rem; height: 24rem;
  background: radial-gradient(ellipse, rgba(124,58,237,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-card {
  background: rgba(20,20,20,.7);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  max-width: 780px; margin: 0 auto;
  position: relative; z-index: 1;
}
.cta-card__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem,4vw,3rem);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-card__sub {
  font-family: var(--font-tech);
  font-size: .875rem; line-height: 1.75;
  letter-spacing: -.01em;
  color: var(--white-55);
  margin-bottom: 2rem;
}
.cta-form { display: flex; flex-direction: column; gap: 1rem; }
.cta-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .cta-form__row { grid-template-columns: 1fr; } }
.cta-form__input {
  width: 100%;
  background: var(--white-08);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: .875rem 1.25rem;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.cta-form__input::placeholder { color: var(--white-40); }
.cta-form__input:focus { border-color: var(--white-30); background: rgba(255,255,255,.1); }
.cta-form__select option { background: #111; color: var(--white); }
.cta-form__textarea { resize: vertical; min-height: 110px; }
.cta-form__submit {
  padding: .95rem 2.5rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #3de0e0 0%, #6366f1 50%, #7c3aed 100%);
  border: none; cursor: pointer;
  font-family: var(--font-body);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--white);
  align-self: flex-start;
  transition: all .3s var(--ease);
}
.cta-form__submit:hover { transform: scale(1.03); box-shadow: 0 0 30px rgba(99,102,241,.35); }
.cta-form__submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ─────────────────────────────────────────────
   NEW SHADCN-STYLE FOOTER
───────────────────────────────────────────── */
.footer {
  position: relative;
  background: var(--bg);
  border-top: 1px solid var(--white-08);
  padding: 4rem 0 0;
  overflow: hidden;
}
.footer__glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; height: 128px;
  background: radial-gradient(35% 128px at 50% 0%, rgba(255,255,255,0.08), transparent);
  pointer-events: none;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__col--brand {
    grid-column: span 2;
  }
}
@media (max-width: 500px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__col--brand {
    grid-column: span 1;
  }
}
.footer__col--brand .footer__logo {
  height: 2rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
  display: block;
}
.footer__desc {
  font-family: var(--font-tech);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--white-55);
  margin-bottom: 1.5rem;
  max-width: 320px;
}
.footer__socials {
  display: flex;
  gap: 1rem;
}
.footer__socials a {
  display: flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: var(--white-04);
  color: var(--white-60);
  transition: all 0.2s;
  border: 1px solid var(--white-08);
}
.footer__socials a:hover {
  background: var(--white-10);
  color: var(--white);
  border-color: var(--white-20);
}
.footer__heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.footer__list a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--white-55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__list a:hover {
  color: var(--white);
}
.footer__bottom {
  border-top: 1px solid var(--white-08);
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p {
  font-family: var(--font-tech);
  font-size: 0.8125rem;
  color: var(--white-40);
}
.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer__bottom-links a {
  font-family: var(--font-tech);
  font-size: 0.8125rem;
  color: var(--white-40);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__bottom-links a:hover {
  color: var(--white-80);
}
/* ─────────────────────────────────────────────
   NAV DROPDOWN (HOVER)
───────────────────────────────────────────── */
.nav__dropdown {
  position: relative;
}
/* Sub-menu base */
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  list-style: none;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
/* Trigger area so it doesn't close when moving mouse down */
.nav__dropdown::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 20px;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu li {
  margin: 0;
}
.nav__dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--white-60);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.nav__dropdown-menu a:hover {
  background: var(--white-08);
  color: var(--white);
}

/* Update mobile nav */
.nav__mobile-dropdown {
  display: flex; flex-direction: column; gap: 0.5rem; padding-left: 1rem; border-left: 1px solid var(--white-10); margin: 0.5rem 0;
}
.nav__mobile-dropdown a {
  color: var(--white-55); font-size: 0.9rem; text-decoration: none; padding: 0.25rem 0;
}
.nav__mobile-dropdown a:hover { color: var(--white); }

/* ─────────────────────────────────────────────
   RESPONSIVE NAV
───────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; margin-left: auto; }
}

/* ─────────────────────────────────────────────
   LIVE STREAMING — page overrides
───────────────────────────────────────────── */

/* Hero accent: teal-leaning glow (broadcast feel) */
.hero::after {
  background: radial-gradient(at left top, rgba(61,224,224,.12) 0%, transparent 65%);
}

/* Extra mid-hero violet blob */
.hero::before {
  content: '';
  position: absolute;
  bottom: 10%; right: 5%;
  width: 20rem; height: 20rem;
  background: radial-gradient(ellipse, rgba(99,102,241,.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 2;
}

/* ─────────────────────────────────────────────
   SPECS STRIP
───────────────────────────────────────────── */
.specs-section {
  background: var(--bg);
  border-top: 1px solid var(--white-04);
  border-bottom: 1px solid var(--white-04);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.specs-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 60rem; height: 16rem;
  background: radial-gradient(ellipse, rgba(61,224,224,.08) 0%, rgba(99,102,241,.06) 40%, transparent 65%);
  pointer-events: none;
}
.specs-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative; z-index: 1;
}
.spec-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: .375rem;
  padding: 1rem 2rem;
  text-align: center;
}
.spec-item__val {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}
.spec-accent {
  background: linear-gradient(135deg, #3de0e0, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.spec-item__label {
  font-family: var(--font-tech);
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--white-40);
  text-transform: uppercase;
  text-align: center;
  max-width: 140px;
}
.spec-divider {
  width: 1px; height: 3rem;
  background: var(--white-08);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .specs-grid { flex-wrap: wrap; }
  .spec-divider { display: none; }
  .spec-item { flex: 1 1 45%; }
}

/* ─────────────────────────────────────────────
   FEATURES COMPONENT (auto-advancing left/right)
───────────────────────────────────────────── */
.features-section {
  background: var(--bg);
  border-top: 1px solid var(--white-04);
  position: relative;
  overflow: hidden;
}
.features-section::before {
  content: '';
  position: absolute;
  top: 20%; right: -8%;
  width: 40rem; height: 40rem;
  background: radial-gradient(ellipse, rgba(99,102,241,.10) 0%, transparent 65%);
  pointer-events: none;
}
.features-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: -6%;
  width: 30rem; height: 30rem;
  background: radial-gradient(ellipse, rgba(61,224,224,.08) 0%, transparent 65%);
  pointer-events: none;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
  position: relative; z-index: 1;
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Feature list (left) ── */
.features-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1rem;
  border-radius: var(--radius-xl);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .3s, border-color .3s;
  outline: none;
}
.feature-item:focus-visible { box-shadow: 0 0 0 2px rgba(99,102,241,.5); }

.feature-item--active {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 4px 32px rgba(0,0,0,.25);
}

/* Icon circle */
.feature-item__icon {
  width: 2.75rem; height: 2.75rem;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(99,102,241,.12);
  color: rgba(61,224,224,.8);
  transition: background .3s, color .3s;
}
.feature-item--active .feature-item__icon {
  background: linear-gradient(135deg, #3de0e0, #6366f1);
  color: #fff;
}

.feature-item__body { flex: 1; }

.feature-item__title {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  letter-spacing: -.015em;
  color: rgba(255,255,255,.45);
  margin-bottom: .35rem;
  transition: color .3s;
}
.feature-item--active .feature-item__title { color: var(--white); }

.feature-item__desc {
  font-family: var(--font-tech);
  font-size: .8rem; line-height: 1.7;
  color: rgba(255,255,255,.25);
  transition: color .3s;
  margin-bottom: .75rem;
}
.feature-item--active .feature-item__desc { color: rgba(255,255,255,.55); }

/* Progress track */
.feature-item__track {
  height: 2px;
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  overflow: hidden;
}
.feature-item__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #3de0e0, #6366f1);
  border-radius: 999px;
  transition: width .1s linear;
}

/* ── Image panel (right) ── */
.features-image {
  position: relative;
  display: flex;
  flex-direction: column;
}
.features-image__inner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  background: #111;
  flex: 1;
  min-height: 520px;
  position: relative;
}
.features-image__inner img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .2s ease;
}

/* Exit/enter animation classes */
.features-image--exit { opacity: 0; transform: translateY(20px); transition: opacity .2s, transform .2s; }
.features-image--enter { animation: featImgEnter .5s cubic-bezier(0.16,1,0.3,1) forwards; }
@keyframes featImgEnter {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
