:root {
  --paper: #eef7dc;
  --paper-2: #dff0b0;
  --ink: #0a0f14;
  --ink-2: #17222c;
  --muted: #607181;
  --blue: #2693ff;
  --blue-2: #60c5ff;
  --green: #b5d400;
  --green-2: #d7f05f;
  --green-deep: #8cad00;
  --line: rgba(10, 15, 20, .18);
  --dark-line: rgba(255,255,255,.16);
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 12%, rgba(181,212,0,.16), transparent 24%),
    radial-gradient(circle at 84% 76%, rgba(96,197,255,.08), transparent 22%),
    var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
body::selection { background: var(--ink); color: var(--paper); }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(238, 247, 220, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.03em; }
.brand img { width: 38px; height: 38px; object-fit: contain; }
.nav-links { display: flex; gap: 26px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.nav-links a:hover { opacity: .55; }
.mini-buy {
  justify-self: end;
  min-width: 92px;
  padding: 11px 18px;
  text-align: center;
  background: var(--ink);
  color: #fff;
  border: 2px solid var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
}
.mini-buy:hover { background: var(--green); border-color: var(--green); color: var(--ink); }

.hero {
  min-height: 790px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 34px;
  padding-top: 70px;
  padding-bottom: 80px;
}
.kicker,
.section-index {
  font: 900 11px/1.2 "Courier New", monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.kicker { margin-bottom: 18px; }
.kicker.dark { color: rgba(10,15,20,.68); }
.hero h1,
.section h2,
.story-title h2,
.community-copy h2,
.final-inner h2 {
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .86;
}
.hero h1 { font-size: clamp(74px, 9.3vw, 145px); }
.hero h1 span,
.story-title h2 span,
.community-copy h2 span { color: var(--green-deep); }
.hero-lead {
  max-width: 580px;
  margin: 28px 0 0;
  font-size: 19px;
  line-height: 1.55;
  color: #31414f;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.button {
  min-height: 50px;
  padding: 0 20px;
  border: 2px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, color .16s ease;
}
.button:hover { transform: translate(-2px, -2px); }
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover { background: var(--green); border-color: var(--green); color: var(--ink); }
.button-outline-dark { border-color: var(--ink); }
.button-large { min-height: 58px; padding-inline: 28px; }

.hero-art { position: relative; min-height: 600px; }
.hero-card {
  position: absolute;
  inset: 42px 20px 42px 58px;
  overflow: hidden;
  background: var(--ink);
  border: 3px solid var(--ink);
  transform: rotate(2.4deg);
  box-shadow: 18px 18px 0 var(--green);
}
.hero-card-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 36px 36px;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 52% 42%, rgba(181,212,0,.22), transparent 44%), radial-gradient(circle at 52% 42%, rgba(38,147,255,.18), transparent 56%);
}
.hero-card img {
  position: absolute;
  z-index: 2;
  width: 91%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%) rotate(-2deg);
  filter: drop-shadow(0 26px 22px rgba(0,0,0,.28));
}
.hero-number {
  position: absolute;
  top: 0;
  right: 4px;
  z-index: 5;
  font: 900 86px/.8 "Arial Black", Arial, sans-serif;
  color: var(--green-deep);
}
.hero-stamp {
  position: absolute;
  left: 0;
  bottom: 18px;
  z-index: 6;
  padding: 14px 18px;
  border: 3px solid var(--ink);
  background: var(--paper);
  font: 900 16px/.9 "Arial Black", Arial, sans-serif;
  letter-spacing: -.03em;
  transform: rotate(-7deg);
}
.hero-note {
  position: absolute;
  right: -8px;
  bottom: 0;
  z-index: 6;
  padding: 9px 12px;
  background: var(--green);
  color: var(--ink);
  font: 900 11px/1 "Courier New", monospace;
  letter-spacing: .1em;
  transform: rotate(2deg);
}

.manifesto-strip {
  background: var(--ink);
  color: #fff;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}
.strip-inner {
  min-height: 118px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.strip-inner span {
  flex: 1 1 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  padding: 14px 18px;
  text-align: center;
  font: 900 clamp(22px, 2.7vw, 44px)/.9 "Arial Black", Arial, sans-serif;
  letter-spacing: -.05em;
  text-transform: uppercase;
  color: var(--green-2);
  border: 0 !important;
  box-shadow: none !important;
  outline: 0;
}

.section { padding-top: 130px; padding-bottom: 130px; }
.distribution-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 52px;
  align-items: center;
}
.section-index { color: #6d8708; margin-bottom: 20px; }
.distribution-copy h2 { font-size: clamp(56px, 6.5vw, 92px); }
.distribution-copy h2 em { color: var(--green-deep); font-style: normal; }
.distribution-copy p {
  max-width: 560px;
  margin: 24px 0 0;
  color: #415463;
  font-size: 17px;
  line-height: 1.68;
}
.production-frame {
  position: relative;
  margin: 0;
  border: 3px solid var(--ink);
  background: var(--ink);
  box-shadow: 16px 16px 0 rgba(181,212,0,.95);
}
.production-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.frame-label {
  position: absolute;
  top: 16px;
  left: -16px;
  z-index: 3;
  padding: 10px 12px;
  background: var(--paper);
  border: 2px solid var(--ink);
  font: 900 10px/1 "Courier New", monospace;
  letter-spacing: .08em;
}
.production-frame figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  color: #fff;
  background: var(--ink);
}
.production-frame figcaption span { color: #9ab1c4; font-size: 13px; }
.production-frame figcaption strong { font: 900 16px/1 "Arial Black", Arial, sans-serif; text-transform: uppercase; }

.story-section {
  padding: 130px 0;
  background: var(--ink);
  color: #fff;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.story-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px 80px;
  align-items: start;
}
.story-title .section-index { color: #c6e34f; }
.story-title h2 { font-size: clamp(64px, 7.5vw, 108px); }
.story-copy { padding-top: 26px; }
.story-copy p { max-width: 670px; color: #b8c5cf; font-size: 17px; line-height: 1.72; }
.story-copy .story-big {
  color: #fff;
  font: 900 26px/1.15 "Arial Black", Arial, sans-serif;
  letter-spacing: -.04em;
}
.story-marks {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 16px;
}
.mark-card {
  width: 130px;
  height: 130px;
  border: 2px solid #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  transform: rotate(-2deg);
}
.mark-card.small { width: 110px; height: 110px; transform: rotate(3deg); }
.mark-card b { font: 900 48px/.9 "Arial Black", Arial, sans-serif; color: var(--green-2); }
.mark-card span { font: 900 10px/1 "Courier New", monospace; letter-spacing: .1em; }
.mark-line { height: 2px; background: repeating-linear-gradient(90deg, rgba(255,255,255,.8) 0 18px, transparent 18px 30px); }

.community-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: 650px;
  border: 3px solid var(--ink);
  background: #fff;
  box-shadow: 18px 18px 0 var(--green-deep);
}
.community-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green) 0%, #b7db00 52%, #9fc400 100%);
  border-right: 3px solid var(--ink);
}
.community-visual::before {
  content: "";
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.72);
  box-shadow: 0 0 0 40px rgba(255,255,255,.07), 0 0 0 80px rgba(255,255,255,.05);
}
.community-visual img { position: relative; z-index: 2; width: min(82%, 460px); }
.community-copy { padding: 64px 58px; display: flex; flex-direction: column; justify-content: center; }
.community-copy h2 { font-size: clamp(66px, 7vw, 104px); }
.community-copy p { max-width: 560px; margin: 28px 0 0; color: #40515f; font-size: 17px; line-height: 1.7; }
.community-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

.contract-section {
  padding-top: 20px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 42px;
  align-items: end;
}
.contract-copy h3 { margin: 8px 0 0; font: 900 42px/.95 "Arial Black", Arial, sans-serif; letter-spacing: -.05em; }
.contract-copy p { margin: 10px 0 0; color: var(--muted); }
.ca-card {
  min-height: 92px;
  width: 100%;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  border: 3px solid var(--ink);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  box-shadow: 10px 10px 0 var(--green);
}
.ca-card:hover { transform: translate(-2px,-2px); }
.ca-label { font: 900 13px/1 "Arial Black", Arial, sans-serif; }
.ca-value { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font: 700 13px/1.3 "Courier New", monospace; }
.ca-copy { padding: 10px 12px; background: var(--ink); color: #fff; font: 900 11px/1 "Courier New", monospace; text-transform: uppercase; }

.final-cta { background: linear-gradient(135deg, var(--paper-2) 0%, var(--green) 55%, var(--green-2) 100%); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.final-inner {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.final-inner h2 { font-size: clamp(62px, 7.4vw, 108px); }

.footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; }
.footer-brand img { width: 36px; height: 36px; object-fit: contain; }
.footer-links { display: flex; align-items: center; gap: 18px; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.footer-links button { border: 0; background: transparent; font: inherit; text-transform: inherit; letter-spacing: inherit; cursor: pointer; padding: 0; }
.footer-links a:hover, .footer-links button:hover { opacity: .5; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 90px; }
  .hero-art { min-height: 570px; }
  .distribution-layout, .story-grid, .community-wrap, .contract-section { grid-template-columns: 1fr; }
  .production-frame { margin-top: 20px; }
  .story-grid { gap: 44px; }
  .story-marks { grid-template-columns: auto 1fr auto 1fr auto; }
  .community-visual { border-right: 0; border-bottom: 3px solid var(--ink); min-height: 560px; }
  .community-copy { padding: 52px 40px; }
  .contract-section { gap: 24px; }
  .final-inner { align-items: flex-start; justify-content: center; flex-direction: column; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .site-header { position: relative; }
  .nav { min-height: 64px; }
  .brand span { display: none; }
  .hero { min-height: auto; padding-top: 62px; padding-bottom: 64px; gap: 10px; }
  .hero h1 { font-size: clamp(62px, 21vw, 94px); }
  .hero-lead { font-size: 16px; }
  .hero-actions .button { flex: 1 1 calc(50% - 5px); }
  .hero-actions .button:first-child { flex-basis: 100%; }
  .hero-art { min-height: 430px; }
  .hero-card { inset: 44px 14px 34px 30px; box-shadow: 10px 10px 0 var(--green); }
  .hero-number { font-size: 62px; }
  .hero-stamp { font-size: 12px; left: 2px; bottom: 12px; }
  .hero-note { font-size: 9px; }
  .strip-inner { flex-wrap: wrap; min-height: 0; }
  .strip-inner span { flex: 1 1 50%; min-height: 84px; font-size: clamp(18px, 6vw, 28px); padding: 14px 10px; }
  .section, .story-section { padding-top: 86px; padding-bottom: 86px; }
  .distribution-copy h2 { font-size: clamp(48px, 15vw, 70px); }
  .distribution-copy p { font-size: 16px; }
  .production-frame { box-shadow: 10px 10px 0 rgba(181,212,0,.95); }
  .frame-label { left: 10px; top: 10px; }
  .production-frame figcaption { align-items: flex-start; flex-direction: column; gap: 6px; }
  .story-title h2 { font-size: clamp(58px, 18vw, 84px); }
  .story-copy .story-big { font-size: 22px; }
  .story-marks { grid-template-columns: 1fr; }
  .mark-card, .mark-card.small { width: 100%; height: 92px; transform: none; }
  .mark-line { width: 2px; height: 34px; justify-self: center; background: repeating-linear-gradient(180deg, rgba(255,255,255,.8) 0 12px, transparent 12px 20px); }
  .community-wrap { box-shadow: 10px 10px 0 var(--ink); }
  .community-visual { min-height: 410px; }
  .community-copy { padding: 42px 22px; }
  .community-copy h2 { font-size: clamp(58px, 18vw, 84px); }
  .community-copy p { font-size: 16px; }
  .community-actions .button { width: 100%; }
  .contract-section { padding-bottom: 86px; }
  .ca-card { grid-template-columns: 1fr auto; box-shadow: 8px 8px 0 var(--green); }
  .ca-label { grid-column: 1 / -1; }
  .ca-value { font-size: 11px; }
  .final-inner { min-height: 320px; }
  .final-inner h2 { font-size: clamp(54px, 17vw, 82px); }
  .final-inner .button { width: 100%; }
  .footer { min-height: 140px; align-items: flex-start; justify-content: center; flex-direction: column; padding-top: 30px; padding-bottom: 30px; }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
