:root {
  color-scheme: dark;
  --bg: #010307;
  --panel: #07111f;
  --panel-light: #102947;
  --text: #f8fbff;
  --muted: #a9b9c9;
  --accent: #11baf0;
  --accent-2: #70f7ff;
  --steel: #cfd5dd;
  --steel-dark: #3c4249;
  --blue-deep: #0739b8;
  --line: rgba(190, 220, 240, 0.18);
  --shadow: 0 26px 80px rgba(0, 16, 40, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% 0%, rgba(112, 247, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 76% 18%, rgba(7, 57, 184, 0.34), transparent 34rem),
    linear-gradient(180deg, #000 0%, #020815 44%, #000 100%);
  color: var(--text);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.navbar,
.section-pad,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.brand-logo {
  width: 78px;
  height: 44px;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(207, 213, 221, 0.55), 0 0 24px rgba(17, 186, 240, 0.42);
}

.nav-links {
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--accent-2);
}

.section-pad {
  padding: 86px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 48px;
  min-height: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
  font-size: 1.55rem;
}

.hero-copy,
.section-heading p,
.about-copy,
.contact-info p,
.contact-list {
  color: var(--muted);
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent), var(--blue-deep));
  color: #010307;
  box-shadow: 0 14px 34px rgba(17, 186, 240, 0.28);
}

.button.secondary {
  background: rgba(207, 213, 221, 0.08);
  border-color: rgba(207, 213, 221, 0.34);
}

.hero-card,
.service-card,
.about-panel,
.contact-form,
.photo-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(112, 247, 255, 0.12), rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, rgba(207, 213, 221, 0.08), rgba(60, 66, 73, 0.04));
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
  border-radius: 32px;
}

.stage-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, rgba(112, 247, 255, 0.82), rgba(17, 186, 240, 0.48) 34%, rgba(7, 57, 184, 0.75) 70%, rgba(0, 0, 0, 0.92)),
    linear-gradient(135deg, rgba(207, 213, 221, 0.26), transparent 44%),
    #020815;
}

.stage-visual::before,
.stage-visual::after {
  position: absolute;
  inset: auto -20% 0;
  height: 44%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(207, 213, 221, 0.2), transparent);
  transform: rotate(-12deg);
}

.stage-visual::after {
  top: 8%;
  bottom: auto;
  transform: rotate(14deg);
}

.stage-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(207, 213, 221, 0.56), 0 24px 60px rgba(0, 0, 0, 0.72);
}

.sound-wave {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 74%;
  aspect-ratio: 1;
  border: 1px solid rgba(112, 247, 255, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.wave-two {
  width: 92%;
  border-color: rgba(207, 213, 221, 0.22);
}

.wave-three {
  width: 112%;
  border-color: rgba(7, 57, 184, 0.36);
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.hero-stat-grid div {
  padding: 24px;
  border-top: 1px solid var(--line);
}

.hero-stat-grid div + div {
  border-left: 1px solid var(--line);
}

.hero-stat-grid strong {
  display: block;
  font-size: 2rem;
}

.hero-stat-grid span {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: end;
  max-width: none;
  gap: 32px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  min-height: 320px;
  padding: 30px;
  border-radius: 28px;
}

.icon {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  border-radius: 20px;
  background: var(--panel-light);
  box-shadow: inset 0 0 0 1px var(--line);
}

.icon.lighting {
  background: radial-gradient(circle at 50% 18%, var(--accent-2) 0 16%, transparent 17%), linear-gradient(160deg, rgba(112, 247, 255, 0.78), rgba(207, 213, 221, 0.08));
}

.icon.audio {
  background: repeating-linear-gradient(90deg, rgba(112, 247, 255, 0.86) 0 7px, transparent 7px 14px), #06162a;
}

.icon.video {
  background: linear-gradient(135deg, rgba(112, 247, 255, 0.9), rgba(7, 57, 184, 0.9), rgba(207, 213, 221, 0.68));
}

.gallery-heading {
  margin-bottom: 24px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}

.photo-card {
  overflow: hidden;
  margin: 0;
  border-radius: 26px;
  background: var(--panel);
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-card.wide {
  grid-column: span 2;
}

.photo-card.tall {
  grid-row: span 2;
}

.about-panel {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 36px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 32px;
}

.about-copy p:first-child {
  margin-top: 0;
}

.contact {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 40px;
}

.contact-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.contact-list li + li {
  margin-top: 12px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 28px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0, 8, 20, 0.76);
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .hero,
  .split-heading,
  .about-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-card.large,
  .photo-card.wide,
  .photo-card.tall {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .section-pad {
    padding: 62px 0;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

.honeypot {
  display: none;
}

.submission-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: radial-gradient(circle at top, rgba(0, 183, 255, 0.18), transparent 38%), #03070d;
}

.submission-card {
  width: min(100%, 640px);
  padding: 2.5rem;
  border: 1px solid rgba(103, 232, 249, 0.28);
  border-radius: 28px;
  background: rgba(7, 13, 24, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.submission-card h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.submission-card p:not(.eyebrow) {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.submission-card.error {
  border-color: rgba(248, 113, 113, 0.55);
}
