:root {
  /* ---- Brand palette (Strictly from Brief) ---- */
  --electric-blue: #1B4CF2;
  --indigo: #3A3AD4;
  --periwinkle: #7C8CFF;
  --midnight: #010209;    
  --deep-royal: #030822;  
  --ice: #EEF2FF;
  --white: #FFFFFF;
  --ink: #0A1330;

  /* ---- Cosmic glass accent bleeds ---- */
  --bleed-cyan: #4DE8FF;
  --bleed-blue: #4C7CFF;
  --bleed-red: #FF6B6B;
  --bleed-yellow: #FFD166;
  --bleed-green: #4ADE80;

  /* ---- Refined Text Weights ---- */
  --text-primary: #F5F7FF;
  --text-muted: #828AAB;
  --text-faint: #434B6B;

  /* ---- TRUE LUXURY DARK GLASSMORPHISM ---- */
  --glass-fill: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.002) 100%);
  --glass-tint-dark: rgba(2, 4, 11, 0.45); 
  --glass-border: rgba(255, 255, 255, 0.07);
  --glass-border-soft: rgba(255, 255, 255, 0.03);

  /* ---- Layout ---- */
  --max-width: 1180px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  /* ---- Type ---- */
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* ---- Cinema-Grade Motion ---- */
  --ease: cubic-bezier(0.25, 1, 0.2, 1); 
  --dur-fast: 0.4s;
  --dur-med: 0.8s;
  --dur-slow: 1.5s;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: #010105;
}

body {
  margin: 0;
  background: var(--midnight);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--white);
}

h2 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); margin-bottom: 0.5em; }

p { margin: 0 0 1em; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; border: none; background: transparent; padding: 0; color: inherit; cursor: pointer; }
svg { display: block; }

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

.site { position: relative; z-index: 1; }

/* ==========================================================================
   COSMIC BACKGROUND
   ========================================================================== */

.cosmic-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 45% at 50% -10%, rgba(27, 76, 242, 0.04), transparent 50%),
    var(--midnight);
  pointer-events: none;
  transform: translateZ(0);
}

#stardust {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  will-change: transform;
}

.god-ray {
  position: absolute;
  top: -30%;
  width: 50vw;
  height: 140vh;
  opacity: 0.16; /* Balanced upward from 0.06 to bring back the missing diffused glow elegantly */
  mix-blend-mode: screen;
  filter: blur(90px);
  background: conic-gradient(from 180deg at 50% 0%, transparent 0deg, rgba(124, 140, 255, 0.35) 15deg, transparent 40deg);
  transform: translateZ(0);
  will-change: transform;
}
.god-ray--left { left: -10vw; transform: rotate(5deg); }
.god-ray--right { right: -12vw; transform: rotate(-7deg) scaleX(-1); opacity: 0.12; }

.center-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  width: min(900px, 120vw);
  height: 600px;
  transform: translateX(-50%) translateZ(0);
  background: radial-gradient(closest-side, rgba(27, 76, 242, 0.15), transparent 80%); /* Revamped ambient backdrop visibility */
  filter: blur(50px);
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: transform;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.012;
  background-image: radial-gradient(rgba(255, 255, 255, 0.4) 0.5px, transparent 0.5px);
  background-size: 4px 4px;
}

/* ==========================================================================
   GLASS CARD SYSTEM
   ========================================================================== */

.glass-card {
  position: relative;
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.04),
    0 4px 24px rgba(0, 0, 0, 0.7),
    0 32px 70px -25px rgba(0, 0, 0, 0.95);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  will-change: transform;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--glass-tint-dark);
  pointer-events: none;
  z-index: 0;
}

.glass-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: radial-gradient(ellipse 70% 100% at 50% -12%, var(--bleed-color, rgba(124, 140, 255, 0.18)) 0%, transparent 80%);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.glass-card > * { position: relative; z-index: 1; }

.glass-card--bleed-cyan   { --bleed-color: var(--bleed-cyan); }
.glass-card--bleed-blue   { --bleed-color: var(--bleed-blue); }
.glass-card--bleed-red    { --bleed-color: var(--bleed-red); }
.glass-card--bleed-yellow { --bleed-color: var(--bleed-yellow); }
.glass-card--bleed-green  { --bleed-color: var(--bleed-green); }

.glass-card.pad { padding: 2.2rem 2rem; }

.grid .glass-card {
  transition: transform var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.grid .glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 40px 70px -15px rgba(0, 0, 0, 0.98),
    0 0 40px rgba(27, 76, 242, 0.03);
}

/* ==========================================================================
   ASSET PLACEHOLDER SLOTS
   ========================================================================== */

.asset-slot {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.01);
}
.asset-slot img { width: 100%; height: 100%; object-fit: contain; }

.asset-slot--empty {
  border: 1px dashed rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.005);
  display: flex;
  align-items: center;
  justify-content: center;
}
.asset-slot--empty::after {
  content: attr(data-label);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  text-align: center;
  padding: 0 6px;
}

.asset-slot--logo { width: 34px; height: 34px; aspect-ratio: 1/1; border-radius: 8px; flex-shrink: 0; }
.asset-slot--wordmark { height: 16px; width: 140px; background: transparent; }
.asset-slot--wordmark-hero { height: clamp(32px, 5vw, 44px); width: clamp(210px, 32vw, 340px); margin: 0 auto 1.8rem; border-radius: 6px; }
.asset-slot--wordmark-footer { height: 18px; width: 150px; }
.asset-slot--logo-strip { width: 120px; height: 52px; border-radius: var(--radius-sm); margin: 0 24px; flex-shrink: 0; filter: grayscale(1) opacity(0.3); transition: filter var(--dur-med) var(--ease); }
.asset-slot--logo-strip:hover { filter: grayscale(0) opacity(0.7); }
.asset-slot--photo { width: 100%; max-width: 220px; aspect-ratio: 4 / 5; border-radius: var(--radius-md); margin: 0 auto; }
.asset-slot--screenshot { width: 100%; aspect-ratio: 16 / 10; border-radius: var(--radius-md); border: 1px solid var(--glass-border); }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.nav-wrap {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  max-width: 940px;
  padding: 0.5rem 0.6rem 0.5rem 1.3rem;
  border-radius: var(--radius-pill);
}
.nav::before { background: rgba(1, 2, 8, 0.45); }

.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; color: var(--text-primary); padding: 8px; }
.nav__links { display: flex; align-items: center; gap: 1.8rem; }
.nav__link { font-size: 0.88rem; font-weight: 500; color: var(--text-muted); transition: color var(--dur-fast) var(--ease); }
.nav__link:hover { color: var(--white); }

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), filter var(--dur-fast) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--electric-blue), var(--indigo));
  color: var(--white);
  padding: 0.9rem 1.9rem;
  font-size: 0.95rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 8px 24px -4px rgba(27, 76, 242, 0.4),
    0 0 32px rgba(27, 76, 242, 0.15);
}
.btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 12px 28px -4px rgba(27, 76, 242, 0.5),
    0 0 40px rgba(27, 76, 242, 0.25);
}
.btn--primary:active { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(135deg, #E6AF2E, var(--bleed-yellow));
  color: var(--ink);
  padding: 0.6rem 1.3rem;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(230, 175, 46, 0.15);
}
.btn--gold:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 6px 16px rgba(230, 175, 46, 0.25);
}

.btn--small { padding: 0.6rem 1.3rem; font-size: 0.85rem; }
.btn--large { padding: 1.05rem 2.2rem; font-size: 1rem; }

/* ==========================================================================
   SHARED SECTIONS
   ========================================================================== */

main { display: block; }

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) 24px;
}

.section__head { max-width: 660px; margin: 0 auto 3.5rem; text-align: center; }
.section__sub { margin-top: 1rem; font-size: 1.05rem; color: var(--text-muted); }

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--periwinkle);
  margin: 0 0 1rem;
}

.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid + .grid { margin-top: 1.5rem; }

.step-index {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--periwinkle);
  margin-bottom: 0.8rem;
}

.icon-badge {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(124, 140, 255, 0.04);
  color: var(--periwinkle);
  margin-bottom: 1.2rem;
}

/* ==========================================================================
   REVEAL-ON-SCROLL
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
  transition-delay: var(--reveal-delay, 0s);
  will-change: transform, opacity;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  padding: clamp(8.5rem, 18vw, 12rem) 24px 5rem;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero__headline {
  font-size: clamp(2.5rem, 6.5vw, 4.4rem);
  margin-bottom: 1.2rem;
  background: linear-gradient(180deg, #FFFFFF 40%, rgba(255, 255, 255, 0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 660px; margin: 0 auto 2.4rem; }
.hero__actions { margin-bottom: 4rem; }

.hero__video { padding: 8px; border-radius: 24px; margin-bottom: 2.2rem; background: rgba(255,255,255,0.005); }
.hero__video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, rgba(3, 5, 15, 0.2), #010206 85%);
}

.hero__video-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.2rem; }
.play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.play-btn:hover { transform: scale(1.05); background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.25); }

.hero__video-label { font-size: 0.8rem; color: var(--text-faint); text-align: center; }
.hero__trust { max-width: 560px; margin: 0 auto; font-size: 0.88rem; color: var(--text-faint); }

.scroll-cue {
  margin: 3.5rem auto 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--glass-border-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  animation: bob 3s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ==========================================================================
   CLIENT MARQUEE
   ========================================================================== */

.logos { padding: 2rem 24px 5rem; text-align: center; }
.logos__label { font-size: 0.85rem; color: var(--text-faint); margin-bottom: 2.2rem; text-transform: uppercase; letter-spacing: 0.05em; }
.logos__marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.logos__track { display: flex; align-items: center; width: max-content; animation: marquee 45s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   QUOTE SURFACES
   ========================================================================== */

.quote-card { border-color: rgba(255, 107, 107, 0.04); }
.quote-mark { color: var(--bleed-red); opacity: 0.25; margin-bottom: 1rem; }
.quote-card p { color: var(--white); font-size: 1.05rem; font-weight: 500; }

/* ==========================================================================
   STAT STACKING
   ========================================================================== */

.stat-card { text-align: center; border-color: rgba(74, 222, 128, 0.04); }
.stat-card__value { display: block; font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--bleed-green); margin-bottom: 0.2rem; }
.stat-card__label { font-size: 0.85rem; color: var(--text-muted); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials-wall { columns: 3 300px; column-gap: 1.5rem; }
.testimonials-wall .glass-card { break-inside: avoid; margin-bottom: 1.5rem; }
.testimonial-card__type { display: inline-flex; align-items: center; gap: 6px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--periwinkle); margin-bottom: 0.8rem; }
.testimonial-card__quote { color: var(--text-primary); font-size: 0.95rem; }
.testimonial-card__author { display: block; margin-top: 1rem; font-size: 0.82rem; color: var(--text-faint); }
.testimonial-placeholder { text-align: center; padding: 3rem 1rem; }

/* ==========================================================================
   OFFER
   ========================================================================== */

.offer-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: 1.5rem; align-items: stretch; }
.checklist li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.98rem; padding: 0.85rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.03); }
.checklist li:last-child { border-bottom: none; }
.checklist li svg { flex-shrink: 0; margin-top: 3px; color: var(--bleed-cyan); }
.offer-model { display: flex; flex-direction: column; justify-content: center; }
.offer-model .btn { margin-top: 1.5rem; align-self: flex-start; }

/* ==========================================================================
   TEAM PROFILES
   ========================================================================== */

.team-card { display: grid; grid-template-columns: 200px 1fr; gap: 2.5rem; align-items: center; }
.team-card__copy p { font-size: 1.05rem; color: var(--text-primary); }
.team-card__sign { display: block; margin-top: 1.2rem; font-size: 0.88rem; color: var(--text-faint); font-weight: 500; }

/* ==========================================================================
   ACCORDION
   ========================================================================== */

.accordion { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.accordion__item { background: transparent; border: 1px solid var(--glass-border); border-radius: var(--radius-md); overflow: hidden; transition: border-color var(--dur-fast); }
.accordion__item:hover { border-color: rgba(255, 255, 255, 0.12); }
.accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.3rem 1.5rem; color: var(--white); font-family: var(--font-display); font-size: 1.02rem; font-weight: 500; text-align: left; }

.accordion__icon {
  position: relative;
  width: 14px;
  height: 14px;
  color: var(--periwinkle);
  flex-shrink: 0;
  transition: transform var(--dur-med) var(--ease);
}
.accordion__icon::before, .accordion__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: var(--radius-pill);
}
.accordion__icon::before { top: 6px; left: 0; width: 14px; height: 2px; }
.accordion__icon::after { top: 0; left: 6px; width: 2px; height: 14px; }

/* Rotates seamlessly into a close cross without changing color properties */
.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(135deg);
}

.accordion__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-med) var(--ease); background: rgba(0, 0, 0, 0.2); }
.accordion__panel > div { overflow: hidden; }
.accordion__panel p { padding: 0 1.5rem 1.3rem; font-size: 0.95rem; color: var(--text-muted); }
.accordion__item.is-open { border-color: rgba(255, 255, 255, 0.12); background: rgba(255,255,255,0.002); }
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }

/* ==========================================================================
   QUALIFYING STEP FORM
   ========================================================================== */

.section--final { text-align: center; }
.form-card { max-width: 620px; margin: 0 auto; padding: 2.5rem 2.2rem; text-align: left; }
.form-progress { display: flex; justify-content: center; gap: 9px; margin-bottom: 2rem; }
.form-progress__dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); transition: background var(--dur-fast); }
.form-progress__dot.is-active { background: var(--periwinkle); transform: scale(1.3); }
.form-progress__dot.is-done { background: var(--bleed-cyan); }

.form-step { display: none; border: none; padding: 0; margin: 0; }
.form-step.is-active { display: block; animation: stepIn var(--dur-med) var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.form-step legend { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--white); padding: 0; margin-bottom: 1.4rem; }
.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.option-grid--wide { grid-template-columns: 1fr; }

.option-btn {
  text-align: left;
  padding: 0.95rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.005);
  color: var(--text-primary);
  font-size: 0.92rem;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.option-btn:hover { border-color: rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.01); }
.option-btn.is-selected { border-color: var(--bleed-cyan); background: rgba(77, 232, 255, 0.04); box-shadow: 0 0 12px rgba(77, 232, 255, 0.05); }

.field-group { margin-bottom: 1.2rem; }
.field-group label { display: block; font-size: 0.82rem; color: var(--text-faint); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.05em; }
.field-group input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--dur-fast);
}
.field-group input:focus { border-color: var(--periwinkle); outline: none; background: rgba(0,0,0,0.4); }

.form-submit { width: 100%; margin-top: 0.5rem; }
.form-nav { margin-top: 1.5rem; }
.form-back { background: transparent; border: none; color: var(--text-faint); font-size: 0.85rem; padding: 0.4rem 0; transition: color var(--dur-fast); }
.form-back:hover { color: var(--text-primary); }

.form-result { text-align: center; padding: 1.5rem 0; }
.form-result h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.form-result p { max-width: 420px; margin: 0 auto 1.8rem; color: var(--text-muted); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer { max-width: var(--max-width); margin: 0 auto; padding: 4rem 24px 3rem; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-bottom: 2.2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.03); }
.footer__links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer__links a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--dur-fast); }
.footer__links a:hover { color: var(--white); }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.8rem; font-size: 0.82rem; color: var(--text-faint); }
.footer__bottom p { margin: 0; }

/* ==========================================================================
   RESPONSIVE LAYOUT CONSTRAINTS
   ========================================================================== */

@media (max-width: 920px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .offer-layout { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
}

@media (max-width: 860px) {
  .nav { overflow: visible !important; }
  
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    background: rgba(1, 2, 8, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), visibility var(--dur-med);
    z-index: 110;
  }
  .nav__links.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__link { padding: 0.5rem 0.2rem; }
  .nav__cta { text-align: center; margin-top: 0.5rem; }
}

@media (max-width: 720px) {
  .grid--3 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: 1fr; }
  .testimonials-wall { columns: 1; }
  .option-grid { grid-template-columns: 1fr; }
  .god-ray { width: 85vw; }
}
/* ==========================================================================
   SLIDER LAYOUT MECHANICS (OVERHAULED)
   ========================================================================== */

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  cursor: grab;
  margin-bottom: 4rem;
  padding: 20px 0;
  user-select: none;
  -webkit-user-select: none;
}

.slider-wrapper.is-dragging {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  transform: translateZ(0); /* Forces GPU Hardware Layer Allocation */
}

/* Video Card Configuration (2 complete slots visible on desktop screens) */
.video-card {
  flex: 0 0 540px; 
  max-width: 85vw;
}

@media (max-width: 768px) {
  .video-card { 
    flex: 0 0 320px; /* Perfectly sized mobile viewport constraints */
  } 
}

.video-thumb-container {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-thumb-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none; /* Prevents default browser image ghost drag artifacts */
}

/* Text Testimonial Styling Rules */
.text-card {
  flex: 0 0 420px;
  max-width: 85vw;
}

@media (max-width: 480px) {
  .text-card { 
    flex: 0 0 290px; 
  }
}

.text-card__stars {
  color: var(--bleed-yellow);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.text-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 1.5rem;
}

.text-card__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--glass-border);
  pointer-events: none;
}