:root {
  --bg: #070a10;
  --surface: #0d131d;
  --surface-2: #121a26;
  --line: #253146;
  --line-soft: #182235;
  --text: #f5f7fb;
  --soft: #b7c0d0;
  --muted: #7f8ca3;
  --gold: #f0c75e;
  --gold-dark: #211b0c;
  --blue: #79a9ff;
  --green: #49d990;
  --red: #ef5965;
  --content: min(1420px, calc(100% - 48px));
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Inter, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font: 16px/1.6 var(--body);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 10, 16, .94);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(14px);
}
.topbar-inner {
  width: var(--content);
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 42px; height: 42px; object-fit: cover; border: 1px solid var(--line); }
.brand-name { display: block; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.brand-tag { display: block; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 22px; color: var(--soft); font-size: 13px; font-weight: 800; }
.nav a:hover, .nav a[aria-current="page"] { color: #fff; }

.button {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
}
.button:hover { border-color: var(--gold); }
.button-primary { background: var(--gold); border-color: var(--gold); color: #10141b; }
.button-primary:hover { background: #ffd978; }
.button-small { min-height: 40px; padding: 0 14px; }

.hero {
  border-bottom: 1px solid var(--line-soft);
  background: #090d14;
}
.hero-inner {
  width: var(--content);
  margin: 0 auto;
  padding: 74px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(520px, 1.22fr);
  gap: 54px;
  align-items: center;
}
.eyebrow, .kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow { margin-bottom: 18px; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  max-width: 760px;
  margin: 0;
  font: 900 clamp(44px, 5.3vw, 78px)/.96 var(--display);
  letter-spacing: .01em;
  text-transform: uppercase;
}
.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--soft);
  font-size: clamp(17px, 1.25vw, 20px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-note { margin-top: 14px; color: var(--muted); font-size: 13px; }
.hero-visual { position: relative; }
.hero-frame {
  padding: 8px;
  background: #030509;
  border: 1px solid #33435f;
  box-shadow: 22px 24px 0 #111723;
}
.hero-frame img { width: 100%; aspect-ratio: 1810/1046; object-fit: cover; }
.hero-stamp {
  position: absolute;
  right: -14px;
  bottom: -18px;
  padding: 12px 16px;
  background: var(--gold);
  color: #11151d;
  border: 4px solid var(--bg);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.proof-bar { background: #0a0f17; border-bottom: 1px solid var(--line-soft); }
.proof-grid { width: var(--content); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.proof { min-height: 92px; padding: 20px 24px; border-right: 1px solid var(--line-soft); }
.proof:first-child { border-left: 1px solid var(--line-soft); }
.proof strong { display: block; color: #fff; font-size: 18px; }
.proof span { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

main { background: var(--bg); }
.section, .page-main { width: var(--content); margin: 0 auto; padding: 90px 0; scroll-margin-top: 90px; }
.section-head { display: grid; grid-template-columns: minmax(0, .9fr) minmax(300px, .58fr); gap: 42px; align-items: end; margin-bottom: 38px; }
h2 { margin: 8px 0 0; font: 900 clamp(34px, 4vw, 58px)/1 var(--display); letter-spacing: .015em; text-transform: uppercase; }
.lead { margin: 0; color: var(--soft); font-size: 18px; }

.update-band { background: #0b111a; border-bottom: 1px solid var(--line-soft); }
.update-inner { width: var(--content); margin: 0 auto; padding: 58px 0; }
.update-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.update-card { padding: 24px; border-right: 1px solid var(--line); background: var(--surface); }
.update-card:last-child { border-right: 0; }
.update-card small { color: var(--gold); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.update-card h3 { margin: 8px 0 8px; font-size: 20px; line-height: 1.15; }
.update-card p { margin: 0; color: var(--soft); font-size: 14px; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.feature-card { min-height: 250px; padding: 28px; background: var(--surface); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-card:nth-child(4n) { border-right: 0; }
.feature-card:nth-last-child(-n+4) { border-bottom: 0; }
.feature-number { color: var(--gold); font: 900 13px/1 var(--body); letter-spacing: .13em; }
.feature-card h3 { margin: 34px 0 10px; font-size: 22px; line-height: 1.1; }
.feature-card p { margin: 0; color: var(--soft); font-size: 15px; }
.inline-link { color: var(--gold); font-weight: 900; }
.inline-link:hover { text-decoration: underline; }

.gallery-shell { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 18px; }
.gallery-stage { border: 1px solid var(--line); background: #030509; min-width: 0; }
.gallery-stage img { width: 100%; aspect-ratio: 1810/1046; object-fit: cover; }
.gallery-caption { padding: 22px 24px; border-top: 1px solid var(--line); background: var(--surface); }
.gallery-caption h3 { margin: 0 0 5px; font-size: 22px; }
.gallery-caption p { margin: 0; color: var(--soft); font-size: 14px; }
.gallery-list { display: grid; gap: 8px; align-content: start; }
.gallery-choice {
  width: 100%;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 13px;
  align-items: center;
  text-align: left;
  color: var(--soft);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  cursor: pointer;
}
.gallery-choice:hover, .gallery-choice.active { border-color: var(--gold); color: #fff; }
.gallery-choice img { width: 70px; height: 42px; object-fit: cover; }
.gallery-choice strong { display: block; font-size: 14px; }
.gallery-choice span { display: block; color: var(--muted); font-size: 11px; }

.start-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.start-card { min-height: 280px; padding: 30px; background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; }
.start-card.featured { border-top: 4px solid var(--gold); }
.start-card .label { color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.start-card h3 { margin: 28px 0 12px; font: 900 30px/1 var(--display); text-transform: uppercase; }
.start-card p { margin: 0; color: var(--soft); }
.start-card ul { margin: auto 0 0; padding: 24px 0 0 18px; color: var(--muted); font-size: 14px; }

.world-block { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr); border: 1px solid var(--line); background: var(--surface); }
.world-block img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; border-right: 1px solid var(--line); }
.world-copy { padding: 38px; }
.world-copy h2 { font-size: clamp(34px, 3.4vw, 52px); }
.world-copy > p { color: var(--soft); }
.world-list { display: grid; gap: 0; margin-top: 28px; border-top: 1px solid var(--line); }
.world-item { padding: 18px 0; border-bottom: 1px solid var(--line); }
.world-item strong { display: block; color: var(--gold); font-size: 15px; }
.world-item span { color: var(--soft); font-size: 14px; }

.callout { border: 1px solid #705c23; background: var(--gold-dark); padding: 34px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 30px; align-items: center; }
.callout h3 { margin: 0 0 8px; font-size: 25px; }
.callout p { margin: 0; color: #d9cfaf; }

.buy { width: 100%; padding: 82px 0; border-top: 1px solid #4e4020; background: #121006; }
.buy-inner { width: min(900px, calc(100% - 32px)); margin: 0 auto; text-align: center; }
.buy-inner p { color: var(--soft); font-size: 18px; }

.page-hero { background: #0a0f17; border-bottom: 1px solid var(--line); }
.page-hero-inner { width: var(--content); margin: 0 auto; padding: 70px 0 58px; }
.page-hero h1 { max-width: 980px; font-size: clamp(42px, 5vw, 72px); }
.page-hero p { max-width: 820px; margin: 20px 0 0; color: var(--soft); font-size: 19px; }
.page-meta { margin-top: 22px; color: var(--muted); font-size: 13px; }

.feature-page-grid { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 34px; }
.side-nav { position: sticky; top: 94px; align-self: start; border: 1px solid var(--line); background: var(--surface); }
.side-nav a { display: block; padding: 12px 16px; border-bottom: 1px solid var(--line-soft); color: var(--soft); font-size: 13px; font-weight: 800; }
.side-nav a:last-child { border-bottom: 0; }
.side-nav a:hover { color: var(--gold); }
.feature-sections { display: grid; gap: 18px; }
.feature-section { scroll-margin-top: 94px; padding: 34px; border: 1px solid var(--line); background: var(--surface); }
.feature-section h2 { font-size: clamp(30px, 3vw, 44px); }
.feature-section > p { color: var(--soft); font-size: 17px; }
.detail-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.detail-card { padding: 20px; border: 1px solid var(--line-soft); background: #0a0f17; }
.detail-card h3 { margin: 0 0 7px; font-size: 17px; }
.detail-card p { margin: 0; color: var(--soft); font-size: 14px; }
.note { margin-top: 22px; padding: 17px 18px; border-left: 3px solid var(--gold); background: #17140a; color: #dcd2b5; font-size: 14px; }

.roadmap-grid { display: grid; gap: 18px; }
.roadmap-phase { border: 1px solid var(--line); background: var(--surface); }
.phase-head { padding: 30px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 170px 1fr; gap: 26px; }
.phase-status { color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.phase-head h2 { margin-top: 0; font-size: clamp(30px, 3vw, 46px); }
.phase-head p { margin: 10px 0 0; color: var(--soft); }
.phase-items { display: grid; grid-template-columns: repeat(3, 1fr); }
.phase-item { min-height: 185px; padding: 24px; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.phase-item:nth-child(3n) { border-right: 0; }
.phase-item h3 { margin: 0 0 8px; font-size: 18px; }
.phase-item p { margin: 0; color: var(--soft); font-size: 14px; }

.policy-wrap { max-width: 980px; }
.policy { padding: 30px 0; border-bottom: 1px solid var(--line); }
.policy h2 { font-size: 28px; text-transform: none; }
.policy p, .policy li { color: var(--soft); }
.policy ul { padding-left: 20px; }

footer { border-top: 1px solid var(--line-soft); background: #070a10; }
.footer-inner { width: var(--content); min-height: 98px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a:hover { color: #fff; }

@media (max-width: 1120px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 900px; }
  .proof-grid, .update-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .update-card:nth-child(2) { border-right: 0; }
  .update-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feature-card:nth-child(4n) { border-right: 1px solid var(--line); }
  .feature-card:nth-child(2n) { border-right: 0; }
  .feature-card:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); }
  .feature-card:nth-last-child(-n+2) { border-bottom: 0; }
  .gallery-shell { grid-template-columns: 1fr; }
  .gallery-list { grid-template-columns: repeat(3, 1fr); }
  .gallery-choice { grid-template-columns: 1fr; }
  .gallery-choice img { width: 100%; height: auto; aspect-ratio: 16/9; }
  .world-block { grid-template-columns: 1fr; }
  .world-block img { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-page-grid { grid-template-columns: 1fr; }
  .side-nav { position: static; display: flex; flex-wrap: wrap; }
  .side-nav a { border-right: 1px solid var(--line-soft); }
}

@media (max-width: 760px) {
  :root { --content: calc(100% - 28px); }
  .topbar-inner { min-height: 62px; }
  .brand-name { font-size: 12px; }
  .brand-tag, .nav > a:not(.button) { display: none; }
  .hero-inner { padding: 58px 0 46px; gap: 38px; }
  h1 { font-size: clamp(40px, 13vw, 58px); }
  .hero-frame { box-shadow: 10px 12px 0 #111723; }
  .proof-grid, .update-grid, .feature-grid, .start-grid, .detail-grid, .phase-items { grid-template-columns: 1fr; }
  .proof { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .proof:first-child { border-left: 0; }
  .proof:last-child { border-bottom: 0; }
  .update-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .update-card:last-child { border-bottom: 0; }
  .feature-card, .feature-card:nth-child(4n), .feature-card:nth-child(2n) { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-card:last-child { border-bottom: 0; }
  .section, .page-main { padding: 64px 0; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .gallery-list { grid-template-columns: repeat(2, 1fr); }
  .world-copy, .feature-section { padding: 24px; }
  .callout { grid-template-columns: 1fr; }
  .phase-head { grid-template-columns: 1fr; }
  .phase-item { border-right: 0; }
  .footer-inner { padding: 24px 0; align-items: flex-start; flex-direction: column; }
}

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