:root {
  --bg: #070707;
  --header-bg: #17181a;
  --header-line: rgba(255, 255, 255, 0.10);
  --header-h: 80px;

  /*
   * Native UI stack: SF Pro on Apple, Segoe UI on Windows, Roboto on
   * Android. Modern product-site feel with no webfont request.
   */
  --font-display:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  --panel: #111111;
  --panel-2: #171717;
  --text: #ffffff;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

/* Offset in-page anchors so the sticky header never covers a section title. */
section[id],
:target {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.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;
  left: -9999px;
  z-index: 100;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  padding: 10px 16px;
  background: #ffffff;
  color: #0b0b0b;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

.section {
  padding: 96px 0;
}

.section-alt {
  background: #0d0d0d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 14px;
  color: #cfcfcf;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: -3px;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -1.5px;
}

/*
 * Major section titles share the hero headline's display typography -
 * same family, same semibold weight, same tightened tracking - at their
 * own smaller scale. Size hierarchy stays with the h1/h2 font-size rules.
 * Footer column labels are not section titles and keep their own style.
 */
.section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -1.2px;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

p {
  color: var(--muted);
  font-size: 17px;
}


/* SITE HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-line);
}

/* Full-width bar: the logo sits at the far left, the CTA at the far right. */
.site-header-inner {
  width: 100%;
  min-height: var(--header-h);
  padding: 0 clamp(18px, 3vw, 34px);

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 24px;
}

/* LEFT: logo + tagline lockup */

.site-brand {
  justify-self: start;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  border-radius: 6px;
}

.site-brand:focus-visible {
  outline: 2px solid #ffc800;
  outline-offset: 5px;
}

/*
 * The logo file is 1183x887 but the "VAE" wordmark only occupies the
 * region x 192..887, y 339..566 - the rest is transparent padding.
 * This window crops to the wordmark so the bar stays compact and the
 * tagline sits directly beneath it. --mark-h is the only value to tune.
 */
.site-brand-mark {
  --mark-h: 32px;
  --mark-scale: calc(var(--mark-h) / 228);

  display: block;
  width: calc(696 * var(--mark-scale));
  height: var(--mark-h);
  overflow: hidden;
}

.site-brand-logo {
  display: block;
  width: calc(1183 * var(--mark-scale));
  max-width: none;
  height: auto;
  margin-top: calc(-339 * var(--mark-scale));
  margin-left: calc(-192 * var(--mark-scale));
}

/* Matches the Support-area brand treatment. */
.brand-tagline {
  color: #ffffff;
  font-size: clamp(0.62rem, 0.72vw, 0.72rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  text-align: center;
}

.brand-tagline .gold {
  color: #ffc800;
}

/* CENTER: primary navigation */

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(4px, 1vw, 10px);
}

.site-nav a {
  color: #d8d8d8;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 9px;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}

.site-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

.site-nav a:focus-visible {
  color: #ffffff;
  outline: 2px solid #ffc800;
  outline-offset: 2px;
}

/* RIGHT: CTA */

.site-actions {
  justify-self: end;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;

  background: #ffffff;
  color: #0b0b0b;
  border: 0;
  border-radius: 999px;

  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.nav-cta:hover {
  background: #ececec;
  transform: translateY(-1px);
}

.nav-cta:focus-visible {
  outline: 2px solid #ffc800;
  outline-offset: 3px;
}

/* MOBILE MENU BUTTON */

.nav-toggle {
  display: none;
  justify-self: end;
  align-items: center;
  padding: 10px;

  background: transparent;
  border: 1px solid var(--header-line);
  border-radius: 10px;
  color: inherit;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 2px solid #ffc800;
  outline-offset: 3px;
}

.nav-toggle-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}


/* HERO */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--line);

  /*
   * Capped rather than full-height: the hero still fills the first screen
   * on shorter viewports, but stops growing on tall ones, so the section
   * below it starts at a consistent distance instead of drifting down.
   */
  min-height: min(600px, calc(100vh - var(--header-h)));
  min-height: min(600px, calc(100svh - var(--header-h)));

  background:
    radial-gradient(
      ellipse 62% 48% at 50% 30%,
      rgba(255, 255, 255, 0.07),
      transparent 72%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(255, 255, 255, 0.035),
      transparent 45%
    ),
    linear-gradient(
      180deg,
      #060606 0%,
      #101010 52%,
      #060606 100%
    );
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    );

  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero .container {
  position: relative;
  z-index: 1;

  /* Slight upward bias: content sits in the upper-middle of the viewport. */
  padding-top: 56px;
  padding-bottom: 64px;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  font-family: var(--font-display);
}

/* EYEBROW PILL */

.hero-eyebrow {
  margin: 0 0 30px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;

  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;

  color: #d2d2d6;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

/* HEADLINE */

.hero h1 {
  max-width: 900px;
  margin: 0 auto 26px;

  font-family: var(--font-display);
  font-size: clamp(38px, 5.2vw, 78px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -1.8px;
  text-wrap: balance;

  color: #ffffff;
}

/* Subtle white -> light gray fade. Falls back to solid white. */
@supports (background-clip: text) or (-webkit-background-clip: text) {

  .hero h1 {
    background-image:
      linear-gradient(
        180deg,
        #ffffff 0%,
        #f4f4f6 42%,
        #bcbcc2 100%
      );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

}

/* The section directly after the hero sits closer than a standalone one. */
.hero + .section {
  padding-top: 64px;
}

/* SUPPORTING COPY */

.hero-copy {
  max-width: 660px;
  margin: 0 auto;

  color: var(--muted);
  font-size: clamp(16.5px, 1.3vw, 19px);
  line-height: 1.65;
  letter-spacing: 0.1px;
  text-wrap: balance;
}


/* ABOUT */

.narrow-content {
  max-width: 820px;
}

/*
 * About headline wrap.
 *
 * At desktop the headline broke as "Changing how live entertainment comes" /
 * "together", leaving a one-word orphan. This caps the headline's measure so
 * "comes" drops to the second line with "together".
 *
 * The cap is in em, not px, on purpose: the h2 font-size is
 * clamp(32px, 4vw, 48px), so its pixel width changes with the viewport and no
 * single px value holds across that range. In em the break point is stable -
 * the wrap stays correct from 850px up. Below that the section container is
 * narrower than this cap, so mobile wrapping is untouched.
 *
 * Scoped to the About headline only; font, size, weight, line-height, colour,
 * alignment and section spacing are unchanged.
 */
#about h2 {
  max-width: 15.1em;
}


/* AUDIENCE / ACCOUNT TYPES */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

/* Section headline sits above the cards, aligned to the grid's left edge. */
.audience-statement {
  max-width: 900px;
  margin: 0 0 20px;
  text-align: left;
}

.audience-statement span {
  display: block;
}

.audience-section {
  padding-bottom: 80px;
}

.card {
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;

  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.card-label {
  margin-bottom: 28px;
  color: #ffc800;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.card p {
  margin-bottom: 0;
}


/* ENTERTAINMENT TYPES */

.entertainment-section {
  background: #070707;
  border-top: 1px solid var(--line);
}

.entertainment-intro {
  max-width: 720px;
  margin-bottom: 42px;
}

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

.entertainment-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

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

.entertainment-card img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: #161616;
}

.entertainment-card-content {
  padding: 24px;
}

.entertainment-card-content h3 {
  margin-bottom: 8px;
}

.entertainment-card-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
}


/* FEATURES */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 40px;
  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 18px;

  background: var(--line);
}

.feature {
  /* Anchor for the hover ring below. No layout effect on a grid item. */
  position: relative;

  min-height: 150px;
  padding: 26px;
  background: #0d0d0d;

  transition:
    background 0.22s ease,
    box-shadow 0.22s ease;
}

/*
 * Hover ring.
 *
 * The tiles are square-cornered and sit flush inside .feature-grid, which
 * clips at a 17px radius (18px minus its 1px border). An inset box-shadow
 * ring is therefore square, and its last ~7px at each corner is clipped
 * away by that rounded frame - the gap that was showing.
 *
 * Drawing the ring on a pseudo-element instead lets it carry its own
 * radius and sit 3px inside the tile, clearing the clip path by ~2.6px, so
 * it closes as a continuous rounded rectangle on every tile including the
 * four corners. Absolutely positioned and inert, so nothing moves.
 */
.feature::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid transparent;
  border-radius: 13px;
  pointer-events: none;
  transition: border-color 0.22s ease;
}

.feature strong {
  transition: color 0.22s ease;
}

.feature strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.feature span {
  color: var(--muted);
  font-size: 14px;
}


/* CARD HOVER STATES */

/*
 * Gated behind a hover-capable pointer so touch devices never land in a
 * stuck hover state after a tap.
 */
@media (hover: hover) and (pointer: fine) {

  /* Marketplace cards sit in a gapped grid with no clipping parent, so a
     real lift is safe here. */
  .card:hover {
    transform: translateY(-2px) scale(1.012);
    border-color: #ffc800;
    box-shadow: 0 10px 28px rgba(255, 200, 0, 0.07);
  }

  /*
   * Platform tiles are a seamless grid: the "borders" are 1px gaps letting
   * the grid background through, inside an overflow:hidden rounded frame.
   * A transform here would clip at that frame and split the seams, so the
   * emphasis is an inset ring plus a soft inner glow - same visual language,
   * zero layout movement.
   */
  .feature:hover {
    background: #101011;
    box-shadow: inset 0 0 26px rgba(255, 200, 0, 0.06);
  }

  .feature:hover::after {
    border-color: #ffc800;
  }

  .feature:hover strong {
    color: #ffc800;
  }

}

@media (prefers-reduced-motion: reduce) {
  .card:hover {
    transform: none;
  }
}


/* COMING SOON */

.coming-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.status-card {
  padding: 32px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 12px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;

  color: #dedede;
  font-size: 13px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
}

.status-card p {
  margin-bottom: 0;
}


/* CONTACT */

.contact-section {
  text-align: center;

  background:
    radial-gradient(
      circle at 50% 100%,
      rgba(255, 255, 255, 0.07),
      transparent 35%
    ),
    #050505;
}

.contact-copy {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.contact-email {
  display: inline-block;
  margin-top: 18px;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}


/* FOOTER */

.footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;

  padding-top: 34px;
  padding-bottom: 34px;

  color: #8f8f8f;
  font-size: 13px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;

  padding-top: 40px;
  padding-bottom: 10px;
}

.footer-col-title {
  margin: 0 0 16px;
  color: #ffc800;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffc800;
  outline: none;
}


/* HEADER: COLLAPSED NAVIGATION (small screens only) */

@media (max-width: 760px) {

  .site-header-inner {
    grid-template-columns: auto 1fr;
    row-gap: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav,
  .site-actions {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .site-header.is-open .site-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding-top: 10px;
    border-top: 1px solid var(--header-line);
  }

  .site-header.is-open .site-nav a {
    padding: 13px 14px;
    font-size: 16px;
  }

  .site-header.is-open .site-actions {
    display: block;
    padding-top: 8px;
    padding-bottom: 18px;
  }

  .site-header.is-open .nav-cta {
    justify-content: center;
    width: 100%;
    padding: 12px 18px;
  }

}


/* TABLET */

@media (max-width: 850px) {

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

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

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

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

  .section {
    padding: 72px 0;
  }

}


/* MOBILE */

@media (max-width: 520px) {

  .container {
    width: calc(100% - 28px);
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
    letter-spacing: -1.8px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.6vw, 48px);
    letter-spacing: -1.1px;
  }

  .hero-eyebrow {
    margin-bottom: 22px;
  }

  .hero-pill {
    padding: 7px 14px;
    font-size: 10.5px;
    letter-spacing: 1.7px;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 16px;
  }

  .site-brand-mark {
    --mark-h: 27px;
  }

  .brand-tagline {
    font-size: 0.58rem;
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .hero {
    min-height: min(520px, calc(100vh - var(--header-h)));
    min-height: min(520px, calc(100svh - var(--header-h)));
  }

  .hero .container {
    padding-top: 48px;
    padding-bottom: 60px;
  }

  .hero + .section {
    padding-top: 56px;
  }

  .audience-statement span {
    display: inline;
  }

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

  .entertainment-card img {
    height: 220px;
  }

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

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-inner {
    flex-direction: column;
  }

}
