:root {
  --navy-950: #04152f;
  --navy-900: #071d43;
  --navy-800: #0a2856;
  --blue-700: #174f9b;
  --red-700: #a80f24;
  --red-600: #c91f37;
  --red-500: #ea3048;
  --gold-500: #f5c542;
  --gold-300: #ffe486;
  --paper: #fffdf4;
  --white: #ffffff;
  --ink: #09142a;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --border: 3px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: clip;
}

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

button {
  font: inherit;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--navy-950);
  border: 2px solid var(--gold-500);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 4px solid var(--gold-500);
  outline-offset: 4px;
}

.masthead {
  position: relative;
  z-index: 20;
  color: var(--white);
  background: var(--navy-950);
  border-bottom: 4px solid var(--gold-500);
}

.masthead::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.12;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 9px 9px;
}

.masthead__inner {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
}

.token-logo {
  position: relative;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--gold-500);
  border: 3px solid var(--gold-500);
  box-shadow: 4px 4px 0 var(--red-600);
}

.token-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.token-logo--nav {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  transform: rotate(-3deg);
}

.wordmark__seal {
  display: grid;
  width: 51px;
  height: 51px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--red-600);
  border: 3px solid var(--gold-500);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--navy-950), 0 0 0 5px var(--gold-500);
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.wordmark__copy {
  display: grid;
  gap: 1px;
}

.wordmark__copy strong {
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.wordmark__copy small {
  color: var(--gold-300);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgb(255 255 255 / 0.35);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-chip span {
  color: var(--gold-500);
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: #55ec8a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgb(85 236 138 / 0.17);
  animation: live-pulse 1.8s ease-in-out infinite;
}

.launch-ticker {
  position: relative;
  z-index: 15;
  overflow: hidden;
  color: var(--navy-950);
  background: var(--gold-500);
  border-bottom: 4px solid var(--ink);
}

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

.launch-ticker__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 25px;
  padding: 10px 25px 10px 0;
  white-space: nowrap;
}

.launch-ticker span {
  font-size: 0.875rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.launch-ticker span b {
  display: inline-block;
  margin-right: 7px;
  padding: 2px 7px;
  color: var(--white);
  background: var(--red-600);
  border: 2px solid var(--ink);
  transform: rotate(-2deg);
}

.launch-ticker i {
  color: var(--red-600);
  font-style: normal;
}

.launch-ticker:hover .launch-ticker__track,
.ticker:hover .ticker__track {
  animation-play-state: paused;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
  border-bottom: 4px solid var(--ink);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, transparent 56%, rgb(245 197 66 / 0.11) 56%),
    radial-gradient(circle at 18% 18%, #174f9b 0, transparent 34%),
    var(--navy-900);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.34;
  background-image:
    radial-gradient(circle at 9% 74%, var(--gold-300) 0 2px, transparent 2.5px),
    radial-gradient(circle at 47% 11%, var(--white) 0 1.5px, transparent 2px),
    radial-gradient(circle at 72% 83%, var(--gold-300) 0 2px, transparent 2.5px),
    radial-gradient(circle at 92% 21%, var(--white) 0 1.5px, transparent 2px);
  background-size: 230px 230px, 180px 180px, 270px 270px, 210px 210px;
  animation: star-drift 18s linear infinite;
}

.hero__rays {
  position: absolute;
  z-index: -1;
  width: 720px;
  height: 720px;
  top: -430px;
  left: -300px;
  opacity: 0.16;
  background: repeating-conic-gradient(from 10deg, var(--gold-500) 0deg 9deg, transparent 9deg 20deg);
  border-radius: 50%;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  min-height: 750px;
  padding-block: 48px 52px;
}

.hero__copy {
  position: relative;
  z-index: 3;
}

.hero__launch-lockup {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 24px;
}

.token-logo--hero {
  width: 82px;
  height: 82px;
  border-width: 4px;
  border-radius: 17px;
  box-shadow: 7px 7px 0 var(--red-500);
  transform: rotate(-4deg);
  animation: token-float 3.6s ease-in-out infinite;
}

.hero__launch-lockup p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.hero__launch-lockup p > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-300);
  font-size: 0.875rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__launch-lockup strong {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__launch-lockup small {
  color: #c5d3e8;
  font-size: 0.8rem;
  font-weight: 700;
}

.eyebrow,
.kicker {
  margin-bottom: 19px;
  font-size: 0.81rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-300);
  font-size: 0.875rem;
}

.eyebrow span {
  padding: 5px 9px;
  color: var(--white);
  background: var(--red-600);
  border: 2px solid var(--white);
  box-shadow: 3px 3px 0 var(--gold-500);
  transform: rotate(-2deg);
}

.hero h1 {
  display: grid;
  margin-bottom: 23px;
  font-family: var(--display);
  font-size: clamp(4rem, 6.2vw, 6.7rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.77;
  text-transform: uppercase;
}

.hero__old {
  position: relative;
  width: max-content;
  max-width: 100%;
  color: #a9b8cf;
  font-size: 0.55em;
  letter-spacing: 0.02em;
}

.hero__old::after {
  position: absolute;
  height: 9px;
  right: -5px;
  bottom: 42%;
  left: -5px;
  content: "";
  background: var(--red-500);
  box-shadow: 0 3px 0 var(--ink);
  transform: rotate(-3deg);
}

.hero__line {
  margin: 0.12em 0 0.14em;
  color: var(--white);
  font-size: 0.65em;
  letter-spacing: 0.015em;
}

.hero__super {
  width: max-content;
  max-width: 100%;
  padding: 0.05em 0.12em 0.01em;
  color: var(--navy-950);
  background: var(--gold-500);
  border: 4px solid var(--ink);
  box-shadow: 7px 7px 0 var(--red-500);
  transform: rotate(-1.5deg);
}

.hero__line--last {
  margin-top: 0.2em;
}

.hero__slogan {
  max-width: 34ch;
  margin-bottom: 21px;
  color: #e9eef8;
  font-size: clamp(1.03rem, 1.5vw, 1.22rem);
  font-weight: 650;
}

.contract-card {
  max-width: 610px;
  margin-bottom: 24px;
  padding: 12px;
  color: var(--ink);
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 var(--red-500);
  transform: rotate(0.35deg);
}

.contract-card__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.contract-card__heading strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--red-700);
  white-space: nowrap;
}

.contract-card__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 9px;
}

.contract-card code {
  display: flex;
  min-width: 0;
  align-items: center;
  padding: 11px 12px;
  overflow-wrap: anywhere;
  color: var(--white);
  background: var(--navy-950);
  border: 2px solid var(--ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.contract-card button {
  min-height: 48px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--red-600);
  border: 2px solid var(--ink);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 150ms ease, background 150ms ease;
}

.contract-card button:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
}

.contract-card button.is-copied {
  color: var(--navy-950);
  background: var(--gold-500);
}

.contract-card > p {
  margin: 8px 2px 0;
  color: #43516a;
  font-size: 0.875rem;
  font-weight: 750;
}

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

.super-button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 15px 23px;
  color: var(--white);
  background: var(--red-600);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--gold-500);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.super-button:hover {
  background: var(--red-500);
  box-shadow: 9px 9px 0 var(--gold-500);
  transform: translate(-3px, -3px);
}

.super-button:active {
  box-shadow: 2px 2px 0 var(--gold-500);
  transform: translate(4px, 4px);
}

.super-button__burst {
  font-size: 1.35rem;
}

.text-link,
.source-link {
  font-size: 0.91rem;
  font-weight: 850;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.text-link:hover,
.source-link:hover {
  color: var(--gold-300);
}

.hero__meta {
  margin: 25px 0 0;
  color: #afc0db;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.hero__meta span {
  margin-right: 5px;
  color: var(--gold-500);
}

.hero__visual {
  position: relative;
  width: calc(100% + 8vw);
  margin: 0 -8vw 0 0;
}

.hero__frame {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #256ec0;
  border: 4px solid var(--ink);
  box-shadow: 14px 14px 0 var(--gold-500);
  transform: rotate(1deg);
}

.hero__frame::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgb(4 21 47 / 0.56));
}

.hero__frame img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: center;
}

.hero__caption {
  position: absolute;
  z-index: 2;
  bottom: 17px;
  left: 20px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--navy-950);
  border: 2px solid var(--white);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__pow {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 120px;
  height: 120px;
  top: 13px;
  left: 13px;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-500);
  clip-path: polygon(50% 0, 60% 20%, 80% 7%, 82% 29%, 100% 28%, 88% 49%, 100% 66%, 78% 69%, 78% 93%, 57% 79%, 43% 100%, 34% 78%, 11% 91%, 17% 67%, 0 57%, 20% 43%, 4% 24%, 29% 25%);
  font-size: 0.74rem;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
  animation: pow-float 3.2s ease-in-out infinite;
}

.hero__visual figcaption {
  margin: 13px 0 0 9px;
  color: #b9c8dd;
  font-size: 0.79rem;
  font-style: italic;
}

.meme-metrics {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -3px 20px 0;
  color: var(--navy-950);
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--red-500);
}

.meme-metrics span {
  display: grid;
  min-width: 0;
  gap: 1px;
  padding: 10px 12px;
  text-align: center;
}

.meme-metrics span + span {
  border-left: 2px solid var(--ink);
}

.meme-metrics small {
  color: #58657b;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.meme-metrics strong {
  overflow: hidden;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  letter-spacing: 0.03em;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.approval-stamp {
  position: absolute;
  z-index: 5;
  display: grid;
  width: 235px;
  height: 142px;
  right: 32px;
  bottom: 31px;
  align-content: center;
  justify-items: center;
  color: var(--red-600);
  border: 8px double currentColor;
  border-radius: 10px;
  opacity: 0;
  text-transform: uppercase;
  transform: rotate(-13deg) scale(1.6);
  filter: drop-shadow(3px 3px 0 rgb(255 255 255 / 0.75));
}

.approval-stamp span {
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.22em;
}

.approval-stamp strong {
  font-family: var(--display);
  font-size: 3.9rem;
  letter-spacing: 0.03em;
  line-height: 0.94;
}

.is-approved .approval-stamp {
  animation: stamp-in 520ms cubic-bezier(0.2, 1.45, 0.43, 1) both;
}

.ticker {
  overflow: hidden;
  color: var(--white);
  background: var(--red-600);
  border-bottom: 4px solid var(--ink);
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 27px;
  padding: 14px 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker__track span {
  font-size: 0.875rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ticker__track b {
  color: var(--gold-500);
}

.broadcast-section {
  position: relative;
  isolation: isolate;
  padding: 96px 0 104px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgb(245 197 66 / 0.08) 0 18%, transparent 18% 82%, rgb(201 31 55 / 0.12) 82%),
    radial-gradient(circle at 76% 15%, #174f9b 0, transparent 34%),
    var(--navy-950);
  border-bottom: 4px solid var(--ink);
}

.broadcast-section::before {
  position: absolute;
  z-index: -1;
  width: 390px;
  height: 390px;
  right: -180px;
  bottom: -220px;
  content: "";
  opacity: 0.18;
  background: repeating-conic-gradient(var(--gold-500) 0 8deg, transparent 8deg 18deg);
  border-radius: 50%;
}

.broadcast-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
}

.broadcast-copy h2 {
  margin: 0 0 25px;
  font-family: var(--display);
  font-size: clamp(3.4rem, 6.2vw, 6.2rem);
  letter-spacing: -0.015em;
  line-height: 0.9;
  text-transform: uppercase;
}

.broadcast-copy h2 span {
  display: inline-block;
  margin-top: 0.12em;
  padding: 0.03em 0.1em 0;
  color: var(--navy-950);
  background: var(--gold-500);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--red-500);
  transform: rotate(-1deg);
}

.broadcast-copy__lede {
  max-width: 43ch;
  margin-bottom: 25px;
  color: #d9e3f1;
  font-size: 1.05rem;
  font-weight: 650;
}

.broadcast-callout {
  display: grid;
  gap: 2px;
  max-width: 430px;
  margin-bottom: 28px;
  padding: 13px 15px;
  color: var(--navy-950);
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--red-500);
  transform: rotate(0.7deg);
}

.broadcast-callout strong {
  font-size: 0.875rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.broadcast-callout span {
  color: #47546b;
  font-size: 0.875rem;
  font-weight: 700;
}

.broadcast-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-300);
  font-size: 0.94rem;
  font-weight: 900;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.broadcast-source:hover {
  color: var(--white);
}

.broadcast-frame {
  position: relative;
  margin: 0;
  background: var(--red-600);
  border: 4px solid var(--ink);
  box-shadow: 13px 13px 0 var(--gold-500);
  transform: rotate(0.65deg);
}

.broadcast-frame::after {
  position: absolute;
  width: 92px;
  height: 30px;
  right: -21px;
  top: 31px;
  content: "Verified\A by vibes";
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-500);
  border: 2px solid var(--ink);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
  white-space: pre;
}

.broadcast-frame__bar {
  display: flex;
  min-height: 51px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 16px;
  color: var(--white);
  border-bottom: 3px solid var(--ink);
  font-size: 0.875rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.broadcast-frame__bar span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.broadcast-frame__bar b {
  color: var(--navy-950);
  background: var(--gold-500);
  border: 2px solid var(--ink);
  padding: 2px 7px;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.broadcast-screen {
  display: grid;
  min-height: 490px;
  place-items: center;
  padding: 22px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at center, rgb(23 79 155 / 0.08) 0 1px, transparent 1.5px) 0 0 / 12px 12px,
    #e9edf4;
}

.broadcast-screen .twitter-tweet {
  width: min(100%, 550px) !important;
  margin: 0 !important;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid #b8c3d2;
  font-size: 1rem;
  line-height: 1.55;
}

.broadcast-screen .twitter-tweet p {
  margin-bottom: 14px;
}

.broadcast-screen iframe {
  width: 100% !important;
  max-width: 550px !important;
  margin: 0 !important;
}

.broadcast-frame__caption {
  margin: 0;
  padding: 10px 15px;
  color: var(--white);
  background: var(--navy-950);
  border-top: 3px solid var(--ink);
  font-size: 0.8rem;
  font-style: italic;
  text-align: center;
}

.upgrade-section {
  position: relative;
  padding: 108px 0 118px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgb(23 79 155 / 0.09) 0 1px, transparent 1.5px) 0 0 / 13px 13px,
    var(--paper);
  border-bottom: 4px solid var(--ink);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 55px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.kicker {
  color: var(--red-600);
  font-size: 0.875rem;
}

.kicker--gold {
  color: var(--gold-300);
}

.section-heading h2,
.proclamation-intro h2,
.poster-copy h2,
.rally-section h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5.7rem);
  letter-spacing: -0.015em;
  line-height: 0.94;
  text-transform: uppercase;
}

.section-heading h2 em {
  position: relative;
  color: var(--red-600);
  font-style: normal;
}

.section-heading h2 em::after {
  position: absolute;
  height: 8px;
  right: 0;
  bottom: -5px;
  left: 0;
  content: "";
  background: var(--gold-500);
  transform: rotate(-1deg);
}

.upgrade-machine {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px minmax(0, 1fr);
  align-items: stretch;
  gap: 25px;
}

.upgrade-card {
  position: relative;
  min-height: 445px;
  padding: 36px;
  border: var(--border);
}

.upgrade-card--old {
  color: #4c5361;
  background: #e4e5e8;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.upgrade-card--old::after {
  position: absolute;
  z-index: 1;
  height: 16px;
  right: 32px;
  top: 42%;
  left: 32px;
  content: "";
  background: var(--red-600);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-7deg);
}

.upgrade-card--new {
  color: var(--white);
  background:
    linear-gradient(135deg, transparent 0 72%, rgb(245 197 66 / 0.18) 72%),
    var(--navy-900);
  box-shadow: 10px 10px 0 var(--gold-500);
  transform: rotate(1deg);
}

.upgrade-card__label {
  margin-bottom: 17px;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.upgrade-card > strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--display);
  font-size: clamp(6.8rem, 13vw, 10rem);
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.upgrade-card--old > strong {
  color: #a7aab0;
  text-shadow: 4px 4px 0 #c7c9ce;
}

.upgrade-card--new > strong {
  color: var(--gold-500);
  text-shadow: 6px 6px 0 var(--red-600);
}

.upgrade-card h3 {
  margin: 17px 0 22px;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.upgrade-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.upgrade-card li {
  position: relative;
  padding-left: 24px;
  font-size: 1rem;
  font-weight: 700;
}

.upgrade-card li::before {
  position: absolute;
  left: 0;
  content: "★";
  color: var(--red-600);
}

.upgrade-card--new li::before {
  color: var(--gold-500);
}

.rejected-stamp {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 27px;
  padding: 4px 11px;
  color: var(--red-600);
  border: 4px solid currentColor;
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: rotate(-11deg);
}

.approved-ribbon {
  position: absolute;
  right: -13px;
  bottom: 25px;
  padding: 9px 16px;
  color: var(--navy-950);
  background: var(--gold-500);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--red-600);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.upgrade-arrow {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 3px;
  text-align: center;
}

.upgrade-arrow span {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-500);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--red-600);
  font-size: 0.65rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
  transform: rotate(-5deg);
}

.upgrade-arrow b {
  color: var(--red-600);
  font-size: 4.3rem;
  line-height: 1;
}

.proclamation-section {
  position: relative;
  padding: 108px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
  border-bottom: 4px solid var(--ink);
}

.proclamation-section::after {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -270px;
  bottom: -280px;
  content: "";
  opacity: 0.18;
  background: repeating-conic-gradient(var(--gold-500) 0 7deg, transparent 7deg 17deg);
  border-radius: 50%;
}

.proclamation-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.proclamation-intro h2 {
  margin-bottom: 25px;
  font-size: clamp(3.4rem, 5.8vw, 5.5rem);
}

.proclamation-intro > p:not(.kicker) {
  max-width: 43ch;
  margin-bottom: 28px;
  color: #c9d5e6;
  font-size: 1.05rem;
}

.source-link {
  color: var(--gold-300);
}

.proclamation-paper {
  position: relative;
  padding: clamp(42px, 6vw, 68px);
  color: var(--ink);
  background:
    linear-gradient(rgb(255 253 244 / 0.94), rgb(255 253 244 / 0.94)),
    repeating-linear-gradient(0deg, transparent 0 27px, rgb(7 29 67 / 0.08) 27px 28px);
  border: 4px solid var(--ink);
  box-shadow: 13px 13px 0 var(--gold-500);
  transform: rotate(1deg);
}

.proclamation-paper::before {
  position: absolute;
  inset: 13px;
  content: "";
  pointer-events: none;
  border: 2px solid var(--red-600);
}

.paper-seal {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 77px;
  height: 77px;
  top: -32px;
  right: 32px;
  place-items: center;
  color: var(--white);
  background: var(--red-600);
  border: 5px double var(--gold-500);
  border-radius: 50%;
  box-shadow: 3px 4px 0 var(--ink);
  font-family: var(--display);
  font-size: 1.8rem;
  transform: rotate(8deg);
}

.paper-overline {
  margin-bottom: 28px;
  color: var(--red-600);
  font-size: 0.71rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proclamation-paper blockquote {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-weight: 750;
  line-height: 1.32;
}

.proclamation-paper mark {
  color: inherit;
  background: linear-gradient(transparent 58%, var(--gold-300) 58%);
}

.proclamation-paper footer {
  display: grid;
  gap: 3px;
  padding-top: 20px;
  border-top: 2px solid var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proclamation-paper footer span:last-child {
  color: #697285;
  font-weight: 650;
}

.paper-note {
  margin: 19px 0 0;
  color: #737987;
  font-size: 0.72rem;
  font-style: italic;
}

.poster-section {
  padding: 110px 0;
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgb(9 20 42 / 0.09) 49.8% 50.2%, transparent 50.2%),
    var(--gold-500);
  border-bottom: 4px solid var(--ink);
}

.poster-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(55px, 9vw, 120px);
}

.portrait-card {
  position: relative;
  margin: 0;
  padding: 14px;
  background: var(--white);
  border: 4px solid var(--ink);
  box-shadow: 14px 14px 0 var(--red-600);
  transform: rotate(-2deg);
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid var(--ink);
}

.portrait-card figcaption {
  padding: 15px 5px 2px;
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.portrait-card__star {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 53px;
  height: 53px;
  place-items: center;
  color: var(--gold-500);
  background: var(--navy-900);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--white);
}

.portrait-card__star--one {
  top: -23px;
  left: 24px;
  transform: rotate(-11deg);
}

.portrait-card__star--two {
  right: -22px;
  bottom: 34px;
  transform: rotate(12deg);
}

.poster-copy .kicker {
  color: var(--navy-900);
}

.poster-copy h2 {
  margin-bottom: 37px;
  font-size: clamp(4rem, 7.8vw, 7.7rem);
}

.poster-copy h2 span {
  display: inline-block;
  padding: 0.02em 0.12em;
  color: var(--white);
  background: var(--red-600);
  border: 4px solid var(--ink);
  box-shadow: 7px 7px 0 var(--navy-900);
  transform: rotate(-2deg);
}

.slogan-stack {
  display: grid;
  gap: 12px;
}

.slogan-stack article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  padding: 15px 20px;
  background: rgb(255 255 255 / 0.48);
  border: 2px solid var(--ink);
}

.slogan-stack article:nth-child(2) {
  transform: translateX(13px);
}

.slogan-stack article > span {
  color: var(--red-600);
  font-family: var(--display);
  font-size: 2.2rem;
  line-height: 1;
}

.slogan-stack h3 {
  margin: 0 0 1px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.slogan-stack p {
  margin: 0;
  font-size: 1rem;
}

.rally-section {
  position: relative;
  padding: 112px 0 105px;
  overflow: hidden;
  color: var(--white);
  background: var(--red-600);
  text-align: center;
}

.rally-section::before,
.rally-section::after {
  position: absolute;
  width: 370px;
  height: 370px;
  top: 50%;
  content: "";
  opacity: 0.16;
  background: repeating-conic-gradient(var(--gold-500) 0 8deg, transparent 8deg 20deg);
  border-radius: 50%;
  transform: translateY(-50%);
}

.rally-section::before {
  left: -230px;
}

.rally-section::after {
  right: -230px;
}

.rally-section__stars {
  position: absolute;
  width: 100%;
  top: 25px;
  color: var(--gold-500);
  letter-spacing: 1.3em;
}

.rally-section__inner {
  position: relative;
  z-index: 1;
}

.rally-section h2 {
  margin: 0 auto 37px;
  font-size: clamp(3.5rem, 7.5vw, 7.5rem);
}

.rally-section h2 span {
  color: var(--gold-300);
  text-shadow: 5px 5px 0 var(--navy-900);
}

.super-button--light {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--gold-500);
}

.super-button--light:hover {
  color: var(--white);
  background: var(--navy-900);
}

.rally-section__microcopy {
  margin: 24px 0 0;
  color: #ffdce1;
  font-size: 1rem;
  font-weight: 700;
}

.site-footer {
  color: #c7d2e4;
  background: var(--navy-950);
  border-top: 4px solid var(--gold-500);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 1.6fr) auto;
  align-items: center;
  gap: 40px;
  padding-block: 40px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.wordmark__seal--small {
  width: 38px;
  height: 38px;
  font-size: 1rem;
}

.site-footer p {
  margin: 0;
  font-size: 1rem;
}

.site-footer a {
  color: var(--gold-300);
  font-size: 0.875rem;
  font-weight: 850;
  text-underline-offset: 4px;
}

.confetti-layer {
  position: fixed;
  z-index: 100;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.confetti-piece {
  position: absolute;
  width: 11px;
  height: 19px;
  top: -30px;
  animation: confetti-fall 1.55s cubic-bezier(0.2, 0.72, 0.38, 1) both;
}

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

@keyframes live-pulse {
  50% { opacity: 0.55; transform: scale(0.78); }
}

@keyframes token-float {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-6px); }
}

@keyframes pow-float {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(-4deg) scale(1.06); }
}

@keyframes star-drift {
  to { background-position: 230px 115px, -180px 90px, 135px -270px, -105px 210px; }
}

@keyframes stamp-in {
  0% { opacity: 0; transform: rotate(-13deg) scale(1.6); }
  65% { opacity: 1; transform: rotate(-13deg) scale(0.91); }
  100% { opacity: 1; transform: rotate(-13deg) scale(1); }
}

@keyframes confetti-fall {
  0% { opacity: 1; translate: 0 -20px; rotate: 0deg; }
  100% { opacity: 0; translate: var(--drift, 10px) 105vh; rotate: var(--spin, 720deg); }
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    padding-block: 64px 58px;
  }

  .hero__copy {
    max-width: 720px;
  }

  .contract-card {
    max-width: 680px;
  }

  .broadcast-grid {
    grid-template-columns: 1fr;
  }

  .broadcast-copy {
    max-width: 690px;
  }

  .broadcast-frame {
    width: min(690px, calc(100% - 14px));
    margin-inline: auto;
  }

  .hero__visual {
    width: 100%;
    margin: 12px 0 0;
  }

  .hero__frame {
    min-height: 390px;
  }

  .hero__frame img {
    height: 390px;
  }

  .upgrade-machine {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin-inline: auto;
  }

  .upgrade-arrow {
    grid-template-columns: auto auto;
    justify-content: center;
  }

  .upgrade-arrow b {
    transform: rotate(90deg);
  }

  .proclamation-grid,
  .poster-grid {
    grid-template-columns: 1fr;
  }

  .proclamation-intro {
    max-width: 690px;
  }

  .portrait-card {
    width: min(580px, 90%);
    margin-inline: auto;
  }

  .poster-copy {
    max-width: 720px;
    margin-inline: auto;
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
  }

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 26px, 1180px);
  }

  .masthead__inner {
    min-height: 72px;
  }

  .wordmark__seal,
  .token-logo--nav {
    width: 43px;
    height: 43px;
    font-size: 1.15rem;
  }

  .wordmark__copy strong {
    font-size: 0.875rem;
  }

  .wordmark__copy small,
  .status-chip {
    display: none;
  }

  .hero__grid {
    min-height: auto;
    padding-block: 39px 42px;
  }

  .hero__launch-lockup {
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 26px;
  }

  .token-logo--hero {
    width: 68px;
    height: 68px;
    border-radius: 14px;
    box-shadow: 5px 5px 0 var(--red-500);
  }

  .hero__launch-lockup strong {
    font-size: 1.25rem;
  }

  .hero__launch-lockup small {
    display: none;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .hero h1 {
    font-size: clamp(3.75rem, 18vw, 5.7rem);
  }

  .hero__old::after {
    height: 6px;
  }

  .hero__super {
    border-width: 3px;
    box-shadow: 5px 5px 0 var(--red-500);
  }

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

  .contract-card {
    padding: 10px;
    box-shadow: 5px 5px 0 var(--red-500);
  }

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

  .contract-card__row {
    grid-template-columns: 1fr;
  }

  .contract-card button {
    width: 100%;
  }

  .super-button {
    width: 100%;
  }

  .hero__meta {
    line-height: 1.5;
  }

  .hero__frame,
  .hero__frame img {
    height: auto;
    min-height: 0;
  }

  .hero__frame img {
    aspect-ratio: 3 / 1;
    object-fit: cover;
  }

  .hero__pow {
    width: 91px;
    height: 91px;
    top: 8px;
    left: 8px;
    font-size: 0.6rem;
  }

  .hero__caption {
    display: none;
  }

  .meme-metrics {
    margin-inline: 8px;
  }

  .meme-metrics span {
    padding: 9px 5px;
  }

  .meme-metrics small {
    font-size: 0.64rem;
    letter-spacing: 0.04em;
  }

  .meme-metrics strong {
    font-size: 1rem;
  }

  .approval-stamp {
    width: 165px;
    height: 99px;
    right: 16px;
    bottom: 17px;
    border-width: 6px;
  }

  .approval-stamp strong {
    font-size: 2.7rem;
  }

  .upgrade-section,
  .broadcast-section,
  .proclamation-section,
  .poster-section,
  .rally-section {
    padding-block: 78px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .proclamation-intro h2,
  .broadcast-copy h2 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .broadcast-frame {
    box-shadow: 8px 8px 0 var(--gold-500);
  }

  .broadcast-frame::after {
    right: -9px;
    top: 42px;
  }

  .broadcast-screen {
    min-height: 420px;
    padding: 12px;
  }

  .upgrade-card {
    min-height: 400px;
    padding: 27px;
  }

  .upgrade-card > strong {
    font-size: 7rem;
  }

  .approved-ribbon {
    right: -5px;
  }

  .proclamation-grid,
  .poster-grid {
    gap: 55px;
  }

  .proclamation-paper {
    padding: 43px 31px 36px;
    box-shadow: 8px 8px 0 var(--gold-500);
  }

  .proclamation-paper::before {
    inset: 9px;
  }

  .paper-seal {
    width: 62px;
    height: 62px;
    top: -25px;
    right: 23px;
    font-size: 1.45rem;
  }

  .proclamation-paper blockquote {
    font-size: 1.35rem;
  }

  .portrait-card {
    width: calc(100% - 16px);
    box-shadow: 9px 9px 0 var(--red-600);
  }

  .poster-copy h2 {
    font-size: clamp(3.7rem, 18vw, 5.5rem);
  }

  .slogan-stack article,
  .slogan-stack article:nth-child(2) {
    transform: none;
  }

  .rally-section__stars {
    letter-spacing: 0.6em;
  }

  .rally-section h2 {
    font-size: clamp(3.1rem, 14vw, 4.8rem);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer p,
  .site-footer a {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .ticker__track {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
  }

  .launch-ticker__track {
    width: auto;
  }

  .launch-ticker__group {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 14px;
    white-space: normal;
  }

  .launch-ticker__group[aria-hidden="true"] {
    display: none;
  }

  .confetti-piece {
    display: none;
  }
}
