/* ==========================================================================
   AURIVANTEQ — Design System
   Principle: QUIET POWER — premium, restrained, precise.
   Palette: Obsidian #0A0A0F · Gold #C9960E · Arctic #F4F4F6 · Navy #0D1B2A
   ========================================================================== */

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #0A0A0F;
  color: #F4F4F6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: rgba(201, 150, 14, 0.85); color: #0A0A0F; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid #C9960E;
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Header ---------- */
.site-header { background: transparent; border-color: transparent; }
.site-header.is-scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(244, 244, 246, 0.04), 0 12px 32px rgba(0, 0, 0, 0.35);
}
.brand-mark {
  transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
  border-radius: 0.375rem;
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.04); }

.nav-link { position: relative; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -5px;
  height: 1px;
  background: #C9960E;
  transition: right 0.3s ease;
}
.nav-link:hover::after, .nav-link.text-gold::after { right: 0; }

/* ---------- CTA Buttons ---------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #C9960E;
  color: #0A0A0F;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.cta-btn:hover {
  background: #d9bd6d;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(201, 168, 76, 0.28);
}
.cta-btn.is-ghost {
  background: transparent;
  color: #F4F4F6;
  border: 1px solid rgba(244, 244, 246, 0.28);
}
.cta-btn.is-ghost:hover {
  border-color: rgba(244, 244, 246, 0.7);
  box-shadow: none;
  background: rgba(244, 244, 246, 0.04);
}
.cta-btn.is-blue { background: #1d4ed8; color: #F4F4F6; }
.cta-btn.is-blue:hover { background: #2563eb; box-shadow: 0 10px 26px rgba(29, 78, 216, 0.4); }
.cta-btn.is-purple { background: #2b0b3f; color: #F4F4F6; }
.cta-btn.is-purple:hover { background: #3a1054; box-shadow: 0 10px 26px rgba(43, 11, 63, 0.4); }
.cta-btn.is-navy { background: #0D1B2A; color: #F4F4F6; border: 1px solid rgba(244, 244, 246, 0.12); }
.cta-btn.is-navy:hover { background: #142a40; border-color: rgba(244, 244, 246, 0.25); }

/* ---------- Mobile Drawer ---------- */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-drawer[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.mobile-drawer-inner {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(86vw, 380px);
  background: #0f0f16;
  border-left: 1px solid rgba(244, 244, 246, 0.08);
  padding: 1.5rem 2rem 2.5rem;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow-y: auto;
}
.mobile-drawer[aria-hidden="false"] .mobile-drawer-inner { transform: translateX(0); }
.drawer-close {
  position: absolute; top: 1.1rem; right: 1.3rem;
  font-size: 1.9rem; line-height: 1; color: #F4F4F6; opacity: 0.7;
}
.drawer-close:hover { opacity: 1; }
.drawer-link {
  font-size: 1.15rem; padding: 0.75rem 0;
  border-bottom: 1px solid rgba(244, 244, 246, 0.06);
  color: #F4F4F6;
  transition: padding-left 0.25s ease, color 0.25s ease;
}
.drawer-link:hover { padding-left: 0.5rem; color: #C9960E; }
.drawer-sub { font-size: 0.85rem; opacity: 0.55; }
body.drawer-open { overflow: hidden; }
body.no-scroll { overflow: hidden; }

/* ---------- Screen Reader Only ---------- */
.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;
}
.focus\:not-sr-only:focus {
  position: static; width: auto; height: auto;
  padding: inherit; margin: inherit; overflow: visible;
  clip: auto; white-space: normal;
}
.menu-bars { display: inline-flex; flex-direction: column; gap: 4px; width: 18px; }
.menu-bar { height: 2px; background: #F4F4F6; border-radius: 2px; width: 100%; }

/* ---------- Reveal on Scroll ---------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
html.js [data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Typography ---------- */
.display {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}
.lede {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  color: rgba(244, 244, 246, 0.72);
  font-weight: 300;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244, 244, 246, 0.55);
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: #C9960E;
}
.eyebrow.eye-purple .dot { background: #2b0b3f; }
.eyebrow.eye-blue .dot { background: #1d4ed8; }
.eyebrow.eye-navy .dot { background: #0D1B2A; }

/* ---------- Cards ---------- */
.lux-card {
  background: linear-gradient(180deg, rgba(244, 244, 246, 0.045), rgba(244, 244, 246, 0.012));
  border: 1px solid rgba(244, 244, 246, 0.09);
  border-radius: 1.1rem;
  transition: transform 0.35s cubic-bezier(0.2, 0.65, 0.2, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.lux-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}
.lux-card-purple:hover { border-color: rgba(91, 42, 134, 0.8); }
.lux-card-blue:hover { border-color: rgba(29, 78, 216, 0.7); }
.lux-card-navy:hover { border-color: rgba(13, 27, 42, 0.8); }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(244, 244, 246, 0.16);
  color: rgba(244, 244, 246, 0.85);
}
.badge-gold { border-color: rgba(201, 168, 76, 0.4); color: #C9960E; }

/* ---------- Forms ---------- */
.lux-field {
  width: 100%;
  background: rgba(244, 244, 246, 0.045);
  border: 1px solid rgba(244, 244, 246, 0.12);
  border-radius: 0.7rem;
  padding: 0.85rem 1rem;
  color: #F4F4F6;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.lux-field::placeholder { color: rgba(244, 244, 246, 0.35); }
.lux-field:focus { outline: none; border-color: rgba(201, 168, 76, 0.65); background: rgba(244, 244, 246, 0.07); }
select.lux-field option { background: #14141c; color: #F4F4F6; }

/* ---------- Accordion ---------- */
details.lux-acc { border-bottom: 1px solid rgba(244, 244, 246, 0.08); }
details.lux-acc > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 0;
  font-weight: 600; font-size: 1.02rem; color: #F4F4F6;
}
details.lux-acc > summary::-webkit-details-marker { display: none; }
details.lux-acc > summary::after {
  content: "+"; font-size: 1.4rem; font-weight: 400; color: #C9960E;
  transition: transform 0.25s ease;
}
details.lux-acc[open] > summary::after { transform: rotate(45deg); }
details.lux-acc > div { padding-bottom: 1.25rem; color: rgba(244, 244, 246, 0.72); line-height: 1.75; font-size: 0.95rem; }

/* ---------- Prose ---------- */
.prose-lux p { margin-bottom: 1.15rem; line-height: 1.8; color: rgba(244,244,246,0.78); }
.prose-lux h2 { font-size: 1.4rem; font-weight: 700; margin: 2rem 0 0.85rem; color: #F4F4F6; }

/* ---------- Layout ---------- */
.section-pad { padding-top: clamp(4.5rem, 9vw, 8rem); padding-bottom: clamp(4.5rem, 9vw, 8rem); }
.max-w-1480 { max-width: 1480px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: #0A0A0F;
}
.hero-fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 540px at 82% -14%, var(--hero-glow, rgba(201, 150, 14, 0.07)), transparent 62%),
    linear-gradient(180deg, #0d0d15 0%, #0A0A0F 84%);
}
.hero-fallback::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(130% 95% at 50% 112%, rgba(10, 10, 15, 0.85), transparent 62%);
}
.hero-fallback::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244, 244, 246, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 244, 246, 0.034) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: radial-gradient(58% 74% at 72% 12%, #000, transparent 80%);
  mask-image: radial-gradient(58% 74% at 72% 12%, #000, transparent 80%);
}
.hero-tint-studios { --hero-glow: rgba(91, 42, 134, 0.14); }
.hero-tint-gold    { --hero-glow: rgba(201, 150, 14, 0.08); }
.hero-tint-systems { --hero-glow: rgba(29, 78, 216, 0.1); }

.hero-media-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 15, 0.9) 0%, rgba(10, 10, 15, 0.6) 34%, rgba(10, 10, 15, 0.14) 70%, rgba(10, 10, 15, 0.04) 100%),
    linear-gradient(180deg, rgba(10, 10, 15, 0.38) 0%, transparent 30%, rgba(10, 10, 15, 0.08) 62%, rgba(10, 10, 15, 0.9) 100%);
}

.hero-inner { position: relative; z-index: 1; width: 100%; }

/* ---------- Slideshow ---------- */
.hero-slideshow .hero-slides { position: absolute; inset: 0; }
.hero-slideshow .hero-slide {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; visibility: hidden;
  transition: opacity var(--hero-fade, 800ms) cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear var(--hero-fade, 800ms);
}
.hero-slideshow .hero-slide.is-active {
  opacity: 1; visibility: visible;
  transition: opacity var(--hero-fade, 800ms) cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slideshow .hero-slide img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  background: #0A0A0F; will-change: transform;
}
.hero-slideshow .hero-slide.is-active img {
  animation: kenBurns var(--slide-hold, 5000ms) cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}
.hero-slideshow-progress {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; z-index: 3;
  background: rgba(244, 244, 246, 0.06);
  pointer-events: none;
}
.hero-slideshow-progress-bar {
  display: block; height: 100%;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0), rgba(201, 168, 76, 0.8));
  transform-origin: left center; transform: scaleX(0);
}
.hero-slideshow-progress-bar.is-running {
  animation: heroProgress cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes heroProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.hero-slideshow.is-paused .hero-slideshow-progress-bar { animation-play-state: paused; }
.hero-slideshow-counter { display: none; }

/* ---------- Home hero ---------- */
.hero-clean {
  position: relative; min-height: 90svh;
  display: flex; align-items: center;
  background: #0A0A0F; overflow: hidden;
}
.hero-clean-bg { position: absolute; inset: 0; background: #0f0f16; }
.hero-clean-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 0; transition: opacity 0.6s ease;
}
.hero-clean-bg img.loaded { opacity: 1; }
.hero-clean-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,15,0.82) 0%, rgba(10,10,15,0.45) 50%, rgba(10,10,15,0.25) 100%);
}
.hero-clean-bg::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,15,0.9) 0%, transparent 30%);
}

/* ---------- Mission Logo ---------- */
.mission-logo-wrap {
  position: relative; width: 280px; height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.mission-logo {
  position: relative; z-index: 1; width: 160px; height: 160px;
  object-fit: contain; animation: logoGrow 3s ease-in-out infinite;
}
.mission-logo-glow {
  position: absolute; inset: -20px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,150,14,0.2) 0%, rgba(201,150,14,0.05) 50%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes logoGrow { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes glowPulse { 0%,100% { opacity: .6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }

/* ---------- Flip Cards ---------- */
.flip-card { perspective: 1200px; height: 420px; cursor: pointer; }
.flip-inner {
  position: relative; width: 100%; height: 100%;
  transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  transform-style: preserve-3d;
}
.flip-card.flipped .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back {
  position: absolute; inset: 0;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: 1.5rem; overflow: hidden;
}
.flip-back { transform: rotateY(180deg); }
.flip-front {
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.05) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2.5rem;
}
.flip-front::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255,255,255,0.07), transparent);
  pointer-events: none;
}
.flip-front::after {
  content: ""; position: absolute; top: -1px; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  pointer-events: none;
}
.flip-back {
  background: linear-gradient(135deg, rgba(20,20,30,0.95) 0%, rgba(10,10,15,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; justify-content: space-between; padding: 2.5rem;
}
.flip-back::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(201,150,14,0.06), transparent);
  pointer-events: none;
}
.flip-systems .flip-front { border-color: rgba(29,78,216,0.2); }
.flip-systems .flip-front::before { background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(29,78,216,0.08), transparent); }
.flip-studios .flip-front { border-color: rgba(43,11,63,0.25); }
.flip-studios .flip-front::before { background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(43,11,63,0.1), transparent); }
.flip-hint {
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  opacity: .35; margin-top: 1.5rem; transition: opacity .3s;
}
.flip-card:hover .flip-hint, .flip-card.flipped .flip-hint { opacity: 0; }

/* ---------- Gold Panels (Countdown) ---------- */
.cd-gold-panel {
  position: relative; overflow: hidden;
  border: 1px solid rgba(201,150,14,0.25); border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(201,150,14,0.06) 0%, rgba(10,10,15,0.95) 50%, rgba(201,150,14,0.04) 100%);
  padding: 3rem 2rem; text-align: center;
}
.cd-gold-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,150,14,0.15) 0%, transparent 70%);
  pointer-events: none; animation: cdPulse 4s ease-in-out infinite;
}
@keyframes cdPulse {
  0%,100% { opacity: .6; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.15); }
}
.cd-date-gold {
  font-size: clamp(2rem,5vw,3.5rem); font-weight: 800; letter-spacing: .08em;
  background: linear-gradient(135deg, #f5d062, #c9960e, #a87a0a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cd-unit { display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.cd-num {
  font-size: clamp(1.8rem,4vw,3rem); font-weight: 800;
  background: linear-gradient(180deg, #e8c040, #c9960e);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.cd-label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; opacity: .5; }
.waitlist-input {
  background: rgba(201,150,14,0.06); border: 1px solid rgba(201,150,14,0.2);
  border-radius: .75rem; padding: .75rem 1rem; color: #f4f4f6; font-size: .875rem;
  outline: none; transition: border-color .3s;
}
.waitlist-input:focus { border-color: rgba(201,150,14,0.5); }
.waitlist-input::placeholder { color: rgba(244,244,246,0.3); }
.waitlist-btn {
  background: linear-gradient(135deg, #a87a0a, #c9960e, #e8c040);
  color: #050709; font-weight: 700; font-size: .8rem; letter-spacing: .1em;
  text-transform: uppercase; padding: .75rem 1.5rem; border-radius: .75rem;
  border: none; cursor: pointer; transition: all .3s;
}
.waitlist-btn:hover { box-shadow: 0 8px 30px rgba(201,150,14,0.4); transform: translateY(-2px); }

/* ---------- Studio Section Backgrounds ---------- */
.studios-section-purple { background: #12071e; }
.studios-section-dark { background: #0d0518; }
.studioglow { position: relative; overflow: hidden; }
.studioglow::before {
  content: ""; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,11,63,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.studioglow::after {
  content: ""; position: absolute; bottom: -150px; left: -150px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,150,14,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.studios-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }

/* ---------- Tier / Pricing Labels ---------- */
.tier-label { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; }
.price-tag { font-variant-numeric: tabular-nums; }

/* ---------- Geo Grid ---------- */
.geo-grid {
  background-image:
    linear-gradient(rgba(244, 244, 246, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 244, 246, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.9), transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.9), transparent 72%);
}

/* ---------- Process Steps ---------- */
.process-step {
  position: relative;
  padding-left: 3rem;
}
.process-step::before {
  content: "";
  position: absolute; left: 0; top: 0.5rem;
  width: 1.5rem; height: 1px;
  background: rgba(201, 150, 14, 0.4);
}
.process-num {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #C9960E; margin-bottom: 0.5rem;
}

/* ---------- Service Cards (.svc) ---------- */
.svc {
  border: 1px solid rgba(244,244,246,0.1);
  background: rgba(244,244,246,0.02);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color .25s, background .25s, transform .25s;
}
.svc:hover {
  border-color: rgba(201,150,14,0.4);
  background: rgba(201,150,14,0.03);
  transform: translateY(-2px);
}

/* ---------- Service Category Filter ---------- */
.svc-cat {
  border: 1px solid rgba(244,244,246,0.12);
  border-radius: 999px;
  padding: .55rem 1.1rem;
  color: rgba(244,244,246,0.85);
  font-size: .78rem;
  letter-spacing: .04em;
  cursor: pointer;
  background: rgba(244,244,246,0.03);
  transition: all .25s;
}
.svc-cat[aria-selected="true"] {
  border-color: rgba(201,150,14,0.55);
  color: #C9960E;
  background: rgba(201,150,14,0.06);
}

/* ---------- Hairline Divider ---------- */
.hairline {
  background: linear-gradient(90deg, rgba(201,150,14,0.55), rgba(201,150,14,0.05));
  height: 1px;
}

/* ---------- Package Plan Cards ---------- */
.plan {
  position: relative;
  border: 1px solid rgba(244,244,246,0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: visible;
}
.plan.hero {
  border-color: rgba(201,150,14,0.55);
  background: rgba(201,150,14,0.04);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  padding-top: 3rem;
  transform: scale(1.03);
  z-index: 2;
  animation: planGlow 4s ease-in-out infinite alternate;
  transition: transform .4s cubic-bezier(.2,.65,.2,1), box-shadow .4s ease;
}
.plan.hero:hover {
  transform: scale(1.05);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 50px 4px rgba(201,150,14,0.18);
}
@keyframes planGlow {
  0% { box-shadow: 0 30px 70px rgba(0,0,0,0.45), 0 0 0 0 rgba(201,150,14,0); }
  100% { box-shadow: 0 30px 70px rgba(0,0,0,0.45), 0 0 40px 2px rgba(201,150,14,0.12); }
}

/* ---------- Include Items ---------- */
.inc {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  color: rgba(244,244,246,0.82);
}
.inc::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 999px;
  background: #C9960E;
  margin-top: .45rem;
  flex-shrink: 0;
}

/* ---------- Step Number ---------- */
.step-num {
  font-size: .72rem;
  letter-spacing: .24em;
  color: #C9960E;
  text-transform: uppercase;
}

/* ---------- Gold Bullet Lists ---------- */
.gwhat {
  font-size: .8rem;
  color: rgba(244,244,246,0.6);
}
.gwhat li {
  padding-left: 1rem;
  position: relative;
}
.gwhat li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 5px; height: 5px;
  border-radius: 999px;
  background: rgba(201,150,14,0.7);
}

/* ---------- Channel Cards ---------- */
.channel-card {
  display: flex; flex-direction: column; align-items: flex-start;
  background: rgba(244,244,246,0.02);
  border: 1px solid rgba(244,244,246,0.08);
  border-radius: 1rem;
  padding: 2rem;
  cursor: pointer;
  text-decoration: none; color: inherit;
  transition: border-color .3s, transform .3s cubic-bezier(.2,.65,.2,1), box-shadow .3s;
}
.channel-card:hover {
  border-color: rgba(201,150,14,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.channel-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.channel-icon-whatsapp {
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.2);
  color: #25d366;
}
.channel-icon-email {
  background: rgba(201,150,14,0.08);
  border: 1px solid rgba(201,150,14,0.15);
  color: #C9960E;
}
.channel-icon-facebook {
  background: rgba(24,119,242,0.1);
  border: 1px solid rgba(24,119,242,0.2);
  color: #1877f2;
}
.channel-icon-tiktok {
  background: rgba(254,44,85,0.08);
  border: 1px solid rgba(254,44,85,0.18);
  color: #fe2c55;
}
.channel-cta {
  margin-top: 1.25rem;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: .05em;
  color: #C9960E;
}

/* ---------- Form Security ---------- */
.form-rate-limit { pointer-events: none; opacity: 0.5; }
.field-error { color: #ef4444; font-size: 0.75rem; margin-top: 0.25rem; }
.form-success-msg {
  color: #10b981; font-weight: 500; text-align: center;
  padding: 1rem; background: rgba(16,185,129,.06);
  border: 1px solid rgba(16,185,129,.15); border-radius: 0.7rem;
}
.form-error-msg {
  color: #ef4444; font-weight: 500; text-align: center;
  padding: 1rem; background: rgba(239,68,68,.06);
  border: 1px solid rgba(239,68,68,.15); border-radius: 0.7rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  .hero-slideshow .hero-slide { transition-duration: 600ms; }
  .hero-slideshow .hero-slide.is-active img { animation-duration: 6000ms; }
  .site-header.is-scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(10, 10, 15, 0.97); }
  .mobile-drawer { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(10, 10, 15, 0.93); }
  .flip-card:hover .flip-inner { transform: none; }
  .geo-grid { background-size: 46px 46px; }
  .plan { padding: 1.5rem; }
  .plan.hero { padding: 2.5rem 1.5rem 1.5rem; }
  .svc { padding: 1.25rem; }
  .lux-card { border-radius: 1rem; }
}
@media (max-width: 479px) {
  .hero-inner { padding-top: 6.5rem; padding-bottom: 4.5rem; }
  .display { letter-spacing: -0.01em; }
  .eyebrow { letter-spacing: 0.18em; }
  .plan.hero { padding-top: 2rem; }
  .grid.lg\\:grid-cols-3 { grid-template-columns: 1fr !important; }
  .grid.sm\\:grid-cols-2 { grid-template-columns: 1fr !important; }
  .grid.lg\\:grid-cols-4 { grid-template-columns: 1fr !important; }
}
@media (hover: none) and (pointer: coarse) {
  a, button, input, select, textarea { min-height: 44px; }
  .cta-btn { min-height: 48px; padding: 0.75rem 1.5rem; }
  .svc { min-height: 48px; }
  .flip-card:hover .flip-inner { transform: none; }
}
@media (max-width: 640px) {
  .display { letter-spacing: -0.01em; }
  .lede { font-size: 0.95rem; line-height: 1.7; }
  .eyebrow { font-size: 0.6rem; letter-spacing: 0.18em; }
  .section-pad { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .grid.gap-6 { gap: 1rem; }
  .grid.gap-4 { gap: 0.75rem; }
  .grid.gap-8 { gap: 1.5rem; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], html.js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero-slideshow .hero-slide.is-active img { animation: none !important; }
}

/* ---------- Low Power ---------- */
html.device-low .hero-slide.is-active { will-change: auto; }
html.device-low .hero-slide.is-active img { animation: none !important; }
html.device-low .site-header.is-scrolled,
html.device-low .mobile-drawer { backdrop-filter: none; -webkit-backdrop-filter: none; }
html.device-low [class*="blur-["] { filter: none; opacity: 0.28; }
html.device-low .geo-grid { background-image: none; -webkit-mask-image: none; mask-image: none; }
html.device-low [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
html.device-low .lux-card:hover { transform: none; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); }
html.device-low .hero { background: #0A0A0F; }
html.device-low .hero-fallback::after { display: none; }

/* ---------- Mobile Optimization ---------- */
html, body { overflow-x: clip; }
button, a, input, select, textarea, summary { touch-action: manipulation; }
.cta-btn { max-width: 100%; }
.mobile-drawer-inner .cta-btn { width: 100%; justify-content: center; }
.mobile-drawer-inner {
  padding-top: calc(1.5rem + env(safe-area-inset-top));
  padding-bottom: max(2.5rem, env(safe-area-inset-bottom));
  padding-left: max(2rem, env(safe-area-inset-left));
}
.footer, .brand-statement { padding-bottom: max(1rem, env(safe-area-inset-bottom)); }
img { max-width: 100%; height: auto; display: block; }
img[loading="lazy"] { content-visibility: auto; }

/* ---------- Print ---------- */
@media print {
  .hero { display: none !important; }
  body { background: white; color: black; }
}

/* ---------- Safe Area ---------- */
@supports (padding: env(safe-area-inset-top)) {
  body { padding-top: env(safe-area-inset-top); padding-bottom: env(safe-area-inset-bottom); }
}

/* ---------- Studios Sub-Nav Mobile ---------- */
@media (max-width: 640px) {
  .section-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .section-nav::-webkit-scrollbar { display: none; }
  .section-nav a { white-space: nowrap; font-size: 0.75rem; padding: 0.5rem 0; }
}

/* ---------- Premium Mobile Touch ---------- */
@media (max-width: 768px) {
  .lux-card { transform: none !important; }
  .lux-card:hover { transform: none !important; box-shadow: none; }
  .svc { transform: none !important; }
  .svc:hover { transform: none !important; }
  .plan.hero { box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
}

/* ---------- Splash Screen ---------- */
#splash {
  position: fixed; inset: 0; z-index: 9000;
  background: #030508;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
  overflow: hidden;
}
#splash.hide { opacity: 0; visibility: hidden; pointer-events: none; }
#splashCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.splash-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 0; text-align: center;
}
.splash-emblem {
  position: relative; width: 120px; height: 120px; margin-bottom: 28px;
  animation: sEmb .8s ease .1s both;
}
@keyframes sEmb { from { opacity:0; transform:scale(.7); } to { opacity:1; transform:scale(1); } }
.s-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(201,150,14,.2);
  animation: sRot linear infinite;
}
.s-r1 { animation-duration: 9s; }
.s-r2 { inset: -16px; border-color: rgba(201,150,14,.08); animation-duration: 15s; animation-direction: reverse; }
@keyframes sRot { to { transform: rotate(360deg); } }
.splash-emblem img {
  position: absolute; inset: 12px;
  width: calc(100% - 24px); height: calc(100% - 24px);
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(201,150,14,.4));
  animation: sGlow 2.5s ease-in-out infinite;
}
@keyframes sGlow { 0%,100% { filter: drop-shadow(0 0 16px rgba(201,150,14,.35)); } 50% { filter: drop-shadow(0 0 30px rgba(201,150,14,.6)); } }
.splash-wordmark {
  font-family: "Manrope", "Inter", system-ui, sans-serif; font-weight: 700;
  font-size: clamp(22px,5vw,40px);
  letter-spacing: .12em; line-height: 1;
  animation: sFade .9s ease .35s both;
}
@keyframes sFade { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }
.sw-a { color: #F4F4F6; }
.sw-b { color: #C9960E; }
.splash-rule {
  width: 120px; height: 1px;
  background: rgba(244,244,246,0.1);
  margin: 20px 0 16px;
  animation: sFade .9s ease .55s both;
}
.splash-tag {
  font-family: "Manrope", "Inter", system-ui, sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: .35em; color: #C9960E; text-transform: uppercase;
  animation: sFade .9s ease .65s both;
}
.splash-progress {
  width: 160px; height: 1.5px;
  background: rgba(201,150,14,.12);
  border-radius: 2px; margin-top: 32px; overflow: hidden;
  animation: sFade .5s ease .9s both;
}
.splash-fill {
  height: 100%; width: 0;
  background: #C9960E;
  transition: width .1s linear;
}
