:root {
  --ink: #121512;
  --deep: #073f36;
  --green: #30d158;
  --mint: #b5ff7a;
  --gold: #ffc947;
  --coral: #ff5d57;
  --cream: #fff7d6;
  --paper: #f8f4e9;
  --line: rgba(18, 21, 18, 0.14);
  --shadow: 0 24px 70px rgba(7, 63, 54, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 201, 71, 0.28), transparent 24rem),
    linear-gradient(135deg, #f8f4e9 0%, #eaf7da 42%, #d4f6e9 100%);
}

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

button,
input {
  font: inherit;
}

.ticker {
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  border-bottom: 3px solid var(--gold);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  padding: 0.65rem 0;
  font-weight: 900;
  text-transform: uppercase;
  animation: crawl 26s linear infinite;
}

.ticker-track span {
  white-space: nowrap;
}

@keyframes crawl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(248, 244, 233, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand,
nav,
.hero-actions,
.contract-bar,
.meme-tags,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.65rem;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  color: var(--cream);
  background: var(--deep);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--gold);
}

nav {
  gap: clamp(0.75rem, 2vw, 2rem);
  font-weight: 800;
}

nav a {
  position: relative;
}

nav a::after {
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 3px;
  content: "";
  background: var(--coral);
  transition: width 180ms ease;
}

nav a:hover::after {
  width: 100%;
}

.header-button,
.button {
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.header-button {
  padding: 0.8rem 1rem;
  background: var(--gold);
}

.button {
  min-height: 3.25rem;
  padding: 0.8rem 1.15rem;
}

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

.primary {
  color: var(--cream);
  background: var(--deep);
}

.secondary {
  color: var(--ink);
  background: var(--coral);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 8rem);
  padding: clamp(2.2rem, 6vw, 5rem) clamp(1rem, 5vw, 5.5rem) 3rem;
}

.eyebrow,
.section-kicker {
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.38rem 0.62rem;
  color: var(--ink);
  background: var(--mint);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 9ch;
  margin-bottom: 1rem;
  font-size: clamp(4.5rem, 15vw, 10rem);
  line-height: 0.86;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.92;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
}

.hero-lede {
  max-width: 42rem;
  color: rgba(18, 21, 18, 0.78);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.5;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 1.2rem;
}

.contract-bar {
  width: min(100%, 32rem);
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.72rem 0.85rem;
  background: rgba(255, 247, 214, 0.75);
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.contract-bar span,
.meme-strip span,
.meme-card span,
footer {
  color: rgba(18, 21, 18, 0.64);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contract-bar code {
  min-width: 0;
  overflow: hidden;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-art {
  position: relative;
  display: grid;
  min-height: 26rem;
  place-items: center;
}

.hero-art::before {
  position: absolute;
  width: min(36rem, 92%);
  aspect-ratio: 1;
  content: "";
  background: conic-gradient(from 20deg, var(--gold), var(--coral), var(--green), var(--gold));
  border: 4px solid var(--ink);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: min(34rem, 96%);
  height: auto;
  filter: drop-shadow(0 26px 28px rgba(18, 21, 18, 0.28));
  transform: rotate(1deg);
}

.rocket-chip {
  position: absolute;
  right: 4%;
  bottom: 8%;
  z-index: 2;
  display: grid;
  width: 6.2rem;
  height: 6.2rem;
  place-items: center;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 6px 6px 0 var(--ink);
}

.rocket-chip svg {
  width: 4.5rem;
  height: 4.5rem;
  overflow: visible;
}

.rocket-chip path {
  fill: var(--coral);
  stroke: var(--ink);
  stroke-linejoin: round;
  stroke-width: 4;
}

.rocket-chip .sparkline {
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-width: 7;
}

.meme-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0 clamp(1rem, 5vw, 5.5rem) 4rem;
}

.meme-strip div,
.panel,
.roadmap-list article,
.meme-box {
  background: rgba(255, 247, 214, 0.82);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 7px 7px 0 var(--ink);
}

.meme-strip div {
  padding: 1.2rem;
}

.meme-strip strong {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(1.25rem, 3vw, 2.05rem);
  line-height: 1;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: 1.2rem;
  padding: 0 clamp(1rem, 5vw, 5.5rem) 4rem;
}

.panel {
  position: relative;
  padding: clamp(1.1rem, 3vw, 2rem);
}

.panel-croc {
  display: block;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.sticker-croc {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  width: clamp(5.5rem, 15vw, 9rem);
  opacity: 0.92;
  transform: rotate(4deg);
  filter: drop-shadow(0 12px 12px rgba(18, 21, 18, 0.2));
}

.token-panel {
  overflow: hidden;
}

.token-panel .section-kicker,
.token-panel h2,
.token-bars {
  position: relative;
  z-index: 1;
}

.token-bars {
  max-width: calc(100% - clamp(2rem, 12vw, 6rem));
}

.token-bars {
  display: grid;
  gap: 1rem;
}

.token-row {
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) minmax(7rem, 1.35fr) 3.5rem;
  gap: 0.8rem;
  align-items: center;
  font-weight: 900;
}

.token-row div {
  height: 1rem;
  overflow: hidden;
  background: rgba(18, 21, 18, 0.12);
  border: 2px solid var(--ink);
  border-radius: 999px;
}

.token-row i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--coral));
}

.vibe-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 24rem;
  color: var(--cream);
  background: var(--deep);
}

.vibe-panel .section-kicker {
  background: var(--gold);
}

.vibe-panel h2 {
  color: var(--cream);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
}

.meter-readout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.8rem;
  align-items: center;
  color: rgba(255, 247, 214, 0.76);
  font-weight: 900;
  text-transform: uppercase;
}

.meter-readout strong {
  display: grid;
  width: 4.25rem;
  height: 4.25rem;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.meter-readout span:last-child {
  text-align: right;
}

.roadmap {
  padding: 4rem clamp(1rem, 5vw, 5.5rem);
  background: var(--ink);
  color: var(--cream);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.roadmap .section-kicker {
  background: var(--coral);
}

.roadmap-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.roadmap-list article {
  color: var(--ink);
  padding: 1.4rem;
}

.roadmap-list span {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1.4rem;
  place-items: center;
  color: var(--cream);
  background: var(--deep);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.roadmap-list p {
  margin-bottom: 0;
  color: rgba(18, 21, 18, 0.72);
  font-weight: 700;
  line-height: 1.5;
}

.meme-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 27rem);
  gap: 2rem;
  align-items: center;
  padding: 4rem clamp(1rem, 5vw, 5.5rem);
}

.meme-band p:not(.section-kicker) {
  max-width: 36rem;
  color: rgba(18, 21, 18, 0.72);
  font-weight: 700;
  line-height: 1.5;
}

.meme-box {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
}

.avatar-croc {
  position: absolute;
  top: -3rem;
  right: 1rem;
  z-index: 2;
  width: 6.3rem;
  height: 6.3rem;
  padding: 0.15rem;
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--ink);
}

.meme-card {
  min-height: 11rem;
  padding: 1.35rem 7.2rem 1.1rem 1.1rem;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(255, 93, 87, 0.94), rgba(7, 63, 54, 0.96)),
    var(--deep);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: inset 0 0 0 2px rgba(255, 247, 214, 0.18);
}

.meme-card span {
  display: block;
  margin-bottom: 1.2rem;
  color: rgba(255, 247, 214, 0.72);
}

.meme-card strong {
  display: block;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  line-height: 1.02;
}

.meme-tags {
  flex-wrap: wrap;
  gap: 0.55rem;
}

.meme-tags span {
  padding: 0.45rem 0.62rem;
  background: var(--mint);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

footer {
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 5vw, 5.5rem);
  background: var(--cream);
}

footer a {
  font-weight: 900;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .content-grid,
  .meme-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 21rem;
  }

  .meme-strip,
  .roadmap-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .header-button {
    display: none;
  }

  nav {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.2rem;
  }

  h1 {
    font-size: clamp(4rem, 24vw, 6rem);
  }

  .meme-strip,
  .roadmap-list {
    grid-template-columns: 1fr;
  }

  .token-row {
    grid-template-columns: 1fr;
  }

  .token-bars {
    max-width: none;
    padding-bottom: 5.5rem;
  }

  .sticker-croc {
    width: 7rem;
  }

  .avatar-croc {
    top: -2.4rem;
    width: 5.4rem;
    height: 5.4rem;
  }

  .meme-card {
    padding-right: 1.1rem;
    padding-top: 3.6rem;
  }

  .rocket-chip {
    right: 0;
  }

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