:root {
  --ink: #092116;
  --deep: #064e2c;
  --teal: #12a84d;
  --water: #62e892;
  --foam: #ecffe5;
  --paper: #fffbd2;
  --sun: #d9ff3f;
  --orange: #22c55e;
  --red: #ff4159;
  --line: rgba(9, 33, 22, 0.24);
  --display: Impact, "Arial Black", sans-serif;
  --body: "Comic Sans MS", "Comic Sans", cursive;
  --mono: "Courier New", monospace;
  --shadow: 8px 8px 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 12px 12px, rgba(18, 168, 77, .22) 2px, transparent 2px),
    linear-gradient(135deg, transparent 48%, rgba(34, 197, 94, .06) 48% 52%, transparent 52%);
  background-size: 24px 24px, 80px 80px;
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.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='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.ticker {
  overflow: hidden;
  padding: 9px 0;
  border-bottom: 4px solid var(--ink);
  background: var(--sun);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ticker__track {
  display: flex;
  width: max-content;
  gap: 28px;
  animation: ticker 24s linear infinite;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  border-bottom: 3px dashed var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.03em;
}

.brand__mark {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  transform: rotate(-12deg);
  border: 2px solid currentColor;
  background: var(--orange);
  color: var(--paper);
  font-size: 23px;
  box-shadow: 3px 3px 0 currentColor;
}

nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

nav a {
  position: relative;
  text-decoration: underline wavy var(--orange) 2px;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  padding: 0 22px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transform: rotate(-1deg);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-4px, -4px) rotate(2deg) scale(1.03);
  box-shadow: 7px 7px 0 var(--ink);
}

.button--mini {
  min-height: 40px;
  padding: 0 15px;
}

.button--primary {
  background: var(--orange);
  color: #fffaf0;
}

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

.button--sun {
  background: var(--sun);
}

.button--large {
  min-height: 62px;
  padding-inline: 34px;
  font-size: 14px;
}

.hero {
  display: grid;
  min-height: 690px;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 58px;
  padding: 66px 0 76px;
}

.eyebrow,
.section-kicker,
.timeline__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
}

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #29be69;
  box-shadow: 0 0 0 4px rgba(41, 190, 105, 0.18);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 8px rgba(41, 190, 105, 0); }
}

h1,
h2,
.weather,
.proof__quote,
.cta__inner > p {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(65px, 7.7vw, 116px);
  letter-spacing: -0.045em;
}

h1 span {
  display: inline-block;
  color: var(--orange);
  text-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-2.5deg);
  font-size: .68em;
}

.hero__lede {
  max-width: 500px;
  margin: 28px 0;
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 700;
  line-height: 1.48;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.audio-budget {
  max-width: 210px;
  padding: 7px 10px;
  border: 2px dashed var(--ink);
  background: #fff;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  transform: rotate(2deg);
}

.contract {
  display: grid;
  width: min(100%, 500px);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  border: 3px dashed var(--ink);
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.contract span,
.contract strong {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.contract span {
  padding: 5px 6px;
  background: var(--ink);
  color: var(--paper);
}

.contract code {
  overflow: hidden;
  font-family: var(--mono);
  font-size: 12px;
  text-overflow: ellipsis;
}

.hero__visual {
  position: relative;
  isolation: isolate;
  width: min(420px, 100%);
  justify-self: end;
  transform: rotate(1.2deg);
}

.hero__visual::before {
  position: absolute;
  z-index: -1;
  inset: -14px 16px 18px -16px;
  border: 4px solid var(--ink);
  background: var(--sun);
  content: "";
  transform: rotate(-3deg);
}

.hero__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 405 / 740;
  border: 3px solid var(--ink);
  object-fit: contain;
  background: #b7a78e;
  filter: saturate(0.95) contrast(1.04);
}

.hero__caption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 14px;
  border: 3px solid var(--ink);
  border-top: 0;
  padding: 14px 16px;
  background: #fff;
  font-family: var(--mono);
}

.hero__caption span {
  grid-row: 1 / 3;
  padding-right: 14px;
  border-right: 1px solid var(--line);
  font-size: 11px;
}

.hero__caption p,
.hero__caption small {
  margin: 0;
}

.hero__caption p {
  font-size: 13px;
  font-weight: 700;
}

.hero__caption small {
  opacity: 0.62;
  font-size: 10px;
}

.stamp {
  position: absolute;
  z-index: 2;
  right: -25px;
  top: -35px;
  display: grid;
  width: 110px;
  aspect-ratio: 1;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 48% 52% 44% 56%;
  background: var(--orange);
  color: #fff;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
  text-align: center;
  transform: rotate(12deg);
  animation: nervous 1.2s steps(2) infinite;
}

@keyframes nervous {
  50% { transform: rotate(7deg) scale(1.04); }
}

.market-strip {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

.market-strip > div {
  min-height: 108px;
  border-right: 1px solid var(--ink);
  padding: 20px;
}

.market-strip > div:last-child {
  border-right: 0;
}

.market-strip__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--deep);
  color: white;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.market-strip__intro small {
  opacity: 0.7;
  font-size: 9px;
  letter-spacing: 0;
}

.market-stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.market-stat span {
  font-family: var(--mono);
  font-size: 10px;
}

.market-stat strong {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  transform: rotate(-1deg);
}

.market-stat strong.positive { color: #11894b; }
.market-stat strong.negative { color: var(--red); }

.lore,
.roadmap,
.proof {
  padding-block: 120px;
}

.section-kicker {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 3px dashed currentColor;
}

.lore__headline {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 60px;
  padding: 52px 0 70px;
}

h2 {
  font-size: clamp(62px, 8vw, 112px);
}

h2 em {
  color: var(--orange);
  font-style: normal;
  text-shadow: 3px 3px 0 var(--sun);
}

.lore__headline > p {
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 1.65;
}

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

.timeline article {
  min-height: 390px;
  padding: 24px;
  border-right: 1px solid var(--ink);
}

.timeline article:last-child {
  border-right: 0;
}

.timeline article:nth-child(2) {
  background: rgba(217, 255, 63, .46);
  transform: rotate(1deg);
}

.timeline article:nth-child(3) {
  background: rgba(34, 197, 94, .18);
  transform: rotate(-1deg);
}

.timeline__number {
  display: block;
  margin-bottom: 74px;
  font-family: var(--display);
  font-size: 54px;
  color: var(--orange);
}

.timeline h3 {
  margin: 13px 0;
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 45px);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.timeline article > div > p:last-child {
  opacity: 0.7;
  line-height: 1.5;
}

.meme-lab {
  overflow: hidden;
  padding-block: 100px;
  background-color: var(--deep);
  background-image: repeating-linear-gradient(-45deg, transparent 0 18px, rgba(255,255,255,.055) 18px 36px);
  color: var(--foam);
}

.meme-lab__inner {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 80px;
}

.meme-lab__copy h2 {
  margin: 48px 0 26px;
  color: var(--sun);
  font-size: clamp(64px, 7.6vw, 105px);
}

.meme-lab__copy > p {
  max-width: 390px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.meme-card {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--foam);
  box-shadow: 12px 12px 0 var(--sun);
  aspect-ratio: 1 / 1;
  background: #123;
}

.meme-card.is-shuffling {
  animation: shake 260ms linear;
}

@keyframes shake {
  25% { transform: translate(7px, -3px) rotate(0.5deg); }
  50% { transform: translate(-5px, 4px) rotate(-0.5deg); }
  75% { transform: translate(3px, 1px); }
}

.meme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.meme-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.62), transparent 27%, transparent 68%, rgba(0,0,0,.72));
}

.meme-card__top,
.meme-card__bottom {
  position: absolute;
  z-index: 1;
  left: 26px;
  width: calc(100% - 52px);
  margin: 0;
  color: white;
  font-family: var(--display);
  font-size: clamp(30px, 4.6vw, 62px);
  letter-spacing: 0.01em;
  line-height: 0.98;
  text-align: center;
  text-shadow: 3px 3px 0 #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000;
}

.meme-card__top { top: 24px; }
.meme-card__bottom { bottom: 26px; }

.meme-card__counter {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 10px;
  padding: 5px 7px;
  background: var(--sun);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 8px;
}

.proof {
  padding-bottom: 40px;
}

.proof__quote {
  max-width: 1050px;
  margin: 0 auto 80px;
  font-size: clamp(50px, 8vw, 106px);
  text-align: center;
}

.proof__quote span {
  color: var(--orange);
  font-size: .45em;
  text-shadow: 2px 2px 0 var(--ink);
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--ink);
}

.proof__grid article {
  display: grid;
  min-height: 215px;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  border-right: 1px solid var(--ink);
  padding: 22px;
}

.proof__grid article:nth-child(odd) {
  background: #fff;
  transform: rotate(-1deg);
}

.proof__grid article:nth-child(even) {
  background: var(--sun);
  transform: rotate(1deg);
}

.proof__grid article:last-child { border-right: 0; }
.proof__grid article > span { font-size: 28px; }
.proof__grid strong {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 400;
  text-align: right;
}
.proof__grid p {
  grid-column: 1 / -1;
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.4;
}

.roadmap {
  padding-bottom: 140px;
}

.roadmap__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding-top: 60px;
}

.roadmap__layout h2 {
  font-size: clamp(60px, 7vw, 94px);
}

.weather {
  margin-top: 30px;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--teal);
}

.weather span {
  color: var(--orange);
}

.raftmap-list {
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.raftmap-list li {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  border-bottom: 1px solid var(--ink);
  background: rgba(255,255,255,.45);
  padding-inline: 12px;
}

.raftmap-list li > span,
.raftmap-list li > b {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.raftmap-list li > p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.raftmap-list li > b {
  padding: 7px;
  border: 1px solid var(--ink);
  font-weight: 500;
}

.raftmap-list .is-done p {
  opacity: 0.58;
  text-decoration: line-through;
}

.raftmap-list .is-done b {
  background: var(--teal);
  color: white;
}

.cta {
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--ink);
  background: var(--sun);
  background-image: radial-gradient(var(--orange) 2px, transparent 2px);
  background-size: 30px 30px;
}

.cta__wave {
  position: absolute;
  top: -26px;
  left: -3vw;
  width: 110vw;
  color: rgba(9, 33, 22, 0.09);
  font-family: var(--display);
  font-size: 16vw;
  line-height: 1;
  white-space: nowrap;
}

.cta__inner {
  position: relative;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.cta__chicken {
  font-size: 54px;
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
  50% { transform: translateY(-10px) rotate(4deg); }
}

.cta__inner > p {
  font-size: clamp(52px, 7vw, 96px);
}

footer {
  background: var(--ink);
  color: var(--paper);
}

.footer__inner {
  display: grid;
  grid-template-columns: auto 1.2fr 1fr;
  align-items: start;
  gap: 60px;
  padding-block: 52px;
}

.brand--footer .brand__mark {
  border-color: var(--paper);
  box-shadow: 3px 3px 0 var(--paper);
}

.footer__contract {
  min-width: 0;
}

.footer__contract span {
  display: block;
  margin-bottom: 10px;
  color: var(--sun);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.footer__contract code {
  display: block;
  overflow-wrap: anywhere;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.7;
}

.footer__inner > p {
  margin: 0;
  opacity: 0.55;
  font-size: 11px;
  line-height: 1.7;
}

.toast {
  position: fixed;
  z-index: 50;
  right: 20px;
  bottom: 20px;
  padding: 14px 18px;
  border: 2px solid var(--ink);
  background: var(--sun);
  font-family: var(--body);
  font-size: 11px;
  box-shadow: 5px 5px 0 var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  nav { display: none; }
  .hero {
    grid-template-columns: 1fr;
    gap: 68px;
    padding-top: 52px;
  }
  .hero__copy { max-width: 720px; }
  .hero__visual { width: min(680px, 100%); margin: 0 auto; }
  .market-strip { grid-template-columns: repeat(2, 1fr); }
  .market-strip > div { border-bottom: 1px solid var(--ink); }
  .market-strip__intro { grid-column: 1 / -1; }
  .market-strip > div:nth-last-child(-n + 2) { border-bottom: 0; }
  .market-strip > div:nth-child(3), .market-strip > div:nth-child(5) { border-right: 0; }
  .lore__headline,
  .roadmap__layout { grid-template-columns: 1fr; gap: 38px; }
  .lore__headline > p { max-width: 700px; }
  .meme-lab__inner { grid-template-columns: 1fr; gap: 55px; }
  .meme-lab__copy { max-width: 720px; }
  .meme-card { width: min(680px, 100%); margin: 0 auto; }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .proof__grid article:nth-child(2) { border-right: 0; }
  .proof__grid article:nth-child(-n + 2) { border-bottom: 1px solid var(--ink); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__inner > p { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .section-shell,
  .site-header { width: min(100% - 24px, 1180px); }
  .site-header .button--mini { display: none; }
  .hero { min-height: 0; padding-block: 48px 64px; }
  h1 { font-size: clamp(58px, 18vw, 92px); }
  .hero__actions { flex-direction: column; }
  .button { width: 100%; }
  .stamp { right: -5px; top: -42px; width: 88px; font-size: 16px; }
  .hero__visual::before { inset: -9px 9px 12px -9px; }
  .market-strip { width: 100%; border-inline: 0; box-shadow: none; }
  .market-strip > div { min-height: 94px; padding: 16px; }
  .lore, .roadmap, .proof { padding-block: 82px; }
  .lore__headline { padding: 42px 0 55px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline article { min-height: 290px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .timeline article:last-child { border-bottom: 0; }
  .timeline__number { margin-bottom: 35px; }
  .meme-lab { padding-block: 78px; }
  .section-kicker span:last-child { display: none; }
  .meme-card__top, .meme-card__bottom { left: 14px; width: calc(100% - 28px); }
  .proof__quote { margin-bottom: 55px; }
  .proof__grid { grid-template-columns: 1fr; }
  .proof__grid article { min-height: 160px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .proof__grid article:nth-child(2) { border-right: 0; }
  .proof__grid article:nth-child(-n + 3) { border-bottom: 1px solid var(--ink); }
  .proof__grid article:last-child { border-bottom: 0; }
  .raftmap-list li { grid-template-columns: 35px 1fr; padding: 12px 0; }
  .raftmap-list li b { grid-column: 2; justify-self: start; }
  .cta__inner { min-height: 370px; }
  .footer__inner { grid-template-columns: 1fr; gap: 34px; }
  .footer__inner > p { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
