:root {
  --ink: #101114;
  --paper: #f7f5ef;
  --white: #ffffff;
  --red: #c5162e;
  --blue: #174f9a;
  --steel: #6f7885;
  --green: #1c7c54;
  --gold: #d89a24;
  --line: rgba(16, 17, 20, 0.14);
  --shadow: 0 24px 70px rgba(16, 17, 20, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

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

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

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

.ticker__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: 0.7rem 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: ticker 26s linear infinite;
}

.ticker__track span {
  position: relative;
}

.ticker__track span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.45rem;
  width: 0.42rem;
  height: 0.42rem;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand__mark {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--blue));
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 950;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  max-width: 14rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.brand small {
  color: var(--red);
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 2rem);
  color: rgba(16, 17, 20, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--red);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.8rem 1.1rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.button--primary {
  color: var(--white);
  background: var(--red);
}

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

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

.hero {
  position: relative;
  min-height: calc(100vh - 5.4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 4vw, 3.5rem);
  color: var(--white);
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("assets/trump-leader.png");
  background-position: center 28%;
  background-size: cover;
  transform: scale(1.03);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(10, 11, 14, 0.92) 0%, rgba(10, 11, 14, 0.72) 35%, rgba(10, 11, 14, 0.3) 65%, rgba(10, 11, 14, 0.08) 100%),
    linear-gradient(180deg, rgba(10, 11, 14, 0.25) 0%, transparent 30%, transparent 55%, rgba(10, 11, 14, 0.55) 100%);
}

.hero__portrait {
  position: absolute;
  top: 0;
  right: 0;
  bottom: clamp(13rem, 20vw, 22rem);
  width: min(55%, 44rem);
  background-image: url("https://commons.wikimedia.org/wiki/Special:FilePath/Donald_Trump_official_portrait.jpg");
  background-size: cover;
  background-position: center 10%;
  -webkit-mask-image: linear-gradient(to left, rgb(0 0 0 / 1) 45%, rgb(0 0 0 / 0) 100%);
  mask-image: linear-gradient(to left, rgb(0 0 0 / 1) 45%, rgb(0 0 0 / 0) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero__flag {
  position: absolute;
  top: clamp(1.2rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2.4rem);
  display: grid;
  gap: 0.2rem;
  padding: 0.7rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  text-align: right;
  z-index: 2;
}

.hero__flag span {
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero__flag strong {
  font-size: 0.95rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__content,
.stat-grid {
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 58rem;
  margin-bottom: clamp(2rem, 5vw, 5rem);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.6rem, 9vw, 9rem);
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.hero__lead {
  max-width: 48rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 650;
  line-height: 1.45;
}

.hero__actions,
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.social-row a {
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  min-height: 11rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(247, 245, 239, 0.12);
  backdrop-filter: blur(12px);
}

.stat-card__value {
  font-size: clamp(2.4rem, 4vw, 4.25rem);
  font-weight: 950;
  line-height: 0.92;
}

.stat-card h2 {
  max-width: 13rem;
  margin: 1rem 0 0;
  font-size: 0.92rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3.5rem);
}

.brief {
  background: var(--paper);
}

.brief__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.brief h2,
.pipeline h2,
.token h2,
.buy h2,
.map-section h2,
.brief-feed h2 {
  max-width: 12ch;
  margin: 0 0 1.3rem;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.brief p,
.map-section p,
.buy p {
  max-width: 64rem;
  color: rgba(16, 17, 20, 0.74);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.7;
}

.brief__lede {
  font-size: clamp(1.15rem, 1.55vw, 1.4rem) !important;
  font-weight: 750;
  color: var(--ink) !important;
}

.brief__copy h3 {
  margin: 2.2rem 0 0.75rem;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 0.01em;
}

.brief__copy strong {
  color: var(--ink);
}

.trump-card {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 12px 12px 0 var(--ink);
}

.trump-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(90deg, var(--red) 0 33%, var(--white) 33% 66%, var(--blue) 66%);
  z-index: 2;
}

.trump-card__image {
  aspect-ratio: 4 / 5;
  background-image:
    linear-gradient(rgba(16, 17, 20, 0) 60%, rgba(16, 17, 20, 0.35)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Donald_Trump_official_portrait.jpg");
  background-size: cover;
  background-position: center 12%;
  border-bottom: 3px solid var(--ink);
}

.trump-card__body {
  padding: 1.3rem 1.3rem 1.5rem;
  background: var(--gold);
  color: var(--ink);
}

.trump-card__eyebrow {
  display: block;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trump-card__slogan {
  margin: 0.7rem 0 1rem !important;
  color: var(--ink) !important;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem) !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  text-transform: uppercase;
}

.trump-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  border-top: 2px solid var(--ink);
}

.trump-card__meta small {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trump-card__meta strong {
  font-size: 1.4rem;
  font-weight: 950;
  color: var(--red);
}

.catalyst {
  background:
    linear-gradient(180deg, var(--ink), #181b22);
  color: var(--white);
}

.catalyst h2 {
  max-width: 18ch;
  margin: 0 0 1rem;
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.catalyst__lede {
  max-width: 52rem;
  margin: 0 0 2.4rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
}

.catalyst__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.catalyst__card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 19rem;
  padding: 1.4rem;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.catalyst__label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.catalyst__value {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 950;
  line-height: 0.9;
  color: var(--white);
}

.catalyst__card h3 {
  margin: 0.3rem 0 0;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--white);
}

.catalyst__card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  line-height: 1.55;
}

.catalyst__intel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-top: 2.4rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: rgba(216, 154, 36, 0.07);
}

.catalyst__intel span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.catalyst__intel h3 {
  margin: 0.6rem 0 0;
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.catalyst__intel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.65;
}

.catalyst__intel ul li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.catalyst__intel ul li:last-child {
  border-bottom: 0;
}

.catalyst__intel strong {
  color: var(--gold);
}

.catalyst__note {
  grid-column: 1 / -1;
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  line-height: 1.55;
}

.feed-lede {
  max-width: 52rem;
  margin: -0.3rem 0 2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.6;
}

.meme-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 28rem);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3.5rem);
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(197, 22, 46, 0.86) 0%, rgba(197, 22, 46, 0.55) 45%, rgba(23, 79, 154, 0.45) 70%, rgba(23, 79, 154, 0.82) 100%),
    url("assets/trump-rally.jpg") center 30% / cover no-repeat,
    linear-gradient(0deg, var(--red), var(--blue));
}

.meme-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.32) 100%);
  pointer-events: none;
}

.meme-band > * {
  position: relative;
  z-index: 1;
}

.meme-band h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.87;
}

.meme-band p:not(.eyebrow) {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 650;
  line-height: 1.6;
}

.meme-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 5px solid var(--white);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(16, 17, 20, 0) 42%, rgba(16, 17, 20, 0.55) 72%, rgba(16, 17, 20, 0.92) 100%),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Donald_Trump_official_portrait.jpg");
  background-position: center 8%;
  background-size: cover;
  box-shadow: 14px 14px 0 rgba(16, 17, 20, 0.82);
  transform: rotate(2deg);
  outline: 3px solid var(--ink);
  outline-offset: -9px;
}

.meme-card__top,
.meme-card__stamp,
.meme-card__bottom {
  position: absolute;
  padding: 0.55rem 0.75rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.meme-card__top {
  top: 1rem;
  left: 1rem;
}

.meme-card__stamp {
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  transform: rotate(4deg);
}

.meme-card__bottom {
  bottom: 1rem;
  right: 1rem;
  background: var(--red);
  color: var(--white);
  border-color: var(--white);
}

.meme-card__name {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 5.2rem;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-shadow: 3px 3px 0 var(--ink);
}

.meme-card__symbol {
  position: absolute;
  left: 1.1rem;
  bottom: 1rem;
  color: var(--gold);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 950;
  line-height: 1;
  text-shadow: 3px 3px 0 var(--ink);
}

.pipeline {
  background: var(--white);
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.flow__step {
  position: relative;
  min-height: 18rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 8px;
  background: var(--paper);
}

.flow__step span {
  color: var(--blue);
  font-size: 2.8rem;
  font-weight: 950;
}

.flow__step h3,
.token h3,
.buy-steps h3 {
  margin: 1rem 0 0.6rem;
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.flow__step p,
.buy-steps p,
.feed-grid p {
  color: rgba(16, 17, 20, 0.68);
  line-height: 1.55;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3.5rem);
  background: #e5edf4;
}

.map-frame {
  margin: 0;
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.map-frame figcaption {
  padding: 0.75rem;
  color: rgba(16, 17, 20, 0.62);
  font-size: 0.78rem;
}

.token {
  background: var(--paper);
}

.token__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 1rem;
}

.allocation,
.token-card,
.contract-box,
.buy-steps article,
.feed-grid article {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
}

.allocation,
.token-card {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.allocation h3,
.token-card h3 {
  margin-top: 0;
}

.allocation__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  font-weight: 850;
}

.allocation__bar {
  height: 0.7rem;
  margin-top: 0.45rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #dfe3e7;
}

.allocation__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
}

.token-card dl {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.token-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.token-card dt {
  color: rgba(16, 17, 20, 0.62);
  font-weight: 750;
}

.token-card dd {
  margin: 0;
  font-weight: 950;
  text-align: right;
}

.brief-feed {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3.5rem);
  background: var(--ink);
  color: var(--white);
}

.brief-feed h2 {
  color: var(--white);
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feed-grid article {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.feed-grid span {
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
}

.feed-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.buy {
  background:
    linear-gradient(135deg, rgba(247, 245, 239, 0.96), rgba(229, 237, 244, 0.96)),
    var(--paper);
}

.buy__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 32rem);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contract-box {
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.contract-box span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contract-box code {
  display: block;
  width: 100%;
  margin: 0.8rem 0 1rem;
  padding: 0.9rem;
  overflow-wrap: anywhere;
  border: 1px dashed var(--steel);
  border-radius: 8px;
  background: #f2f3f4;
  color: var(--ink);
  font-size: 0.95rem;
}

.contract-box button {
  width: 100%;
  cursor: pointer;
}

.copy-status {
  min-height: 1.5rem;
  margin: 0.8rem 0 0;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 850;
}

.buy-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.buy-steps article {
  min-height: 12rem;
  padding: 1rem;
}

.buy-steps span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  padding: 2.5rem clamp(1rem, 4vw, 3.5rem);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer strong {
  display: block;
  color: var(--white);
  text-transform: uppercase;
}

.footer p {
  max-width: 62rem;
  line-height: 1.55;
}

.footer__links {
  display: flex;
  gap: 0.7rem;
  align-items: start;
}

.footer__links a {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: var(--white);
  font-weight: 850;
}

.credits {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

@media (max-width: 1000px) {
  .nav {
    display: none;
  }

  .stat-grid,
  .flow,
  .buy-steps,
  .catalyst__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brief__layout,
  .meme-band,
  .map-section,
  .token__grid,
  .buy__content,
  .catalyst__intel {
    grid-template-columns: 1fr;
  }

  .hero__portrait {
    width: min(65%, 30rem);
    bottom: clamp(18rem, 40vw, 28rem);
    -webkit-mask-image: linear-gradient(to left, rgb(0 0 0 / 1) 30%, rgb(0 0 0 / 0) 100%);
    mask-image: linear-gradient(to left, rgb(0 0 0 / 1) 30%, rgb(0 0 0 / 0) 100%);
  }

  .trump-card {
    max-width: 26rem;
    margin: 0 auto;
  }

  .meme-card {
    max-width: 28rem;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .hero__portrait,
  .hero__flag {
    display: none;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(16, 17, 20, 0.88) 0%, rgba(16, 17, 20, 0.72) 55%, rgba(16, 17, 20, 0.55) 100%),
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 12px);
  }
}

@media (max-width: 640px) {
  .ticker__track {
    gap: 1.7rem;
    font-size: 0.72rem;
  }

  .ticker__track span::after {
    right: -1rem;
    width: 0.35rem;
    height: 0.35rem;
  }

  .site-header {
    gap: 0.8rem;
    padding: 0.85rem 1rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand strong {
    max-width: 9rem;
    font-size: 0.74rem;
  }

  .brand__mark {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.85rem;
  }

  .header-cta {
    min-height: 2.75rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.72rem;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .hero {
    min-height: auto;
    padding: 2.4rem 1.1rem 2.8rem;
  }

  .hero__content {
    margin-bottom: 2.2rem;
  }

  .hero h1,
  .meme-band h2,
  .brief h2,
  .pipeline h2,
  .token h2,
  .buy h2,
  .map-section h2,
  .brief-feed h2,
  .catalyst h2 {
    max-width: 100%;
  }

  .hero__lead {
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
  }

  .social-row {
    gap: 0.55rem;
  }

  .social-row a {
    padding: 0.55rem 0.7rem;
    font-size: 0.78rem;
  }

  .stat-grid,
  .flow,
  .feed-grid,
  .buy-steps,
  .catalyst__grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 8.5rem;
    padding: 1rem;
  }

  .stat-card h2 {
    max-width: 100%;
    font-size: 0.88rem;
  }

  .section-pad,
  .meme-band,
  .map-section,
  .brief-feed {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .brief__copy h3 {
    margin-top: 1.8rem;
    font-size: 1.1rem;
  }

  .trump-card {
    box-shadow: 8px 8px 0 var(--ink);
  }

  .trump-card__image {
    aspect-ratio: 4 / 4.2;
    background-position: center 14%;
  }

  .catalyst__card {
    min-height: 0;
    padding: 1.2rem;
  }

  .catalyst__intel {
    padding: 1.2rem;
  }

  .catalyst__intel h3 {
    font-size: 1.35rem;
  }

  .meme-band {
    gap: 2rem;
  }

  .meme-card {
    transform: none;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 8px 8px 0 rgba(16, 17, 20, 0.82);
  }

  .flow__step {
    min-height: 0;
  }

  .buy-steps article {
    min-height: 0;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 2rem 1.1rem 2.4rem;
  }

  .footer__links {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    line-height: 0.9;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .brand strong {
    font-size: 0.7rem;
    max-width: 7.5rem;
  }

  .brand__mark {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.78rem;
  }

  .header-cta {
    padding: 0.55rem 0.7rem;
    font-size: 0.68rem;
    box-shadow: 2px 2px 0 var(--ink);
  }

  .ticker__track {
    font-size: 0.68rem;
    gap: 1.4rem;
  }

  .stat-card__value,
  .catalyst__value {
    font-size: 2.4rem;
  }

  .meme-band h2,
  .catalyst h2,
  .brief h2,
  .pipeline h2,
  .token h2,
  .buy h2,
  .map-section h2,
  .brief-feed h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .section-pad,
  .meme-band,
  .map-section,
  .brief-feed,
  .catalyst,
  .hero {
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }

  .quote-panel p,
  .trump-card__slogan {
    font-size: 1.35rem !important;
  }

  .meme-card__name {
    font-size: 2rem;
    bottom: 4.4rem;
  }

  .meme-card__symbol {
    font-size: 2rem;
  }
}

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