:root {
  color-scheme: dark;
  --ink: #f6f8ff;
  --muted: #a8b0c3;
  --soft: #d7dcec;
  --bg: #05060a;
  --panel: #10131b;
  --panel-2: #151927;
  --line: rgba(255, 255, 255, 0.13);
  --cyan: #20e5ff;
  --violet: #8d5cff;
  --magenta: #ff3fd4;
  --green: #b8ff4d;
  --amber: #ffd166;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(115deg, rgba(32, 229, 255, 0.09), transparent 22%),
    linear-gradient(245deg, rgba(255, 63, 212, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(141, 92, 255, 0.12), transparent 42%),
    var(--bg);
  background-attachment: fixed;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 18px 40px;
  color: var(--ink);
  transition: background 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(5, 6, 10, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(32, 229, 255, 0.34));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  color: var(--soft);
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  cursor: pointer;
}

.toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 86svh;
  overflow: hidden;
  padding: 116px 40px 70px;
  isolation: isolate;
}

.hero-image,
.uv-canvas,
.hero-overlay,
.hero-motion {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -4;
  object-fit: cover;
  object-position: center;
}

.uv-canvas {
  z-index: -3;
  opacity: 0.64;
  mix-blend-mode: screen;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.96) 0%, rgba(5, 6, 10, 0.82) 34%, rgba(5, 6, 10, 0.32) 72%, rgba(5, 6, 10, 0.82) 100%),
    linear-gradient(180deg, rgba(5, 6, 10, 0.56), rgba(5, 6, 10, 0.78));
}

.hero-motion {
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-motion::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(900px) rotateX(62deg) translateY(120px);
  transform-origin: bottom;
}

.hero-motion::after {
  content: "";
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: -30%;
  width: 24%;
  opacity: 0.55;
  background: linear-gradient(90deg, transparent, rgba(32, 229, 255, 0.2), rgba(184, 255, 77, 0.12), transparent);
  filter: blur(8px);
  transform: skewX(-18deg);
  animation: heroScan 6.8s linear infinite;
}

.motion-beam {
  position: absolute;
  right: 6%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--green), transparent);
  box-shadow: 0 0 22px rgba(32, 229, 255, 0.72);
  animation: beamTravel 7s ease-in-out infinite;
}

.motion-beam-one {
  top: 31%;
  width: 44%;
}

.motion-beam-two {
  top: 62%;
  width: 34%;
  animation-delay: -2.2s;
}

.motion-card {
  position: absolute;
  right: clamp(28px, 8vw, 120px);
  display: grid;
  gap: 8px;
  width: 156px;
  height: 86px;
  padding: 16px;
  border: 1px solid rgba(32, 229, 255, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(32, 229, 255, 0.18), rgba(141, 92, 255, 0.13)),
    rgba(5, 6, 10, 0.52);
  box-shadow:
    0 0 24px rgba(32, 229, 255, 0.24),
    inset 0 0 24px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  animation: cardFloat 8s ease-in-out infinite;
}

.motion-card span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), rgba(255, 255, 255, 0.72), transparent);
  box-shadow: 0 0 16px rgba(32, 229, 255, 0.42);
}

.motion-card span:nth-child(2) {
  width: 72%;
  background: linear-gradient(90deg, var(--green), rgba(255, 255, 255, 0.56), transparent);
}

.motion-card span:nth-child(3) {
  width: 48%;
  background: linear-gradient(90deg, var(--magenta), rgba(255, 255, 255, 0.48), transparent);
}

.motion-card-one {
  top: 26%;
}

.motion-card-two {
  top: 47%;
  right: clamp(120px, 18vw, 280px);
  animation-delay: -2.8s;
}

.motion-card-three {
  top: 67%;
  animation-delay: -5.2s;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 6, 10, 0), var(--bg));
}

.hero-content {
  width: min(100%, 780px);
  margin-left: max(0px, calc((100vw - 1180px) / 2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: 5.8rem;
  font-weight: 900;
  text-shadow:
    0 0 28px rgba(32, 229, 255, 0.24),
    0 0 52px rgba(141, 92, 255, 0.2);
}

h2 {
  font-size: 3rem;
  font-weight: 860;
}

h3 {
  font-size: 1.16rem;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: 1.24rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #05060a;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 0 38px rgba(32, 229, 255, 0.26);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 650px;
  margin: 42px 0 0;
}

.hero-metrics div {
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 28px rgba(32, 229, 255, 0.1),
    inset 0 0 30px rgba(255, 255, 255, 0.035);
}

.hero-metrics dt {
  color: var(--cyan);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.hero-metrics dd {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.venue-strip {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(32, 229, 255, 0.08), rgba(255, 63, 212, 0.08), rgba(184, 255, 77, 0.06)),
    #090a10;
}

.section-shell {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
}

.strip-grid span {
  display: grid;
  place-items: center;
  min-height: 78px;
  color: var(--soft);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.035);
}

.client-marquee-section {
  position: relative;
  overflow: hidden;
  padding: 46px 0 54px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(32, 229, 255, 0.06), rgba(141, 92, 255, 0.06), rgba(184, 255, 77, 0.04)),
    #07080d;
}

.client-marquee-section .eyebrow {
  margin-bottom: 20px;
}

.client-marquee {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.client-marquee:hover .client-track {
  animation-play-state: paused;
}

.client-track {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  min-width: max-content;
  padding-right: 18px;
  animation: clientMarquee 30s linear infinite;
}

.client-logo-card {
  display: grid;
  place-items: center;
  width: 238px;
  height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.client-logo-card img {
  width: 100%;
  max-width: 190px;
  max-height: 76px;
  object-fit: contain;
}

@keyframes clientMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes heroScan {
  from {
    transform: translateX(0) skewX(-18deg);
  }

  to {
    transform: translateX(660%) skewX(-18deg);
  }
}

@keyframes beamTravel {
  0%,
  100% {
    opacity: 0.25;
    transform: translateX(26px) scaleX(0.72);
  }

  50% {
    opacity: 0.86;
    transform: translateX(-70px) scaleX(1);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-18px, -16px, 0);
  }
}

.section {
  padding: 104px 0;
}

.split-layout,
.audience-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  align-items: center;
  gap: 64px;
}

.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.92fr);
}

.reverse .section-copy {
  order: 2;
}

.section-copy p,
.audience-copy p,
.contact-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.network-section {
  background:
    linear-gradient(180deg, var(--bg), #0a0c12 58%, var(--bg)),
    var(--bg);
}

.signal-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(32, 229, 255, 0.08), rgba(255, 63, 212, 0.05)),
    var(--panel);
  box-shadow: var(--shadow);
}

.signal-panel::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(32, 229, 255, 0.42), rgba(255, 63, 212, 0.18), rgba(184, 255, 77, 0.32));
  filter: blur(22px);
  opacity: 0.42;
}

.signal-panel::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), var(--violet), var(--green));
  opacity: 0.55;
}

.signal-row {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(5, 6, 10, 0.48);
}

.signal-dot {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border: 4px solid #061014;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(32, 229, 255, 0.74);
}

.signal-row strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
}

.signal-row p {
  margin: 7px 0 0;
  color: var(--muted);
}

.services-section {
  background: #08090e;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

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

.service-card {
  min-height: 246px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    var(--panel);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 229, 255, 0.42);
  box-shadow:
    0 18px 52px rgba(32, 229, 255, 0.14),
    inset 0 0 30px rgba(255, 255, 255, 0.035);
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  margin-bottom: 38px;
  border: 1px solid rgba(32, 229, 255, 0.36);
  border-radius: var(--radius);
  color: var(--cyan);
  font-weight: 900;
  font-size: 0.82rem;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.accent-card {
  background:
    linear-gradient(135deg, rgba(184, 255, 77, 0.14), rgba(255, 209, 102, 0.1)),
    var(--panel-2);
}

.audience-section {
  background:
    linear-gradient(180deg, #08090e, #101018 52%, #06070a);
}

.audience-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
}

.campaign-board {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(141, 92, 255, 0.2), rgba(32, 229, 255, 0.08)),
    #11131d;
  box-shadow: var(--shadow);
}

.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.board-header strong {
  color: var(--green);
}

.board-track {
  height: 16px;
  margin: 28px 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
}

.track-fill {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--magenta));
  box-shadow: 0 0 26px rgba(32, 229, 255, 0.24);
}

.board-list {
  display: grid;
  gap: 12px;
}

.board-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(5, 6, 10, 0.4);
}

.board-list span {
  color: var(--muted);
}

.venue-section {
  background: #06070a;
}

.venue-benefits {
  display: grid;
  gap: 16px;
}

.venue-benefits div {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(32, 229, 255, 0.055));
}

.benefit-icon {
  display: block;
  width: 42px;
  height: 8px;
  margin-bottom: 22px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  box-shadow: 0 0 22px rgba(184, 255, 77, 0.24);
}

.venue-benefits h3 {
  margin-bottom: 10px;
}

.venue-benefits p {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(32, 229, 255, 0.08), rgba(255, 63, 212, 0.07) 42%, rgba(255, 209, 102, 0.05)),
    #0a0b10;
}

.contact-grid {
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(5, 6, 10, 0.64);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-weight: 750;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.lead-form textarea {
  resize: vertical;
  min-height: 118px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(32, 229, 255, 0.16);
}

.lead-form option {
  color: #06070a;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #05060a;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
}

.footer-link {
  color: var(--cyan);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    padding-inline: 24px;
  }

  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero {
    min-height: 84svh;
    padding-inline: 24px;
  }

  .hero-content {
    margin-left: 0;
  }

  .split-layout,
  .reverse,
  .audience-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .reverse .section-copy {
    order: 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 6, 10, 0.94);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px;
  }

  .brand-logo {
    height: 32px;
    max-width: 168px;
  }

  .hero {
    min-height: 86svh;
    padding: 104px 18px 54px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 6, 10, 0.94), rgba(5, 6, 10, 0.58)),
      linear-gradient(180deg, rgba(5, 6, 10, 0.42), rgba(5, 6, 10, 0.84));
  }

  .hero-motion {
    opacity: 0.48;
  }

  .motion-card {
    display: none;
  }

  .motion-beam {
    right: -20%;
    width: 72%;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .section-shell {
    width: min(100% - 36px, 1180px);
  }

  .section {
    padding: 74px 0;
  }

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

  .strip-grid span {
    min-height: 60px;
  }

  .client-marquee-section {
    padding: 38px 0 44px;
  }

  .client-track {
    gap: 12px;
    padding-right: 12px;
    animation-duration: 24s;
  }

  .client-logo-card {
    width: 188px;
    height: 96px;
    padding: 14px;
  }

  .client-logo-card img {
    max-width: 154px;
    max-height: 62px;
  }

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

  .board-header,
  .board-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .signal-panel::before {
    left: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .uv-canvas {
    display: none;
  }

  .hero-motion {
    display: none;
  }

  .client-track {
    animation: none;
  }
}
