:root {
  --bg: #05060a;
  --bg-soft: #0b0d14;
  --panel: rgba(16, 18, 27, 0.78);
  --panel-strong: rgba(21, 24, 35, 0.92);
  --ink: #f8fbff;
  --muted: #9aa3b4;
  --muted-2: #687184;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --cyan: #20e6ff;
  --lime: #c7ff37;
  --magenta: #ff3df2;
  --orange: #ff9f1c;
  --violet: #8f7cff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --glow-cyan: 0 0 34px rgba(32, 230, 255, 0.34);
  --glow-lime: 0 0 30px rgba(199, 255, 55, 0.24);
  --max: 1180px;
  --img-zero-arena: url("https://invest.zerolatencyvr.com/hubfs/Zero%20Latency%202024/Images/Banner-1.png");
  --img-zero-game: url("https://invest.zerolatencyvr.com/hs-fs/hubfs/Zero%20Latency%202024/Images/SOL_RAIDERS_COMPETITOR_EXT_RGB.png?width=1178&height=765&name=SOL_RAIDERS_COMPETITOR_EXT_RGB.png");
  --img-trugolf-sim: url("https://trugolf.com/cdn/shop/files/Hero_Image_Range.webp?v=1775512142");
  --img-trugolf-max: url("https://trugolf.com/cdn/shop/files/MAX_Hero.webp?v=1708456623");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 108px; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 24% 8%, rgba(143, 124, 255, 0.22), transparent 26rem),
    radial-gradient(circle at 82% 14%, rgba(32, 230, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 72% 82%, rgba(199, 255, 55, 0.12), transparent 30rem),
    linear-gradient(180deg, #030408 0%, var(--bg) 42%, #07080d 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.92), rgba(0,0,0,0.14));
}
body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 15%, transparent 78%, rgba(255,255,255,0.03));
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3.25rem, 7.8vw, 7.25rem);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.4vw, 4.6rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}
h3 { margin-bottom: 10px; font-size: 1.1rem; line-height: 1.18; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 12px clamp(18px, 4vw, 46px);
  border-bottom: 1px solid var(--line);
  background: #000;
  backdrop-filter: none;
}
.brand-mark {
  display: inline-flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(32, 230, 255, 0.36);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--glow-cyan);
}
.brand-mark img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 0 10px rgba(32, 230, 255, 0.55));
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}
.nav-links a {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
}
.nav-links a:hover {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255,255,255,0.05);
}
.nav-cta, .button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-weight: 760;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.nav-cta {
  padding: 0 18px;
  color: #071015;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  box-shadow: var(--glow-lime);
  font-size: 0.84rem;
}
.button { padding: 0 22px; font-size: 0.9rem; }
.button:hover, .nav-cta:hover { transform: translateY(-2px); }
.button.primary {
  color: #071015;
  border-color: transparent;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  box-shadow: var(--glow-cyan);
}
.button.ghost {
  color: var(--ink);
  background: rgba(255,255,255,0.055);
}

.hero {
  position: relative;
  display: grid;
  min-height: 90svh;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  padding: clamp(82px, 9vw, 128px) clamp(18px, 5vw, 72px) 58px;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5,6,10,0.96) 0%, rgba(5,6,10,0.86) 46%, rgba(5,6,10,0.28) 100%),
    var(--img-zero-arena) center right / cover no-repeat;
  opacity: 0.86;
}
.hero::after {
  position: absolute;
  right: 5vw;
  bottom: 4vw;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(32, 230, 255, 0.2);
  border-radius: 999px;
  box-shadow: inset 0 0 60px rgba(32, 230, 255, 0.08);
}
.hero-inner, .system-preview { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-copy {
  width: min(690px, 100%);
  margin-bottom: 28px;
  color: #dfe7f1;
  font-size: clamp(1.12rem, 2.1vw, 1.45rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.hero-proof span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d7deeb;
  background: rgba(255,255,255,0.045);
  font-size: 0.84rem;
}
.system-preview { align-self: end; }
.preview-window {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(25,28,40,0.95), rgba(8,10,16,0.92));
  box-shadow: var(--shadow), var(--glow-cyan);
}
.window-bar {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}
.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--muted-2);
}
.window-bar span:nth-child(1) { background: var(--magenta); }
.window-bar span:nth-child(2) { background: var(--orange); }
.window-bar span:nth-child(3) { background: var(--lime); }
.window-bar strong { margin-left: auto; color: #dce5f2; font-weight: 720; }
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.metric-row article {
  padding: 18px;
  background: rgba(10,12,19,0.92);
}
.metric-row span, .metric-row small, .board-column span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
}
.metric-row strong {
  display: block;
  margin: 4px 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1;
}
.metric-row article:nth-child(1) strong { color: var(--lime); }
.metric-row article:nth-child(2) strong { color: var(--cyan); }
.metric-row article:nth-child(3) strong { color: var(--magenta); }
.pipeline-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
}
.board-column {
  min-height: 230px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,0.035);
}
.board-column.active {
  border-color: rgba(32, 230, 255, 0.42);
  box-shadow: inset 0 0 28px rgba(32, 230, 255, 0.08);
}
.board-column p {
  margin: 10px 0 0;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: #e4ebf5;
  background: rgba(5,6,10,0.62);
  font-size: 0.84rem;
}
.motion-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(199,255,55,0.12), rgba(32,230,255,0.12), rgba(255,61,242,0.1));
}
.motion-strip div {
  display: flex;
  width: max-content;
  gap: 32px;
  padding: 13px 0;
  animation: marquee 24s linear infinite;
}
.motion-strip span {
  color: #f6fbff;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-42%); }
}

.content-section, .serve-section, .charge-section, .connect-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) 0;
  scroll-margin-top: 108px;
}
.content-section, .serve-section, .charge-section {
  display: grid;
  grid-template-columns: 72px minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
.section-label {
  width: 48px;
  padding-top: 8px;
  border-top: 2px solid var(--cyan);
  color: var(--lime);
  font-weight: 820;
}
.section-detail { color: var(--muted); font-size: 1.05rem; }
.split-section { grid-template-columns: 72px minmax(260px, 0.7fr) minmax(0, 1.3fr); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.service-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)), var(--panel);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.service-card::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 44px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), var(--cyan), var(--magenta));
}
.service-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.service-card p, .serve-list p, .pricing-rail p { margin-bottom: 0; color: var(--muted); }

.venue-media {
  display: grid;
  width: min(var(--max), calc(100% - 36px));
  grid-template-columns: 1.08fr 0.92fr 1fr;
  gap: 12px;
  margin: 0 auto;
  padding-bottom: clamp(72px, 9vw, 132px);
}
.media-tile {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  isolation: isolate;
  box-shadow: var(--shadow);
}
.media-tile::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.64) 62%, rgba(0,0,0,0.92) 100%),
    linear-gradient(135deg, rgba(32,230,255,0.24), transparent 55%);
}
.media-tile::after {
  position: absolute;
  inset: 14px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
}
.media-tile-vr { background-image: var(--img-zero-arena); }
.media-tile-golf { background-image: var(--img-trugolf-sim); }
.media-tile-game { background-image: var(--img-zero-game); }
.media-tile span {
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.media-tile strong { margin-bottom: 8px; font-size: 1.42rem; line-height: 1; }
.media-tile p { margin-bottom: 0; color: #e4ebf5; }

.serve-section, .charge-section {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding-right: clamp(18px, 4vw, 44px);
  padding-left: clamp(18px, 4vw, 44px);
  background: linear-gradient(90deg, rgba(10,12,18,0.98), rgba(10,12,18,0.82));
}
.serve-section::before, .charge-section::before {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -1;
  width: min(48vw, 620px);
  content: "";
  opacity: 0.42;
  background: var(--img-trugolf-max) center / cover no-repeat;
}
.charge-section::before { background-image: var(--img-zero-game); }
.serve-list { display: grid; gap: 10px; }
.serve-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5,6,10,0.72);
}
.serve-list article:nth-child(1) { box-shadow: inset 3px 0 0 var(--cyan); }
.serve-list article:nth-child(2) { box-shadow: inset 3px 0 0 var(--lime); }
.serve-list article:nth-child(3) { box-shadow: inset 3px 0 0 var(--magenta); }
.pricing-rail { display: grid; gap: 12px; }
.pricing-rail div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 8px 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
}
.pricing-rail span {
  grid-row: span 2;
  color: var(--cyan);
  font-weight: 820;
}
.muted { color: var(--muted); }

.connect-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(300px, 1.12fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}
.connect-copy p { color: var(--muted); font-size: 1.05rem; }
.signal-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.signal-list li {
  position: relative;
  padding-left: 28px;
  color: #dfe7f1;
}
.signal-list li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 12px;
  height: 12px;
  content: "";
  border: 2px solid var(--lime);
  border-radius: 2px;
  transform: rotate(45deg);
}
.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(32, 230, 255, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)), var(--panel-strong);
  box-shadow: var(--shadow), var(--glow-cyan);
}
.contact-form label { display: grid; gap: 7px; }
.contact-form span {
  color: #dfe7f1;
  font-size: 0.8rem;
  font-weight: 780;
}
input, textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(3,4,8,0.72);
  font: inherit;
  outline: none;
}
input { min-height: 48px; padding: 0 14px; }
textarea { min-height: 132px; padding: 14px; resize: vertical; }
input:focus, textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(32,230,255,0.14);
}
.form-button { width: 100%; border: 0; cursor: pointer; }
.form-note { margin: 0; color: var(--muted); font-size: 0.9rem; }
.form-note.success { color: var(--lime); }
.form-note.error { color: #ff9aad; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(5,6,10,0.72);
}
.site-footer img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
}
.site-footer p { margin: 0; }
.site-footer a:hover { color: var(--cyan); }

.thank-you-page {
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(5,6,10,0.96), rgba(5,6,10,0.72)),
    var(--img-zero-arena) center / cover no-repeat;
}
.thank-you-main {
  display: grid;
  min-height: calc(100svh - 79px);
  place-items: center;
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 72px);
}
.thank-you-card {
  width: min(780px, 100%);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(32, 230, 255, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)), var(--panel-strong);
  box-shadow: var(--shadow), var(--glow-cyan);
}
.thank-you-card h1 {
  font-size: clamp(3rem, 8vw, 6.2rem);
}
.thank-you-card p:not(.eyebrow) {
  max-width: 660px;
  color: #dfe7f1;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; }
  .system-preview { width: min(760px, 100%); align-self: auto; }
}
@media (max-width: 980px) {
  .site-header { grid-template-columns: auto 1fr; }
  .nav-links { order: 3; grid-column: 1 / -1; justify-content: flex-start; }
  .nav-cta { justify-self: end; }
  .content-section, .split-section, .serve-section, .charge-section, .connect-section { grid-template-columns: 1fr; }
  .venue-media { grid-template-columns: 1fr; }
}
@media (max-width: 660px) {
  html { scroll-padding-top: 84px; }
  .site-header { gap: 12px; }
  .nav-links { display: none; }
  .brand-mark { width: 46px; height: 46px; }
  .brand-mark img { width: 34px; height: 34px; }
  .nav-cta { min-height: 40px; padding: 0 14px; font-size: 0.78rem; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.6rem); }
  .hero { min-height: auto; padding-top: 78px; }
  .hero-actions, .button { width: 100%; }
  .metric-row, .pipeline-board, .service-grid { grid-template-columns: 1fr; }
  .board-column { min-height: auto; }
  .media-tile { min-height: 320px; }
  .pricing-rail div { grid-template-columns: 1fr; }
  .pricing-rail span { grid-row: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .motion-strip div { animation: none; }
  .button, .nav-cta { transition: none; }
}
