:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, Segoe UI, sans-serif;
  color: #fcf8ea;
  background: #070816;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --ink: #070816;
  --navy: #0a1c56;
  --blue: #1756ff;
  --red: #f4213c;
  --yellow: #ffd23f;
  --cream: #fff8e4;
  --mint: #39f6c5;
  --panel: #101739;
  --line: #060713;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
}
button,
a {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
.app-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #070816;
}
.app-shell:before {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(#0507142e, #0507148f),
    url(/background.png) center top / cover no-repeat, #070816;
}
.sky-grid,
.star-field {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.sky-grid {
  display: none;
  opacity: 0.28;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.11) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: perspective(800px) rotateX(55deg) translateY(-12%);
  transform-origin: top;
}
.star-field {
  opacity: 0.16;
  background-image: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.9) 0 1px,
      transparent 2px
    ),
    radial-gradient(circle, rgba(255, 210, 63, 0.85) 0 1px, transparent 2px);
  background-size: 92px 92px, 148px 148px;
  animation: driftStars 16s linear infinite;
}
@media (max-width: 760px), (max-aspect-ratio: 3 / 4) {
  .app-shell {
    background-color: #070816;
    background-image: linear-gradient(#0507140f, #0507146b), url(/mobile.png);
    background-position: center top, center top;
    background-size: auto, 100% auto;
    background-repeat: repeat, repeat-y;
  }
  .app-shell:before {
    display: none;
  }
}
.orbit-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  width: min(1120px, calc(100% - 28px));
  padding: 10px;
  color: var(--cream);
  background: #080c22d4;
  border: 3px solid var(--line);
  box-shadow: 0 14px #00000059, inset 0 0 0 2px #ffffff1f;
  clip-path: polygon(2% 0, 98% 0, 100% 50%, 98% 100%, 2% 100%, 0 50%);
  transform: translate(-50%);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.brand-chip,
.mobile-toggle,
.nav-node,
.nav-social,
.action-button,
.contract-panel button,
.social-square,
.footer-social,
.footer-contract,
.footer-links button {
  border: 3px solid var(--line);
  box-shadow: 0 5px 0 var(--line);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.brand-chip:hover,
.mobile-toggle:hover,
.nav-node:hover,
.nav-social:hover,
.action-button:hover,
.contract-panel button:hover,
.social-square:hover,
.footer-social:hover,
.footer-contract:hover,
.footer-links button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--line);
}
.brand-chip:active,
.mobile-toggle:active,
.nav-node:active,
.nav-social:active,
.action-button:active,
.contract-panel button:active,
.social-square:active,
.footer-social:active,
.footer-contract:active,
.footer-links button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--line);
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 6px 14px 6px 8px;
  color: var(--ink);
  background: var(--yellow);
}
.brand-chip img {
  width: 38px;
  height: 38px;
  border: 2px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
}
.brand-chip span {
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}
.command-dock {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.nav-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 98px;
  min-height: 46px;
  padding: 8px 12px;
  color: var(--cream);
  background: linear-gradient(180deg, #1f63ff, #102c7c);
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 900;
}
.nav-node:nth-child(2n) {
  background: linear-gradient(180deg, #f53a4d, #941327);
}
.nav-node span {
  white-space: nowrap;
}
.nav-socials {
  display: flex;
  gap: 7px;
}
.nav-social {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: var(--mint);
}
.nav-social:nth-child(2) {
  color: var(--cream);
  background: var(--blue);
}
.mobile-toggle {
  display: none;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--cream);
  background: var(--red);
}
.section-band {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  scroll-margin-top: 116px;
}
.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(56px, 6vw, 92px);
  min-height: 100vh;
  padding: 142px 0 78px;
}
.hero-copy {
  min-width: 0;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--mint);
  border: 3px solid var(--line);
  box-shadow: 0 5px 0 var(--line);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--cream);
  font-size: clamp(4.1rem, 8.8vw, 7.8rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 var(--line), 10px 10px 0 var(--red),
    15px 15px 0 var(--blue);
}
.hero-lede {
  max-width: 690px;
  margin-bottom: 26px;
  color: #fff1b8;
  font-size: clamp(1.22rem, 2.3vw, 1.8rem);
  line-height: 1.17;
  font-weight: 850;
}
.hero-actions,
.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 950;
  text-transform: uppercase;
}
.action-button:nth-child(2) {
  color: var(--cream);
  background: var(--red);
}
.action-button-dark {
  color: var(--cream);
  background: var(--panel);
}
.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 28px;
}
.signal-strip span {
  min-height: 72px;
  padding: 12px;
  color: var(--cream);
  background: #080c22db;
  border: 3px solid var(--line);
  box-shadow: 0 5px 0 var(--line);
  font-weight: 900;
}
.signal-strip strong {
  display: block;
  margin-bottom: 5px;
  color: var(--yellow);
  font-size: 0.76rem;
  text-transform: uppercase;
}
.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: end;
  width: min(100%, 520px);
  min-height: 590px;
}
.launch-ring {
  position: absolute;
  width: min(100%, 510px);
  aspect-ratio: 1;
  border: 4px dashed rgba(255, 210, 63, 0.9);
  border-radius: 50%;
  animation: rotateRing 24s linear infinite;
}
.launch-ring:before,
.launch-ring:after {
  position: absolute;
  top: 44px;
  right: 44px;
  bottom: 44px;
  left: 44px;
  content: "";
  border: 3px solid rgba(57, 246, 197, 0.42);
  border-radius: 50%;
}
.launch-ring:after {
  top: 96px;
  right: 96px;
  bottom: 96px;
  left: 96px;
  border-color: #f4213c8a;
}
.hero-logo {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  max-height: 72vh;
  object-fit: contain;
  filter: drop-shadow(12px 18px 0 rgba(0, 0, 0, 0.35));
  animation: mascotBob 4s ease-in-out infinite;
}
.lore-section,
.systems-section,
.gallery-section,
.contract-section,
.community-section {
  padding: 86px 0;
}
.section-kicker {
  margin-bottom: 24px;
  background: var(--yellow);
}
.lore-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}
.lore-panel,
.feature-card,
.contract-panel {
  border: 4px solid var(--line);
  box-shadow: 0 9px 0 var(--line);
}
.lore-panel {
  min-height: 300px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  background: repeating-linear-gradient(
      0deg,
      #1756ff1a 0,
      #1756ff1a 12px,
      #1756ff00 12px,
      #1756ff00 24px
    ),
    var(--cream);
}
.lore-panel h2,
.section-heading h2,
.gallery-heading h2,
.contract-copy h2,
.community-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}
.lore-panel h3 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 3.1rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}
.lore-panel p,
.feature-card p,
.contract-copy p,
.community-copy p {
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 750;
}
.lore-panel-red {
  color: var(--cream);
  background: repeating-linear-gradient(
      90deg,
      #ffffff1a 0,
      #ffffff1a 16px,
      #fff0 16px,
      #fff0 32px
    ),
    var(--red);
}
.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}
.gallery-heading {
  max-width: 860px;
  margin-bottom: 30px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.gallery-card {
  min-width: 0;
}
.gallery-card-featured {
  grid-column: span 2;
}
.gallery-frame {
  position: relative;
  padding: 14px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--navy) 0 84px, transparent 84px),
    repeating-linear-gradient(
      0deg,
      var(--red) 0 14px,
      var(--red) 14px,
      var(--cream) 14px,
      var(--cream) 28px
    );
  border: 4px solid var(--line);
  box-shadow: 0 9px 0 var(--line);
}
.gallery-frame:before {
  position: absolute;
  top: 15px;
  left: 17px;
  z-index: 2;
  width: 58px;
  color: var(--cream);
  content: "* * *\a* * *\a* * *";
  font-size: 10px;
  font-weight: 950;
  line-height: 0.98;
  text-align: center;
  white-space: pre;
}
.gallery-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--cream);
  border: 3px solid var(--line);
}
.gallery-card h3 {
  margin: 18px 0 8px;
  color: var(--yellow);
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}
.gallery-card p {
  max-width: 92%;
  margin-bottom: 0;
  color: #fff8e4d6;
  font-size: 0.98rem;
  line-height: 1.42;
  font-weight: 800;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.feature-card {
  min-height: 310px;
  padding: 22px;
  color: var(--cream);
  background: var(--panel);
}
.feature-card:nth-child(2) {
  color: var(--ink);
  background: var(--yellow);
}
.feature-card:nth-child(3) {
  background: var(--red);
}
.feature-card:nth-child(4) {
  color: var(--ink);
  background: var(--mint);
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: var(--ink);
  background: var(--cream);
  border: 3px solid var(--line);
  box-shadow: 0 5px 0 var(--line);
}
.feature-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}
.contract-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: 22px;
}
.contract-copy {
  max-width: 560px;
}
.contract-panel {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
  color: var(--ink);
  background: var(--cream);
}
.contract-panel span {
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}
.contract-panel code {
  display: block;
  width: 100%;
  padding: 16px;
  overflow-wrap: anywhere;
  color: var(--cream);
  background: var(--ink);
  border: 3px solid var(--line);
  font-size: clamp(0.78rem, 1.5vw, 1.06rem);
  line-height: 1.45;
}
.contract-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 950;
  text-transform: uppercase;
}
.community-section {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}
.community-visual {
  display: grid;
  place-items: center;
}
.community-visual img {
  width: min(320px, 76vw);
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 10px 0 var(--line);
}
.social-square {
  display: inline-grid;
  place-items: center;
  gap: 8px;
  min-width: 132px;
  min-height: 104px;
  padding: 14px;
  color: var(--ink);
  background: var(--mint);
  font-weight: 950;
  text-transform: uppercase;
}
.social-square:nth-child(2) {
  color: var(--cream);
  background: var(--blue);
}
.site-footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22px 0 42px;
}
.footer-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(300px, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px;
  color: var(--cream);
  background: #080c22e0;
  border: 4px solid var(--line);
  box-shadow: 0 10px 0 var(--line), inset 0 0 0 2px #ffffff1a;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 3px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
}
.footer-brand span {
  display: block;
  color: var(--yellow);
  font-size: 1.25rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}
.footer-brand p {
  max-width: 290px;
  margin: 4px 0 0;
  color: #fff8e4c7;
  font-size: 0.86rem;
  line-height: 1.35;
  font-weight: 850;
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.footer-links button {
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--cream);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.footer-social,
.footer-contract {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--mint);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}
.footer-social:nth-child(2) {
  color: var(--cream);
  background: var(--blue);
}
.footer-contract {
  color: var(--ink);
  background: var(--yellow);
}
@keyframes driftStars {
  0% {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 92px 92px, -148px 148px;
  }
}
@keyframes rotateRing {
  to {
    transform: rotate(360deg);
  }
}
@keyframes mascotBob {
  0%,
  to {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}
@media (max-width: 980px) {
  .orbit-nav {
    align-items: start;
  }
  .mobile-toggle {
    display: grid;
  }
  .command-dock {
    position: absolute;
    top: calc(100% + 10px);
    left: 10px;
    right: 10px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px;
    background: #080c22f0;
    border: 3px solid var(--line);
    box-shadow: 0 8px 0 var(--line);
  }
  .orbit-nav.is-open .command-dock {
    display: grid;
  }
  .nav-node {
    min-width: 0;
    width: 100%;
  }
  .hero-section,
  .contract-section,
  .community-section {
    grid-template-columns: 1fr;
  }
  .hero-section {
    gap: 18px;
    padding-top: 126px;
  }
  .hero-stage {
    min-height: 520px;
  }
  .lore-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-card-featured {
    grid-column: span 2;
  }
  .community-section {
    text-align: left;
  }
  .footer-card {
    grid-template-columns: 1fr;
  }
  .footer-links,
  .footer-actions {
    justify-content: flex-start;
  }
}
@media (max-width: 620px) {
  .orbit-nav {
    top: 10px;
    width: calc(100% - 18px);
    clip-path: none;
  }
  .brand-chip {
    max-width: 210px;
    min-height: 48px;
  }
  .brand-chip span {
    font-size: 0.92rem;
  }
  .nav-socials {
    gap: 5px;
  }
  .nav-social {
    width: 44px;
    height: 44px;
  }
  .mobile-toggle {
    width: 48px;
    height: 48px;
  }
  .section-band {
    width: min(100% - 24px, 1180px);
    scroll-margin-top: 104px;
  }
  .hero-section {
    min-height: auto;
    padding: 118px 0 58px;
  }
  h1 {
    font-size: clamp(3.55rem, 24vw, 5.8rem);
    text-shadow: 3px 3px 0 var(--line), 6px 6px 0 var(--red),
      9px 9px 0 var(--blue);
  }
  .hero-lede {
    font-size: 1.12rem;
  }
  .action-button {
    width: 100%;
  }
  .signal-strip,
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .hero-stage {
    min-height: 430px;
  }
  .hero-logo {
    width: min(94vw, 390px);
  }
  .lore-section,
  .systems-section,
  .gallery-section,
  .contract-section,
  .community-section {
    padding: 58px 0;
  }
  .lore-panel,
  .feature-card {
    min-height: auto;
  }
  .community-section {
    gap: 22px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-card-featured {
    grid-column: span 1;
  }
  .gallery-card p {
    max-width: none;
  }
  .community-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .social-square {
    min-width: 0;
  }
  .site-footer {
    padding-bottom: 28px;
  }
  .footer-card {
    padding: 12px;
  }
  .footer-links,
  .footer-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-links button,
  .footer-social,
  .footer-contract {
    width: 100%;
  }
}
@media (max-width: 440px) {
  .orbit-nav {
    gap: 8px;
    padding: 8px;
  }
  .brand-chip {
    padding-right: 8px;
  }
  .brand-chip span {
    display: none;
  }
  .nav-social {
    width: 40px;
    height: 40px;
  }
  .mobile-toggle {
    width: 44px;
    height: 44px;
  }
}
