:root {
  --ink: #101414;
  --ink-soft: #18201f;
  --paper: #f2f0e9;
  --acid: #c9f05d;
  --coral: #ff745e;
  --sky: #a6dce4;
  --muted: #829087;
  --line: rgba(242, 240, 233, .13);
  --display: 'Manrope', 'Noto Sans SC', sans-serif;
  --body: 'Noto Sans SC', 'Manrope', sans-serif;
  --mono: 'DM Mono', monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  position: relative;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: radial-gradient(circle at 50% 43%, #1f302b 0, var(--ink) 48%, #0b0e0e 100%);
  content: '';
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(rgba(255, 255, 255, .015) 50%, transparent 50%);
  background-size: 100% 5px;
  opacity: .22;
  content: '';
}

a {
  color: inherit;
  text-decoration: none;
}

.background-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-position: center;
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 78%, transparent);
  opacity: .35;
}

.ambient-light {
  position: fixed;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .09;
  pointer-events: none;
}

.ambient-light--lime {
  top: -18vw;
  right: 2vw;
  background: var(--acid);
  animation: ambient-drift 12s ease-in-out infinite alternate;
}

.ambient-light--coral {
  bottom: -24vw;
  left: -10vw;
  background: var(--coral);
  animation: ambient-drift 15s ease-in-out -4s infinite alternate-reverse;
}

.site-header,
.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
}

.site-header {
  padding: 30px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font: 700 15px var(--display);
  letter-spacing: -.5px;
}

.brand > span:last-child > span {
  color: var(--acid);
}

.brand-mark {
  display: flex;
  align-items: flex-end;
  width: 25px;
  height: 25px;
  gap: 3px;
  transform: skew(-12deg);
}

.brand-mark i {
  display: block;
  width: 6px;
  background: var(--acid);
  border-radius: 2px 2px 0 0;
}

.brand-mark i:nth-child(1) { height: 13px; opacity: .55; }
.brand-mark i:nth-child(2) { height: 20px; opacity: .8; }
.brand-mark i:nth-child(3) { height: 25px; }

.header-status,
.meta-label,
.eyebrow,
.core-kicker,
.core-caption,
.signal-card,
.site-footer {
  font-family: var(--mono);
}

.header-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(201, 240, 93, .08), 0 0 18px var(--acid);
  animation: blink 2s ease-in-out infinite;
}

.coming-page {
  display: grid;
  grid-template-columns: minmax(320px, .84fr) minmax(440px, 1.16fr);
  align-items: center;
  gap: clamp(35px, 7vw, 110px);
  width: min(1120px, calc(100% - 80px));
  min-height: calc(100vh - 148px);
  margin: 0 auto;
  padding: 34px 0 70px;
}

.launch-copy {
  position: relative;
  z-index: 1;
  animation: reveal-up .9s cubic-bezier(.22, 1, .36, 1) both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--acid);
  font-size: 10px;
  letter-spacing: 1.4px;
}

.eyebrow-line {
  display: inline-block;
  width: 31px;
  height: 1px;
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
}

h1 {
  margin: 26px 0 22px;
  font: 800 clamp(48px, 6.2vw, 85px)/1.03 var(--display);
  letter-spacing: -5px;
}

h1 em {
  color: var(--acid);
  font-style: normal;
}

.intro {
  max-width: 410px;
  margin: 0;
  color: #b8c3b8;
  font-size: 14px;
  line-height: 2;
}

.launch-meta {
  display: flex;
  gap: 40px;
  margin-top: 46px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.meta-item {
  display: grid;
  gap: 8px;
}

.meta-label {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .8px;
}

.meta-item strong {
  color: var(--paper);
  font: 500 12px var(--mono);
}

.meta-item b {
  color: var(--acid);
  font-weight: 500;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 47px;
  color: var(--muted);
  font-size: 12px;
  transition: color .25s, transform .25s;
}

.back-link span {
  color: var(--acid);
  font-size: 19px;
  transition: transform .25s;
}

.back-link:hover {
  color: var(--paper);
  transform: translateX(4px);
}

.back-link:hover span {
  transform: translateX(-4px);
}

.launch-art {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 650px);
  aspect-ratio: 1;
  margin: 0 auto;
  animation: reveal-up 1.1s .15s cubic-bezier(.22, 1, .36, 1) both;
}

.launch-art::before,
.launch-art::after {
  position: absolute;
  border: 1px solid rgba(166, 220, 228, .17);
  border-radius: 50%;
  content: '';
}

.launch-art::before {
  width: 68%;
  height: 68%;
  animation: ring-breathe 5s ease-in-out infinite;
}

.launch-art::after {
  width: 39%;
  height: 39%;
  border-color: rgba(201, 240, 93, .23);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(201, 240, 93, .2);
  border-radius: 50%;
  transform: rotate(-25deg);
}

.orbit::before {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 15px 3px rgba(201, 240, 93, .45);
  content: '';
}

.orbit--outer {
  width: 96%;
  height: 38%;
  animation: orbit-spin 14s linear infinite;
}

.orbit--outer::before { top: -4px; left: 27%; }
.orbit--middle { width: 78%; height: 54%; transform: rotate(55deg); animation: orbit-spin-reverse 11s linear infinite; }
.orbit--middle::before { right: 13%; bottom: -4px; background: var(--coral); box-shadow: 0 0 15px 3px rgba(255, 116, 94, .45); }
.orbit--inner { width: 56%; height: 78%; transform: rotate(105deg); animation: orbit-spin 9s linear infinite; }
.orbit--inner::before { top: 26%; right: -4px; background: var(--sky); box-shadow: 0 0 15px 3px rgba(166, 220, 228, .45); }

.launch-core {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 240, 93, .36);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 44%, rgba(201, 240, 93, .2), rgba(20, 30, 27, .92) 56%, rgba(16, 20, 20, .7));
  box-shadow: 0 0 70px rgba(201, 240, 93, .08), inset 0 0 45px rgba(201, 240, 93, .08);
  animation: core-float 5s ease-in-out infinite;
}

.core-kicker,
.core-caption {
  position: absolute;
  color: var(--acid);
  font-size: 9px;
  letter-spacing: 1.8px;
}

.core-kicker { top: 23%; }
.core-caption { bottom: 22%; color: var(--muted); font-size: 7px; }

.core-word {
  margin-top: -2px;
  color: var(--paper);
  font: 800 clamp(34px, 5vw, 68px)/1 var(--display);
  letter-spacing: -4px;
  text-shadow: 0 0 28px rgba(242, 240, 233, .2);
}

.core-pulse {
  position: absolute;
  width: 12px;
  height: 12px;
  bottom: 15%;
  border: 2px solid var(--acid);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}

.signal-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(242, 240, 233, .16);
  background: rgba(24, 32, 31, .82);
  color: var(--muted);
  font-size: 8px;
  line-height: 1.55;
  letter-spacing: .5px;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .22);
}

.signal-card b { color: var(--paper); font-weight: 500; }
.signal-card--top { top: 17%; right: 3%; animation: card-float 4s ease-in-out infinite; }
.signal-card--bottom { bottom: 14%; left: 2%; animation: card-float 4s 1s ease-in-out infinite reverse; }
.signal-icon { color: var(--acid); font-size: 18px; }
.signal-bar { display: flex; align-items: end; height: 20px; gap: 3px; }
.signal-bar i { width: 3px; background: var(--acid); animation: equalize 1.1s ease-in-out infinite alternate; }
.signal-bar i:nth-child(1) { height: 9px; animation-delay: -.7s; }
.signal-bar i:nth-child(2) { height: 16px; animation-delay: -.2s; }
.signal-bar i:nth-child(3) { height: 12px; animation-delay: -.5s; }
.signal-bar i:nth-child(4) { height: 20px; animation-delay: -.9s; }
.signal-bar i:nth-child(5) { height: 14px; animation-delay: -.35s; }

.orbit-spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 12px 2px var(--paper);
}

.orbit-spark--one { top: 25%; left: 14%; animation: blink 1.6s infinite; }
.orbit-spark--two { right: 11%; bottom: 28%; animation: blink 1.6s -.6s infinite; }

.site-footer {
  gap: 18px;
  padding: 0 0 25px;
  color: #627066;
  font-size: 9px;
  letter-spacing: .4px;
}

.footer-rule {
  flex: 1;
  height: 1px;
  background: var(--line);
}

@keyframes reveal-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ambient-drift { from { transform: translate3d(-4%, -2%, 0) scale(.92); } to { transform: translate3d(5%, 4%, 0) scale(1.08); } }
@keyframes blink { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }
@keyframes orbit-spin { to { transform: rotate(335deg); } }
@keyframes orbit-spin-reverse { to { transform: rotate(-305deg); } }
@keyframes core-float { 0%, 100% { transform: translateY(-5px); } 50% { transform: translateY(5px); } }
@keyframes ring-breathe { 0%, 100% { opacity: .55; transform: scale(.98); } 50% { opacity: 1; transform: scale(1.03); } }
@keyframes pulse-ring { 0% { opacity: 1; transform: scale(.8); } 100% { opacity: 0; transform: scale(2.5); } }
@keyframes card-float { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-8px) rotate(1deg); } }
@keyframes equalize { to { transform: scaleY(.45); opacity: .55; } }

@media (max-width: 820px) {
  .site-header,
  .site-footer,
  .coming-page { width: min(100% - 44px, 620px); }

  .coming-page {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding-top: 50px;
  }

  .launch-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .intro { margin: 0 auto; }
  .launch-meta { justify-content: center; text-align: left; }
  .back-link { margin-top: 30px; }
  .launch-art { width: min(100%, 560px); margin-top: 15px; }
  .site-footer { margin-top: 25px; }
}

@media (max-width: 500px) {
  .site-header { padding-top: 22px; }
  .header-status { font-size: 8px; }
  h1 { margin-top: 22px; font-size: clamp(44px, 14vw, 65px); letter-spacing: -3px; }
  .intro { font-size: 13px; line-height: 1.8; }
  .launch-meta { gap: 18px; margin-top: 32px; }
  .meta-label { font-size: 8px; }
  .meta-item strong { font-size: 10px; }
  .launch-art { width: calc(100% + 20px); margin-left: -10px; }
  .signal-card { transform: scale(.82); }
  .signal-card--top { right: -3%; }
  .signal-card--bottom { left: -3%; }
  .site-footer { display: grid; grid-template-columns: auto 1fr; font-size: 8px; }
  .site-footer > :last-child { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
