/* ==========================================================================
   Unify Entertainment - Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root{
  /* Brand */
  --navy:        #2D2C80;
  --navy-deep:   #1A1948;
  --navy-mid:    #423F9E;
  --magenta:     #902384;
  --magenta-2:   #C22DAE;
  --magenta-soft:#B93AA8;

  /* Neutrals */
  --white:       #FFFFFF;
  --ink:         #15142E;
  --ink-soft:    #4A4870;
  --muted:       #7A7799;
  --mist:        #F6F5FB;
  --mist-2:      #ECEAF6;
  --line:        #E4E2F1;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, var(--navy) 0%, #3A2C8C 45%, var(--magenta) 100%);
  --grad-text: linear-gradient(100deg, #E9E7FF 0%, #ffffff 35%, #F2CDEC 70%, #ffffff 100%);

  /* Type */
  --font-display: 'Sora', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shape */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(.22,1,.36,1);
  --ease-soft: cubic-bezier(.16,.84,.44,1);

  /* Shadow */
  --shadow-sm: 0 2px 10px rgba(21,20,46,0.06);
  --shadow-md: 0 12px 32px rgba(26,25,72,0.12);
  --shadow-lg: 0 24px 60px rgba(26,25,72,0.18);
  --shadow-magenta: 0 14px 34px rgba(144,35,132,0.30);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  margin: 0;
  color: var(--navy);
  line-height: 1.14;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
p{ margin: 0; text-wrap: pretty; }
button{ font-family: inherit; cursor: pointer; }
input, textarea{ font-family: inherit; }

.container{
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px){ .container{ padding: 0 20px; } }

section{ position: relative; }

/* ---------- Shared type blocks ---------- */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
}
.eyebrow::before{
  content: '';
  width: 22px;
  height: 2px;
  background: var(--magenta);
  border-radius: 2px;
}
.eyebrow.on-dark{ color: #F5B8EC; }
.eyebrow.on-dark::before{ background: #F5B8EC; }

.section-head{ max-width: 660px; margin: 0 0 56px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow{ justify-content: center; }
.section-head h2{ font-size: clamp(30px, 4vw, 44px); margin-top: 14px; }
.section-head p{ margin-top: 16px; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }

.intro-block{ max-width: 720px; margin: 0 0 70px; }
.intro-block h2{ margin-top: 14px; font-size: clamp(28px, 3.6vw, 40px); }
.intro-block p{ margin-top: 18px; font-size: 17.5px; line-height: 1.75; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), background .3s ease, border-color .3s ease, color .3s ease;
  white-space: nowrap;
  isolation: isolate;
  overflow: hidden;
}
.btn svg{ width: 16px; height: 16px; transition: transform .4s var(--ease); flex-shrink: 0; }
.btn:hover svg{ transform: translateX(4px); }

.btn-primary{ background: var(--magenta); color: #fff; box-shadow: var(--shadow-magenta); }
.btn-primary::before{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--magenta-2), var(--navy-mid));
  opacity: 0;
  transition: opacity .45s var(--ease);
  z-index: -1;
}
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 20px 40px rgba(144,35,132,0.38); }
.btn-primary:hover::before{ opacity: 1; }

.btn-outline{ background: transparent; color: var(--navy); border-color: rgba(45,44,128,0.28); }
.btn-outline:hover{ border-color: var(--navy); background: rgba(45,44,128,0.06); transform: translateY(-3px); }
.btn-outline.on-dark{ color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-outline.on-dark:hover{ border-color: #fff; background: rgba(255,255,255,0.1); }

.btn-ghost-dark{ background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.16); backdrop-filter: blur(6px); }
.btn-ghost-dark:hover{ background: rgba(255,255,255,0.16); transform: translateY(-3px); }

.btn-sm{ padding: 11px 22px; font-size: 13.5px; }
.btn-block{ width: 100%; }

/* ---------- Intro reveal (eye-catcher) ---------- */
.intro-reveal{
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  overflow: hidden;
  animation: introOut 1s var(--ease) 2s forwards;
}
.intro-reveal::before{
  content: '';
  position: absolute; inset: -20%;
  background:
    radial-gradient(circle at 30% 40%, rgba(144,35,132,0.55), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(66,63,158,0.6), transparent 55%);
  filter: blur(70px);
  animation: introGlow 2.6s ease-in-out infinite;
}
@keyframes introOut{
  to{ clip-path: inset(0 0 100% 0); visibility: hidden; pointer-events: none; }
}
@keyframes introGlow{
  0%,100%{ transform: scale(1); opacity: .85; }
  50%{ transform: scale(1.12); opacity: 1; }
}

.intro-core{
  position: relative;
  width: 230px; height: 160px;
  display: flex; align-items: center; justify-content: center;
}
.intro-logo{
  position: relative;
  z-index: 2;
  width: 148px;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.45));
  opacity: 0;
  transform: scale(.82);
  animation: introLogo .95s var(--ease) .15s forwards;
}
@keyframes introLogo{ to{ opacity: 1; transform: scale(1); } }

.intro-ring{
  position: absolute;
  left: 50%; top: 50%;
  width: 160px; height: 160px;
  margin: -80px 0 0 -80px;
  border: 1.5px solid rgba(245,184,236,0.7);
  border-radius: 50%;
  opacity: 0;
  animation: introRing 2.1s var(--ease-soft) infinite;
}
.intro-ring:nth-child(2){ animation-delay: .45s; }
.intro-ring:nth-child(3){ animation-delay: .9s; }
@keyframes introRing{
  0%{ transform: scale(.55); opacity: 0; }
  25%{ opacity: .8; }
  100%{ transform: scale(2.1); opacity: 0; }
}

.intro-word{
  position: relative; z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 3vw, 23px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(14px);
  animation: introWord .9s var(--ease) .55s forwards;
}
.intro-word span{ color: #F0B4E8; }
@keyframes introWord{ to{ opacity: 1; transform: translateY(0); } }

.intro-bar{
  position: relative; z-index: 2;
  width: 220px; height: 2px;
  background: rgba(255,255,255,0.14);
  border-radius: 2px;
  overflow: hidden;
}
.intro-bar i{
  position: absolute; inset: 0;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--magenta-2), #F5B8EC);
  animation: introBar 1.85s var(--ease-soft) forwards;
}
@keyframes introBar{ to{ transform: scaleX(1); } }

/* Homepage hero waits for the curtain, then lands */
.intro-active .hero-content > *{
  opacity: 0;
  animation: heroIn .9s var(--ease) forwards;
}
.intro-active .hero-content > *:nth-child(1){ animation-delay: 2.15s; }
.intro-active .hero-content > *:nth-child(2){ animation-delay: 2.25s; }
.intro-active .hero-content > *:nth-child(3){ animation-delay: 2.35s; }
.intro-active .hero-content > *:nth-child(4){ animation-delay: 2.45s; }
.intro-active .hero-content > *:nth-child(5){ animation-delay: 2.55s; }
@keyframes heroIn{ from{ opacity: 0; transform: translateY(22px); } to{ opacity: 1; transform: translateY(0); } }

/* Second visit in the same session: no intro, no delay */
.intro-skip .intro-reveal{ display: none; }
.intro-skip .hero-content > *{ opacity: 1; animation: none; }

/* ---------- Equalizer accent ---------- */
.eq{ display: inline-flex; align-items: flex-end; gap: 3px; height: 14px; }
.eq i{
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, #F5B8EC, var(--magenta-2));
  animation: eqBar 1.1s ease-in-out infinite;
}
.eq i:nth-child(1){ height: 40%; animation-delay: 0s; }
.eq i:nth-child(2){ height: 90%; animation-delay: .18s; }
.eq i:nth-child(3){ height: 60%; animation-delay: .36s; }
.eq i:nth-child(4){ height: 100%; animation-delay: .1s; }
@keyframes eqBar{ 0%,100%{ transform: scaleY(.35); } 50%{ transform: scaleY(1); } }

/* ---------- Header ---------- */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header::before{
  content: '';
  position: absolute; inset: 0;
  background: var(--navy-deep);
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: -1;
}
.site-header.is-scrolled{ padding: 13px 0; box-shadow: 0 10px 30px rgba(10,10,30,0.18); }
.site-header.is-scrolled::before{ opacity: 1; backdrop-filter: blur(14px); }
.site-header.solid::before{ opacity: 1; }
.site-header.solid{ box-shadow: 0 1px 0 rgba(255,255,255,0.06); }

.header-inner{ display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand{ display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img{ width: 34px; height: auto; }
.brand-name{ font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #fff; letter-spacing: -0.01em; }
.brand-name span{ color: #F0B4E8; }

.main-nav{ display: flex; align-items: center; gap: 4px; }
.main-nav a{
  position: relative;
  padding: 10px 15px;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  border-radius: var(--radius-pill);
  transition: color .3s ease, background .3s ease;
  white-space: nowrap;
}
.main-nav a:hover{ color: #fff; background: rgba(255,255,255,0.08); }
.main-nav a.active{ color: #fff; background: rgba(255,255,255,0.12); }
.main-nav a.active::after{
  content:'';
  position: absolute; left: 15px; right: 15px; bottom: 4px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--magenta-2), #F5B8EC);
}

.header-cta{ display: flex; align-items: center; gap: 12px; }
.main-nav-cta{ display: none; }

.nav-toggle{
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-toggle span{ width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform .35s var(--ease), opacity .35s var(--ease); }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px){
  .header-cta .btn-outline{ display: none; }
}
@media (max-width: 900px){
  .main-nav{
    position: fixed; top: 0; right: 0; height: 100vh; width: min(340px, 84vw);
    background: var(--navy-deep);
    flex-direction: column; align-items: stretch;
    padding: 100px 28px 40px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    box-shadow: -20px 0 50px rgba(0,0,0,0.3);
    overflow-y: auto;
  }
  .main-nav.open{ transform: translateX(0); }
  .main-nav a{ padding: 14px 16px; font-size: 17px; }
  .main-nav a.active::after{ left: 16px; right: 16px; }
  .main-nav-cta{ display: flex !important; margin-top: 18px; }
  .header-cta .btn{ display: none; }
  .nav-toggle{ display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
  padding: 130px 0 90px;
}
.hero.hero-compact{ min-height: 0; padding: 170px 0 100px; }

.aurora{ position: absolute; inset: -10%; z-index: 0; filter: blur(60px) saturate(130%); }
.aurora span{ position: absolute; border-radius: 50%; opacity: 0.55; will-change: transform; }
.aurora .a1{ width: 620px; height: 620px; left: -140px; top: -160px; background: radial-gradient(circle, var(--magenta) 0%, transparent 70%); animation: float1 22s ease-in-out infinite; }
.aurora .a2{ width: 700px; height: 700px; right: -180px; top: 0; background: radial-gradient(circle, var(--navy-mid) 0%, transparent 70%); animation: float2 26s ease-in-out infinite; }
.aurora .a3{ width: 520px; height: 520px; left: 30%; bottom: -240px; background: radial-gradient(circle, var(--magenta-2) 0%, transparent 70%); animation: float3 20s ease-in-out infinite; }

@keyframes float1{ 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(60px,50px) scale(1.12);} }
@keyframes float2{ 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(-70px,40px) scale(1.08);} }
@keyframes float3{ 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(40px,-60px) scale(1.15);} }

.grain{
  position: absolute; inset: 0; z-index: 1;
  opacity: 0.05; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-grid{
  position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 20%, transparent 80%);
}
.hero-glow-line{
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px; z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}

.hero-content{ position: relative; z-index: 2; text-align: center; margin: 0 auto; }
.hero-badge{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px 8px 8px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: #E9E7FF;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}
.hero-badge .dot{
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-badge .dot img{ width: 13px; }
.hero-badge.plain{ padding: 9px 20px; }

.hero h1{
  font-size: clamp(40px, 6.2vw, 82px);
  color: #fff;
  font-weight: 700;
  max-width: 940px;
  margin: 0 auto;
  letter-spacing: -0.025em;
}
.hero h1 em{
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shine 7s linear infinite;
}
@keyframes shine{ to{ background-position: 200% center; } }

.hero p.lede{
  max-width: 610px;
  margin: 26px auto 0;
  color: rgba(233,231,255,0.82);
  font-size: 18px;
  line-height: 1.72;
}
.hero-actions{ display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 40px; flex-wrap: wrap; }

.note-pill{
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 32px;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  background: rgba(144,35,132,0.2);
  border: 1px solid rgba(245,184,236,0.28);
  color: #F4DCF0;
  font-size: 13.5px; font-weight: 600;
}
.note-pill svg{ width: 15px; height: 15px; color: #F5B8EC; flex-shrink: 0; }

.hero-stats{
  position: relative; z-index: 2;
  display: flex; justify-content: center;
  margin-top: 70px;
  flex-wrap: wrap;
  gap: 10px 0;
}
.hero-stats .stat{ padding: 0 42px; text-align: center; border-right: 1px solid rgba(255,255,255,0.12); }
.hero-stats .stat:last-child{ border-right: none; }
.hero-stats .stat b{ display: block; font-family: var(--font-display); font-size: 30px; color: #fff; }
.hero-stats .stat > span{ display: block; margin-top: 4px; font-size: 13px; color: rgba(255,255,255,0.55); }
@media (max-width: 560px){
  .hero-stats .stat{ padding: 0 22px; }
  .hero-stats .stat b{ font-size: 24px; }
}

.scroll-cue{
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
.scroll-cue .line{ width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,0.6), transparent); animation: scrollcue 2s ease-in-out infinite; }
@keyframes scrollcue{ 0%{ transform: scaleY(0); transform-origin: top;} 50%{ transform: scaleY(1); transform-origin: top;} 51%{ transform-origin: bottom;} 100%{ transform: scaleY(0); transform-origin: bottom;} }
@media (max-width: 900px){ .scroll-cue{ display: none; } }

/* ---------- Marquee ---------- */
.marquee{
  background: var(--navy);
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-track{ display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track{ animation-play-state: paused; }
.marquee-item{
  display: flex; align-items: center; gap: 14px;
  padding: 0 34px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  letter-spacing: 0.03em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.marquee-item svg{ width: 14px; height: 14px; color: var(--magenta-soft); }
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

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

/* ---------- Feature cards ---------- */
.features{ padding: 120px 0; }
.feature-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px){ .feature-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .feature-grid{ grid-template-columns: 1fr; } }

.feature-card{
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease);
}
.feature-card:hover{ transform: translateY(-8px); background: #fff; box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-icon{
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: var(--shadow-magenta);
}
.feature-icon svg{ width: 26px; height: 26px; color: #fff; }
.feature-card h3{ font-size: 19px; color: var(--navy); margin-bottom: 10px; }
.feature-card p{ color: var(--ink-soft); font-size: 15px; line-height: 1.65; }

/* ---------- Services split ---------- */
.services{ padding: 20px 0 120px; }
.service-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 860px){ .service-grid{ grid-template-columns: 1fr; } }

.service-card{
  position: relative;
  border-radius: var(--radius-lg);
  padding: 92px 40px 44px;
  overflow: hidden;
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card.dark{ background: var(--grad-brand); color: #fff; }
.service-card.light{ background: var(--mist); border: 1px solid var(--line); }
.service-card .tag{
  position: absolute; top: 36px; left: 40px;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 14px; border-radius: var(--radius-pill);
}
.service-card.dark .tag{ background: rgba(255,255,255,0.14); color: #fff; }
.service-card.light .tag{ background: rgba(144,35,132,0.1); color: var(--magenta); }
.service-card h3{ font-size: clamp(24px, 2.6vw, 28px); margin-bottom: 14px; }
.service-card.dark h3{ color: #fff; }
.service-card.light h3{ color: var(--navy); }
.service-card p{ font-size: 15.5px; line-height: 1.7; margin-bottom: 28px; max-width: 430px; }
.service-card.dark p{ color: rgba(255,255,255,0.82); }
.service-card.light p{ color: var(--ink-soft); }
.service-card .btn{ align-self: flex-start; }
@media (max-width: 560px){
  .service-card{ padding: 86px 26px 34px; }
  .service-card .tag{ left: 26px; }
}

/* ---------- DJ roster ---------- */
.djs{ padding: 120px 0; background: var(--mist); }
.dj-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1080px){ .dj-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .dj-grid{ grid-template-columns: 1fr; } }

.dj-card{
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.dj-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }

.dj-media{
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--navy-deep);
}
.dj-media img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform .9s var(--ease);
}
.dj-card:hover .dj-media img{ transform: scale(1.06); }
.dj-media::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,25,72,0.88) 0%, rgba(26,25,72,0.25) 34%, transparent 62%);
}
.dj-genre{
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}

.dj-body{ padding: 26px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.dj-body h3{ font-size: 21px; color: var(--navy); margin-bottom: 12px; }
.dj-body p{ font-size: 14.5px; line-height: 1.68; color: var(--ink-soft); flex: 1; }
.dj-foot{
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--line);
}
.dj-price span{
  display: block; margin-bottom: 3px;
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.dj-price b{ font-family: var(--font-display); font-size: 18px; color: var(--navy); white-space: nowrap; }
.dj-price b.soft{ font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.dj-foot .btn{ flex-shrink: 0; padding: 10px 18px; font-size: 13px; }

/* ---------- Steps timeline ---------- */
.steps{ padding: 120px 0; }
.steps-list{ display: flex; flex-direction: column; margin-top: 20px; }
.step-row{
  display: grid; grid-template-columns: 90px 1fr; gap: 28px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  align-items: flex-start;
}
.step-row:last-child{ border-bottom: 1px solid var(--line); }
.step-num{
  font-family: var(--font-display); font-weight: 800; font-size: 34px;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--magenta);
  line-height: 1;
  transition: color .4s ease;
}
.step-row:hover .step-num{ color: var(--magenta); }
.step-body h3{ font-size: 21px; color: var(--navy); margin-bottom: 10px; }
.step-body p{ color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; max-width: 640px; }
.step-badge{
  display: inline-block; margin-top: 12px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--magenta); background: rgba(144,35,132,0.09);
  padding: 6px 13px; border-radius: var(--radius-pill);
}
@media (max-width: 640px){
  .step-row{ grid-template-columns: 1fr; gap: 12px; }
  .step-num{ font-size: 28px; }
}

/* ---------- Dark band ---------- */
.band-dark{
  position: relative;
  background: var(--grad-brand);
  color: #fff;
  padding: 110px 0;
  overflow: hidden;
}
.band-dark .hero-grid{ opacity: 0.5; }
.band-inner{ position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
@media (max-width: 860px){ .band-inner{ grid-template-columns: 1fr; gap: 44px; } }
.band-dark h2{ color: #fff; font-size: clamp(28px, 3.6vw, 40px); margin-top: 14px; }
.band-dark p{ color: rgba(255,255,255,0.82); font-size: 17px; line-height: 1.75; margin-top: 18px; max-width: 560px; }
.band-actions{ margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

.band-figure{
  position: relative;
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
}
.band-figure img{ width: 46%; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35)); animation: drift 8s ease-in-out infinite; }
@keyframes drift{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }
.band-figure::before{
  content:''; position:absolute; inset: 18px;
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: calc(var(--radius-lg) - 6px);
}

.mini-stats{ display: flex; gap: 36px; margin-top: 36px; flex-wrap: wrap; }
.mini-stats .m-stat b{ display: block; font-family: var(--font-display); font-size: 26px; color: #fff; }
.mini-stats .m-stat > span{ display: block; margin-top: 4px; font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Value list ---------- */
.value-grid{ display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
@media (max-width: 700px){ .value-grid{ grid-template-columns: 1fr; } }
.value-item{
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 26px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.value-item:hover{ transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-item.wide{ grid-column: 1 / -1; }
.value-num{
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px;
  background: rgba(144,35,132,0.09); color: var(--magenta);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
}
.value-item p{ color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; padding-top: 7px; }

/* ---------- Mission / Vision ---------- */
.mv-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 800px){ .mv-grid{ grid-template-columns: 1fr; } }
.mv-card{
  background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px;
}
.mv-card .eyebrow{ margin-bottom: 16px; }
.mv-card h3{ font-size: 24px; color: var(--navy); margin-bottom: 16px; }
.mv-card p{ color: var(--ink-soft); font-size: 15.5px; line-height: 1.8; }
@media (max-width: 560px){ .mv-card{ padding: 30px 26px; } }

/* ---------- CTA banner ---------- */
.cta-banner{
  position: relative;
  margin: 0 auto 120px;
  max-width: 1220px;
  border-radius: var(--radius-lg);
  background: var(--grad-brand);
  padding: 72px 60px;
  text-align: center;
  overflow: hidden;
}
.cta-banner .hero-grid{ opacity: 0.4; }
.cta-banner h2{ position: relative; z-index: 2; color: #fff; font-size: clamp(26px, 3.6vw, 38px); }
.cta-banner p{ position: relative; z-index: 2; color: rgba(255,255,255,0.8); margin: 14px auto 0; font-size: 16px; max-width: 480px; }
.cta-banner .hero-actions{ position: relative; z-index: 2; margin-top: 32px; }
@media (max-width: 640px){ .cta-banner{ padding: 50px 24px; margin-bottom: 90px; border-radius: var(--radius-md); } }

/* ---------- Contact ---------- */
.contact-wrap{ display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 34px; padding: 0 0 130px; align-items: start; }
@media (max-width: 900px){ .contact-wrap{ grid-template-columns: 1fr; } }

.form-card{
  background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 44px;
}
@media (max-width: 560px){ .form-card{ padding: 30px 24px; } }
.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
@media (max-width: 560px){ .form-grid{ grid-template-columns: 1fr; } }
.form-field{ display: flex; flex-direction: column; gap: 8px; }
.form-field.full{ grid-column: 1 / -1; }
.form-field label{ font-size: 13px; font-weight: 600; color: var(--navy); font-family: var(--font-display); }
.form-field input, .form-field textarea{
  border: 1px solid var(--line); border-radius: 12px; padding: 13px 16px;
  font-size: 15px; color: var(--ink); background: #fff;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.form-field input:focus, .form-field textarea:focus{
  outline: none; border-color: var(--magenta); box-shadow: 0 0 0 4px rgba(144,35,132,0.12);
}
.form-field textarea{ resize: vertical; min-height: 130px; }
.form-note{ font-size: 12.5px; color: var(--muted); margin-top: 16px; line-height: 1.6; }
.form-success{
  display: none; align-items: flex-start; gap: 12px; margin-top: 18px;
  background: rgba(45,44,128,0.08); color: var(--navy);
  border-radius: 12px; padding: 14px 18px; font-size: 14px; font-weight: 600; line-height: 1.55;
}
.form-success.show{ display: flex; }
.form-success svg{ width: 20px; height: 20px; flex-shrink: 0; color: var(--magenta); margin-top: 1px; }

.contact-info{ display: flex; flex-direction: column; gap: 18px; }
.info-card{ background: var(--grad-brand); color: #fff; border-radius: var(--radius-lg); padding: 34px; }
.info-card h3{ color: #fff; font-size: 19px; margin-bottom: 18px; }
.info-line{ display: flex; align-items: center; gap: 14px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,0.14); }
.info-line:first-of-type{ border-top: none; }
.info-line .ic{ width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-line .ic svg{ width: 17px; height: 17px; }
.info-line a, .info-line span{ font-size: 15px; font-weight: 500; word-break: break-word; }
.info-line a:hover{ text-decoration: underline; }
.info-badge{
  margin-top: 20px; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); padding: 9px 16px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 600;
}
.info-badge svg{ width: 14px; height: 14px; color: #F5B8EC; }

.social-row{ display: flex; gap: 12px; }
.social-btn{
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--mist); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s var(--ease), background .35s ease, border-color .35s ease;
}
.social-btn svg{ width: 19px; height: 19px; color: var(--navy); transition: color .3s ease; }
.social-btn:hover{ transform: translateY(-4px); background: var(--grad-brand); border-color: transparent; }
.social-btn:hover svg{ color: #fff; }

/* ---------- Over ons symbol hero ---------- */
.symbol-hero{ display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.symbol-hero .glyph-wrap{ width: 210px; height: 142px; margin: 0 auto 34px; position: relative; display: flex; align-items: center; justify-content: center; }
.symbol-hero .glyph-wrap img{ width: 100%; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.35)); }
.glyph-ring{
  position: absolute; inset: -34px;
  border: 1px dashed rgba(255,255,255,0.2); border-radius: 50%;
  animation: spin 30s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }

/* ---------- Footer ---------- */
.site-footer{ background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 90px 0 0; }
.footer-grid{ display: grid; grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; row-gap: 44px; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }

.footer-brand .brand{ margin-bottom: 18px; }
.footer-brand p{ font-size: 14.5px; line-height: 1.7; max-width: 300px; color: rgba(255,255,255,0.55); }
.footer-col h4{ color: #fff; font-family: var(--font-display); font-size: 13.5px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul{ display: flex; flex-direction: column; gap: 12px; }
.footer-col a{ font-size: 14.5px; color: rgba(255,255,255,0.6); transition: color .3s ease, padding-left .3s ease; }
.footer-col a:hover{ color: #fff; padding-left: 4px; }
.footer-col .foot-social{ display: flex; gap: 10px; margin-top: 18px; }
.footer-col .foot-social a{
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  padding-left: 0;
}
.footer-col .foot-social svg{ width: 16px; height: 16px; }
.footer-col .foot-social a:hover{ background: var(--magenta); padding-left: 0; }

.footer-bottom{ display: flex; align-items: center; justify-content: space-between; padding: 26px 0; font-size: 13px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 10px; }

/* ---------- Utility ---------- */
.text-center{ text-align: center; }
::selection{ background: var(--magenta); color: #fff; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--magenta); outline-offset: 3px; border-radius: 4px;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .intro-reveal{ display: none; }
  .intro-active .hero-content > *{ opacity: 1; }
  .reveal{ opacity: 1; transform: none; }
}
