@font-face {
  font-family: "Simply Mono";
  src: url("assets/fonts/SimplyMono-Book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Simply Mono";
  src: url("assets/fonts/SimplyMono-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #d6f000;
  --green-deep: #9eb600;
  --ink: #0a0a08;
  --paper: #f4f0de;
  --paper-warm: #e7dfc6;
  --white: #fffdf2;
  --muted: #6a6658;
  --shadow: rgba(10, 10, 8, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Simply Mono", "Courier New", monospace;
  background:
    linear-gradient(rgba(10, 10, 8, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 8, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 12%, rgba(214, 240, 0, 0.28), transparent 18rem),
    radial-gradient(circle at 82% 36%, rgba(0, 0, 0, 0.08), transparent 20rem);
  mix-blend-mode: multiply;
  z-index: -1;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 28px), 1160px);
  min-height: 56px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 12px;
  border: 2px solid var(--ink);
  background: rgba(244, 240, 222, 0.9);
  box-shadow: 6px 6px 0 var(--ink);
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--green);
  overflow: hidden;
}

.brand-mark img {
  width: 115%;
  height: 115%;
  object-fit: cover;
  object-position: center 30%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 28px);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(18px, 5vw, 68px);
  width: min(1180px, calc(100% - 28px));
  min-height: 92svh;
  margin: 0 auto;
  padding: 130px 0 44px;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  left: -2vw;
  bottom: 54px;
  width: 46%;
  height: 18px;
  background: var(--green);
  transform: rotate(-2deg);
  box-shadow: 28px 16px 0 rgba(214, 240, 0, 0.42);
  z-index: -1;
}

.hero-copy {
  max-width: 580px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin: 0 0 18px;
  padding: 7px 10px 5px;
  border: 2px solid var(--ink);
  background: var(--green);
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  max-width: 8ch;
  font-size: clamp(4.5rem, 15vw, 12rem);
  line-height: 0.78;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 30rem;
  margin-bottom: 28px;
  font-size: clamp(1.05rem, 2.1vw, 1.55rem);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.copy-button,
.ghost-button,
.community-links a {
  min-height: 48px;
  padding: 13px 18px 11px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--green);
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.copy-button:hover,
.ghost-button:hover,
.community-links a:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.ghost-button {
  background: var(--white);
}

.hero-art {
  position: relative;
  min-height: clamp(430px, 62vw, 720px);
  display: grid;
  place-items: end center;
  overflow: hidden;
  border-bottom: 4px solid var(--ink);
}

.hero-art img {
  position: relative;
  z-index: 3;
  width: min(92%, 620px);
}

.orbit {
  position: absolute;
  display: none;
  border: 3px solid var(--ink);
  border-radius: 50%;
  opacity: 0.95;
}

.orbit-one {
  width: min(86%, 560px);
  aspect-ratio: 1;
  background: rgba(214, 240, 0, 0.88);
  transform: rotate(-8deg) scaleX(0.86);
}

.orbit-two {
  width: min(68%, 430px);
  aspect-ratio: 1;
  border-style: dashed;
  transform: rotate(16deg) scaleY(0.82);
}

.ticker-strip {
  position: absolute;
  z-index: 2;
  width: 118%;
  padding: 10px 16px 8px;
  border-block: 2px solid var(--ink);
  background: var(--ink);
  color: var(--green);
  font-size: clamp(0.74rem, 1.2vw, 0.9rem);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-top {
  top: 18%;
  right: -16%;
  transform: rotate(11deg);
}

.ticker-bottom {
  right: -10%;
  bottom: 14%;
  transform: rotate(-7deg);
}

.signal-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  border-block: 3px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.signal-bar span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 2px solid var(--green);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.signal-bar span:last-child {
  border-right: 0;
}

.story-section,
.faq-section,
.community-section {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 120px) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: start;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.story-copy {
  padding: clamp(22px, 4vw, 38px);
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 10px 10px 0 var(--green);
}

.story-copy p,
.proof-copy p {
  margin-bottom: 18px;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.65;
}

.story-copy p:last-child,
.proof-copy p:last-child {
  margin-bottom: 0;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(54px, 8vw, 92px) max(14px, calc((100vw - 1180px) / 2));
  border-block: 3px solid var(--ink);
  background:
    linear-gradient(105deg, rgba(214, 240, 0, 0.3), transparent 34%),
    var(--paper-warm);
}

.proof-image {
  position: relative;
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(-1deg);
}

.proof-image::before,
.proof-image::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 110px;
  height: 28px;
  background: var(--green);
  border: 2px solid rgba(10, 10, 8, 0.18);
}

.proof-image::before {
  top: -15px;
  left: 26px;
  transform: rotate(-8deg);
}

.proof-image::after {
  right: 36px;
  bottom: -14px;
  transform: rotate(6deg);
}

.proof-image img {
  width: 100%;
  aspect-ratio: 1798 / 875;
  object-fit: cover;
}

.proof-copy {
  padding: clamp(20px, 3vw, 28px);
}

.faq-section {
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: clamp(44px, 7vw, 78px);
  right: 0;
  width: min(34vw, 340px);
  height: 18px;
  background: var(--green);
  transform: rotate(2deg);
  box-shadow: -26px 18px 0 rgba(214, 240, 0, 0.42);
}

.faq-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 1.22fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(24px, 4vw, 44px);
}

.faq-heading h2 {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  position: relative;
  min-height: 260px;
  padding: 24px 24px 26px;
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
}

.faq-item:nth-child(3n + 2) {
  background: var(--paper-warm);
  box-shadow: 7px 7px 0 var(--green);
}

.faq-item:nth-child(4n) {
  transform: rotate(-0.7deg);
}

.faq-number {
  display: inline-grid;
  min-width: 44px;
  min-height: 30px;
  place-items: center;
  margin-bottom: 16px;
  border: 2px solid var(--ink);
  background: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
}

.faq-item h3 {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.faq-item p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  line-height: 1.58;
}

.community-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: end;
  padding: clamp(24px, 5vw, 54px);
  border: 3px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 12px 12px 0 var(--green);
}

.community-card .section-kicker {
  color: var(--ink);
}

.community-card h2 {
  margin-bottom: 0;
}

.community-links {
  display: grid;
  gap: 14px;
}

.community-links a {
  width: 100%;
  text-align: center;
}

.contract-box {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 14px 16px 13px;
  border: 2px solid var(--green);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 5px 5px 0 var(--green);
}

.contract-box span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contract-box strong {
  font-size: clamp(0.92rem, 1.6vw, 1.08rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px max(14px, calc((100vw - 1180px) / 2));
  border-top: 3px solid var(--ink);
  background: var(--green);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.chain-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.chain-line img {
  width: 30px;
  height: 30px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 860px) {
  .site-header {
    top: 10px;
    min-height: auto;
    align-items: flex-start;
  }

  .nav-links {
    gap: 10px;
    font-size: 0.72rem;
  }

  .hero,
  .story-grid,
  .proof-section,
  .faq-heading,
  .community-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-art {
    min-height: clamp(390px, 86vw, 560px);
  }

  h1 {
    max-width: none;
    font-size: clamp(4.2rem, 21vw, 8rem);
  }

  .signal-bar {
    grid-template-columns: 1fr;
  }

  .signal-bar span {
    min-height: 58px;
    border-right: 0;
    border-bottom: 2px solid var(--green);
  }

  .signal-bar span:last-child {
    border-bottom: 0;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-item {
    min-height: auto;
  }
}

@media (max-width: 980px) {
  .ticker-strip {
    width: 92%;
  }

  .ticker-top {
    right: 4%;
    transform: rotate(7deg);
  }

  .ticker-bottom {
    right: 4%;
    transform: rotate(-5deg);
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 18px);
    padding: 8px;
    box-shadow: 4px 4px 0 var(--ink);
  }

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

  .hero,
  .story-section,
  .faq-section,
  .community-section {
    width: min(100% - 18px, 1180px);
  }

  .hero-actions {
    display: grid;
  }

  .copy-button,
  .ghost-button {
    width: 100%;
  }

  .ticker-strip {
    width: 92%;
    font-size: 0.66rem;
  }

  .ticker-top {
    top: 22%;
    right: 4%;
    transform: rotate(7deg);
  }

  .ticker-bottom {
    bottom: 10%;
    right: 4%;
    transform: rotate(-5deg);
  }

  .proof-section {
    padding-inline: 9px;
  }

  .community-links {
    grid-template-columns: 1fr;
  }
}
