    :root {
      --gold: #f5b800;
      --gold-hover: #ffd000;
      --orange: #f59a23;
      --dark: #05070b;
      --dark-2: #0b0f17;
      --dark-3: #121722;
      --text: #ffffff;
      --text-muted: #a0a8b8;
      --border: rgba(255,255,255,0.08);
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--dark);
      color: var(--text);
      line-height: 1.5;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 14px 40px;
      display: flex; align-items: center; justify-content: space-between;
      background: linear-gradient(to bottom, rgba(5,7,11,0.95), rgba(5,7,11,0.7), transparent);
      backdrop-filter: blur(10px);
    }
    .nav-brand { display: flex; align-items: center; gap: 12px; }
    .nav-logo { height: 40px; width: auto; }
    .nav-brand-text { font-size: 16px; font-weight: 700; }
    .nav-links { display: flex; gap: 28px; font-size: 14px; font-weight: 500; color: var(--text-muted); }
    .nav-links a:hover { color: var(--text); }
    .nav-cta {
      background: var(--gold); color: #000; font-weight: 700; font-size: 13px;
      padding: 11px 22px; border-radius: 6px; transition: background 0.2s, transform 0.2s;
    }
    .nav-cta:hover { background: var(--gold-hover); transform: translateY(-1px); }

    .hero {
      position: relative; height: 100vh; min-height: 680px;
      display: flex; align-items: center; justify-content: center;
      text-align: center; overflow: hidden;
    }
    .hero-video {
      opacity: 0.55;
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; z-index: 0;
    }
    .hero-video-desktop { display: block; }
    .hero-video-mobile { display: none; }
    @media (max-width: 768px) {
      .hero-video-desktop { display: none; }
      .hero-video-mobile { display: block; }
      .nav-brand-text { display: none; }
    }
    .hero-overlay {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(to bottom, rgba(5,7,11,0.5) 0%, rgba(5,7,11,0.25) 45%, rgba(5,7,11,0.8) 100%);
    }
    .hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 24px; }
    .hero-logo {
      width: min(320px, 70vw); margin: 0 auto 24px;
      filter: drop-shadow(0 10px 28px rgba(0,0,0,0.55));
    }
    .hero-eyebrow {
      font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
    }
    .hero-title {
      font-size: clamp(40px, 6.5vw, 68px); font-weight: 800;
      letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 10px;
      text-shadow: 0 4px 28px rgba(0,0,0,0.55);
    }
    .hero-sub { font-size: 17px; color: rgba(255,255,255,0.88); margin-bottom: 6px; font-weight: 500; }
    .hero-powered { display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); margin: 14px 0 32px; }
    .hero-powered span { font-weight: 500; }
    .hero-genesis-link { display: block; width: 65%; max-width: 65%; margin-inline: auto; }
    .hero-genesis-logo { width: 100%; height: auto; }
    .hero-genesis-link:focus-visible { outline: 2px solid var(--orange); outline-offset: 6px; }
    .hero-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
    .hero-actions > a {
      display: inline-flex; align-items: center; justify-content: center;
      width: min(100%, 340px); min-height: 54px;
    }

    .btn-primary {
      background: var(--gold); color: #000; font-weight: 700; font-size: 15px;
      padding: 15px 34px; border-radius: 8px; letter-spacing: 0.03em;
      transition: all 0.2s ease; border: none; cursor: pointer;
    }
    .btn-primary:hover {
      background: var(--gold-hover); transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(245,184,0,0.4);
    }
    .btn-secondary {
      background: transparent; border: 2px solid var(--orange); border-radius: 8px;
      color: var(--orange); font-size: 15px; font-weight: 700;
      padding: 13px 20px; letter-spacing: 0.03em;
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      transition: color 0.2s, border-color 0.2s, transform 0.2s;
    }
    .btn-secondary svg { width: 20px; height: 20px; flex-shrink: 0; }
    .btn-secondary:hover { color: var(--gold-hover); border-color: var(--gold-hover); transform: translateY(-2px); }
    .hero-actions > a:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }

    section { padding: 90px 40px; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-label {
      font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
    }
    .section-title {
      font-size: clamp(26px, 3.8vw, 38px); font-weight: 750;
      letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.15;
    }
    .section-desc { font-size: 16px; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.65; }

    .about { background: var(--dark-2); }
    .about-grid {
      display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px;
      align-items: center; margin-top: 40px;
    }
    .about-text p { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
    .feature-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .feature-card {
      background: var(--dark-3); border: 1px solid var(--border);
      border-radius: 12px; padding: 20px;
    }
    .feature-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
    .feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }
    .about-image {
      display: block; cursor: pointer;
      border-radius: 14px; overflow: hidden; aspect-ratio: 4/3;
      background: var(--dark-3); position: relative;
    }
    .about-image-caption {
      position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 20px;
      background: linear-gradient(transparent, rgba(0,0,0,0.9));
      font-size: 14px; font-weight: 600;
    }

    .method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .method-card {
      background: var(--dark-2); border: 1px solid var(--border);
      border-radius: 14px; padding: 28px 24px;
      transition: border-color 0.2s, transform 0.2s;
    }
    .method-card:hover { border-color: rgba(245,184,0,0.4); transform: translateY(-3px); }
    .method-icon {
      width: 42px; height: 42px; background: rgba(245,184,0,0.12);
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px; font-size: 18px;
    }
    .method-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
    .method-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
    .method-card a { font-size: 13px; font-weight: 600; color: var(--gold); }

    .roadmap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .roadmap-card {
      background: var(--dark-3); border: 1px solid var(--border);
      border-radius: 14px; overflow: hidden; transition: transform 0.2s;
    }
    .roadmap-card:hover { transform: translateY(-3px); }
    .roadmap-card-img {
      height: 170px; background: #0a0e16;
      display: flex; align-items: center; justify-content: center;
      color: #555; font-size: 13px;
    }
    .roadmap-card-body { padding: 22px; }
    .roadmap-card-body .tag {
      font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
      color: var(--gold); margin-bottom: 8px;
    }
    .roadmap-card-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
    .roadmap-card-body p { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin: 0; }

    .register-card {
      background: var(--dark-2); border: 1px solid var(--border);
      border-radius: 18px; padding: 44px 40px; max-width: 700px; margin: 0 auto;
    }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; margin-bottom: 22px; }
    .form-group input, .form-group select {
      background: var(--dark-3); border: 1px solid var(--border);
      border-radius: 8px; padding: 12px 14px; color: var(--text);
      font: inherit; font-size: 16px; width: 100%; min-height: 52px; color-scheme: dark;
    }
    .form-submit { width: 100%; margin-top: 10px; padding: 15px; font-size: 15px; }

    footer {
      border-top: 1px solid var(--border); padding: 28px 40px;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 13px; color: var(--text-muted);
    }
    footer .links { display: flex; gap: 22px; }

    @media (max-width: 900px) {
      .nav-links { display: none; }
      .about-grid, .method-grid, .roadmap-grid, .form-grid { grid-template-columns: 1fr; }
      .roadmap-header { flex-direction: column; align-items: flex-start; gap: 16px; }
      .hero-logo { width: 200px; }
      section { padding: 70px 24px; }
      .register-card { padding: 32px 22px; }
      .nav { padding: 14px 20px; }
      .nav-brand-text { display: none; }
    }

/* Hornets desktop promo player */
body.promo-open { overflow: hidden; }
.promo-modal {
  margin: auto; padding: 0; width: min(1100px, 94vw); max-width: 94vw;
  max-height: 94dvh; overflow: auto; color: var(--text); background: var(--dark-2);
  border: 1px solid var(--orange); border-radius: 16px;
  box-shadow: 0 24px 100px #000c; color-scheme: dark;
}
.promo-modal::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(8px); }
.promo-heading { display: flex; align-items: center; gap: 14px; padding: 14px 20px; border-bottom: 1px solid var(--border); }
.promo-heading img { object-fit: contain; }
.promo-brand { color: var(--orange); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.promo-heading h2 { font-size: 18px; font-weight: 700; }
.promo-modal button { cursor: pointer; font: inherit; color: var(--text); background: transparent; border: 1px solid var(--border); border-radius: 6px; padding: 8px 12px; min-height: 40px; }
.promo-modal button:hover { color: var(--orange); border-color: var(--orange); }
.promo-modal :focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.promo-modal .promo-close { margin-left: auto; font-size: 26px; line-height: 1; }
.promo-screen { position: relative; background: #000; display: flex; justify-content: center; }
.promo-screen video { display: block; width: 100%; max-height: calc(94dvh - 205px); aspect-ratio: 16/9; object-fit: contain; }
.promo-watermark { position: absolute; right: 20px; top: 20px; width: 64px; opacity: .7; pointer-events: none; filter: drop-shadow(0 2px 6px #000); }
.promo-modal .promo-center-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 76px; height: 76px; border-radius: 50%; border: 2px solid var(--orange); background: #05070bcc; color: var(--orange); display: grid; place-items: center; }
.promo-modal [hidden] { display: none; }
.promo-controls { padding: 12px 20px; }
.promo-rotate-hint { display: none; }
@media (orientation: portrait) {
  .promo-rotate-hint {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 10px 14px; background: rgba(245,154,35,.08);
    border-bottom: 1px solid var(--border); color: var(--orange);
    font-size: 12px; text-align: center;
  }
  .promo-rotate-hint svg { flex-shrink: 0; }
}
.promo-controls input { accent-color: var(--orange); cursor: pointer; }
.promo-seek { display: block; width: 100%; margin: 0 0 10px; }
.promo-control-row { display: flex; align-items: center; gap: 12px; }
.promo-control-spacer { flex: 1; }
.promo-time { font-size: 13px; font-variant-numeric: tabular-nums; color: var(--text-muted); white-space: nowrap; }
.promo-volume { width: 90px; }
.promo-status { color: var(--text-muted); font-size: 13px; }
.promo-status:not(:empty) { margin-top: 8px; }
.promo-modal:fullscreen { max-width: none; max-height: none; width: 100%; height: 100%; border: 0; border-radius: 0; }
.promo-modal:fullscreen .promo-player { height: 100%; display: flex; flex-direction: column; }
.promo-modal:fullscreen .promo-screen { flex: 1; min-height: 0; }
.promo-modal:fullscreen video { height: 100%; max-height: 100%; }
@media (max-width: 600px) {
  .promo-heading h2 { font-size: 14px; }
  .promo-heading, .promo-controls { padding: 10px; }
  .promo-control-row { flex-wrap: wrap; gap: 8px; }
  .promo-volume { width: 64px; }
}

/* Mobile playback uses the full screen, without the desktop modal frame. */
.mobile-promo { position: fixed; inset: 0; z-index: 1000; background: #000; }
.mobile-promo video { width: 100%; height: 100%; object-fit: contain; }
.mobile-promo .mobile-rotate-hint { display: none; }
.mobile-promo-close { position: absolute; top: max(12px, env(safe-area-inset-top)); right: max(12px, env(safe-area-inset-right)); width: 44px; height: 44px; border: 1px solid #ffffff66; border-radius: 50%; background: #0008; color: #fff; font-size: 28px; cursor: pointer; }
@media (orientation: portrait) {
  .mobile-promo .mobile-rotate-hint:not([hidden]) {
    display: flex; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    flex-direction: column; gap: 8px; width: max-content; max-width: 80%; padding: 14px;
    background: rgba(0,0,0,.65); border: 0; border-radius: 12px; pointer-events: none;
  }
  .mobile-rotate-hint svg { width: 40px; height: 40px; }
}

    .roadmap-card-img { overflow: hidden; }
    .roadmap-card-img img { width: 100%; height: 100%; object-fit: cover; }

.about-photo { width: 100%; height: 100%; object-fit: cover; transition: transform .2s ease, filter .2s ease; }
.about-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
  display: grid; place-items: center; width: 76px; height: 76px;
  border: 3px solid var(--orange); border-radius: 50%;
  background: rgba(5,7,11,.75); color: var(--orange);
  box-shadow: 0 6px 24px #0008;
}
.about-image:hover .about-play, .about-image:focus-visible .about-play { background: var(--orange); color: var(--dark); }
.about-image:hover .about-photo, .about-image:focus-visible .about-photo { transform: scale(1.03); filter: brightness(.8); }
.about-image:focus-visible { outline: 2px solid var(--orange); outline-offset: 5px; }
@media (prefers-reduced-motion: reduce) {
  .about-photo { transition: none; }
  .about-image:hover .about-photo, .about-image:focus-visible .about-photo { transform: none; }
}

#register { scroll-margin-top: 90px; }
.form-group { min-width: 0; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 600; }
.form-group input:focus, .form-group select:focus { outline: 2px solid var(--orange); outline-offset: 2px; border-color: var(--orange); }
.form-group input, .form-group select { scroll-margin-block: 110px; }
.form-group input::placeholder { color: var(--text-muted); opacity: 1; }
.form-help { margin: 7px 0 0; color: var(--text-muted); font-size: 13px; }
.form-optional { color: var(--text-muted); font-weight: 400; }
.form-submit { min-height: 54px; white-space: normal; }
@media (max-width: 600px) {
  .register { padding: 48px 16px; }
  .register-card { padding: 26px 18px; }
  .register-card .section-title { font-size: 26px; }
  .form-grid { gap: 20px; }
}
.method-icon { color: var(--gold); }
.method-card { display: flex; flex-direction: column; }
.method-card .method-benefit { margin: auto 0 0; padding-top: 18px; border-top: 1px solid var(--border); }
.method-benefit strong { display: block; margin-bottom: 6px; color: var(--gold); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.genesis-partner { display: flex; flex-direction: column; align-items: center; gap: 24px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); text-align: center; }
.genesis-partner img { width: min(360px, 65%); height: auto; }
.genesis-partner .btn-secondary { max-width: 100%; }
.genesis-partner a:focus-visible { outline: 2px solid var(--orange); outline-offset: 5px; }
.team-videos { background: var(--dark-2); }
.team-videos-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.video-carousel-nav { display: flex; gap: 10px; }
.video-carousel-nav button { width: 46px; height: 46px; border: 1px solid var(--orange); border-radius: 50%; background: transparent; color: var(--orange); font-size: 22px; cursor: pointer; }
.video-carousel-nav button:hover:not(:disabled) { background: var(--orange); color: var(--dark); }
.video-carousel-nav button:disabled { opacity: .3; cursor: default; }
.team-video-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 0 18px; margin: 0; list-style: none; scrollbar-width: thin; scrollbar-color: var(--orange) var(--dark-3); }
.team-video-card { flex: 0 0 calc((100% - 40px) / 2.5); min-width: 0; scroll-snap-align: start; }
.team-video-card > a { display: block; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); background: var(--dark); }
.team-video-thumb { display: block; aspect-ratio: 16/9; position: relative; overflow: hidden; }
.team-video-thumb > img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s, filter .2s; }
.team-video-placeholder { background: radial-gradient(ellipse at top, #343024, #080b10 80%); }
.team-video-placeholder > img { object-fit: contain; padding: 24px; opacity: .5; }
.team-video-play { display: grid; place-items: center; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; border: 2px solid var(--orange); border-radius: 50%; color: var(--orange); background: #05070bbf; }
.team-video-label { display: flex; justify-content: space-between; gap: 12px; padding: 18px; font-weight: 650; }
.team-video-label > span { color: var(--orange); }
.team-video-card a:hover .team-video-play, .team-video-card a:focus-visible .team-video-play { background: var(--orange); color: var(--dark); }
.team-video-card a:hover .team-video-thumb > img { transform: scale(1.04); filter: brightness(.8); }
.team-video-card a:focus-visible, .video-carousel-nav button:focus-visible { outline: 2px solid var(--orange); outline-offset: -3px; }
.mobile-promo-status { position: absolute; bottom: 80px; left: 10%; right: 10%; text-align: center; color: #fff; background: #000b; padding: 12px; }
.mobile-promo-status:empty { display: none; }
@media (max-width: 600px) {
  .team-video-card { flex-basis: 82%; }
  .team-video-track { gap: 14px; }
  .team-videos-header { align-items: flex-end; }
  .video-carousel-nav { gap: 6px; padding-bottom: 16px; }
  .video-carousel-nav button { width: 42px; height: 42px; }
}
@media (prefers-reduced-motion: reduce) {
  .team-video-thumb > img { transition: none; }
  .team-video-card a:hover .team-video-thumb > img { transform: none; }
}

.video-loading {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 22px 28px; border: 1px solid rgba(245,154,35,.35); border-radius: 14px;
  background: rgba(5,7,11,.88); color: #fff; font-size: 14px; font-weight: 600;
  text-align: center; pointer-events: none;
}
.video-loading[hidden] { display: none; }
.video-loading-spinner { width: 42px; height: 42px; border: 3px solid rgba(245,154,35,.2); border-top-color: var(--orange); border-radius: 50%; animation: video-loading-spin .8s linear infinite; }
@keyframes video-loading-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .video-loading-spinner { animation: none; } }

.team-youtube-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; color: var(--orange); font-size: 14px; font-weight: 600; }
.team-youtube-link:hover { color: var(--gold-hover); text-decoration: underline; }
.team-youtube-link:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }
