/* assets/css/styles.css */
:root {
  --bg: #050712;
  --panel: rgba(9, 18, 43, 0.78);
  --line: rgba(140, 236, 255, 0.24);
  --text: #f8fbff;
  --muted: #a8bad7;
  --cyan: #22e6ff;
  --yellow: #ffd12e;
  --orange: #ff8a00;
  --pink: #ff2ebd;
  --green: #6dffb2;
  --heading: Impact, "Arial Black", "Arial Narrow", system-ui, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(34, 230, 255, 0.22), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(255, 46, 189, 0.18), transparent 34%),
    linear-gradient(180deg, #050712 0%, #09152f 48%, #04050c 100%);
  font-family: var(--body);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(34,230,255,0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(34,230,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 75%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 5px);
  opacity: .45;
}

a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 18, 0.88);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(1240px, calc(100% - 34px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 178px;
}

.brand-logo {
  width: 138px;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255,209,46,.16));
}

.nav-toggle {
  display: none;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 10px 13px;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a, nav button {
  border: 0;
  color: var(--muted);
  background: transparent;
  text-decoration: none;
  padding: 11px 12px;
  border-radius: 999px;
  font-size: .92rem;
  transition: 160ms ease;
  white-space: nowrap;
}

nav a:hover, nav button:hover, nav a.active {
  color: var(--text);
  background: rgba(34,230,255,.1);
  box-shadow: inset 0 0 0 1px rgba(34,230,255,.18);
}

.nav-cta {
  color: #070812 !important;
  background: linear-gradient(135deg, var(--yellow), var(--orange)) !important;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(255,209,46,.24);
}

.page { display: none; }
.page.active { display: block; }

.section {
  width: min(1240px, calc(100% - 34px));
  margin: 0 auto;
  padding: 88px 0;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 22%, rgba(34,230,255,.20), transparent 30%),
    radial-gradient(circle at 74% 28%, rgba(255,209,46,.12), transparent 34%),
    radial-gradient(circle at 88% 72%, rgba(255,46,189,.14), transparent 32%),
    linear-gradient(135deg, #050712 0%, #07142f 46%, #03040a 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34,230,255,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(34,230,255,.04) 1px, transparent 1px),
    radial-gradient(circle at 52% 42%, transparent 0 26%, rgba(5,7,18,.42) 72%, #050712 100%);
  background-size: 72px 72px, 72px 72px, auto;
  opacity: .88;
}

.hero-content {
  width: min(1240px, calc(100% - 34px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 90px 0;
}

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.tag {
  color: #05101a;
  background: linear-gradient(135deg, rgba(34,230,255,.95), rgba(109,255,178,.95));
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .78rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: .86rem;
  font-weight: 1000;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1, h2, h3 { margin: 0; line-height: .95; }
h1, h2, h3, .mega { font-family: var(--heading); letter-spacing: .018em; }

.hero-logo {
  width: min(620px, 100%);
  display: block;
  margin: 0 0 24px;
  filter: drop-shadow(0 18px 1px rgba(0,0,0,.45)) drop-shadow(0 0 42px rgba(255,209,46,.16));
}

.lead {
  color: #dce9ff;
  font-size: clamp(1.06rem, 1.7vw, 1.38rem);
  line-height: 1.7;
  max-width: 720px;
}

.quote-mini {
  margin: 22px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--yellow);
  color: #fff;
  background: linear-gradient(90deg, rgba(255,209,46,.13), transparent);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.35;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.07);
  text-decoration: none;
  font-weight: 1000;
  letter-spacing: .02em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.11); }
.btn.primary {
  color: #07101a;
  border-color: transparent;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 0 26px rgba(255,138,0,.25);
}
.btn.store {
  border-color: transparent;
  color: #07101a;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 0 26px rgba(34,230,255,.22);
}

.hud-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)), var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hud-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--cyan);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 1000;
  letter-spacing: .18em;
}

.hud-screen {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  background: #050712;
}

.hud-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(rgba(0,0,0,.10), rgba(0,0,0,.20)),
    linear-gradient(180deg, transparent 34%, rgba(5,7,18,.86));
  pointer-events: none;
}

.hud-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 900ms ease, transform 1800ms ease;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hud-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hud-carousel-controls {
  position: absolute;
  z-index: 4;
  left: 22px;
  right: 22px;
  bottom: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
}

.hud-caption {
  color: #fff;
  font-size: .8rem;
  font-weight: 1000;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0,0,0,.85);
}

.hud-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  pointer-events: auto;
  max-width: 320px;
}

.hud-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.62);
  background: rgba(255,255,255,.24);
}

.hud-dot.active {
  border-color: var(--yellow);
  background: var(--yellow);
  box-shadow: 0 0 16px rgba(255,209,46,.72);
}

.hud-meter {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 4;
  display: grid;
  gap: 12px;
}

.meter-line {
  height: 13px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0,0,0,.42);
}
.meter-line span { display: block; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--yellow), var(--pink)); }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 14, 34, .72);
  padding: 17px;
}
.stat strong { display: block; color: var(--yellow); font-family: var(--heading); font-size: 2.1rem; line-height: 1; }
.stat span { color: var(--muted); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2, .page-title {
  font-size: clamp(2.7rem, 6vw, 6.2rem);
  text-transform: uppercase;
  color: #fff;
  text-shadow: 3px 3px 0 rgba(0,0,0,.9), 0 0 38px rgba(34,230,255,.2);
}

.section-head p { max-width: 620px; margin: 0; color: var(--muted); line-height: 1.7; }

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

.card, .text-card, .fact-card, .video-card, .footer-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)), var(--panel);
  box-shadow: var(--shadow);
}

.card { padding: 26px; position: relative; overflow: hidden; }
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--yellow), var(--pink));
}
.card h3 { font-size: 2.1rem; color: var(--yellow); text-transform: uppercase; margin-bottom: 14px; }
.card p, .card li, .text-card p, .text-card li { color: var(--muted); line-height: 1.7; }

.trailer-shell {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: stretch;
}

.video-embed {
  overflow: hidden;
  min-height: 420px;
}
.video-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  border: 0;
}

.trailer-info { padding: 28px; }
.trailer-info h3 { color: var(--yellow); font-size: clamp(2.1rem, 4vw, 4.2rem); text-transform: uppercase; }

.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 24px;
  align-items: start;
}

.portrait {
  min-height: 640px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent, rgba(5,7,18,.58)),
    url("../images/press-kit/images/Cassius_John-Adams.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}

.text-card { padding: 34px; }
.text-card h2 { font-size: clamp(2.2rem, 5vw, 4.7rem); color: var(--yellow); text-transform: uppercase; margin-bottom: 18px; }
.text-card h3 { font-size: 2.3rem; color: var(--cyan); text-transform: uppercase; margin: 32px 0 10px; }
.text-card p:first-of-type { margin-top: 0; }

.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.tool-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  padding: 18px;
}

.tool-item strong {
  display: block;
  color: var(--yellow);
  font-family: var(--heading);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tool-item span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.press-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 22px;
  align-items: start;
}

.factsheet { display: grid; gap: 13px; }
.fact-card { padding: 18px; }
.fact-card strong {
  display: block;
  color: var(--cyan);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 7px;
}
.fact-card span, .fact-card a { color: #e8f4ff; line-height: 1.45; }

.press-video-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 16px;
  margin: 20px 0 30px;
}

.press-video-embed,
.press-social-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  overflow: hidden;
}

.press-video-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.press-social-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.press-social-card strong {
  display: block;
  color: var(--yellow);
  font-family: var(--heading);
  font-size: 1.9rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.press-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.media-tile {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(5, 7, 18, .72);
  color: #fff;
  font-weight: 900;
  font-size: .9rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.85);
  overflow: hidden;
  position: relative;
  appearance: none;
  width: 100%;
  text-align: left;
  cursor: zoom-in;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  padding: 0;
}

.media-tile img {
  display: block;
  width: 100%;
  height: 156px;
  object-fit: cover;
  background: rgba(255,255,255,.04);
}

.media-tile span {
  display: block;
  min-height: 58px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(0,0,0,.26), rgba(0,0,0,.78));
}

.media-tile:hover,
.media-tile:focus-visible {
  transform: translateY(-2px);
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(34,230,255,.18);
  outline: none;
}

.glitch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.video-card { overflow: hidden; }
.video-thumb {
  min-height: 188px;
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,.72)),
    url("../images/press-kit/images/Press-Kit_Title_2023.png") center / cover no-repeat;
  border: 0;
  width: 100%;
  display: grid;
  place-items: center;
  color: #fff;
  text-shadow: 0 0 22px rgba(0,0,0,.8);
}
.video-thumb::before {
  content: "▶";
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,.58);
  border: 2px solid rgba(255,255,255,.72);
  font-size: 1.8rem;
  padding-left: 4px;
}
.video-card .copy { padding: 20px; }
.video-card h3 { font-size: 2rem; color: var(--yellow); text-transform: uppercase; }
.video-card p { color: var(--muted); }
.video-card .btn { width: 100%; }

.footer-zone {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(4,5,12,.35), #03040a),
    radial-gradient(circle at 50% 0%, rgba(34,230,255,.18), transparent 44%);
  padding: 74px 0 38px;
}
.footer-grid {
  width: min(1240px, calc(100% - 34px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.footer-card { padding: 20px; min-height: 110px; }
.footer-card strong { color: var(--cyan); display: block; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; margin-bottom: 10px; }
.footer-card a, .footer-card span { color: var(--muted); line-height: 1.5; }
.copyright { width: min(1240px, calc(100% - 34px)); margin: 34px auto 0; color: #5e6f8f; }

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0,0,0,.82);
}
.modal.active { display: flex; }
.modal-card {
  width: min(1040px, 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
  position: relative;
}
.modal iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; }

.image-modal-card {
  width: min(1200px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  padding: 18px;
  background: rgba(3,4,10,.96);
}

.image-modal-body {
  display: grid;
  gap: 14px;
}

.image-modal-body img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  border-radius: 14px;
  background: #050712;
}

.image-modal-caption {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .04em;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(0,0,0,.7);
  color: white;
  border-radius: 999px;
  padding: 8px 12px;
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 17px;
    right: 17px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(5,7,18,.96);
    box-shadow: var(--shadow);
  }
  nav.open { display: block; }
  nav ul { display: grid; gap: 4px; }
  nav a, nav button { width: 100%; text-align: left; }
  .hero-content, .trailer-shell, .split, .press-layout, .press-video-grid { grid-template-columns: 1fr; }
  .hud-screen { min-height: 320px; }
  .portrait { position: relative; top: auto; min-height: 440px; }
  .stat-grid, .cards, .glitch-grid, .footer-grid, .tool-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: repeat(3, 1fr); }
  .section-head { display: block; }
  .section-head p { margin-top: 16px; }
}

@media (max-width: 640px) {
  .section { padding: 62px 0; }
  .hero-content { padding: 54px 0; }
  .tag-row { gap: 8px; }
  .tag { font-size: .68rem; }
  .stat-grid, .cards, .glitch-grid, .footer-grid, .media-grid, .tool-grid { grid-template-columns: 1fr; }
  .video-embed iframe { min-height: auto; }
  .text-card { padding: 24px; }
  .brand-logo { width: 112px; }
}
