:root {
  --green: #1bbe1b;
  --acid: #8bf000;
  --lime: #a8ff23;
  --black: #090b08;
  --ink: #11150e;
  --paper: #f7f8f2;
  --muted: #cdd5c4;
  --line: rgba(9, 11, 8, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--green);
  overflow-x: hidden;
}

::selection { background: var(--black); color: var(--acid); }

a { color: inherit; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 64px);
  background: rgba(27,190,27,.94);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--black);
}

.brand { display: flex; align-items: baseline; gap: 12px; text-decoration: none; }
.brand-mark {
  font-weight: 1000;
  font-style: italic;
  letter-spacing: -0.06em;
  font-size: 26px;
}
.brand-sub { font-size: 10px; font-weight: 900; letter-spacing: .12em; }

.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 12px; font-weight: 900; letter-spacing: .08em; text-decoration: none; }
.nav-links a:hover { text-decoration: underline; text-decoration-thickness: 2px; }
.nav-cta {
  justify-self: end;
  text-decoration: none;
  background: var(--black);
  color: var(--acid);
  border: 2px solid var(--black);
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .08em;
  transition: .16s ease;
}
.nav-cta:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 #fff; }

.section-shell { padding-inline: clamp(20px, 5vw, 82px); }

.hero {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: clamp(20px, 5vw, 90px);
  padding-top: clamp(50px, 8vw, 100px);
  padding-bottom: clamp(50px, 8vw, 90px);
  background: var(--green);
}

.eyebrow, .kicker {
  font-weight: 1000;
  font-size: 11px;
  letter-spacing: .18em;
  margin: 0 0 18px;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(52px, 7.4vw, 124px);
  line-height: .87;
  letter-spacing: -.066em;
  font-weight: 1000;
  text-transform: uppercase;
}
.hero h1 span {
  display: inline;
  font-style: italic;
}
.hero-sub {
  max-width: 760px;
  margin: 34px 0 12px;
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.035em;
}
.hero-note {
  max-width: 640px;
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn { padding: 15px 20px; text-decoration: none; border: 2px solid var(--black); font-size: 12px; font-weight: 1000; letter-spacing: .08em; }
.btn-black { background: var(--black); color: var(--acid); }
.btn-outline { background: transparent; }
.btn:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 #fff; }

.hero-art {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.hero-art::before {
  content: "";
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  border: 3px solid var(--black);
  border-radius: 50%;
  background: rgba(255,255,255,.09);
}
.hero-art img {
  position: relative;
  z-index: 2;
  width: min(720px, 112%);
  max-width: none;
  filter: drop-shadow(16px 16px 0 rgba(9,11,8,.14));
}
.art-sticker {
  position: absolute;
  z-index: 3;
  top: 8%; right: -1%;
  transform: rotate(7deg);
  background: var(--black);
  color: var(--acid);
  border: 2px solid var(--black);
  padding: 10px 16px;
  font-weight: 1000;
  font-style: italic;
  font-size: 18px;
}
.art-caption {
  position: absolute;
  z-index: 3;
  bottom: 5%; left: 3%;
  background: #fff;
  border: 2px solid var(--black);
  padding: 9px 12px;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .1em;
  transform: rotate(-2deg);
}

.ticker-strip {
  overflow: hidden;
  background: var(--black);
  color: var(--acid);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  padding: 17px 0;
  min-width: max-content;
  animation: ticker 35s linear infinite;
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: .08em;
}
.ticker-track i { color: #fff; font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.contract {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  align-items: end;
  padding-top: 90px;
  padding-bottom: 90px;
  background: var(--paper);
  border-bottom: 2px solid var(--black);
}
.contract h2, .why-heading h2, .links h2 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 82px);
  line-height: .91;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.contract-box {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  border: 2px solid var(--black);
  background: #fff;
  box-shadow: 8px 8px 0 var(--black);
}
.contract-box code {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 20px;
  font-family: "Courier New", monospace;
  font-weight: 800;
  font-size: 14px;
}
.contract-box button {
  border: 0;
  border-left: 2px solid var(--black);
  background: var(--acid);
  color: var(--black);
  padding: 0 22px;
  font-weight: 1000;
  cursor: pointer;
}
.contract-help { grid-column: 2; margin: -20px 0 0; font-size: 12px; color: #555; }

.why {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--black);
  color: var(--paper);
}
.why-heading {
  display: grid;
  grid-template-columns: .65fr 1.15fr .9fr;
  gap: 44px;
  align-items: end;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.why-heading .kicker { color: var(--acid); }
.why-heading h2 { color: #fff; }
.why-heading > p:last-child { margin: 0; color: var(--muted); line-height: 1.55; font-weight: 700; }

.manifesto { max-width: 1180px; margin: 72px auto 0; }
.manifesto-cover {
  border: 2px solid #fff;
  background: var(--acid);
  color: var(--black);
  padding: clamp(28px, 5vw, 66px);
  box-shadow: 12px 12px 0 #fff;
  transform: rotate(-.35deg);
  margin-bottom: 72px;
}
.manifesto-label { margin: 0 0 18px; font-size: 11px; font-weight: 1000; letter-spacing: .15em; }
.manifesto-cover h3 { margin: 0; font-size: clamp(56px, 9vw, 128px); line-height: .82; letter-spacing: -.07em; }
.manifesto-cover > p:last-child { margin: 24px 0 0; max-width: 760px; font-size: clamp(20px, 2.3vw, 30px); font-weight: 900; line-height: 1.04; }

.manifesto-intro { max-width: 820px; margin: 0 auto 78px; font-size: clamp(19px, 2vw, 26px); line-height: 1.35; }
.manifesto-intro blockquote {
  margin: 40px 0;
  padding: 28px;
  border-left: 8px solid var(--acid);
  background: #151914;
  color: #fff;
  font-size: 1.08em;
  font-weight: 900;
}

.thesis-section {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 32px;
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,.17);
}
.chapter {
  position: sticky;
  top: 104px;
  align-self: start;
  font-family: "Courier New", monospace;
  font-size: 13px;
  color: var(--acid);
  border: 1px solid rgba(168,255,35,.6);
  padding: 8px 10px;
  text-align: center;
}
.thesis-section h4, .manifesto-end h4 {
  margin: 0 0 24px;
  font-size: clamp(31px, 4vw, 58px);
  line-height: .94;
  letter-spacing: -.04em;
  color: #fff;
}
.thesis-section p, .thesis-section li, .manifesto-end p {
  font-size: 17px;
  line-height: 1.62;
  color: #dce3d6;
}
.thesis-section strong, .manifesto-end strong { color: #fff; }
.thesis-section ol { padding-left: 22px; }
.formula {
  margin: 24px 0;
  padding: 20px 22px;
  border: 1px solid rgba(168,255,35,.55);
  background: #111510;
  color: var(--acid);
  font-family: "Courier New", monospace;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
}

.manifesto-end {
  margin-top: 76px;
  padding: clamp(28px, 5vw, 64px);
  border: 2px solid var(--acid);
  background: #111510;
}
.big-end { font-size: clamp(44px, 7vw, 90px) !important; font-weight: 1000; line-height: .83 !important; letter-spacing: -.06em; color: #fff !important; }
.big-end span { color: var(--acid); }
.fair-value {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 14px;
  background: var(--acid);
  color: var(--black) !important;
  font-weight: 1000;
  letter-spacing: .06em;
}

.links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding-top: 90px;
  padding-bottom: 100px;
  background: var(--acid);
  border-top: 2px solid var(--black);
}
.link-grid { display: grid; align-self: end; border-top: 2px solid var(--black); }
.link-grid a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 2px;
  text-decoration: none;
  border-bottom: 2px solid var(--black);
  font-size: 18px;
  font-weight: 1000;
}
.link-grid a:hover { padding-left: 12px; padding-right: 12px; background: #fff; }

footer {
  display: grid;
  grid-template-columns: auto 1fr 1.4fr;
  align-items: center;
  gap: 28px;
  padding: 32px clamp(20px, 5vw, 82px);
  background: var(--black);
  color: #fff;
}
.footer-brand { color: var(--acid); font-size: 36px; font-weight: 1000; font-style: italic; letter-spacing: -.07em; }
footer p { margin: 0; font-size: 12px; line-height: 1.4; }
.disclaimer { color: #939b8e; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-art { min-height: 470px; order: -1; }
  .hero-art img { width: min(680px, 110%); }
  .contract, .links { grid-template-columns: 1fr; }
  .contract-help { grid-column: auto; margin: 0; }
  .why-heading { grid-template-columns: 1fr; gap: 18px; }
  footer { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { min-height: 66px; padding: 10px 16px; }
  .brand-sub { display: none; }
  .nav-cta { padding: 10px 12px; }
  .section-shell { padding-inline: 18px; }
  .hero { min-height: auto; padding-top: 26px; }
  .hero-art { min-height: 340px; }
  .hero-art::before { width: 100%; }
  .art-sticker { top: 2%; right: 0; }
  .art-caption { bottom: 2%; left: 0; }
  .hero h1 { font-size: clamp(46px, 15.5vw, 72px); }
  .hero-sub { font-size: 22px; }
  .contract { padding-top: 60px; padding-bottom: 64px; }
  .contract-box { grid-template-columns: 1fr; }
  .contract-box button { border-left: 0; border-top: 2px solid var(--black); padding: 14px; }
  .why { padding-top: 66px; padding-bottom: 70px; }
  .why-heading { padding-bottom: 46px; }
  .manifesto { margin-top: 52px; }
  .manifesto-cover { box-shadow: 7px 7px 0 #fff; }
  .thesis-section { grid-template-columns: 1fr; gap: 16px; padding: 42px 0; }
  .chapter { position: static; justify-self: start; }
  .thesis-section p, .thesis-section li, .manifesto-end p { font-size: 16px; }
  .links { padding-top: 64px; padding-bottom: 70px; }
}

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