:root {
  --bg: #050912;
  --bg-2: #071827;
  --panel: rgba(8, 31, 48, 0.76);
  --panel-2: rgba(11, 51, 72, 0.72);
  --cyan: #19d8ff;
  --cyan-soft: rgba(25, 216, 255, 0.22);
  --gold: #ffc928;
  --green: #40ff82;
  --text: #edf8ff;
  --muted: #a7c6d7;
  --line: rgba(25, 216, 255, 0.30);
  --shadow: 0 24px 90px rgba(0, 0, 0, .55);
  --radius: 24px;
  --max: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 68% 0%, rgba(255, 201, 40, .15), transparent 25%),
    radial-gradient(circle at 22% 14%, rgba(25, 216, 255, .16), transparent 30%),
    linear-gradient(180deg, #04070d 0%, #07121e 48%, #03070d 100%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(25,216,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,216,255,.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent, black 22%, black 76%, transparent);
  pointer-events: none;
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
code { color: var(--gold); }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(3, 8, 15, .78);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); }
.brand-mark { width: 24px; height: 24px; position: relative; border: 2px solid var(--cyan); transform: rotate(45deg); box-shadow: 0 0 24px var(--cyan-soft); }
.brand-mark::after { content: ""; position: absolute; inset: 5px; background: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--muted); font-weight: 750; font-size: 14px; }
.nav-links a:hover { color: var(--text); }

.hero { position: relative; min-height: calc(100vh - 74px); display: grid; align-items: center; overflow: hidden; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 7, 13, .98) 0%, rgba(4, 7, 13, .88) 34%, rgba(4, 7, 13, .22) 72%, rgba(4, 7, 13, .7) 100%),
    linear-gradient(180deg, rgba(4, 7, 13, .22), rgba(4, 7, 13, .98));
  pointer-events: none;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .75; filter: saturate(1.08) contrast(1.06); }
.hero-inner { position: relative; z-index: 2; width: min(var(--max), calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; padding: 88px 0 112px; }
.hero-copy-block { max-width: 650px; }
.kicker { color: var(--cyan); letter-spacing: .18em; font-size: 13px; font-weight: 950; text-transform: uppercase; }
h1 { margin: 12px 0 0; font-size: clamp(58px, 9vw, 132px); line-height: .82; letter-spacing: -.065em; text-transform: uppercase; }
.hero-tagline { margin: 22px 0 18px; color: var(--gold); font-weight: 950; font-size: clamp(24px, 3vw, 38px); letter-spacing: .02em; text-transform: uppercase; }
.hero-copy { max-width: 620px; color: #cae9f7; font-size: 19px; line-height: 1.75; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border-radius: 8px; border: 1px solid var(--line); background: rgba(10, 29, 43, .78); color: var(--text); font-weight: 950; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset; }
.btn.primary { color: #06101a; background: linear-gradient(135deg, #1ae2ff, #1bb6e7); border-color: transparent; box-shadow: 0 14px 42px rgba(25,216,255,.26); }
.btn.gold { color: #130d02; background: linear-gradient(135deg, #ffd84a, #ffb000); border-color: transparent; box-shadow: 0 18px 54px rgba(255,201,40,.26); }

.mission-card { border: 1px solid var(--line); background: linear-gradient(180deg, rgba(8,31,48,.70), rgba(3,9,17,.84)); border-radius: var(--radius); box-shadow: var(--shadow), 0 0 40px rgba(25,216,255,.14); padding: 26px; overflow: hidden; position: relative; align-self: end; }
.mission-card::before { content: ""; position: absolute; inset: -1px; background: radial-gradient(circle at 75% 20%, rgba(255,201,40,.24), transparent 30%), radial-gradient(circle at 10% 0%, rgba(25,216,255,.20), transparent 28%); opacity: .8; pointer-events: none; }
.mission-topline, .mission-title, .mission-grid { position: relative; z-index: 1; }
.mission-topline { color: var(--cyan); text-transform: uppercase; letter-spacing: .16em; font-size: 13px; font-weight: 950; }
.mission-title { margin-top: 10px; font-size: clamp(30px, 4vw, 56px); line-height: .96; font-weight: 950; text-transform: uppercase; letter-spacing: -.04em; }
.mission-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
.mission-grid div { padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: rgba(0,0,0,.22); }
.mission-grid span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; font-weight: 900; }
.mission-grid strong { display: block; margin-top: 8px; font-size: 22px; color: var(--gold); }

section { padding: 86px 0; }
.section-inner { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 28px; }
h2 { margin: 8px 0 0; font-size: clamp(34px, 4vw, 58px); line-height: .98; letter-spacing: -.045em; text-transform: uppercase; }
.section-copy { color: var(--muted); max-width: 690px; line-height: 1.75; font-size: 17px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { min-height: 250px; padding: 28px; background: linear-gradient(180deg, var(--panel), rgba(4,13,24,.72)); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 20px 60px rgba(0,0,0,.28); position: relative; overflow: hidden; }
.feature::before { content: ""; position: absolute; width: 160px; height: 160px; border-radius: 50%; right: -70px; top: -70px; background: radial-gradient(circle, var(--cyan-soft), transparent 70%); }
.feature .num { color: var(--gold); font-size: 13px; letter-spacing: .16em; font-weight: 950; text-transform: uppercase; }
.feature h3 { margin: 18px 0 12px; font-size: 26px; line-height: 1.05; text-transform: uppercase; }
.feature p { margin: 0; color: #bed9e7; line-height: 1.7; }

.trailer-card { position: relative; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: #03070d; box-shadow: var(--shadow); min-height: 440px; }
.trailer-card img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; opacity: .82; }
.trailer-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.trailer-overlay { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 32px; background: linear-gradient(180deg, rgba(3,7,13,.14), rgba(3,7,13,.68)); }
.trailer-overlay h3 { margin: 16px 0 8px; font-size: clamp(32px, 4vw, 54px); text-transform: uppercase; }
.trailer-overlay p { max-width: 620px; margin: 0 auto; color: #cae9f7; line-height: 1.7; }
.play-orb { width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center; padding-left: 6px; color: #07111a; background: linear-gradient(135deg, #1ae2ff, #ffc928); box-shadow: 0 20px 70px rgba(25,216,255,.34); font-size: 36px; font-weight: 950; }

.gallery-new { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.shot { margin: 0; position: relative; min-height: 250px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: rgba(6,20,33,.8); box-shadow: var(--shadow); }
.shot.wide { grid-column: span 2; grid-row: span 2; }
.shot img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/9; }
.shot figcaption { position: absolute; left: 16px; bottom: 16px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--text); background: rgba(3, 8, 15, .72); backdrop-filter: blur(12px); font-size: 12px; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }

.panel { border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(180deg, var(--panel), rgba(2,8,15,.78)); box-shadow: var(--shadow); padding: 28px; }
.studio-panel { display: grid; grid-template-columns: 1fr; gap: 24px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: rgba(0,0,0,.18); }
.stat span { color: var(--muted); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 950; }
.stat strong { display: block; margin-top: 8px; font-size: 28px; color: var(--gold); }
.cta-panel { text-align: center; border: 1px solid var(--line); background: radial-gradient(circle at 50% 0, rgba(25,216,255,.24), transparent 40%), linear-gradient(180deg, rgba(7,32,49,.78), rgba(2,8,15,.92)); border-radius: 26px; box-shadow: var(--shadow); padding: 54px 28px; }
.cta-panel p { color: var(--muted); font-size: 18px; }
.footer { border-top: 1px solid var(--line); background: rgba(2, 7, 13, .92); padding: 34px 0; color: var(--muted); }
.footer-inner { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer a { color: var(--cyan); }

.legal-page main, .support-page main { width: min(880px, calc(100% - 40px)); margin: 0 auto; padding: 72px 0; }
.legal-box { background: var(--panel); border: 1px solid var(--line); border-radius: 20px; padding: 34px; box-shadow: var(--shadow); }
.legal-box h1 { font-size: clamp(42px, 5vw, 78px); line-height: .9; }
.legal-box h2 { font-size: 26px; margin-top: 34px; }
.legal-box p, .legal-box li { color: #cae9f7; line-height: 1.75; }
.legal-box a { color: var(--cyan); text-decoration: underline; }

@media (max-width: 920px) {
  .hero-inner, .section-head { grid-template-columns: 1fr; display: block; }
  .mission-card { margin-top: 32px; }
  .grid-3, .stat-grid { grid-template-columns: 1fr 1fr; }
  .gallery-new { grid-template-columns: 1fr; }
  .shot.wide { grid-column: auto; grid-row: auto; }
  .nav-links { display: none; }
}
@media (max-width: 620px) {
  h1 { font-size: 62px; }
  .grid-3, .stat-grid { grid-template-columns: 1fr; }
  .trailer-card, .trailer-card img { min-height: 320px; }
}
