:root {
  --void: #020712;
  --navy: #061428;
  --ink: #9ec4e6;
  --paper: #eef7ff;
  --cream: #f3e0b8;
  --collar: #ff6a2a;
  --arc: #3aa8ff;
  --arc-bright: #7ad4ff;
  --arc-deep: #1463ff;
  --chrome-a: #f7fbff;
  --chrome-b: #8ec8ff;
  --chrome-c: #d9ecff;
  --glass: rgba(8, 22, 44, 0.58);
  --line: rgba(122, 212, 255, 0.26);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--void);
  color: var(--paper);
  font-family: Outfit, sans-serif;
  min-height: 100%;
}

body {
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.void {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(20, 99, 255, 0.18), transparent 62%),
    radial-gradient(circle at 12% 80%, rgba(255, 106, 42, 0.06), transparent 30%),
    linear-gradient(180deg, #01050d 0%, #04101f 48%, #020712 100%);
}

#field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.aurora {
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(58, 168, 255, 0.22), transparent 50%),
    radial-gradient(ellipse at 30% 40%, rgba(122, 212, 255, 0.1), transparent 40%);
  filter: blur(18px);
  animation: auroraDrift 16s ease-in-out infinite;
}

.grid-floor {
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -18%;
  height: 46%;
  background-image:
    linear-gradient(rgba(58, 168, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 168, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(500px) rotateX(62deg);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 78%);
  animation: gridCrawl 18s linear infinite;
}

.scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(122, 212, 255, 0.035), transparent);
  background-size: 100% 220px;
  animation: scan 7s linear infinite;
  mix-blend-mode: screen;
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 168, 255, 0.16), transparent 68%);
  transform: translate(-200px, -200px);
  transition: transform 80ms linear;
  z-index: 1;
}

.nav,
main,
.foot {
  position: relative;
  z-index: 2;
}

.nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 5vw;
  backdrop-filter: blur(18px);
  background: rgba(2, 7, 18, 0.42);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.nav.is-scrolled {
  background: rgba(2, 7, 18, 0.78);
  border-bottom-color: var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 0 0 4px rgba(58, 168, 255, 0.08), 0 0 24px rgba(58, 168, 255, 0.28);
}

.nav-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.nav-word {
  font-family: Michroma, sans-serif;
  font-size: 13px;
  letter-spacing: 0.22em;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.04em;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--arc-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-links a:hover {
  color: var(--paper);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn,
.buy-btn,
.glass-link,
.dock,
.mini-link,
.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--glass);
  color: var(--arc-bright);
}

.icon-btn,
.buy-btn,
.glass-link,
.dock,
.mini-link {
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.icon-btn:hover,
.buy-btn:hover,
.glass-link:hover,
.dock:hover,
.mini-link:hover {
  transform: translateY(-2px);
  border-color: rgba(122, 212, 255, 0.55);
  box-shadow: 0 10px 30px rgba(20, 99, 255, 0.18);
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.icon-btn img,
.buy-btn img,
.glass-link img,
.dock img,
.mini-link img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.buy-btn {
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--paper);
  background: linear-gradient(180deg, rgba(58, 168, 255, 0.28), rgba(8, 22, 44, 0.7));
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--paper);
}

.hero {
  min-height: 100svh;
  padding: 40px 5vw 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-arch {
  position: absolute;
  left: 50%;
  top: 4%;
  width: min(1200px, 96vw);
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.9;
}

.arch-beam {
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  animation: drawArch 2.8s var(--ease) forwards, pulseArch 4.5s ease-in-out 2.8s infinite;
}

.orbit-field {
  position: absolute;
  inset: 8% 4% 18%;
  pointer-events: none;
}

.cube {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(122, 212, 255, 0.7);
  background: rgba(20, 99, 255, 0.12);
  box-shadow: 0 0 18px rgba(58, 168, 255, 0.35), inset 0 0 10px rgba(122, 212, 255, 0.2);
  animation: cubeFloat 8s ease-in-out infinite;
}

.cube::after {
  content: "A";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: Michroma, sans-serif;
  font-size: 8px;
  color: #dff3ff;
}

.c1 { top: 8%; left: 10%; animation-delay: 0s; }
.c2 { top: 18%; right: 12%; animation-delay: 1.2s; }
.c3 { top: 48%; left: 4%; animation-delay: 2s; width: 14px; height: 14px; }
.c4 { bottom: 12%; right: 8%; animation-delay: 0.6s; }
.c5 { top: 6%; left: 48%; animation-delay: 1.8s; width: 12px; height: 12px; }
.c6 { bottom: 22%; left: 18%; animation-delay: 2.6s; }

.hero-stage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
  width: 100%;
}

.pedestal {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.rings {
  position: absolute;
  width: min(420px, 70vw);
  height: min(420px, 70vw);
}

.rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(122, 212, 255, 0.18);
  border-radius: 50%;
  animation: spinRing 18s linear infinite;
}

.rings i:nth-child(2) {
  inset: 8%;
  border-color: rgba(58, 168, 255, 0.32);
  animation-duration: 12s;
  animation-direction: reverse;
}

.rings i:nth-child(3) {
  inset: 18%;
  border-style: dashed;
  animation-duration: 24s;
}

.hero-portrait {
  position: relative;
  width: min(380px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(232, 246, 255, 0.28);
  box-shadow:
    0 0 0 12px rgba(8, 22, 44, 0.45),
    0 0 80px rgba(58, 168, 255, 0.35),
    inset 0 -40px 60px rgba(2, 7, 18, 0.35);
  animation: portraitFloat 5.5s ease-in-out infinite;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.hero-copy .kicker,
.section-head .kicker,
.narrative-card .kicker {
  color: var(--arc-bright);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1 {
  line-height: 0.95;
  margin-bottom: 18px;
}

.chrome {
  font-family: Michroma, sans-serif;
  font-size: clamp(46px, 8vw, 92px);
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, var(--chrome-a) 0%, var(--chrome-b) 42%, var(--chrome-c) 58%, #6aa8e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 24px rgba(58, 168, 255, 0.35));
  animation: chromeSheen 6s linear infinite;
  background-size: 100% 200%;
}

.symbol-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.symbol-row strong {
  color: var(--cream);
  font-weight: 600;
}

.symbol-row .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--collar);
  box-shadow: 0 0 10px var(--collar);
}

.tagline {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  margin-bottom: 14px;
}

.lede,
.section-lead,
.narrative-card p,
.station p,
.foot p,
.chart-note,
figcaption {
  color: var(--ink);
  line-height: 1.7;
}

.lede {
  max-width: 560px;
  margin-bottom: 26px;
}

.ca-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(6, 20, 40, 0.72);
  border-radius: 14px;
  margin-bottom: 22px;
  max-width: 640px;
}

.ca-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--arc-bright);
}

#caText {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--paper);
  overflow-wrap: anywhere;
  flex: 1;
}

.copy-btn {
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.copy-btn.is-copied {
  color: var(--cream);
  border-color: rgba(243, 224, 184, 0.45);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.glass-link {
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 14px;
}

.scroll-hint {
  align-self: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-hint b {
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--arc-bright), transparent);
  animation: drop 1.6s ease-in-out infinite;
}

.section {
  padding: 110px 5vw;
  max-width: 1220px;
  margin: 0 auto;
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-head h2,
.narrative-card h3,
.station h3 {
  font-family: Michroma, sans-serif;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.section-lead {
  font-size: 17px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
}

.photo-card,
.narrative-card,
.station,
.chart-frame,
.dock,
.banner-wrap {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12, 32, 58, 0.55), rgba(4, 12, 24, 0.62));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.photo-card {
  padding: 16px;
  border-radius: 24px;
}

.photo-frame {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4 / 5;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.photo-card:hover .photo-frame img {
  transform: scale(1.04);
}

figcaption {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 6px 6px;
  font-size: 14px;
}

.cap-dot {
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--collar);
  box-shadow: 0 0 12px var(--collar);
  flex-shrink: 0;
}

.narrative-card {
  padding: 32px;
  border-radius: 24px;
}

.narrative-card h3 {
  font-size: 20px;
}

.narrative-card p + p {
  margin-top: 14px;
}

.tweet-shell {
  margin-top: 24px;
  min-height: 280px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.28);
}

.tweet-shell twitter-widget,
.tweet-shell iframe {
  margin: 0 auto !important;
}

.howtobuy {
  position: relative;
}

.rail {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--arc), var(--arc-bright), var(--arc), transparent);
  opacity: 0.45;
  filter: drop-shadow(0 0 10px var(--arc));
}

.stations {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.station {
  position: relative;
  padding: 28px 22px 24px;
  border-radius: 22px;
  overflow: hidden;
}

.station::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 120%;
  height: 90px;
  background: linear-gradient(115deg, rgba(58, 168, 255, 0.16), transparent 60%);
  transform: translateX(-20%);
}

.idx {
  font-family: Michroma, sans-serif;
  font-size: 12px;
  color: var(--arc-bright);
  letter-spacing: 0.16em;
}

.station h3 {
  font-size: 15px;
  margin: 16px 0 10px;
}

.mini-link {
  margin-top: 16px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
}

.chart-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 640px;
}

.chart-frame iframe {
  width: 100%;
  height: 640px;
  border: 0;
  background: #0b1220;
}

.frame-corners {
  pointer-events: none;
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(122, 212, 255, 0.18);
  z-index: 2;
}

.frame-corners::before,
.frame-corners::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--arc-bright);
}

.frame-corners::before {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}

.frame-corners::after {
  right: -1px;
  bottom: -1px;
  border-left: 0;
  border-top: 0;
}

.chart-note {
  margin-top: 14px;
  font-size: 13px;
}

.chart-note a {
  color: var(--arc-bright);
  border-bottom: 1px solid rgba(122, 212, 255, 0.35);
}

.banner-wrap {
  padding: 12px;
  border-radius: 28px;
}

.banner-frame {
  aspect-ratio: 3 / 1;
  overflow: hidden;
  border-radius: 18px;
  background: #020712;
}

.banner-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: bannerDrift 18s ease-in-out infinite;
}

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

.dock {
  min-height: 86px;
  padding: 18px;
  border-radius: 18px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.dock span {
  font-size: 14px;
  color: var(--paper);
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 36px 5vw 48px;
  border-top: 1px solid var(--line);
  max-width: 1220px;
  margin: 0 auto;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.foot-brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.foot-brand strong {
  display: block;
  font-family: Michroma, sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.foot-brand span,
.foot p {
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease) forwards;
  animation-play-state: paused;
}

.reveal.in {
  animation-play-state: running;
}

@keyframes auroraDrift {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.85; }
  50% { transform: translateY(18px) scale(1.06); opacity: 1; }
}

@keyframes gridCrawl {
  from { background-position: 0 0; }
  to { background-position: 0 72px; }
}

@keyframes scan {
  from { background-position: 0 -220px; }
  to { background-position: 0 100vh; }
}

@keyframes drawArch {
  to { stroke-dashoffset: 0; }
}

@keyframes pulseArch {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

@keyframes cubeFloat {
  0%, 100% { transform: translateY(0) rotate(12deg); }
  50% { transform: translateY(-14px) rotate(-8deg); }
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

@keyframes portraitFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes chromeSheen {
  0% { background-position: 0 0; }
  100% { background-position: 0 200%; }
}

@keyframes drop {
  0% { transform: scaleY(0.3); opacity: 0; transform-origin: top; }
  40% { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; transform-origin: top; }
}

@keyframes bannerDrift {
  0%, 100% { transform: scale(1.02) translateX(0); }
  50% { transform: scale(1.06) translateX(-1.2%); }
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 12px 5vw 20px;
    background: rgba(2, 7, 18, 0.94);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-stage,
  .about-grid,
  .stations,
  .join-docks {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    gap: 28px;
  }

  .pedestal {
    min-height: 360px;
  }

  .rail {
    display: none;
  }

  .foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .buy-btn span {
    display: none;
  }

  .hero {
    padding-top: 24px;
  }

  .section {
    padding: 80px 5vw;
  }

  .chart-frame,
  .chart-frame iframe {
    min-height: 520px;
    height: 520px;
  }
}
