:root {
  --green-950: #043b1e;
  --green-900: #05572b;
  --green-800: #08723a;
  --green-500: #20e889;
  --green-300: #8affc4;
  --cream: #fff8eb;
  --ink: #15110d;
  --pink: #f277d9;
  --pink-dark: #6a174c;
  --amber: #ffc645;
  --line: rgba(255, 248, 235, 0.16);
  --shadow: rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--green-500);
  background:
    linear-gradient(rgba(3, 58, 29, 0.84), rgba(3, 58, 29, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 248, 235, 0.05) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 248, 235, 0.04) 0 1px, transparent 1px 96px),
    var(--green-950);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

button,
input {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
  align-items: center;
  gap: 24px;
  width: min(1510px, calc(100% - 56px));
  margin: 0 auto;
  padding: 28px 0 14px;
}

.nav-pills,
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-actions {
  justify-content: flex-end;
}

.nav-pills a,
.top-cta,
.count-bubble {
  min-height: 48px;
  border: 1px solid rgba(32, 232, 137, 0.12);
  background: rgba(8, 114, 58, 0.52);
  color: var(--cream);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
}

.nav-pills a {
  display: inline-grid;
  min-width: 84px;
  place-items: center;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand {
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1;
}

.brand span {
  color: var(--green-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 900;
}

.brand small {
  margin-top: 4px;
  color: var(--green-300);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.count-bubble {
  position: relative;
  display: grid;
  width: 48px;
  min-width: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 900;
}

.count-bubble::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 3px var(--green-900);
}

.top-cta {
  display: inline-grid;
  min-width: 146px;
  place-items: center;
  border-radius: 7px;
  padding: 0 22px;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: 74vh;
  place-items: center;
  padding: 76px 24px 64px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(980px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-300);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  display: grid;
  margin: 0;
  color: var(--green-500);
  font-size: 8.6rem;
  font-weight: 1000;
  line-height: 0.87;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

.hero-lede {
  width: min(650px, 100%);
  margin: 26px auto 28px;
  color: var(--green-300);
  font-size: 1.22rem;
  line-height: 1.42;
}

.waitlist-form {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  align-items: stretch;
  gap: 3px;
  width: min(760px, 100%);
  min-height: 62px;
  margin: 0 auto;
}

.waitlist-form input[type="email"],
.role-toggle,
.waitlist-form button {
  border: 0;
  background: var(--cream);
  color: var(--ink);
}

.waitlist-form input[type="email"] {
  min-width: 0;
  border-radius: 8px 0 0 8px;
  padding: 0 22px;
  font-size: 1rem;
  font-weight: 800;
  outline: none;
}

.waitlist-form input[type="email"]:focus {
  box-shadow: inset 0 0 0 3px var(--pink);
}

.role-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 8px;
}

.role-toggle label {
  position: relative;
  display: grid;
  min-width: 84px;
  min-height: 46px;
  place-items: center;
  cursor: pointer;
}

.role-toggle input {
  position: absolute;
  opacity: 0;
}

.role-toggle span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border-radius: 6px;
  color: rgba(21, 17, 13, 0.68);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.role-toggle input:checked + span {
  background: var(--green-500);
  color: var(--ink);
}

.waitlist-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 174px;
  border-radius: 0 8px 8px 0;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.waitlist-form button span:last-child {
  font-size: 2.2rem;
  line-height: 0;
}

.waitlist-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 22px;
  margin: 13px 0 0;
  color: var(--cream);
  font-size: 0.94rem;
  font-weight: 800;
}

.form-status.is-good {
  color: var(--green-300);
}

.form-status.is-error {
  color: var(--pink);
}

.hero-board {
  position: absolute;
  z-index: 3;
  top: 35%;
  left: 50%;
  width: min(26vw, 360px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 2px solid rgba(255, 248, 235, 0.22);
  border-radius: 8px;
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%) rotate(-6deg);
}

.hero-board img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coin-sticker,
.pixel-sticker,
.cursor-sticker,
.block-field {
  position: absolute;
  z-index: 6;
  pointer-events: none;
}

.coin-sticker {
  top: 38%;
  right: 17%;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border: 9px solid var(--pink-dark);
  border-radius: 50%;
  background: var(--pink);
  color: var(--pink-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.5rem;
  font-weight: 900;
  transform: rotate(12deg);
}

.coin-sticker::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 4px solid var(--pink-dark);
  border-radius: 50%;
}

.pixel-sticker {
  top: 47%;
  left: 19%;
  display: grid;
  grid-template-columns: repeat(5, 13px);
  grid-template-rows: repeat(5, 13px);
  gap: 4px;
  transform: rotate(-14deg);
}

.pixel-sticker span {
  background: var(--pink);
}

.pixel-sticker span:nth-child(1),
.pixel-sticker span:nth-child(3),
.pixel-sticker span:nth-child(4),
.pixel-sticker span:nth-child(7),
.pixel-sticker span:nth-child(8),
.pixel-sticker span:nth-child(11),
.pixel-sticker span:nth-child(13),
.pixel-sticker span:nth-child(15),
.pixel-sticker span:nth-child(16),
.pixel-sticker span:nth-child(18),
.pixel-sticker span:nth-child(21),
.pixel-sticker span:nth-child(23),
.pixel-sticker span:nth-child(25) {
  opacity: 0;
}

.cursor-sticker {
  right: 19%;
  bottom: 25%;
  width: 36px;
  height: 44px;
  background: var(--cream);
  clip-path: polygon(0 0, 0 100%, 31% 73%, 48% 100%, 65% 91%, 48% 64%, 84% 64%);
  filter: drop-shadow(2px 2px 0 var(--ink));
  transform: rotate(-13deg);
}

.block-field {
  right: 15%;
  bottom: 30%;
  display: grid;
  grid-template-columns: repeat(2, 56px);
  grid-template-rows: repeat(2, 56px);
  opacity: 0.32;
}

.block-field span {
  border: 1px solid rgba(32, 232, 137, 0.28);
  background: rgba(32, 232, 137, 0.24);
}

.block-field span:nth-child(1),
.block-field span:nth-child(4) {
  opacity: 0;
}

.signal-band {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 72px;
  padding: 46px 0 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.48fr) 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 720px;
  margin: 0;
  color: var(--cream);
  font-size: 3rem;
  line-height: 1;
  text-transform: uppercase;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.signal-grid article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 248, 235, 0.08);
  color: var(--cream);
}

.signal-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  font-weight: 950;
}

.signal-grid h3 {
  margin: 28px 0 10px;
  font-size: 1.3rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.signal-grid p {
  margin: 0;
  color: rgba(255, 248, 235, 0.74);
  line-height: 1.5;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nav-pills,
  .header-actions {
    justify-content: center;
  }

  .brand {
    order: -1;
  }

  h1 {
    font-size: 6.2rem;
  }

  .hero-board {
    width: 300px;
  }

  .coin-sticker {
    right: 8%;
  }

  .pixel-sticker {
    left: 8%;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 28px, 620px);
    gap: 14px;
    padding-top: 18px;
  }

  .nav-pills {
    flex-wrap: wrap;
  }

  .nav-pills a {
    min-width: 74px;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .brand span {
    font-size: 1.9rem;
  }

  .hero {
    min-height: auto;
    padding: 54px 16px 56px;
  }

  h1 {
    font-size: 4.1rem;
    line-height: 0.9;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-board {
    position: relative;
    top: auto;
    left: auto;
    z-index: 3;
    width: min(420px, 92vw);
    margin: 24px auto 0;
    transform: rotate(-3deg);
  }

  .waitlist-form {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 4px;
  }

  .waitlist-form input[type="email"],
  .role-toggle,
  .waitlist-form button {
    min-height: 58px;
    border-radius: 8px;
  }

  .role-toggle {
    justify-content: center;
  }

  .waitlist-form button {
    min-width: 100%;
  }

  .coin-sticker {
    display: none;
  }

  .pixel-sticker {
    display: none;
  }

  .cursor-sticker,
  .block-field {
    display: none;
  }

  .section-heading,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 430px) {
  .top-cta {
    min-width: 134px;
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.78rem;
  }

  .count-bubble {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  h1 {
    font-size: 3.16rem;
  }

  .role-toggle label {
    min-width: 0;
    width: 50%;
  }
}
