:root {
  --bg: #09090c;
  --bg-soft: #0e1014;
  --surface: #12151b;
  --surface-2: #171b22;
  --surface-3: #1c212a;
  --text: #f4f5f8;
  --text-soft: #c8cbd4;
  --text-dim: #9298a5;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --lime: #c8ff2e;
  --violet: #7759ff;
  --cyan: #54e6ff;
  --orange: #ff7a2f;
  --container: 1180px;
  --header-height: 82px;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 22px 54px rgba(0, 0, 0, 0.35);
  --ease: cubic-bezier(.2,.75,.25,1);
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Bahnschrift", "Segoe UI", "Arial Narrow", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(119, 89, 255, 0.08), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(84, 230, 255, 0.05), transparent 16%),
    linear-gradient(180deg, #08090c 0%, #09090c 52%, #0b0c10 100%);
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

body.menu-open {
  overflow: hidden;
}
.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;
}

.skip-link {
  position: absolute;
  top: -42px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  color: #050507;
  background: var(--lime);
  border-radius: 10px;
}
.skip-link:focus { top: 14px; }

.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(8, 9, 12, 0.42);
  transition: background 180ms ease, border-color 180ms ease;
}
.site-header.scrolled {
  background: rgba(9, 10, 14, 0.88);
  border-color: rgba(255, 255, 255, 0.06);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 48px;
  height: 48px;
}
.brand span {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--text);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-nav a {
  padding: 10px 14px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}
.main-nav a:hover { color: var(--text); }
.nav-cta {
  color: #0b0c10 !important;
  background: linear-gradient(135deg, var(--lime), #dafe73);
  border-radius: 999px;
}
.nav-cta:hover { background: linear-gradient(135deg, #d4ff57, #edff9f); }

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255,255,255,.03);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}
.menu-toggle:hover { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 12px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}
.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 23px; }
.menu-toggle span:nth-child(3) { top: 30px; }
.menu-toggle.is-active span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { top: 23px; transform: rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: calc(var(--header-height) + 8px) 14px auto;
  z-index: 35;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu-inner {
  padding: 12px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: rgba(9, 10, 14, 0.96);
  box-shadow: 0 18px 40px rgba(0,0,0,.32);
}
.mobile-menu-inner a {
  min-height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(255,255,255,.02);
}
.mobile-menu-inner a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.mobile-menu-cta {
  justify-content: center;
  color: #090a0d !important;
  background: linear-gradient(135deg, var(--lime), #efff96) !important;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: calc(var(--header-height) + 64px) 0 0;
}
.hero-lines {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.75), transparent 95%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-glow-one {
  top: 100px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(119, 89, 255, 0.22), transparent 68%);
}
.hero-glow-two {
  right: -120px;
  top: 170px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(84, 230, 255, 0.11), transparent 68%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
  align-items: center;
  gap: 44px;
  min-height: 0;
}
.hero-copy { max-width: 680px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), transparent);
}
.eyebrow-dark { color: var(--cyan); }
.hero h1,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
}
.hero h1 em,
.section-heading h2 em,
.contact h2 em {
  color: var(--lime);
  font-style: normal;
}
.hero-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.72;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}
.button:hover,
.mini-button:hover { transform: translateY(-2px); }
.button-primary,
.mini-button {
  color: #090a0d;
  background: linear-gradient(135deg, var(--lime), #efff96);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.button-ghost,
.mini-button-dark {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}
.button-ghost:hover,
.mini-button-dark:hover { border-color: rgba(255, 255, 255, 0.24); background: rgba(255, 255, 255, 0.06); }
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.hero-tags li {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual { perspective: 1100px; }
.stage-card {
  --spot-x: 50%;
  --spot-y: 35%;
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(200, 255, 46, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01)),
    linear-gradient(180deg, #11141a, #090a0d 75%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transform: rotateX(3deg) rotateY(-3deg);
}
.stage-card::after {
  position: absolute;
  inset: 16px;
  content: "";
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.04);
  pointer-events: none;
}
.stage-noise {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(transparent 0 90%, rgba(255,255,255,.05) 100%),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.18) 0 1px, transparent 1.1px),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,.12) 0 1px, transparent 1.1px);
  background-size: auto, 22px 22px, 28px 28px;
}
.stage-beam {
  position: absolute;
  top: -40px;
  width: 160px;
  height: 320px;
  transform-origin: top center;
  opacity: 0.18;
  clip-path: polygon(47% 0,53% 0,100% 100%,0 100%);
}
.beam-a { left: 8%; background: linear-gradient(to bottom, rgba(119,89,255,.95), transparent); animation: beam-a 3.4s ease-in-out infinite alternate; }
.beam-b { left: 39%; background: linear-gradient(to bottom, rgba(84,230,255,.9), transparent); animation: beam-b 3.2s ease-in-out infinite alternate; }
.beam-c { right: 10%; background: linear-gradient(to bottom, rgba(200,255,46,.95), transparent); animation: beam-c 3.7s ease-in-out infinite alternate; }
.stage-screen {
  position: absolute;
  top: 62px;
  left: 50%;
  transform: translateX(-50%);
  width: 52%;
  padding: 18px 16px;
  display: grid;
  place-items: center;
  gap: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.stage-screen img { animation: logo-pulse 2.9s ease-in-out infinite; }
.stage-screen strong {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.14em;
}
.stage-screen small {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
}
.speaker {
  position: absolute;
  bottom: 74px;
  width: 68px;
  height: 132px;
  padding: 14px 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: linear-gradient(180deg, #191d24, #0d0f13);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}
.speaker-left { left: 8%; }
.speaker-right { right: 8%; }
.speaker i {
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, #0c0d0f 0 48%, #1d2027 49% 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}
.speaker i:first-child { width: 100%; height: 46px; }
.speaker i:last-child { width: 48px; height: 48px; margin: 16px auto 0; }
.dj-console {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  width: 50%;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: linear-gradient(180deg, #1b2028, #0f1116);
}
.dj-console span { width: 16px; height: 16px; border-radius: 50%; background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.4)); opacity: .8; }
.equalizer {
  position: absolute;
  inset: auto 28px 18px;
  height: 44px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
}
.equalizer i {
  width: 10px;
  height: 100%;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--lime), var(--cyan));
  opacity: 0.8;
  transform: scaleY(.35);
  transform-origin: bottom center;
  animation: equalize 1.25s ease-in-out infinite alternate;
  will-change: transform;
}
.equalizer i:nth-child(2n) { animation-duration: 1s; }
.equalizer i:nth-child(3n) { animation-duration: 1.45s; }
.equalizer i:nth-child(4n) { animation-duration: 1.12s; }

.service-ticker {
  margin-top: 56px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.ticker-track {
  width: max-content;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text-soft);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: ticker 24s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}
.ticker-track i { color: var(--lime); font-style: normal; }

.services,
.material,

.services-grid-refined,
.material-grid-refined {
  gap: 18px;
}
.service-card-refined,
.material-card-refined {
  padding: 24px 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(20, 24, 31, 0.96), rgba(14, 17, 22, 0.98));
  border: 1px solid rgba(255,255,255,.07);
}
.minimal-head {
  justify-content: flex-start;
}
.service-card-refined .service-icon {
  height: 84px;
  margin: 14px 0 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
}
.service-card-refined h3,
.material-card-refined h3 {
  font-size: 20px;
  letter-spacing: 0.045em;
}
.service-card-refined p,
.material-card-refined p {
  margin-top: 10px;
  max-width: 28ch;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.62;
}
.service-card-refined:hover,
.material-card-refined:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 18px 32px rgba(0,0,0,.22);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: .94;
  transition: transform 180ms ease, opacity 180ms ease, color 180ms ease;
}
.text-link:hover {
  transform: translateX(2px);
  opacity: 1;
}
.material-grid-refined {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.material-card-refined {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.material-card-refined .material-top {
  margin-bottom: 18px;
}
.material-card-refined .material-state {
  color: var(--text-dim);
  background: rgba(255,255,255,.03);
}
.material-card-refined.is-focused {
  border-color: rgba(200,255,46,.28);
  box-shadow: 0 0 0 1px rgba(200,255,46,.08), 0 18px 34px rgba(0,0,0,.24);
}

.contact { position: relative; padding: 82px 0; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .7fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 28px;
}
.section-heading h2 {
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 0.95;
}
.section-heading::after {
  content: "";
  justify-self: stretch;
  align-self: center;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.14), transparent);
}
.services::before,
.material::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.32;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 14%, transparent 86%, rgba(255,255,255,.02));
}
.services-grid,
.material-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.service-card,
.material-card {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(24,28,35,.92), rgba(14,17,22,.96));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}
.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 220ms var(--ease), border-color 220ms ease, box-shadow 220ms ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,255,46,.22);
  box-shadow: 0 18px 34px rgba(0,0,0,.22), 0 0 0 1px rgba(200,255,46,.04);
}
.service-card-head,
.material-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.service-label,
.material-tag,
.material-state,
.service-chip {
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.service-label,
.material-tag {
  padding: 9px 11px;
  color: #091008;
  background: var(--lime);
}
.service-chip,
.material-state {
  padding: 8px 10px;
  color: var(--text-soft);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
}
.service-icon {
  position: relative;
  height: 90px;
  margin: 14px 0 16px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top, rgba(200,255,46,.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  overflow: hidden;
}
.service-card h3,
.material-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.service-card p,
.material-card p {
  margin: 14px 0 0;
  color: var(--text-soft);
  line-height: 1.58;
}
.service-actions,
.material-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}
.mini-button { min-height: 40px; padding: 0 16px; font-size: 12px; }

.vinyl-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84px;
  height: 84px;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, #17191d 0 4px, #242a34 5px 7px);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}
.vinyl-icon span::after {
  position: absolute;
  inset: 32px;
  content: "";
  border: 6px solid var(--lime);
  border-radius: 50%;
  background: #11161d;
}
.sound-icon { display: flex; align-items: center; justify-content: center; gap: 8px; }
.sound-icon b { width: 7px; border-radius: 999px; background: #dfe6f0; }
.sound-icon b:nth-child(1), .sound-icon b:nth-child(5) { height: 30px; opacity: .38; }
.sound-icon b:nth-child(2), .sound-icon b:nth-child(4) { height: 60px; opacity: .72; }
.sound-icon b:nth-child(3) { height: 88px; background: linear-gradient(180deg, var(--cyan), var(--violet)); }
.light-icon span {
  position: absolute;
  top: -8px;
  width: 94px;
  height: 152px;
  opacity: .65;
  clip-path: polygon(43% 0,57% 0,100% 100%,0 100%);
}
.light-icon span:first-child { left: 15%; transform: rotate(-18deg); background: linear-gradient(to bottom, rgba(119,89,255,.95), transparent); }
.light-icon span:last-child { right: 15%; transform: rotate(18deg); background: linear-gradient(to bottom, rgba(200,255,46,.95), transparent); }
.production-icon { display: flex; align-items: center; justify-content: center; gap: 6px; }
.production-icon span { display: block; width: 48px; height: 68px; border: 2px solid rgba(255,255,255,.72); transform: skewY(-6deg); }
.production-icon span:nth-child(2) { height: 92px; background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 10px rgba(255,255,255,.04); }
.production-icon span:nth-child(3) { transform: skewY(6deg); }

.material {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}
.material-card ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}
.material-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}
.material-card li::before {
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--lime);
}
.material-card.is-focused {
  border-color: rgba(200,255,46,.34);
  box-shadow: 0 0 0 1px rgba(200,255,46,.12), 0 20px 44px rgba(0,0,0,.28);
}

.contact {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0));
}
.contact::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.contact-glow {
  position: absolute;
  right: -220px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,255,46,.13), transparent 68%);
  opacity: 1;
}
.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 52px;
}
.contact h2 {
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 0.93;
}
.contact-copy {
  max-width: 460px;
  margin: 18px 0 0;
  color: var(--text-soft);
  line-height: 1.72;
}
.contact-actions { display: grid; gap: 14px; }
.contact-card {
  min-height: 92px;
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease;
}
.contact-card:hover {
  transform: translateX(6px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.055);
}
.social-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
}
.social-icon svg { width: 24px; height: 24px; fill: currentColor; }
.instagram .social-icon svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.instagram .social-icon .fill-dot { fill: currentColor; stroke: none; }
.whatsapp .social-icon { color: #0d1107; background: var(--lime); }
.instagram .social-icon { color: white; background: linear-gradient(140deg, #6f47f5, #c13b9d 55%, #ff783a); }
.contact-card span:nth-child(2) { display: flex; flex-direction: column; }
.contact-card small {
  margin-bottom: 4px;
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.contact-card strong {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-card > i { color: var(--lime); font-size: 21px; font-style: normal; }

.site-footer {
  padding: 24px 0 34px;
  color: var(--text-dim);
  background: #07080b;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand { color: var(--text); }
.footer-brand img { width: 36px; height: 36px; }
.footer-brand span { font-size: 20px; }
.footer-inner p,
.footer-inner > a:last-child { margin: 0; font-size: 13px; }
.footer-inner > a:last-child { transition: color 180ms ease; }
.footer-inner > a:last-child:hover { color: var(--text); }

.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms var(--ease), transform 680ms var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@keyframes beam-a { to { transform: rotate(4deg); opacity: .26; } }
@keyframes beam-b { to { transform: rotate(-11deg); opacity: .24; } }
@keyframes beam-c { to { transform: rotate(-2deg); opacity: .22; } }
@keyframes logo-pulse { 50% { transform: scale(1.035); opacity: .94; } }
@keyframes equalize { from { transform: scaleY(.28); opacity: .55; } to { transform: scaleY(1); opacity: 1; } }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Performance: keep offscreen and animated areas cheap to render. */
.services,
.material,
.contact {
  contain: paint;
}
.service-card,
.material-card {
  contain: layout paint style;
}
.stage-card,
.service-ticker {
  contain: paint;
}
.stage-card.is-in-view .stage-beam,
.stage-card.is-in-view .stage-screen img,
.stage-card.is-in-view .equalizer i,
.service-ticker.is-in-view .ticker-track {
  animation-play-state: running;
}
.stage-card:not(.is-in-view) .stage-beam,
.stage-card:not(.is-in-view) .stage-screen img,
.stage-card:not(.is-in-view) .equalizer i {
  animation-play-state: paused;
}
@supports (content-visibility: auto) {
  .services,
  .material,
  .contact,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
  }
}


/* Desktop polish: more breathing room and a calmer editorial rhythm. */
@media (min-width: 1081px) {
  .hero {
    padding-top: calc(var(--header-height) + 78px);
  }
  .hero-grid {
    gap: 68px;
  }
  .hero-copy .eyebrow {
    margin-bottom: 24px;
  }
  .hero-lead {
    margin-top: 28px;
    max-width: 570px;
  }
  .hero-actions {
    margin-top: 30px;
  }
  .hero-tags {
    margin-top: 28px;
  }

  .services,
  .material {
    position: relative;
    padding: 112px 0;
  }
  .material {
    padding-top: 118px;
    padding-bottom: 118px;
  }
  .contact {
    padding: 112px 0;
  }

  .section-heading {
    display: block;
    max-width: 820px;
    margin-bottom: 52px;
  }
  .section-heading .eyebrow {
    margin-bottom: 22px;
  }
  .section-heading h2 {
    max-width: 760px;
    font-size: clamp(36px, 3.7vw, 50px);
    line-height: 1.06;
    letter-spacing: .025em;
  }
  .section-heading::after {
    display: block;
    width: 118px;
    height: 1px;
    margin-top: 30px;
    content: "";
    background: linear-gradient(90deg, rgba(200,255,46,.42), rgba(255,255,255,.04));
  }

  .services-grid-refined,
  .material-grid-refined {
    gap: 22px;
  }
  .service-card-refined,
  .material-card-refined {
    padding: 30px 28px;
    border-radius: 22px;
  }
  .service-card-refined .service-icon {
    height: 96px;
    margin: 20px 0 22px;
  }
  .service-card-refined h3,
  .material-card-refined h3 {
    font-size: 22px;
    line-height: 1.08;
  }
  .service-card-refined p,
  .material-card-refined p {
    margin-top: 16px;
    max-width: 40ch;
    font-size: 14px;
    line-height: 1.72;
  }
  .service-card-refined .text-link,
  .material-card-refined .text-link {
    margin-top: 26px;
  }
  .material-card-refined {
    min-height: 250px;
  }
  .material-card-refined .material-top {
    margin-bottom: 24px;
  }

  .contact-inner {
    gap: 92px;
  }
  .contact .eyebrow {
    margin-bottom: 24px;
  }
  .contact h2 {
    max-width: 520px;
    line-height: 1.02;
  }
  .contact-copy {
    margin-top: 24px;
    max-width: 430px;
  }
  .contact-actions {
    gap: 18px;
  }
  .contact-card {
    min-height: 100px;
    padding: 22px 24px;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .contact-inner { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; min-height: 0; }
  .hero-copy { max-width: 740px; }
  .section-heading,
  .contact-inner { gap: 28px; }
  .services-grid,
  .material-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  .stage-card,
  .service-card,
  .material-card,
  .contact-card { box-shadow: none; }
  .hero-glow { opacity: .72; }
  .ticker-track { animation: none; transform: none; }
  .stage-screen img,
  .stage-beam,
  .equalizer i { animation-duration: 2.2s; }

  .material-grid-refined { grid-template-columns: 1fr; }
  .service-card-refined,
  .material-card-refined { padding: 18px; }
  .service-card-refined h3,
  .material-card-refined h3 { font-size: 18px; }
  .service-card-refined p,
  .material-card-refined p { max-width: none; }
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { height: 72px; }
  .brand img { width: 42px; height: 42px; }
  .brand span { font-size: 21px; }
  .menu-toggle { display: inline-flex; justify-content: center; align-items: center; }
  .main-nav { display: none; }

  .hero { padding-top: 104px; }
  .hero-grid { gap: 32px; }
  .hero-copy { max-width: none; }
  .hero h1 { font-size: clamp(34px, 9.4vw, 48px); }
  .hero-lead { font-size: 15px; line-height: 1.66; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .button { width: 100%; min-height: 50px; padding-inline: 18px; font-size: 12px; }
  .hero-tags { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .hero-tags li { width: auto; text-align: center; }

  .stage-card {
    height: 300px;
    border-radius: 22px;
    transform: none;
  }
  .stage-screen { top: 46px; width: 72%; }
  .stage-screen strong { font-size: 22px; }
  .speaker { bottom: 68px; width: 48px; height: 94px; padding: 10px 8px; }
  .speaker-left { left: 6%; }
  .speaker-right { right: 6%; }
  .dj-console { bottom: 46px; width: 56%; height: 54px; gap: 10px; }
  .equalizer { inset: auto 14px 12px; height: 34px; }
  .service-ticker { margin-top: 42px; }
  .ticker-track { font-size: 18px; }

  .services,
  .material,
  .contact { padding: 68px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 24px; }
  .section-heading::after { display: none; }
  .section-heading h2 { font-size: clamp(26px, 8.2vw, 34px); line-height: 1.04; }
  .services-grid,
  .material-grid { grid-template-columns: 1fr; gap: 10px; }
  .service-card,
  .material-card { padding: 16px; border-radius: 16px; }
  .service-card h3,
  .material-card h3 { font-size: 18px; line-height: 1.08; }
  .service-card p,
  .material-card p { margin-top: 10px; font-size: 14px; line-height: 1.58; }
  .service-icon { height: 76px; margin: 12px 0 14px; }
  .service-actions { padding-top: 14px; }

  .contact h2 { font-size: clamp(28px, 8.8vw, 36px); line-height: 1.02; }
  .contact-card { min-height: 84px; padding: 16px; gap: 12px; border-radius: 16px; }
  .social-icon { width: 42px; height: 42px; border-radius: 12px; }
  .contact-card strong { font-size: 18px; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
}


@media (max-width: 520px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .site-header { height: 68px; }
  .header-inner { gap: 10px; }
  .brand { gap: 10px; }
  .brand img { width: 38px; height: 38px; }
  .brand span { font-size: 18px; }
  .menu-toggle { width: 44px; height: 44px; border-radius: 12px; }
  .mobile-menu { inset-inline: 11px; }
  .hero { padding-top: 96px; }
  .eyebrow { margin-bottom: 14px; font-size: 10px; letter-spacing: .2em; }
  .hero-tags { grid-template-columns: 1fr 1fr; }
  .hero-tags li { padding: 8px 10px; font-size: 10px; }
  .stage-card { height: 270px; }
  .stage-screen img { width: 48px; height: 48px; }
  .stage-screen strong { font-size: 18px; }
  .stage-screen small { font-size: 10px; letter-spacing: .18em; }
  .speaker { bottom: 62px; width: 42px; height: 82px; }
  .speaker i:first-child { height: 30px; }
  .speaker i:last-child { width: 40px; height: 40px; margin-top: 10px; }
  .dj-console { height: 46px; }
  .dj-console span { width: 12px; height: 12px; }
  .service-label,
  .material-tag,
  .material-state { font-size: 9px; letter-spacing: .14em; }
  .material-top { align-items: flex-start; flex-direction: column; }
  .contact-copy { font-size: 14px; line-height: 1.6; }
  .contact-card { grid-template-columns: 42px 1fr auto; }
  .contact-card small { font-size: 9px; }
}

@media (max-width: 380px) {
  .brand span { font-size: 16px; }
  .hero h1 { font-size: 30px; }
  .hero-lead { font-size: 14px; }
  .button { min-height: 48px; font-size: 11px; }
  .hero-tags { grid-template-columns: 1fr; }
  .stage-card { height: 246px; }
  .stage-screen { width: 76%; top: 38px; }
  .speaker { display: none; }
  .dj-console { width: 62%; }
  .section-heading h2 { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media (hover: none) and (pointer: coarse) {
  .service-card:hover,
  .material-card:hover,
  .contact-card:hover,
  .button:hover,
  .mini-button:hover,
  .text-link:hover { transform: none; }
}
