:root {
  --ink: #070806;
  --paper: #f1f3eb;
  --green: #76c12b;
  --muted: #a6aa9e;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
}

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

.site-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 8%, rgba(118, 193, 43, 0.12), transparent 26rem),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 5px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, 1480px);
  margin: 0 auto;
  padding: 30px 0;
  border-bottom: 1px solid rgba(241, 243, 235, 0.17);
}

.wordmark {
  display: block;
  width: clamp(72px, 6vw, 98px);
  line-height: 0;
}

.wordmark img {
  display: block;
  width: 100%;
  height: auto;
}

.availability {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(118, 193, 43, 0.5);
  animation: ping 2s infinite;
}

.hero {
  position: relative;
  width: min(100% - 48px, 1480px);
  min-height: 670px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 148px) 0 70px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(390px, 100%);
  color: var(--green);
  font-family: "Courier New", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow .line {
  height: 1px;
  flex: 1;
  background: var(--green);
}

h1 {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 35px 0 70px;
  font-size: clamp(4.4rem, 10.8vw, 10.5rem);
  font-weight: 800;
  line-height: 0.79;
  letter-spacing: -0.085em;
}

h1 span {
  color: var(--green);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  max-width: 760px;
}

.hero-bottom p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.55;
}

.round-link {
  display: grid;
  place-content: center;
  width: 142px;
  height: 142px;
  flex: 0 0 142px;
  border: 1px solid rgba(241, 243, 235, 0.4);
  border-radius: 50%;
  text-align: center;
  transition: 220ms ease;
}

.round-link span {
  color: var(--muted);
  font-size: 0.7rem;
}

.round-link strong {
  margin-top: 4px;
  font-size: 0.82rem;
}

.round-link:hover,
.round-link:focus-visible {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
  transform: rotate(-4deg) scale(1.04);
  outline: none;
}

.round-link:hover span,
.round-link:focus-visible span {
  color: var(--ink);
}

.kinetic-mark {
  position: absolute;
  z-index: 1;
  top: 72px;
  right: -130px;
  width: clamp(320px, 39vw, 620px);
  aspect-ratio: 1;
  opacity: 0.94;
  animation: float 7s ease-in-out infinite;
}

.ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(118, 193, 43, 0.55);
  border-radius: 50%;
}

.ring-one::after,
.ring-two::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.ring-one::after {
  top: 7%;
  left: 22%;
}

.ring-two {
  inset: 15%;
  border-style: dashed;
  animation: spin 18s linear infinite;
}

.ring-two::after {
  bottom: 8%;
  right: 18%;
}

.core {
  position: absolute;
  inset: 37%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--green);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 200;
}

.orbit-label {
  position: absolute;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.label-one {
  top: 26%;
  right: 2%;
  transform: rotate(11deg);
}

.label-two {
  bottom: 13%;
  left: 8%;
  color: var(--ink);
  background: var(--green);
  transform: rotate(-8deg);
}

.ticker {
  overflow: hidden;
  padding: 18px 0;
  color: var(--ink);
  background: var(--green);
  transform: rotate(-1.2deg) scale(1.02);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.ticker i {
  font-style: normal;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100% - 48px, 1480px);
  margin: 105px auto 90px;
  border-top: 1px solid rgba(241, 243, 235, 0.17);
  border-bottom: 1px solid rgba(241, 243, 235, 0.17);
}

.status-grid div {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 106px;
  padding: 20px 26px;
  border-right: 1px solid rgba(241, 243, 235, 0.17);
}

.status-grid div:last-child {
  border-right: 0;
}

.status-grid span,
.status-grid small {
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.66rem;
  text-transform: uppercase;
}

.status-grid strong {
  font-size: clamp(1rem, 1.4vw, 1.3rem);
}

.status-grid div:nth-child(2) small {
  color: var(--green);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 48px, 1480px);
  margin: 0 auto;
  padding: 0 0 34px;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-underline-offset: 5px;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(18px) rotate(2deg); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes ping {
  70% { box-shadow: 0 0 0 10px rgba(118, 193, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(118, 193, 43, 0); }
}

@media (max-width: 900px) {
  .hero {
    min-height: 720px;
  }

  .kinetic-mark {
    top: 255px;
    right: -190px;
    opacity: 0.52;
  }

  .hero-bottom {
    position: relative;
    z-index: 2;
    align-items: center;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  .status-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(241, 243, 235, 0.17);
  }

  .status-grid div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .topbar,
  .hero,
  .status-grid,
  footer {
    width: min(100% - 32px, 1480px);
  }

  .topbar {
    padding-top: 22px;
  }

  .availability span:last-child {
    display: none;
  }

  .hero {
    min-height: 650px;
    padding-top: 75px;
  }

  h1 {
    margin-top: 28px;
    margin-bottom: 58px;
    font-size: clamp(4rem, 20vw, 6.2rem);
  }

  .hero-bottom {
    display: block;
  }

  .hero-bottom p {
    max-width: 82%;
  }

  .round-link {
    width: 116px;
    height: 116px;
    margin: 36px 0 0 auto;
  }

  .kinetic-mark {
    top: 285px;
    right: -210px;
    width: 390px;
  }

  .status-grid {
    margin-top: 82px;
    margin-bottom: 58px;
  }

  footer {
    flex-wrap: wrap;
  }

  .footer-note {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
