:root {
  --ink: #07080b;
  --paper: #f8f7f0;
  --muted: #687079;
  --acid: #d8ff4f;
  --cyan: #22d3ee;
  --red: #ff3d2e;
  --yellow: #ffed4a;
  --line: rgba(7, 8, 11, 0.14);
  --shadow: 0 24px 70px rgba(7, 8, 11, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.05) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(rgba(7, 8, 11, 0.05) 1px, transparent 1px) 0 0 / 56px 56px,
    var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  align-items: center;
  background: rgba(248, 247, 240, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  align-items: center;
  aspect-ratio: 1;
  background: var(--ink);
  border-radius: 50%;
  color: var(--acid);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  width: 32px;
}

nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

nav a {
  padding: 8px 0;
  position: relative;
}

nav a::after {
  background: var(--red);
  bottom: 2px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 80px);
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
  min-height: 91vh;
  padding: 112px clamp(18px, 5vw, 76px) 44px;
}

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

.kicker {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(4.8rem, 13vw, 12rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.82;
  margin-bottom: 24px;
  max-width: 8ch;
  text-transform: uppercase;
}

.hero-text {
  color: #24272d;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  font-weight: 700;
  line-height: 1.45;
  max-width: 670px;
}

.hero-actions,
.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font: 900 0.92rem/1 Inter, sans-serif;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 6px 6px 0 var(--ink);
  transform: translate(-3px, -3px);
}

.button.primary {
  background: var(--acid);
  color: var(--ink);
}

.button.ghost {
  background: #fff;
  color: var(--ink);
}

.button.dark {
  background: var(--ink);
  color: #fff;
}

.ticker-strip {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 36px;
  padding-top: 18px;
}

.ticker-strip span {
  align-items: center;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  gap: 10px;
  text-transform: uppercase;
}

.ticker-strip span::before {
  background: var(--cyan);
  border: 2px solid var(--ink);
  content: "";
  height: 11px;
  transform: rotate(45deg);
  width: 11px;
}

.hero-art {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 360px;
}

.hero-art svg {
  display: block;
  filter: drop-shadow(0 30px 35px rgba(7, 8, 11, 0.2));
  max-height: min(70vh, 620px);
  width: min(100%, 620px);
}

.poster-rip {
  fill: #fff;
  stroke: var(--ink);
  stroke-width: 10;
}

.coin-ring {
  fill: url("#coinGlow");
  stroke: var(--ink);
  stroke-width: 16;
}

.coin-core {
  fill: none;
  stroke: rgba(7, 8, 11, 0.38);
  stroke-dasharray: 18 12;
  stroke-width: 8;
}

.strike {
  fill: url("#strikeGrad");
  stroke: var(--ink);
  stroke-linejoin: round;
  stroke-width: 10;
}

.coin-dollar {
  fill: var(--ink);
  font: 900 150px/1 Inter, sans-serif;
}

.coin-word {
  fill: var(--ink);
  font: 900 42px/1 Inter, sans-serif;
  letter-spacing: 0;
}

.signal-band {
  background: var(--ink);
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.signal-band div {
  background: linear-gradient(135deg, rgba(216, 255, 79, 0.12), rgba(34, 211, 238, 0.08));
  min-height: 112px;
  padding: 24px clamp(18px, 3vw, 32px);
}

.signal-band strong,
.signal-band span {
  display: block;
}

.signal-band strong {
  color: var(--acid);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.signal-band span {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 900;
  margin-top: 10px;
}

.signal-band .contract-address {
  font-family: "Courier New", monospace;
  font-size: clamp(0.72rem, 1.05vw, 1rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-transform: none;
}

section:not(.hero, .signal-band) {
  padding: clamp(62px, 9vw, 118px) clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 850px;
}

h2 {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.9rem, 7vw, 6.6rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  margin-bottom: clamp(26px, 4vw, 44px);
  text-transform: uppercase;
}

.manifesto-grid {
  border-top: 2px solid var(--ink);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
}

.manifesto-grid p {
  border-right: 1px solid var(--line);
  color: #24272d;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  min-height: 230px;
  padding: 26px clamp(18px, 3vw, 36px) 0 0;
}

.manifesto-grid p:last-child {
  border-right: 0;
}

.standard {
  background:
    linear-gradient(135deg, rgba(255, 61, 46, 0.08), transparent 32%),
    linear-gradient(315deg, rgba(34, 211, 238, 0.16), transparent 30%),
    #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

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

.standard-grid article {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 var(--ink);
  min-height: 310px;
  padding: 24px;
}

.icon {
  color: var(--red);
  display: block;
  font-family: Anton, Impact, sans-serif;
  font-size: 4.8rem;
  line-height: 0.9;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 900;
  margin: 28px 0 12px;
  text-transform: uppercase;
}

.standard-grid p {
  color: #30343b;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.quote-wall {
  background: var(--red);
  color: #fff;
}

.quote-wall p {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.6rem, 7vw, 7.8rem);
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0 auto;
  max-width: 1260px;
  text-transform: uppercase;
}

.join {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.join h2 {
  margin-bottom: 0;
  max-width: 920px;
}

footer {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 16px;
  justify-content: space-between;
  padding: 22px clamp(18px, 5vw, 76px);
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 92px;
  }

  h1 {
    max-width: 7ch;
  }

  .hero-art {
    min-height: 280px;
    order: -1;
  }

  .hero-art svg {
    max-height: 450px;
  }

  .signal-band,
  .manifesto-grid,
  .standard-grid {
    grid-template-columns: 1fr 1fr;
  }

  .manifesto-grid p:nth-child(2) {
    border-right: 0;
  }

  .manifesto-grid p:last-child {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .join {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand span:last-child {
    max-width: 160px;
  }

  h1 {
    font-size: clamp(3.9rem, 19vw, 5.6rem);
    margin-bottom: 18px;
  }

  .hero {
    gap: 18px;
    padding-bottom: 22px;
  }

  .hero-art {
    min-height: 220px;
  }

  .hero-art svg {
    max-height: 318px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    flex: 1 1 160px;
    min-height: 48px;
    padding: 0 16px;
  }

  .ticker-strip {
    display: none;
  }

  .signal-band,
  .manifesto-grid,
  .standard-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-grid p {
    border-right: 0;
    min-height: auto;
    padding-bottom: 24px;
  }

  .standard-grid article {
    min-height: 240px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
