:root {
  --sun: #f8ff00;
  --sun-soft: #fff672;
  --cream: #fffac7;
  --ink: #060806;
  --ink-soft: #123518;
  --leaf: #2f8a3f;
  --leaf-light: #61b867;
  --hat: #c99448;
  --feather: #ff8a00;
  --white: #ffffff;
  --shadow: rgba(2, 12, 4, 0.24);
  --line: rgba(6, 8, 6, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 17% 8%, rgba(255, 255, 255, 0.82), transparent 24rem),
    radial-gradient(circle at 84% 24%, rgba(255, 138, 0, 0.35), transparent 22rem),
    linear-gradient(135deg, #faff00 0%, #fff45d 38%, #a6d95c 100%);
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(90deg, rgba(6, 8, 6, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(6, 8, 6, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body::after {
  position: fixed;
  inset: auto -8vw -24vh -8vw;
  z-index: -1;
  height: 46vh;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(47, 138, 63, 0.55) 44%, rgba(6, 8, 6, 0.12));
  transform: skewY(-4deg);
}

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

button {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 4px solid var(--ink);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--leaf), #0f5a23);
  box-shadow: 5px 5px 0 var(--ink);
}

.brand-mark span {
  display: block;
  width: 18px;
  height: 22px;
  border-top: 6px solid var(--white);
  border-right: 6px solid var(--white);
  transform: rotate(43deg);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-size: 18px;
  line-height: 1;
}

.brand-token {
  color: var(--ink-soft);
  font-family: Arial, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a,
.nav-links button,
.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-links a,
.nav-links button {
  padding: 0 14px;
}

.nav-links a:hover,
.nav-links button:hover,
.primary-action:hover,
.secondary-action:hover {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(2px, 2px);
}

.hero {
  display: grid;
  min-height: min(760px, calc(100vh - 80px));
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 34px;
  padding: 34px 0 44px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink-soft);
  font-family: Arial, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tagline::before {
  display: block;
  width: 12px;
  height: 12px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--feather);
  content: "";
}

h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(60px, 12vw, 142px);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 7px 7px 0 var(--white), 12px 12px 0 rgba(6, 8, 6, 0.14);
}

.hero-copy p {
  max-width: 650px;
  margin: 28px 0 0;
  color: #123518;
  font-family: Arial, system-ui, sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 900;
  line-height: 1.45;
}

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

.primary-action,
.secondary-action {
  min-width: 142px;
  padding: 0 20px;
}

.primary-action {
  color: var(--white);
  background: var(--leaf);
}

.secondary-action {
  background: var(--sun-soft);
}

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

.poster-frame {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  border: 7px solid var(--ink);
  border-radius: 40% 60% 44% 56% / 55% 42% 58% 45%;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.8), transparent 42%),
    linear-gradient(135deg, var(--sun) 0%, #ecff2b 46%, #70bd57 100%);
  box-shadow: 14px 14px 0 var(--ink), 0 28px 50px var(--shadow);
  overflow: hidden;
}

.poster-frame::before,
.poster-frame::after {
  position: absolute;
  width: 190px;
  height: 190px;
  border: 26px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  content: "";
}

.poster-frame::before {
  right: -54px;
  top: 26px;
}

.poster-frame::after {
  left: -74px;
  bottom: -36px;
}

.character {
  position: absolute;
  inset: 7% 6% 1%;
  width: 88%;
  height: 96%;
  object-fit: contain;
  filter: drop-shadow(10px 14px 0 rgba(6, 8, 6, 0.18));
}

.orbit-label {
  position: absolute;
  right: -8px;
  bottom: 42px;
  z-index: 3;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border: 5px solid var(--ink);
  border-radius: 50%;
  color: var(--white);
  background: var(--leaf);
  box-shadow: 8px 8px 0 var(--ink);
  font-size: 20px;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
  overflow-wrap: anywhere;
}

.orbit-label span {
  display: block;
  max-width: 96px;
  font-size: 15px;
  line-height: 1;
}

.feather-card {
  position: absolute;
  left: -8px;
  top: 32px;
  z-index: 3;
  display: grid;
  width: 120px;
  height: 74px;
  place-items: center;
  border: 5px solid var(--ink);
  border-radius: 26px 26px 20px 20px;
  background: var(--hat);
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(-12deg);
}

.feather-card::after {
  width: 46px;
  height: 18px;
  border-radius: 50% 0 50% 0;
  background: var(--feather);
  box-shadow: 10px -9px 0 -4px #ffb33d;
  content: "";
  transform: rotate(-28deg);
}

.banner-band {
  width: min(1320px, calc(100% - 32px));
  margin: 4px auto 0;
  overflow: hidden;
  border: 6px solid var(--ink);
  border-radius: 34px 34px 90px 34px;
  background: var(--sun);
  box-shadow: 10px 10px 0 var(--ink);
}

.banner-band img {
  display: block;
  width: 100%;
  height: clamp(190px, 31vw, 390px);
  object-fit: cover;
}

.ticker-marquee {
  display: flex;
  overflow: hidden;
  margin: 36px 0;
  border-block: 5px solid var(--ink);
  background: var(--white);
}

.ticker-track {
  display: flex;
  min-width: max-content;
  animation: scrollTicker 16s linear infinite;
}

.ticker-track span {
  padding: 15px 22px;
  color: var(--ink);
  font-size: clamp(20px, 3vw, 40px);
  text-transform: uppercase;
  white-space: nowrap;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
  padding: 28px 0 72px;
}

.manifesto {
  display: grid;
  align-content: start;
  gap: 18px;
}

.manifesto h2,
.board h2 {
  margin: 0;
  font-size: clamp(34px, 6vw, 76px);
  line-height: 0.9;
  text-transform: uppercase;
}

.manifesto p {
  margin: 0;
  color: var(--ink-soft);
  font-family: Arial, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0 13px;
  background: var(--cream);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: Arial, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 950;
}

.board {
  display: grid;
  gap: 14px;
}

.feature-stack {
  display: grid;
  gap: 14px;
}

.feature {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 128px;
  border: 5px solid var(--ink);
  border-radius: 26px;
  padding: 18px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
}

.feature:nth-child(2) {
  background: var(--sun-soft);
  transform: translateX(16px);
}

.feature:nth-child(3) {
  background: #dcffdf;
  transform: translateX(-10px);
}

.feature-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 4px solid var(--ink);
  border-radius: 24px;
  color: var(--white);
  background: var(--leaf);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 24px;
}

.feature h3 {
  margin: 0 0 7px;
  font-size: clamp(20px, 3vw, 31px);
  line-height: 1;
  text-transform: uppercase;
}

.feature p {
  margin: 0;
  color: var(--ink-soft);
  font-family: Arial, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
}

.rally {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
  border: 7px solid var(--ink);
  border-radius: 36px;
  padding: clamp(24px, 5vw, 56px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 8, 6, 0.2), transparent 46%),
    var(--leaf);
  box-shadow: 12px 12px 0 var(--ink);
  text-align: center;
}

.rally h2 {
  margin: 0;
  font-size: clamp(38px, 8vw, 94px);
  line-height: 0.86;
  text-transform: uppercase;
}

.rally p {
  max-width: 760px;
  margin: 16px auto 0;
  font-family: Arial, system-ui, sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 900;
  line-height: 1.4;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 34px;
  color: var(--ink-soft);
  font-family: Arial, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

@keyframes scrollTicker {
  from {
    transform: translateX(0);
  }

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

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

@media (max-width: 860px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 18px;
    padding-top: 14px;
  }

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

  .poster-frame {
    width: min(92vw, 450px);
  }

  .orbit-label {
    right: 2px;
    bottom: 12px;
    width: 104px;
    height: 104px;
    font-size: 16px;
  }

  .feather-card {
    left: 0;
    top: 16px;
    width: 96px;
    height: 62px;
  }

  h1 {
    max-width: 100%;
  }

  .feature:nth-child(2),
  .feature:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 560px) {
  .page-shell,
  .banner-band,
  .rally {
    width: min(100% - 22px, 1180px);
  }

  .nav-links a,
  .nav-links button,
  .primary-action,
  .secondary-action {
    min-height: 38px;
    box-shadow: 3px 3px 0 var(--ink);
    font-size: 12px;
  }

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

  .hero-copy p {
    font-size: 16px;
  }

  .feature {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-icon {
    width: 58px;
    height: 58px;
  }

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