:root{
  --accentA: rgba(0,240,255,.14);
  --accentB: rgba(140,0,255,.10);
  --accentC: rgba(0,255,170,.08);

  --bg:#07090c;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --line:rgba(255,255,255,.12);
  --accent:#00f0ff;

  --radius:18px;
  --shadow:0 24px 80px rgba(0,0,0,.65);
  --max:1120px;
}

*{ box-sizing:border-box }
html{ scroll-behavior:smooth }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 650px at 15% -10%, var(--accentA), transparent 58%),
    radial-gradient(900px 550px at 92% 12%, var(--accentB), transparent 55%),
    radial-gradient(700px 520px at 55% 105%, var(--accentC), transparent 55%),
    var(--bg);
  overflow-x:hidden;
}
/* =========================
   iOS SAFE NO-HORIZONTAL-SCROLL
   (does NOT break vertical scrolling)
   ========================= */

/* Prevent tiny overflow from blobs/filters without killing scroll */
html{ overflow-x: clip; }
body{ overflow-x: clip; }

/* Make pseudo-elements (blobs) not affect layout width */
.section::before,
.hero::before{
  max-width: 100%;
}

/* If any element still leaks width, this will stop it */
.container, .section-panel, .nav, .hero, .work-stage{
  max-width: 100%;
}

/* iOS viewport quirk fix (safer than forcing body width) */
@supports (width: 100dvw){
  html{ width: 100dvw; }
  body{ width: 100%; }
}

a{ color:inherit; text-decoration:none }

/* =========================
   CONTAINER (mobile-safe)
   ========================= */
.container{
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* HARD STOP: avoid “wide right side” on mobile */
img, svg, video, canvas{ max-width:100%; height:auto; display:block; }

/* =========================
   TEXTURES
   ========================= */
.grain{
  pointer-events:none;
  position:fixed;
  inset:0;
  opacity:0.08;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.dotfield{
  position:absolute;
  inset:0;
  opacity:.18;
  background-image: radial-gradient(rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 14px 14px;
  mask-image: radial-gradient(circle at 30% 20%, black 20%, transparent 70%);
  pointer-events:none;
}
.vignette{
  position:absolute;
  inset:-2px;
  background: radial-gradient(circle at 50% 35%, transparent 35%, rgba(0,0,0,.60) 85%);
  pointer-events:none;
}

/* =========================
   PANELS
   ========================= */
.section-panel{
  position:relative;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.section-panel--pad{ padding:28px }

/* =========================
   NAV
   ========================= */
.nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(10,12,15,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:0.18em;
}
.brand__mark{
  width:28px; height:28px;
  display:grid; place-items:center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius:10px;
  background: rgba(255,255,255,0.04);
}
.brand__name{ font-size:12px }

.nav__links{
  display:flex;
  align-items:center;
  gap:22px;
  font-size:13px;
  color: rgba(255,255,255,0.82);
}
.nav__links a{ opacity:0.9 }
.nav__links a:hover{ opacity:1 }

.nav__burger{
  display:none;
  width:44px; height:40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  cursor:pointer;
}
.nav__burger span{
  display:block;
  width:18px; height:2px;
  margin:4px auto;
  background: rgba(255,255,255,0.85);
  border-radius:2px;
}
.nav__mobile{
  display:none;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 24px 18px;
}
.nav__mobile a{
  display:block;
  padding: 12px 6px;
  color: rgba(255,255,255,0.86);
}

/* =========================
   BUTTONS
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.30);
  color: rgba(255,255,255,.92);
  font-weight: 600;
  font-size: 13px;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(0,240,255,.50);
  box-shadow: 0 18px 60px rgba(0,240,255,.10);
}
.btn--ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
}
.btn--sm{ padding:10px 14px; border-radius: 12px }
.btn--wide{ width:100%; padding: 14px 16px; border-radius: 16px }

/* =========================
   TYPE
   ========================= */
.kicker{
  letter-spacing:0.16em;
  text-transform:uppercase;
  font-size: 12px;
  color: rgba(255,255,255,0.74);
}
.h1{
  margin: 14px 0 10px;
  font-size: clamp(44px, 5vw, 78px);
  line-height: .94;
  letter-spacing:-0.02em;
}
.h2{
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing:-0.01em;
}
.h3{ margin: 12px 0 6px; font-size: 18px }
.lead{
  max-width: 56ch;
  color: rgba(255,255,255,0.80);
  line-height:1.6;
}
.muted{ color: var(--muted) }

/* =========================
   HERO (layering fixed)
   ========================= */
.hero{
  position:relative;
  padding: 72px 0 54px;
  isolation:isolate; /* clean stacking context */
}

/* hero blobs centered so they can’t widen mobile */
.hero::before{
  content:"";
  position:absolute;
  top:-300px;
  bottom:-300px;
  left:50%;
  width:min(1600px, 180vw);
  transform: translateX(-50%);
  z-index:-2;
  pointer-events:none;
  background:
    radial-gradient(1000px 600px at 20% 0%, rgba(0,240,255,.32), transparent 60%),
    radial-gradient(1000px 600px at 85% 5%, rgba(160,0,255,.24), transparent 65%);
  filter: blur(70px);
  opacity:1;
}

.hero__bg{
  position:absolute;
  inset:0;
  overflow:hidden;
  z-index:0; /* NOT negative */
  pointer-events:none;
}
.hero__bg::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.75), rgba(0,0,0,.25) 55%, rgba(0,0,0,.75)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=2200&q=60");
  background-size: cover;
  background-position: center;
  filter: blur(2px) saturate(1.05);
  transform: scale(1.03);
  opacity:.55;
}

.hero__inner{
  position:relative;
  z-index:2; /* content above bg + fade */
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items:start;
}

.hero__cta{
  display:flex;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}

.hero__trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
}
.hero__trust span{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 8px 10px;
  border-radius: 999px;
}

.hero__panel{ display:flex; flex-direction:column; gap:14px }

/* fade sits over image only near bottom */
.hero__fade{
  position:absolute;
  left:0; right:0; bottom:-1px;
  height: 240px;
  z-index:1;
  pointer-events:none;
  background: linear-gradient(
    180deg,
    rgba(7,9,12,0) 0%,
    rgba(7,9,12,0.20) 30%,
    rgba(7,9,12,0.65) 68%,
    rgba(7,9,12,1) 100%
  );
}

/* =========================
   HERO RIGHT CARD
   ========================= */
.hero-card{ position:relative }
.hero-card__inner{ position:relative; padding:18px }
.hero-card__title{
  font-weight:800;
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 12px;
}
.hero-card__items{ display:grid; gap:10px }

.mini{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
}
.mini__t{ font-weight:700; font-size: 13px }
.mini__d{ font-size: 12px; color: rgba(255,255,255,0.70); margin-top:4px }

/* =========================
   STATS + PILL HOVER GLOW
   ========================= */
.stats{
  position:relative;
  z-index:3; /* above fade */
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}

.stat{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 12px 12px;
  position:relative;
  transition: transform .18s ease, border-color .2s ease, box-shadow .25s ease, background .25s ease;
}
.stat__num{ font-weight:800; font-size: 18px; letter-spacing:-0.02em }
.stat__label{ font-size:12px; color: rgba(255,255,255,0.70); margin-top:6px }

.stat::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  pointer-events:none;
  opacity: 0;
  transition: opacity .25s ease;
  background: radial-gradient(220px 140px at 30% 20%, rgba(0,240,255,.35), transparent 60%);
  filter: blur(10px);
}
.stat:hover{
  transform: translateY(-2px);
  border-color: rgba(0,240,255,.35);
  background: rgba(255,255,255,.05);
  box-shadow:
    0 22px 70px rgba(0,240,255,.10),
    0 18px 60px rgba(0,0,0,.45);
}
.stat:hover::before{ opacity: 1; }

/* =========================
   SECTIONS + HEADS
   ========================= */
.section{ padding: 52px 0; position:relative; isolation:isolate; }

.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 22px;
}

/* =========================
   SAFE ALTERNATING BLOBS (no mobile widening)
   ========================= */
.section::before{
  content:"";
  position:absolute;
  top:-240px;
  bottom:-240px;
  left:50%;
  width:min(1400px, 160vw);
  transform: translateX(-50%);
  z-index:-1;
  pointer-events:none;
  filter: blur(60px);
  opacity:.95;
}
.section:nth-of-type(odd)::before{
  background:
    radial-gradient(820px 500px at 18% 25%, rgba(0,240,255,.26), transparent 65%),
    radial-gradient(820px 500px at 82% 75%, rgba(160,0,255,.18), transparent 70%);
}
.section:nth-of-type(even)::before{
  background:
    radial-gradient(820px 500px at 82% 20%, rgba(0,255,170,.22), transparent 65%),
    radial-gradient(820px 500px at 15% 80%, rgba(140,0,255,.18), transparent 70%);
}

/* =========================
   GRID + CARDS
   ========================= */
.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.neon-edge{ position:relative }
.neon-edge:before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  background: radial-gradient(500px 180px at 20% 0%, rgba(0,240,255,.18), transparent 60%);
  opacity:0;
  transition: opacity .2s ease;
  pointer-events:none;
}
.neon-edge:hover:before{ opacity:1; }

.card{
  border-radius: var(--radius);
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.28);
  box-shadow: 0 16px 60px rgba(0,0,0,.45);
  transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease;
  position:relative;
  overflow:hidden;
}
.card:hover{
  transform: translateY(-3px);
  border-color: rgba(0,240,255,.30);
  box-shadow: 0 26px 90px rgba(0,0,0,.65);
}
.card__icon{
  width:38px; height:38px;
  display:grid; place-items:center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}
.list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.74);
  font-size: 12px;
  line-height: 1.7;
}
.card__link{
  display:inline-block;
  margin-top: 14px;
  color: rgba(0,240,255,.95);
  font-weight: 600;
  font-size: 13px;
}

/* =========================
   WORK
   ========================= */
.case{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items:stretch;
}
.case__media{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  min-height: 320px;
  position: relative;
}
.case__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case__media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
  pointer-events: none;
}

/* Hover swap */
.hover-swap .img-default{ position: relative; z-index: 1; }
.hover-swap .img-hover{
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 2;
  transition: opacity .35s ease;
}
.hover-swap:hover .img-hover{ opacity: 1; }
.hover-swap.is-toggled .img-hover{ opacity: 1; }

.case__body{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 22px 18px;
}
.badge{
  display:inline-block;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  font-size: 12px;
  color: rgba(255,255,255,0.78);
}
.metrics{
  margin: 16px 0 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.metric{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
  border-radius: 14px;
  padding: 12px 12px;
}
.metric__num{ font-weight:800; font-size: 18px; color: rgba(0,240,255,0.92) }
.metric__label{ margin-top:6px; font-size: 12px; color: rgba(255,255,255,0.70) }

/* carousel */
.work-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 18px;
}
.work-nav{ display:flex; gap:10px; flex-wrap:wrap; }
.work-stage{ position:relative; }
.work-slide{ display:none; animation: workFade .24s ease; }
.work-slide.is-active{ display:block; }
@keyframes workFade{
  from{ opacity:0; transform: translateY(6px); }
  to{ opacity:1; transform: translateY(0); }
}
.work-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top: 14px;
}
.dot-indicator{
  width:8px; height:8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.dot-indicator.is-on{
  border-color: rgba(0,240,255,.45);
  background: rgba(0,240,255,.22);
}

/* =========================
   MUSIC
   ========================= */
.section--music{
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.music{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items:center;
}
.music__viz{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.22);
  padding: 18px;
  text-align:center;
}
.wave{
  height: 140px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap: 6px;
  margin: 8px 0 10px;
}
.wave span{
  width: 8px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0,240,255,0.90), rgba(255,255,255,0.16));
  animation: wave 1.4s ease-in-out infinite;
  opacity: 0.9;
}
.wave span:nth-child(2){animation-delay:.1s}
.wave span:nth-child(3){animation-delay:.2s}
.wave span:nth-child(4){animation-delay:.3s}
.wave span:nth-child(5){animation-delay:.4s}
.wave span:nth-child(6){animation-delay:.5s}
.wave span:nth-child(7){animation-delay:.6s}
.wave span:nth-child(8){animation-delay:.7s}
.wave span:nth-child(9){animation-delay:.8s}
.wave span:nth-child(10){animation-delay:.9s}
.wave span:nth-child(11){animation-delay:1.0s}
.wave span:nth-child(12){animation-delay:1.1s}
.wave span:nth-child(13){animation-delay:1.2s}
.wave span:nth-child(14){animation-delay:1.3s}
.wave span:nth-child(15){animation-delay:1.4s}
@keyframes wave{ 0%,100%{height: 18px} 50%{height: 120px} }

/* =========================
   ABOUT / STEPS
   ========================= */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 18px;
}
.step__num{
  font-weight:800;
  color: rgba(0,240,255,0.92);
  letter-spacing:0.08em;
}
.step__title{ margin-top: 10px; font-weight: 800 }
.step__desc{ margin-top: 6px; font-size: 13px; line-height: 1.6 }

.music-services-wrapper, .music-wrapper{
  max-width: 820px;
  margin: 0 auto;
}

/* =========================
   CONTACT
   ========================= */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items:start;
}
.contact__details{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 14px;
}
.pill{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,0.76);
}
.form{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 18px;
}
.form label{
  display:block;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 12px;
}
.form input, .form select, .form textarea{
  width:100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.22);
  color: rgba(255,255,255,0.92);
  outline: none;
}
.form input:focus, .form select:focus, .form textarea:focus{
  border-color: rgba(0,240,255,0.45);
  box-shadow: 0 0 0 4px rgba(0,240,255,0.10);
}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form__fine{ font-size: 12px; margin: 10px 0 0 }

/* =========================
   FOOTER
   ========================= */
.footer{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
  background: rgba(0,0,0,0.18);
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
}
.footer__right{
  display:flex;
  gap: 16px;
  flex-wrap:wrap;
  color: rgba(255,255,255,0.74);
  font-size: 13px;
}

/* =========================
   SERVICES OVERLAY / DROPDOWN
   ========================= */
.services-overlay{
  position: fixed;
  inset: 0;
  z-index: 9999;

  /* default: doesn't block scroll/touches */
  pointer-events: none;
}

.services-overlay.is-open{
  pointer-events: auto;
}

/* overlay backdrop should not block scroll either */
.services-overlay::before{
  content:"";
  position:absolute;
  inset:0;
  background: transparent;
  pointer-events:none;
}
.services-menu-portal{
  position: fixed;
  width: 320px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,12,16,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0,0,0,.65);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, box-shadow .3s ease, border-color .25s ease;
}

/* dropdown glow */
.services-menu-portal::before{
  content:"";
  position:absolute;
  inset:-12px;
  border-radius: 22px;
  pointer-events:none;
  opacity: 0;
  transition: opacity .3s ease;
  background: radial-gradient(500px 260px at 50% 0%, rgba(0,240,255,.22), transparent 70%);
  filter: blur(40px);
}

.services-overlay.is-open .services-menu-portal{
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(0,240,255,.30);
  box-shadow:
    0 35px 120px rgba(0,240,255,.12),
    0 40px 120px rgba(0,0,0,.65);
}
.services-overlay.is-open .services-menu-portal::before{ opacity: 1; }

.services-menu-portal a{
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  margin-bottom: 8px;
  transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease;
}
.services-menu-portal a:last-child{ margin-bottom:0; }
.services-menu-portal a:hover{
  transform: translateY(-2px);
  border-color: rgba(0,240,255,.40);
  background: rgba(0,240,255,.08);
  box-shadow: 0 18px 60px rgba(0,240,255,.12);
}
.svc-ic{
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(0,240,255,.9);
  font-size: 16px;
}
.svc-txt strong{
  display:block;
  font-size: 13px;
  letter-spacing: -0.01em;
}
.svc-txt em{
  display:block;
  font-style: normal;
  font-size: 11px;
  color: rgba(255,255,255,.65);
  margin-top: 2px;
}

/* =========================
   GLOWS THAT MATCH YOUR HTML
   ========================= */

/* See services button (id in your HTML) */
#seeServicesBtn{
  position: relative;
  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease;
}
#seeServicesBtn::before{
  content:"";
  position:absolute;
  inset:-3px;
  border-radius: inherit;
  pointer-events:none;
  opacity: 0;
  transition: opacity .25s ease;
  background: radial-gradient(240px 120px at 40% 50%, rgba(0,240,255,.35), transparent 65%);
  filter: blur(10px);
}
#seeServicesBtn:hover{
  transform: translateY(-2px);
  border-color: rgba(0,240,255,.45);
  box-shadow:
    0 20px 70px rgba(0,240,255,.14),
    0 18px 60px rgba(0,0,0,.45);
}
#seeServicesBtn:hover::before{ opacity: 1; }

/* Send inquiry button (matches your actual submit button) */
.form button.btn.btn--wide{
  position: relative;
  transition: transform .18s ease, border-color .25s ease, box-shadow .25s ease;
}
.form button.btn.btn--wide::before{
  content:"";
  position:absolute;
  inset:-4px;
  border-radius: inherit;
  pointer-events:none;
  opacity: 0;
  transition: opacity .25s ease;
  background: radial-gradient(260px 140px at 50% 50%, rgba(0,240,255,.35), transparent 65%);
  filter: blur(12px);
}
.form button.btn.btn--wide:hover{
  transform: translateY(-2px);
  border-color: rgba(0,240,255,.50);
  box-shadow:
    0 24px 80px rgba(0,240,255,.18),
    0 20px 70px rgba(0,0,0,.55);
}
.form button.btn.btn--wide:hover::before{ opacity: 1; }

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: repeat(2, 1fr) }
  .case{ grid-template-columns: 1fr }
  .music{ grid-template-columns: 1fr }
  .contact{ grid-template-columns: 1fr }
}

@media (max-width: 680px){
  .nav__links{ display:none }
  .nav__burger{ display:block }
  .nav__mobile{ padding-left: 16px; padding-right: 16px; }

  .section{ padding: 38px 0; }
  .section-panel--pad{ padding: 18px; }
  .hero{ padding: 46px 0 28px; }

  /* hero type */
  .h1{
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.05;
    text-align:center;
  }
  .kicker, .lead{ text-align:center; }
  .lead{
    font-size: 16px;
    line-height: 1.7;
    margin-left:auto;
    margin-right:auto;
  }
  .hero__cta{ justify-content:center; }
  .hero__trust{ justify-content:center; }

  /* stats stack */
  .stats{ grid-template-columns: 1fr; }

  /* grids */
  .grid{ grid-template-columns: 1fr; }
  .metrics{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .form__row{ grid-template-columns: 1fr; }

  /* WORK header */
  .work-head{
    align-items:center;
    justify-content:center;
    flex-direction:column;
    text-align:center;
    gap:10px;
  }
  .work-nav{ justify-content:center; }

  /* reduce work image height */
  .case__media{ min-height: 220px; }

  /* =========================
     SERVICES (mobile UI)
     ========================= */
  #services .section__head{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:12px;
  }
  #services .section__head .h2{
    font-size: 26px;
    letter-spacing: 0.14em;
    margin: 0;
  }
  #services .section__head .muted{
    font-size: 16px;
    line-height: 1.6;
    max-width: 30ch;
    margin: 0 auto;
    opacity: .9;
  }

  /* keep cards readable (not awkward centered paragraphs) */
  #services .card{ text-align:left; }
  #services .card .list{ font-size:14px; }

  /* mobile dropdown width */
  .services-menu-portal{ width: min(92vw, 340px); }
}

@media (max-width: 420px){
  .hero__cta{ flex-direction: column; }
  .hero__cta .btn{ width: 100%; }
}