/* =====================
   RESET & BASE
   ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100vh;
}

body {
  font-family: 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: #fff;
  background: #000;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

/* =====================
   TUNING VARS
   ===================== */
:root {
  --vid-bright: 0.95;   /* 0.85–1.05 */
  --vid-contrast: 1.12; /* 1.00–1.18 */
  --vid-sat: 1.05;      /* 0.85–1.10 */
}

/* =====================
   VIDEO BACKGROUND (homepage only)
   ===================== */
.video-background {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.video-background video,
.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130vw;
  height: 73.125vw; /* 16:9 */
  min-width: 1300px;
  min-height: 740px;
  transform: translate(-50%, -50%);
  filter: saturate(var(--vid-sat)) contrast(var(--vid-contrast)) brightness(var(--vid-bright));
  opacity: 1;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

@media (max-width: 768px) {
  .video-background iframe {
    width: 160vw;
    height: 90vw;
    min-width: 0;
    min-height: 0;
  }
}

/* vignette */
.vignette {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 50% 30%, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.10), transparent 65%),
    linear-gradient(to top, rgba(0, 0, 0, 0.14), transparent 65%);
}

/* subtle color atmosphere overlay — fixed so it persists through full scroll */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(ellipse 100% 100% at 60% 40%, rgba(20, 35, 70, 0.4) 0%, transparent 70%),
    radial-gradient(800px 500px at 75% 25%, rgba(165, 80, 255, 0.06), transparent 60%),
    radial-gradient(900px 600px at 30% 80%, rgba(0, 191, 255, 0.05), transparent 65%);
  mix-blend-mode: screen;
}

/* Contact section atmosphere so it doesn't float on pure black */
.contact-section {
  background: radial-gradient(
    ellipse 80% 100% at 50% 50%,
    rgba(15, 25, 50, 0.6) 0%,
    transparent 100%
  );
}

/* dev mode: hide Vimeo, show local MP4 */
.video-background .bg-video {
  display: none;
}
.dev-video .video-background iframe {
  display: none !important;
}
.dev-video .video-background .bg-video {
  display: block !important;
}

/* =====================
   HEADER
   ===================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  z-index: 50;
}

.glass-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.35));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  z-index: -1;
}

.header-inner {
  height: 76px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-left {
  justify-self: start;
}

.header-right {
  justify-self: end;
}

.logo {
  height: 38px;
  width: auto;
  justify-self: center;
  opacity: 0.95;
}

nav ul {
  display: flex;
  gap: 16px;
  align-items: center;
}

nav a,
nav button {
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.88);
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

nav a:hover,
nav button:hover {
  color: rgba(255, 255, 255, 0.98);
  background: rgba(255, 255, 255, 0.07);
}

nav a:focus-visible,
nav button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.22);
  outline-offset: 2px;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 12px;
  border-radius: 999px;
}

/* dropdown */
.dropdown {
  position: relative;
}

.dropdown button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.dropdown button svg {
  width: 14px;
  height: 14px;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.dropdown button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  top: 56px;
  left: 0;
  min-width: 260px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(12, 12, 14, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.22s ease;
  z-index: 60;
}

.dropdown-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.dropdown-panel a {
  display: block;
  padding: 12px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.dropdown-panel a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.item-title {
  font-weight: 600;
  letter-spacing: 0.2px;
}

.item-desc {
  opacity: 0.72;
  font-size: 0.9rem;
  margin-top: 4px;
}

@media (max-width: 900px) {
  header {
    height: auto;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "left logo"
      "right right";
    height: auto;
    padding: 12px 14px 10px;
    gap: 8px;
  }

  .header-left {
    grid-area: left;
    justify-self: start;
  }

  .logo {
    grid-area: logo;
    justify-self: end;
  }

  .header-right {
    grid-area: right;
    justify-self: start;
  }

  nav ul {
    gap: 10px;
    flex-wrap: wrap;
  }
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-primary {
  background: rgba(0, 191, 255, 0.16);
  border-color: rgba(0, 191, 255, 0.28);
}

.btn-primary:hover {
  background: rgba(0, 191, 255, 0.22);
  border-color: rgba(0, 191, 255, 0.40);
}

.btn-quiet {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0.92;
  font-weight: 500;
}

.btn-quiet:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.26);
  opacity: 1;
}

.btn-arrow {
  margin-left: 8px;
  opacity: 0.75;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-quiet:hover .btn-arrow {
  transform: translateX(3px);
  opacity: 1;
}

/* =====================
   HOMEPAGE HERO
   ===================== */
main {
  position: relative;
  z-index: 5;
}

.hero {
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 8% 80px;
  background:
    radial-gradient(900px 600px at 22% 38%,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.18) 55%,
      transparent 75%),
    linear-gradient(to right,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.40) 35%,
      rgba(0, 0, 0, 0.15) 60%,
      transparent 85%);
}

.hero-inner {
  max-width: 980px;
}

.kicker {
  font-size: 0.85rem;
  letter-spacing: 0.45rem;
  opacity: 0.7;
  margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.02em;
    text-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
    margin-bottom: 18px;
    max-width: 718px;
}

.hero p {
    max-width: 813px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 0.85rem;
  opacity: 0.75;
}

.hero-proof span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 900px) {
  .hero {
    padding: 140px 6% 70px;
  }
}

/* =====================
   STAGES (homepage)
   ===================== */
.stages {
  position: relative;
  padding: 40px 0 0;
}

.event-stage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  position: relative;
  overflow: hidden;
}

.event-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.28),
      rgba(0, 0, 0, 0.08) 45%,
      rgba(0, 0, 0, 0.34));
}

.pre-stage::after,
.live-stage::after,
.post-stage::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  filter: blur(50px);
  opacity: 0.75;
  transform: translateZ(0);
}

.pre-stage::after {
  background: radial-gradient(600px 420px at 25% 35%, rgba(0, 191, 255, 0.22), transparent 60%);
}

.live-stage::after {
  background:
    radial-gradient(700px 460px at 60% 45%, rgba(255, 20, 147, 0.18), transparent 60%),
    radial-gradient(640px 460px at 30% 70%, rgba(75, 0, 130, 0.18), transparent 60%);
}

.post-stage::after {
  background:
    radial-gradient(620px 440px at 55% 35%, rgba(255, 255, 255, 0.10), transparent 60%),
    radial-gradient(700px 520px at 35% 70%, rgba(0, 191, 255, 0.12), transparent 60%);
}

.stage-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.stage-eyebrow {
  display: inline-flex;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 18px;
  opacity: 0.85;
}

.stage-eyebrow .tag {
  font-size: 0.85rem;
  letter-spacing: 0.55rem;
  opacity: 0.7;
}

.stage-eyebrow .line {
  width: 110px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  transform-origin: left;
  transform: scaleX(0.5);
}

.event-stage h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.3rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
}

.stage-desc {
    max-width: 632px;
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 34px;
}

.stage-services {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
}

.stage-services li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.2rem;
  letter-spacing: 0.2px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.event-stage.visible .stage-services li {
  opacity: 0.92;
  transform: translateY(0);
}

.event-stage.visible .stage-services li:nth-child(1) { transition-delay: 0.05s; }
.event-stage.visible .stage-services li:nth-child(2) { transition-delay: 0.10s; }
.event-stage.visible .stage-services li:nth-child(3) { transition-delay: 0.15s; }
.event-stage.visible .stage-services li:nth-child(4) { transition-delay: 0.20s; }

@media (max-width: 900px) {
  .event-stage {
    padding: 0 6%;
  }
}

@media (max-width: 768px) {
  .stage-services li {
    font-size: 1.05rem;
  }
}

/* =====================
   CTA STRIPS
   ===================== */
.cta-strip-b {
  width: 100%;
  padding: 42px 8%;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: baseline;
  gap: 16px;
  position: relative;
  z-index: 5;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.22) 50%,
      rgba(0, 0, 0, 0.55) 100%);
}

.cta-strip-b .tag {
  font-size: 0.72rem;
  letter-spacing: 0.5rem;
  opacity: 0.55;
  flex-shrink: 0;
  padding-top: 4px;
}

.cta-strip-b .text {
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.70);
  transition: color 0.35s ease;
  line-height: 1.05;
}

.cta-strip-b .arrow-b {
  margin-left: auto;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  color: rgba(255, 255, 255, 0.35);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s ease;
  line-height: 1;
}

.cta-strip-b:hover .text {
  color: rgba(255, 255, 255, 0.92);
}

.cta-strip-b:hover .arrow-b {
  transform: translateX(10px);
  color: rgba(255, 255, 255, 0.75);
}

/* =====================
   WORK STRIP (homepage)
   ===================== */
.work-strip {
  padding: 80px 8% 40px;
  position: relative;
  z-index: 6;
}

.work-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.work-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.work-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 12, 0.5);
  transition: .25s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
}

.work-thumb {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.work-meta {
  padding: 14px;
}

.work-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.work-sub {
  opacity: .75;
  font-size: .9rem;
}

.work-cta {
  margin-top: 30px;
  text-align: center;
}

@media (max-width: 1000px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   STAGE PROOF (homepage)
   ===================== */
.stage-proof {
  padding: 70px 8%;
  position: relative;
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.proof-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 12, 0.5);
  transition: .25s ease;
}

.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
}

.proof-thumb {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.proof-meta {
  padding: 14px;
}

.proof-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.proof-sub {
  opacity: .75;
  font-size: .9rem;
}

.proof-cta {
  margin-top: 30px;
  text-align: center;
}

/* =====================
   CONTACT
   ===================== */
.contact-section {
  padding: 110px 8% 130px;
  position: relative;
}

.contact-box {
  max-width: 840px;
  margin: 0 auto;
  padding: 38px 30px;
  border-radius: 22px;
  background: rgba(10, 10, 12, 0.70);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.contact-box h2 {
  font-size: 2rem;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

label {
  font-size: 0.95rem;
  opacity: 0.85;
}

input,
textarea {
  width: 100%;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(0, 191, 255, 0.40);
}

.neon-button {
  margin-top: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(0, 191, 255, 0.40);
  background: rgba(0, 191, 255, 0.16);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  justify-self: start;
}

.neon-button:hover {
  transform: translateY(-2px);
  background: rgba(0, 191, 255, 0.22);
  border-color: rgba(0, 191, 255, 0.55);
}

.success-message {
  display: none;
  margin-top: 14px;
  font-weight: 700;
  color: rgba(0, 255, 255, 0.95);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.success-message.show {
  display: block;
  opacity: 1;
}

.honeypot {
  display: none;
}

@media (max-width: 900px) {
  .contact-section {
    padding: 90px 6% 110px;
  }
}

/* =====================
   ABOUT MINI (homepage section)
   ===================== */
.about-mini {
  padding: 80px 8%;
  position: relative;
  z-index: 2;
}

.about-mini-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 26px 22px;
  border-radius: 22px;
  background: rgba(10, 10, 12, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
}

.about-mini-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.55rem;
  opacity: 0.70;
  margin-bottom: 14px;
}

.about-mini h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.about-mini-lede {
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
}

.about-mini-points {
  display: grid;
  gap: 10px;
  margin: 16px 0 18px;
  padding-left: 18px;
  list-style: disc;
  color: rgba(255, 255, 255, 0.86);
}

.about-mini-points strong {
  color: rgba(255, 255, 255, 0.96);
}

.about-mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.about-mini-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

.about-mini-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

@media (max-width: 768px) {
  .about-mini {
    padding: 70px 6%;
  }

  .about-mini-inner {
    padding: 22px 18px;
  }
}

/* =====================
   ABOUT PAGE
   ===================== */
body.about-page {
  background:
    radial-gradient(1200px 800px at 70% 15%, rgba(0, 191, 255, 0.08), transparent 60%),
    radial-gradient(1200px 800px at 20% 85%, rgba(165, 80, 255, 0.07), transparent 65%),
    linear-gradient(to bottom,
      #0b0f14 0%,
      #0e141b 40%,
      #0a0f14 75%,
      #070a0e 100%);
  background-attachment: fixed;
}

body.about-page::after {
  opacity: 0;
}

body.about-page .vignette {
  background:
    radial-gradient(1200px 700px at 50% 30%, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.30)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.16), transparent 65%),
    linear-gradient(to top, rgba(0, 0, 0, 0.22), transparent 65%);
}

body.about-page .video-background {
  display: none !important;
}

.about-hero {
  padding-bottom: 110px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(900px 600px at 22% 38%,
      rgba(0, 0, 0, 0.52),
      rgba(0, 0, 0, 0.16) 55%,
      transparent 75%),
    linear-gradient(to right,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.34) 35%,
      rgba(0, 0, 0, 0.12) 60%,
      transparent 85%);
}

.about-page .about-hero.about-wash {
  position: relative;
  isolation: isolate;
}

.about-page .about-hero.about-wash::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1000px 700px at 70% 30%, rgba(165, 80, 255, 0.08), transparent 60%),
    radial-gradient(900px 650px at 25% 70%, rgba(0, 191, 255, 0.06), transparent 65%);
  opacity: 0.9;
}

.about-page .service-section {
  position: relative;
  isolation: isolate;
}

.about-page .service-section.tint {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.about-page .service-section.tint::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 1;
}

.about-page .service-section.tint--neutral::before {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.025), transparent 70%);
}

.about-page .service-section.tint--blue::before {
  background:
    radial-gradient(900px 520px at 18% 22%, rgba(0, 191, 255, 0.08), transparent 60%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02), transparent 65%);
}

.about-page .service-section.tint--purple::before {
  background:
    radial-gradient(900px 520px at 72% 18%, rgba(165, 80, 255, 0.075), transparent 62%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02), transparent 65%);
}

/* =====================
   SERVICE PAGES — SHARED
   ===================== */
.service-main {
  position: relative;
  z-index: 5;
  padding-top: 76px;
}

/* Hero */
.service-hero {
  position: relative;
  overflow: hidden;
  min-height: 75vh;
  padding: 110px 8% 70px;
  background-image:
    radial-gradient(900px 650px at 22% 30%, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18) 55%, transparent 75%),
    linear-gradient(to right, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.34) 40%, rgba(0, 0, 0, 0.12) 65%, transparent 88%);
}

/* Video scoped to hero only */
.service-page .service-hero .video-background {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.service-page .service-hero .video-background iframe,
.service-page .service-hero .video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 120vh;
  min-width: 0;
  min-height: 0;
  transform: translate(-50%, -50%);
}

.service-page .service-hero .video-background .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Vignette scoped to hero */
.service-page .service-hero .vignette {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* Hero content above video */
.service-page .service-hero .service-hero-inner {
  position: relative;
  z-index: 2;
}

/* Prevent any full-page video on service pages */
.service-page > .video-background {
  display: none !important;
}

.service-page header {
  z-index: 50;
}

.service-hero-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.service-kicker {
  font-size: 0.82rem;
  letter-spacing: 0.45rem;
  opacity: 0.72;
  margin-bottom: 16px;
}

.service-hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 4.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.service-lede {
  max-width: 760px;
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.service-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.service-proof span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.service-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.cta-micro {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  max-width: 62ch;
}

.service-note {
  margin-top: 18px;
  max-width: 760px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(10, 10, 12, 0.55);
}

/* Sections */
.service-section {
  padding: 70px 8%;
}

.service-section-tight {
  padding: 55px 8% 80px;
}

.service-section-soft {
  padding: 70px 8%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02), transparent 70%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.service-section h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.section-sub {
  max-width: 860px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 26px;
}

/* Deliverables grid */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.deliverable-card {
  grid-column: span 6;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(10, 10, 12, 0.62);
  backdrop-filter: blur(10px);
}

.deliverable-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.deliverable-card p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
  margin-bottom: 12px;
}

.deliverable-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.deliverable-card li {
  padding-left: 14px;
  position: relative;
  color: rgba(255, 255, 255, 0.80);
}

.deliverable-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.7;
}

/* Workflow steps */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.step {
  grid-column: span 3;
  padding: 16px 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(10, 10, 12, 0.55);
}

.step-tag {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 191, 255, 0.30);
  background: rgba(0, 191, 255, 0.12);
}

.step h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.step p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

/* Examples grid */
.examples-header {
  margin-bottom: 6px;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 6px;
}

.work-card {
  grid-column: span 4;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(10, 10, 12, 0.62);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.work-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(10, 10, 12, 0.72);
}

.work-thumb {
  height: 150px;
  background:
    radial-gradient(700px 220px at 30% 20%, rgba(0, 191, 255, 0.20), transparent 60%),
    radial-gradient(700px 220px at 70% 80%, rgba(165, 80, 255, 0.16), transparent 60%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  background-size: cover;
  background-position: center;
}

.work-thumb--a {
  background:
    radial-gradient(700px 220px at 20% 30%, rgba(0, 191, 255, 0.22), transparent 60%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.work-thumb--b {
  background:
    radial-gradient(700px 220px at 70% 30%, rgba(255, 20, 147, 0.18), transparent 60%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.work-thumb--c {
  background:
    radial-gradient(700px 220px at 50% 40%, rgba(165, 80, 255, 0.18), transparent 60%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.work-meta {
  padding: 14px 14px 16px;
}

.work-title {
  font-weight: 650;
  letter-spacing: 0.2px;
  margin-bottom: 6px;
}

.work-desc {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  margin-bottom: 10px;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work-tags span {
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
}
.workflow-intro {
  margin-top: 120px;
}

/* Scope snapshots */
.scope-snapshots {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.scope-title {
  font-size: 1.05rem;
  opacity: 0.92;
  margin-bottom: 12px;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.scope-card {
  grid-column: span 6;
  padding: 16px 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(10, 10, 12, 0.55);
}

.scope-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.32rem;
  opacity: 0.7;
  margin-bottom: 10px;
}

.scope-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.scope-card p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
  margin-bottom: 10px;
}

.scope-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.scope-card li {
  padding-left: 14px;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
}

.scope-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.7;
}

.scope-footnote {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  max-width: 900px;
}

.examples-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-push {
  text-align: left;
}

/* Service page responsive */
@media (max-width: 980px) {
  .deliverable-card {
    grid-column: span 12;
  }

  .step {
    grid-column: span 6;
  }

  .work-card {
    grid-column: span 12;
  }

  .scope-card {
    grid-column: span 12;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: 100px 6% 60px;
  }

  .service-section {
    padding: 60px 6%;
  }
}

/* =====================
   PRE PAGE
   ===================== */
.service-pre .band {
  position: relative;
  padding: 100px 8%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-pre .band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(600px 400px at 50% 0%, rgba(255, 255, 255, 0.04), transparent 70%);
  opacity: 0.4;
}

.service-pre .band-a {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
}

.service-pre .band-b {
  background: rgba(255, 255, 255, 0.015);
}

.service-pre .service-section {
  padding: 96px 8%;
}

.service-pre .service-section-tight {
  padding: 72px 8% 96px;
}

.service-pre .service-section-soft {
  background: none;
  border-top: none;
  border-bottom: none;
}

.service-pre .service-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* =====================
   LIVE PAGE
   ===================== */
body.service-live::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.10;
  background-image:
    repeating-linear-gradient(0deg,
      rgba(255, 255, 255, 0.05) 0px,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 2px,
      transparent 6px);
  mix-blend-mode: overlay;
}

body.service-live::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 600px at 70% 25%, rgba(0, 191, 255, 0.10), transparent 65%),
    radial-gradient(900px 700px at 25% 75%, rgba(75, 0, 130, 0.10), transparent 70%),
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.62) 45%,
      rgba(0, 0, 0, 0.78));
}

body.service-live header {
  position: fixed;
  z-index: 20;
}

body.service-live main {
  position: relative;
  z-index: 2;
}

body.service-live .service-section-soft {
  background:
    linear-gradient(to bottom,
      rgba(0, 191, 255, 0.06),
      rgba(255, 255, 255, 0.02) 45%,
      transparent 80%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.service-live .deliverable-card,
body.service-live .step,
body.service-live .work-card,
body.service-live .scope-card {
  background: rgba(10, 10, 14, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

/* Live page video nudge */
.service-live .service-hero .video-background iframe,
.service-live .service-hero .video-background .bg-video {
  top: 46%;
  width: 125vw;
  height: 125vh;
}

/* =====================
   LIVE EXECUTION PROOF
   ===================== */
.execution-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 80px;
}

.execution-block h3 {
  margin-bottom: 8px;
}

.execution-meta {
  opacity: 0.72;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.execution-block ul {
  margin: 14px 0;
  padding-left: 18px;
}

.execution-outcome {
  margin-top: 14px;
  font-weight: 600;
  opacity: 0.85;
}

.system-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.system-photo img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.system-text ul {
  margin: 20px 0;
  padding-left: 18px;
}

@media (max-width: 900px) {
  .system-proof {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* =====================
   NO-HERO-VIDEO (image treatment)
   Toggle with: <body class="no-hero-video">
   ===================== */
.no-hero-video .video-background {
  display: none !important;
}

.no-hero-video .service-hero {
  background-color: #0b1520;
}

.service-pre.no-hero-video .service-hero {
  background-image:
    radial-gradient(ellipse 120% 80% at 60% 0%, rgba(0, 191, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 80% 60% at 10% 100%, rgba(165, 80, 255, 0.16), transparent 55%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0.78)),
    url(/images/hero-pre.jpeg);
  background-size: cover;
  background-position: 60% center;
}

.service-live.no-hero-video .service-hero {
  background-image:
    radial-gradient(ellipse 120% 80% at 60% 0%, rgba(0, 191, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 80% 60% at 10% 100%, rgba(165, 80, 255, 0.16), transparent 55%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.78)),
    url(/images/hero-live.jpeg);
  background-size: cover;
  background-position: 20% center;
}

.service-post.no-hero-video .service-hero {
  background-image:
    radial-gradient(ellipse 120% 80% at 60% 0%, rgba(0, 191, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 80% 60% at 10% 100%, rgba(165, 80, 255, 0.16), transparent 55%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.70)),
    url(/images/hero-post.jpeg);
  background-size: cover;
  background-position: 60% center;
}

/* =====================
   ABOUT PAGE HEADSHOT
   ===================== */
.about-headshot {
  float: right;
  margin: 0 0 24px 40px;
  width: clamp(140px, 18vw, 220px);
  shape-outside: circle();
}

.about-headshot img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  filter: grayscale(100%);
  opacity: 0.88;
}

@media (max-width: 680px) {
  .about-headshot {
    float: none;
    margin: 0 0 24px 0;
    width: 100px;
  }
}

/* =====================
   FOOTER TAGLINE
   ===================== */
.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.45rem;
  opacity: 0.45;
  text-transform: uppercase;
  text-align: center;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
/* =====================
   ACCORDION
   ===================== */

.stage-accordion {
  margin-top: 28px;
}

.accordion-trigger {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.accordion-trigger:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.35);
}

.accordion-trigger[aria-expanded="true"] {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.35);
}

.accordion-arrow {
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-panel {
  margin-top: 0;
  overflow: hidden;
}

.accordion-panel[hidden] {
  display: none;
}

/* =====================
   MID-PAGE DEPTH GRADIENT
   ===================== */

.stages,
.scope-snapshots-contact,
.stages > * {
  position: relative;
  z-index: 1;
}

/* =====================
   TESTIMONIAL STRIPS — floating pull quote style
   ===================== */

.testimonial-strip {
  background: none;
  border: none;
  padding: 60px 12%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: default;
}

.testimonial-strip:hover {
  background: none;
}

.testimonial-quote {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.testimonial-attr {
  font-size: 0.82rem;
  opacity: 0.45;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .testimonial-strip {
    padding: 48px 6%;
  }

  .testimonial-quote {
    font-size: 1.05rem;
  }
}

