:root {
  color-scheme: dark;
  --space: #050716;
  --space-deep: #02030c;
  --surface: #0c1022;
  --surface-strong: #12182c;
  --ink: #f5f7fb;
  --muted: #a8afc2;
  --quiet: #727b95;
  --cyan: #56d8ff;
  --cyan-soft: rgba(86, 216, 255, 0.14);
  --amber: #ffad33;
  --line: rgba(123, 203, 232, 0.2);
  --line-strong: rgba(86, 216, 255, 0.42);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 7%, rgba(35, 108, 175, 0.18), transparent 24rem),
    radial-gradient(circle at 90% 24%, rgba(99, 45, 156, 0.14), transparent 28rem),
    linear-gradient(180deg, var(--space-deep), var(--space) 18rem, #070919 70%, var(--space-deep));
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: 0.5;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.75) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(86, 216, 255, 0.5) 0 1px, transparent 1.4px);
  background-position: 0 0, 27px 37px;
  background-size: 83px 83px, 127px 127px;
  content: "";
  pointer-events: none;
}

img {
  max-width: 100%;
  height: auto;
}

a { color: var(--cyan); text-underline-offset: 0.2em; }
a:hover { color: #a5ebff; }

:where(a, summary):focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: max(8px, env(safe-area-inset-top));
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--space);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.skip-link:not(:focus) {
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-frame {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.vastward-header {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.vastward-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.vastward-brand img {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  box-shadow: 0 0 32px rgba(86, 216, 255, 0.18);
}

.vastward-brand span { display: grid; gap: 2px; }
.vastward-brand b { font-size: 0.98rem; letter-spacing: 0.16em; text-transform: uppercase; }
.vastward-brand small { color: var(--quiet); font-size: 0.69rem; }

.vastward-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.vastward-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.vastward-nav a:hover,
.vastward-nav a[aria-current="page"] { background: var(--cyan-soft); color: var(--ink); }

.hero {
  display: grid;
  min-height: 580px;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  padding: clamp(74px, 10vw, 130px) clamp(0px, 3vw, 32px) 88px;
}

.eyebrow,
.section-code {
  margin: 0;
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow > span { width: 20px; height: 1px; background: currentColor; box-shadow: 8px 0 18px currentColor; }

.hero h1,
.information-hero h1 {
  margin: 20px 0 22px;
  font-size: clamp(3.2rem, 7.8vw, 6.9rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.hero-lede,
.information-hero > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions,
.support-actions,
.promise-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 32px;
}

.store-status,
.primary-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(86, 216, 255, 0.16), rgba(86, 216, 255, 0.08));
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
}

.store-status { cursor: not-allowed; }
.primary-action:hover { border-color: var(--cyan); background: rgba(86, 216, 255, 0.2); color: #fff; }

.text-action { font-size: 0.85rem; font-weight: 800; text-decoration: none; }

.release-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: var(--quiet);
  font-size: 0.76rem;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 13px var(--cyan);
}

.hero-icon { position: relative; }
.hero-icon::before {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: rgba(86, 216, 255, 0.18);
  filter: blur(55px);
  content: "";
}

.hero-icon img {
  position: relative;
  display: block;
  width: min(100%, 430px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24%;
  box-shadow: var(--shadow), 0 0 90px rgba(41, 155, 216, 0.16);
}

.ship-hero {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #02040d;
  box-shadow: var(--shadow);
}

.ship-hero img { display: block; width: 100%; height: auto; }
.ship-hero figcaption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(3, 5, 15, 0.76);
  color: var(--muted);
  font-size: 0.76rem;
  backdrop-filter: blur(12px);
}

.ship-hero figcaption span { color: var(--cyan); font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }

.intro-band {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  gap: 32px;
  padding: 110px 0 70px;
}

.intro-band h2,
.showcase-copy h2,
.promise h2,
.information-page h2 {
  margin: 0;
  font-size: clamp(2rem, 4.7vw, 4.2rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.intro-band div > p,
.showcase-copy > p:not(.section-code),
.promise > p:not(.section-code) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-grid article {
  min-height: 260px;
  padding: clamp(28px, 5vw, 52px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 14, 30, 0.6);
}

.feature-number { color: var(--cyan); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.72rem; }
.feature-grid h3 { margin: 42px 0 13px; font-size: 1.35rem; }
.feature-grid p { margin: 0; color: var(--muted); line-height: 1.65; }

.gameplay-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
  padding: 130px 0;
}

.showcase-art { position: relative; padding: 0 14% 13% 0; }
.showcase-wide { display: block; width: 100%; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.showcase-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 31%;
  border: 5px solid #151a2b;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.showcase-copy h2 { margin-top: 18px; }
.signal-list { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 0.9rem; }
.signal-list li { display: flex; align-items: center; gap: 10px; }
.signal-list span { width: 7px; height: 7px; border: 1px solid var(--cyan); transform: rotate(45deg); }

.promise {
  margin-bottom: 90px;
  padding: clamp(38px, 7vw, 74px);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(86, 216, 255, 0.1), rgba(255, 173, 51, 0.05));
}

.promise h2 { max-width: 760px; margin-top: 18px; }
.promise-links a { font-weight: 800; }

.vastward-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 22px 40px;
  align-items: end;
  padding: 34px 0 max(34px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  color: var(--quiet);
}

.vastward-footer > div { display: grid; gap: 6px; }
.vastward-footer b { color: var(--ink); letter-spacing: 0.12em; text-transform: uppercase; }
.vastward-footer span { font-size: 0.76rem; }
.vastward-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px; }
.vastward-footer a { color: var(--muted); font-size: 0.78rem; text-decoration: none; }
.vastward-footer small { grid-column: 1 / -1; font-size: 0.68rem; }

.information-page { padding: 80px 0 100px; }
.information-hero { max-width: 940px; padding: 30px 0 70px; }
.information-hero h1 { max-width: 900px; }
.information-hero > p { max-width: 780px; }

.release-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 46px 0 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.release-facts div { padding: 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.release-facts dt { color: var(--quiet); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.release-facts dd { margin: 8px 0 0; color: var(--ink); font-size: 0.85rem; line-height: 1.45; }

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

.support-grid article {
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(12, 16, 34, 0.72);
}

.support-grid h2 { margin-top: 18px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.support-grid p:not(.section-code) { color: var(--muted); line-height: 1.7; }
.support-grid .quiet-note { color: var(--quiet); font-size: 0.8rem; }

.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading h2 { margin-top: 16px; }
.faq-section { margin-bottom: 90px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.45;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 22px; right: 4px; color: var(--cyan); content: "+"; font-size: 1.35rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details > div { max-width: 780px; padding: 0 42px 24px 0; color: var(--muted); line-height: 1.7; }
.faq-list p { margin: 0; }

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(30px, 6vw, 58px);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--cyan-soft);
}

.contact-panel h2 { margin-top: 14px; font-size: clamp(1.8rem, 4vw, 3.2rem); }
.contact-panel p:not(.section-code) { margin: 12px 0 0; color: var(--muted); }

.privacy-summary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--cyan-soft);
  font-size: 0.8rem;
}

.privacy-summary span { color: var(--muted); }
.privacy-summary strong { color: var(--cyan); text-transform: uppercase; }
.policy-date { margin-top: 18px !important; color: var(--quiet) !important; font-size: 0.75rem !important; }

.policy-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 780px);
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.policy-contents {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(12, 16, 34, 0.78);
}

.policy-contents p { margin: 0 0 6px; color: var(--quiet); font-size: 0.65rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.policy-contents a { padding: 4px 0; color: var(--muted); font-size: 0.8rem; text-decoration: none; }
.policy-contents a:hover { color: var(--cyan); }

.policy-copy { min-width: 0; }
.policy-copy section { padding: 0 0 56px; scroll-margin-top: 28px; }
.policy-copy section + section { padding-top: 56px; border-top: 1px solid var(--line); }
.policy-copy h2 { margin: 16px 0 20px; font-size: clamp(1.65rem, 3.4vw, 2.7rem); }
.policy-copy p,
.policy-copy li,
.policy-copy address { color: var(--muted); font-size: 0.96rem; line-height: 1.78; }
.policy-copy ul { display: grid; gap: 8px; padding-left: 1.25rem; }
.policy-copy strong { color: var(--ink); }
.policy-copy address { font-style: normal; }

@media (max-width: 960px) {
  .hero { min-height: 0; grid-template-columns: 1fr; padding: 74px 0 64px; }
  .hero-icon { grid-row: 1; justify-self: center; width: min(260px, 58vw); }
  .gameplay-showcase { grid-template-columns: 1fr; padding: 90px 0; }
  .gameplay-showcase .showcase-copy { grid-row: 1; }
  .gameplay-showcase .showcase-art { padding-top: clamp(40px, 7vw, 60px); }
}

@media (max-width: 820px) {
  .site-frame { width: min(100% - 28px, 700px); }
  .vastward-header { min-height: 0; align-items: flex-start; padding: 18px 0; }
  .vastward-nav { gap: 2px; }
  .vastward-nav a { padding: 8px; font-size: 0.74rem; }
  .hero-icon { grid-row: 1; width: min(230px, 58vw); }
  .intro-band { grid-template-columns: 1fr; padding: 84px 0 54px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 0; }
  .release-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-grid { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-contents { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .policy-contents p { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .site-frame { width: min(100% - 22px, 520px); }
  .vastward-header { display: grid; gap: 12px; }
  .vastward-brand img { width: 42px; height: 42px; }
  .vastward-nav { justify-content: flex-start; }
  .hero h1,
  .information-hero h1 { font-size: clamp(2.9rem, 15vw, 4.5rem); }
  .hero-lede,
  .information-hero > p { font-size: 1rem; }
  .hero-actions,
  .support-actions { align-items: stretch; flex-direction: column; }
  .store-status,
  .primary-action { width: 100%; }
  .ship-hero { border-radius: 14px; }
  .ship-hero img { min-height: 0; object-fit: contain; }
  .ship-hero figcaption { position: static; border: 0; border-top: 1px solid var(--line); border-radius: 0; background: #080b18; }
  .feature-grid h3 { margin-top: 28px; }
  .showcase-art { padding-right: 7%; }
  .showcase-phone { width: 35%; border-width: 3px; border-radius: 16px; }
  .promise { padding: 30px 24px; }
  .vastward-footer { grid-template-columns: 1fr; }
  .vastward-footer nav { justify-content: flex-start; }
  .vastward-footer small { grid-column: auto; }
  .information-page { padding-top: 54px; }
  .release-facts { grid-template-columns: 1fr; }
  .contact-panel { align-items: stretch; flex-direction: column; }
  .privacy-summary { align-items: flex-start; flex-direction: column; }
  .policy-contents { grid-template-columns: 1fr; }
}

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

@media (forced-colors: active) {
  .live-dot,
  .signal-list span { forced-color-adjust: none; }
  .hero-icon::before,
  body::before { display: none; }
}
