:root {
  --ink: #102017;
  --forest: #142b1d;
  --forest-deep: #08150e;
  --lime: #cbd94f;
  --gold: #d3a332;
  --paper: #f2e8cf;
  --cream: #fff8e7;
  --pink: #ff2e8a;
  --line: rgba(16, 32, 23, 0.2);
  --font-display: "Anton", sans-serif;
  --font-sans: "DM Sans", sans-serif;
  --font-typewriter: "Special Elite", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 20px 3.2vw;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 248, 231, 0.2);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.brand small {
  display: block;
  margin-top: 4px;
  color: var(--lime);
  font-size: 8px;
  letter-spacing: 0.2em;
}
nav {
  display: flex;
  gap: 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
nav a { transition: color 180ms ease; }
nav a:hover { color: var(--lime); }
.nav-cta {
  justify-self: end;
  padding: 12px 16px;
  border: 1px solid rgba(255, 248, 231, 0.5);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-cta span { margin-left: 14px; color: var(--lime); }

.hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 58% 42%;
  padding: 126px 3.2vw 64px;
  color: var(--cream);
  background:
    radial-gradient(circle at 78% 18%, rgba(203, 217, 79, 0.2), transparent 24%),
    linear-gradient(105deg, rgba(8, 21, 14, 0.95) 0 54%, rgba(20, 43, 29, 0.68) 75%),
    repeating-linear-gradient(98deg, #142b1d 0 2px, #102519 2px 5px);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(203, 217, 79, 0.2);
  border-radius: 50%;
}
.hero::before { width: 570px; height: 570px; right: -260px; top: -210px; }
.hero::after { width: 220px; height: 220px; left: 47%; bottom: -90px; }
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 30% 20%, transparent 0 4px, rgba(255,255,255,.02) 5px 6px),
    linear-gradient(120deg, transparent 0 49%, rgba(255,255,255,.025) 50%, transparent 51%);
  background-size: 13px 13px, 80px 80px;
  mix-blend-mode: screen;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.eyebrow {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow span { margin-right: 8px; color: var(--pink); }
.hero-logo {
  margin: 55px 0 44px;
  width: 100%;
  height: clamp(340px, 27vw, 440px);
}
.hero-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 35% center;
}
.hero-bottom {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) 1fr;
  gap: 48px;
  align-items: end;
  max-width: 760px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 248, 231, 0.25);
}
.hero-intro {
  margin: 0;
  font-size: clamp(19px, 1.65vw, 27px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.04em;
}
.hero-intro em {
  color: var(--lime);
  font-family: var(--font-typewriter);
  font-style: normal;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  min-width: 178px;
  padding: 17px 19px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary {
  color: var(--forest-deep);
  background: var(--pink);
  box-shadow: 5px 5px 0 var(--cream);
}
.button-primary:hover { box-shadow: 8px 8px 0 var(--cream); }
.status-pill {
  max-width: 150px;
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.coming-soon-card {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(410px, 84%);
  margin: 12px auto 0;
}
.launch-panel {
  position: relative;
  margin: 0;
  display: grid;
  min-height: 520px;
  padding: 28px;
  color: var(--forest-deep);
  background: var(--paper);
  transform: rotate(2.2deg);
  box-shadow: 25px 30px 70px rgba(0, 0, 0, 0.5);
}
.launch-panel::after {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(16, 32, 23, 0.18);
}
.launch-panel p {
  margin: 0;
  color: var(--pink);
  font-family: var(--font-typewriter);
  font-size: 12px;
  letter-spacing: 0.2em;
}
.launch-panel strong {
  align-self: center;
  font-family: var(--font-display);
  font-size: clamp(70px, 7vw, 112px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.launch-panel span {
  align-self: end;
  max-width: 260px;
  color: rgba(8, 21, 14, 0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.coming-soon-label {
  position: absolute;
  z-index: 3;
  top: 26px;
  right: -74px;
  font-family: var(--font-typewriter);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: left top;
}
.launch-stamp {
  position: absolute;
  z-index: 4;
  right: -48px;
  bottom: 52px;
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  color: var(--forest-deep);
  background: var(--lime);
  border: 3px solid var(--forest-deep);
  border-radius: 50%;
  transform: rotate(-8deg);
  box-shadow: 5px 5px 0 var(--pink);
}
.launch-stamp strong {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  padding: 13px 0;
  color: var(--forest-deep);
  background: var(--lime);
  border-block: 2px solid var(--forest-deep);
  white-space: nowrap;
}
.ticker div { width: max-content; animation: ticker 30s linear infinite; }
.ticker span {
  margin-right: 30px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.ticker b { color: var(--pink); }
@keyframes ticker { to { transform: translateX(-50%); } }

.manifesto {
  padding: 110px 6vw 130px;
  background:
    linear-gradient(rgba(16, 32, 23, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 23, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}
.section-kicker {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 9vw;
  align-items: end;
  margin-top: 75px;
}
.manifesto h2,
.updates h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 128px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.manifesto h2 em,
.updates h2 em {
  color: var(--pink);
  font-family: var(--font-typewriter);
  font-size: 0.54em;
  font-style: normal;
  letter-spacing: -0.04em;
  text-transform: none;
}
.manifesto-copy {
  display: grid;
  gap: 24px;
  font-size: 17px;
  line-height: 1.6;
}
.manifesto-copy p { margin: 0; }
.manifesto-copy p:first-child {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.updates {
  position: relative;
  overflow: hidden;
  padding: 120px 6vw;
  text-align: center;
  color: var(--cream);
  background: var(--gold);
}
.updates::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background: repeating-linear-gradient(165deg, transparent 0 10px, #08150e 11px 12px);
}
.updates > * { position: relative; z-index: 2; }
.updates .eyebrow { color: var(--forest-deep); }
.updates h2 { margin: 38px auto; color: var(--forest-deep); }
.updates h2 em { color: var(--pink); text-shadow: 3px 3px 0 var(--forest-deep); }
.updates-copy {
  max-width: 540px;
  margin: 0 auto 50px;
  color: rgba(8, 21, 14, 0.8);
  font-size: 18px;
  line-height: 1.6;
}
.update-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin: 0 auto 48px;
  border: 1px solid var(--forest-deep);
  text-align: left;
}
.update-cards div {
  position: relative;
  display: grid;
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid var(--forest-deep);
}
.update-cards div:last-child { border-right: 0; }
.update-cards span { font-family: var(--font-typewriter); font-size: 9px; }
.update-cards strong {
  align-self: end;
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
}
.update-cards small {
  color: var(--forest-deep);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.button-dark {
  color: var(--cream);
  background: var(--forest-deep);
  box-shadow: 5px 5px 0 var(--pink);
}

footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 70px 6vw;
  color: var(--cream);
  background: var(--forest-deep);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.82;
  text-transform: uppercase;
}
.footer-logo span {
  display: block;
  margin-top: 16px;
  color: var(--pink);
  font-family: var(--font-typewriter);
  font-size: 15px;
  text-transform: none;
}
footer p {
  margin: 0;
  color: rgba(255, 248, 231, 0.56);
  font-size: 12px;
  line-height: 1.7;
}
.copyright { font-size: 9px; letter-spacing: 0.13em; text-transform: uppercase; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker div { animation: none; }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 125px; }
  .hero-bottom { margin-top: 36px; }
  .coming-soon-card { width: min(430px, 75vw); margin-top: 90px; margin-bottom: 40px; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-copy { max-width: 620px; }
}

@media (max-width: 700px) {
  .site-header { padding: 16px 20px; }
  .nav-cta { padding: 10px 12px; font-size: 8px; }
  .nav-cta span { margin-left: 4px; }
  .brand { font-size: 10px; }
  .hero { padding: 108px 20px 50px; }
  .hero-logo { height: clamp(250px, 72vw, 330px); margin: 48px 0 22px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 24px; }
  .coming-soon-card { width: 80vw; margin-top: 72px; }
  .launch-panel { min-height: 420px; }
  .launch-stamp { right: -24px; bottom: 35px; width: 86px; height: 86px; }
  .launch-stamp strong { font-size: 32px; }
  .coming-soon-label { display: none; }
  .manifesto, .updates { padding: 80px 20px; }
  .section-kicker span:last-child { display: none; }
  .manifesto-grid { margin-top: 48px; }
  .manifesto h2, .updates h2 { font-size: 60px; }
  .update-cards { grid-template-columns: 1fr; }
  .update-cards div { min-height: 122px; border-right: 0; border-bottom: 1px solid var(--forest-deep); }
  .update-cards div:last-child { border-bottom: 0; }
  footer { grid-template-columns: 1fr; align-items: start; padding: 60px 20px; }
}
