:root {
  --ink: #050505;
  --paper: #f7f8f1;
  --muted: #a5a79f;
  --line: rgba(255, 255, 255, 0.14);
  --lime: #c6ff00;
  --lime-hot: #b8f500;
  --max: 1480px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(198, 255, 0, 0.09), transparent 25rem),
    var(--ink);
  color: var(--paper);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 99px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.site-shell {
  width: min(100%, var(--max));
  min-height: 100vh;
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 4vw, 4rem) 1.4rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header,
.site-footer {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  width: 2.65rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.18rem;
  transform: rotate(180deg);
}

.brand-mark span {
  width: 0.48rem;
  border-radius: 99px;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(198, 255, 0, 0.16);
}

.brand-mark span:nth-child(1) { height: 38%; }
.brand-mark span:nth-child(2) { height: 68%; }
.brand-mark span:nth-child(3) { height: 92%; }
.brand-mark span:nth-child(4) { height: 58%; }

.brand-name {
  font-size: clamp(1.45rem, 2.1vw, 1.9rem);
  font-weight: 780;
  letter-spacing: -0.075em;
}

.status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d7d8d1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0.27rem rgba(198, 255, 0, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(28rem, 0.97fr);
  gap: clamp(1rem, 4vw, 5.5rem);
  align-items: center;
  padding: clamp(3.5rem, 8vh, 7rem) 0 clamp(3rem, 7vh, 5.5rem);
}

.hero-copy { position: relative; z-index: 3; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--lime);
  font-variant-numeric: tabular-nums;
}

h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--paper);
  font-size: clamp(4rem, 7.9vw, 8.15rem);
  font-weight: 790;
  letter-spacing: -0.078em;
  line-height: 0.85;
}

h1 em {
  color: var(--lime);
  font-style: normal;
}

.lede {
  max-width: 37rem;
  margin: 2rem 0 0;
  color: #b9bbb4;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}

.launch-note {
  width: fit-content;
  margin-top: clamp(2rem, 5vh, 3.6rem);
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.85rem 1.15rem 0.85rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.035);
}

.launch-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  background: var(--lime);
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.launch-note div:last-child { display: grid; gap: 0.24rem; }
.launch-note strong { font-size: 0.9rem; }
.launch-note span { color: var(--muted); font-size: 0.75rem; }

.hero-art {
  position: relative;
  min-height: min(64vw, 42rem);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.lime-field {
  position: relative;
  width: min(100%, 36rem);
  aspect-ratio: 0.93;
  overflow: hidden;
  border-radius: 48% 48% 4.5rem 4.5rem;
  background:
    linear-gradient(155deg, rgba(255,255,255,0.42), transparent 34%),
    var(--lime);
  box-shadow: 0 2rem 7rem rgba(190, 255, 0, 0.13);
}

.life-image {
  position: absolute;
  background-image: url('/assets/counts-preview.png');
  background-repeat: no-repeat;
  border: 0.7rem solid var(--lime);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.24);
}

.life-image-main {
  width: 75%;
  height: 59%;
  right: -5%;
  top: 5%;
  border-radius: 47% 47% 2.7rem 2.7rem;
  background-size: 213% auto;
  background-position: 94% 8%;
}

.life-image-small {
  width: 45%;
  aspect-ratio: 1;
  left: -3%;
  bottom: 9%;
  border-radius: 50%;
  background-size: 235% auto;
  background-position: 98% 80%;
}

.count-bars {
  position: absolute;
  left: 4%;
  top: 6%;
  height: 33%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transform: rotate(180deg);
  mix-blend-mode: multiply;
}

.count-bars span {
  width: clamp(0.65rem, 1.1vw, 1rem);
  border-radius: 99px;
  background: #050505;
}

.count-bars span:nth-child(1) { height: 38%; }
.count-bars span:nth-child(2) { height: 65%; }
.count-bars span:nth-child(3) { height: 100%; }
.count-bars span:nth-child(4) { height: 58%; }

.mini-card {
  position: absolute;
  right: 7%;
  bottom: 5.5%;
  width: 44%;
  min-height: 25%;
  padding: clamp(1rem, 2.4vw, 1.7rem);
  border-radius: 1.8rem;
  background: #080808;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-card span {
  color: #9ea097;
  font-size: clamp(0.65rem, 1vw, 0.8rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mini-card strong {
  margin-top: 0.2rem;
  color: white;
  font-size: clamp(1.15rem, 2.5vw, 1.9rem);
  letter-spacing: -0.055em;
}

.mini-rule {
  width: 3rem;
  height: 0.24rem;
  margin-top: 0.8rem;
  border-radius: 99px;
  background: var(--lime);
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(198, 255, 0, 0.23);
  border-radius: 50%;
}

.orbit-one { width: 116%; aspect-ratio: 1; }
.orbit-two { width: 140%; aspect-ratio: 1; opacity: 0.35; }

.site-footer {
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: #767970;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.not-found { display: grid; place-items: center; text-align: center; }
.not-found-eyebrow { justify-content: center; }
.not-found-title { font-size: clamp(3.5rem, 9vw, 7rem); }
.not-found-lede { margin-inline: auto; }
.not-found-link { color: var(--lime); font-weight: 800; }

@media (max-width: 940px) {
  .site-shell { min-height: auto; }
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 4rem;
  }
  .hero-copy { padding-top: 1.5rem; }
  .hero-art { min-height: 34rem; }
  .lime-field { width: min(100%, 34rem); }
}

@media (max-width: 560px) {
  .site-shell { padding-top: 1.25rem; }
  .status { padding: 0.6rem 0.8rem; font-size: 0.62rem; }
  .brand-mark { width: 2.1rem; height: 2rem; }
  h1 { font-size: clamp(3.6rem, 18vw, 5.2rem); }
  .lede { font-size: 1rem; }
  .launch-note { align-items: flex-start; }
  .hero-art { min-height: 25rem; }
  .lime-field { border-radius: 40% 40% 3rem 3rem; }
  .life-image { border-width: 0.45rem; }
  .mini-card { border-radius: 1.25rem; }
  .site-footer { flex-wrap: wrap; line-height: 1.5; }
  .footer-line { display: none; }
}

@media (prefers-reduced-motion: no-preference) {
  .status-dot { animation: pulse 2.8s ease-out infinite; }
  .lime-field { animation: breathe 8s ease-in-out infinite; }
  .orbit-one { animation: orbit 22s linear infinite; }
}

@keyframes pulse {
  0%, 52%, 100% { box-shadow: 0 0 0 0.27rem rgba(198, 255, 0, 0.12); }
  70% { box-shadow: 0 0 0 0.55rem rgba(198, 255, 0, 0); }
}

@keyframes breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.55rem); }
}

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

@media print {
  body { background: white; color: black; }
  .hero-art { display: none; }
}
