/* ==========================================================================
   OFFICIAL TRUMP CAT — $TRUMPCAT
   Campaign poster × meme coin × premium landing
   ========================================================================== */

:root {
  --navy: #070b16;
  --navy-deep: #04060d;
  --navy-mid: #0c1224;
  --navy-lift: #121a30;
  --black: #000000;
  --white: #f5f2ea;
  --white-dim: #c8c2b4;
  --red: #c8102e;
  --red-bright: #e31c3d;
  --gold: #c9a227;
  --gold-light: #f0d56a;
  --gold-deep: #8a6d1b;
  --gold-shine: #ffe9a0;
  --line: rgba(201, 162, 39, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--navy-deep);
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  color: var(--white);
  background: var(--navy);
  line-height: 1.45;
  overflow-x: hidden;
  max-width: 100%;
  min-height: 100%;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 400;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 10px 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.skip-link:focus {
  top: 16px;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

.display {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 500;
  color: var(--white);
  max-width: 34ch;
  margin: 1.4rem 0 1rem;
}

.body-copy {
  font-size: 1.15rem;
  color: var(--white-dim);
  max-width: 38ch;
}

.gold-text {
  color: var(--gold-light);
  background: linear-gradient(180deg, var(--gold-shine) 0%, var(--gold) 48%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.red-text {
  color: var(--red-bright);
}

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

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn-lg {
  min-height: 56px;
  padding: 0 28px;
  font-size: 1rem;
}

.btn-xl {
  min-height: 68px;
  padding: 0 42px;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-shine) 0%, var(--gold) 42%, var(--gold-deep) 100%);
  color: var(--navy-deep);
  box-shadow: 0 0 0 1px rgba(255, 233, 160, 0.2), 0 10px 30px rgba(201, 162, 39, 0.22);
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.45) 45%, transparent 70%);
  transform: translateX(-130%);
  pointer-events: none;
}

.btn-gold:hover::after {
  animation: shine-sweep 0.85s var(--ease);
}

.btn-outline {
  background: rgba(7, 11, 22, 0.45);
  color: var(--white);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: rgba(201, 162, 39, 0.1);
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.18);
}

.btn-icon {
  width: 48px;
  padding: 0;
  color: var(--white);
  border: 1px solid var(--line);
  background: rgba(7, 11, 22, 0.4);
}

.btn-icon.btn-lg {
  width: 56px;
}

.btn-icon:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-nav {
  min-height: 42px;
  padding: 0 16px;
}

.btn-copy {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  letter-spacing: 0.16em;
}

.btn-copy.is-copied,
.btn-copy:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn:hover {
  transform: scale(1.03);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

@keyframes shine-sweep {
  to { transform: translateX(130%); }
}

/* --------------------------------------------------------------------------
   Chrome: progress, grain, cursor
   -------------------------------------------------------------------------- */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 300;
  pointer-events: none;
}

.grain,
.grain::after {
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 250;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-dot,
.cursor-ring {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button {
    cursor: none;
  }

  .cursor-dot,
  .cursor-ring {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 360;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .cursor-dot {
    width: 7px;
    height: 7px;
    background: var(--gold-light);
    box-shadow: 0 0 10px var(--gold-light);
  }

  .cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(240, 213, 106, 0.55);
  }
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 280;
  transform: translateY(-100%);
  transition: transform 0.7s var(--ease), background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.nav.is-ready {
  transform: translateY(0);
}

.nav.is-scrolled {
  background: rgba(4, 6, 13, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 1rem;
}

.nav-brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--white-dim);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s ease, top 0.3s var(--ease);
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }

.nav-toggle.is-open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 270;
  background: #05070f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 32px 48px;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, transform 0.35s var(--ease), visibility 0.35s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-menu-links a {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.4rem, 10vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.mobile-menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--nav-h) + 20px) 0 0;
  background:
    radial-gradient(ellipse 70% 55% at 78% 62%, rgba(201, 162, 39, 0.16), transparent 62%),
    radial-gradient(ellipse 50% 40% at 18% 20%, rgba(200, 16, 46, 0.12), transparent 60%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 55%, #0a0e1c 100%);
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-rays {
  position: absolute;
  width: 140%;
  height: 140%;
  left: 30%;
  top: -10%;
  background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(240, 213, 106, 0.07) 0deg 6deg, transparent 6deg 18deg);
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 58%);
  animation: rays-spin 48s linear infinite;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s ease 0.9s;
}

.hero.is-ready .hero-rays {
  opacity: 1;
}

.hero-glow {
  position: absolute;
  width: min(720px, 70vw);
  height: min(720px, 70vw);
  right: -4%;
  bottom: -8%;
  background: radial-gradient(circle, rgba(240, 213, 106, 0.32) 0%, rgba(201, 162, 39, 0.1) 38%, transparent 70%);
  filter: blur(8px);
  z-index: 1;
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 1s ease 1s, transform 1.2s var(--ease) 1s;
}

.hero.is-ready .hero-glow {
  opacity: 1;
  transform: scale(1);
}

.hero-watermark {
  position: absolute;
  right: -4vw;
  bottom: 4vh;
  font-family: "Anton", sans-serif;
  font-size: clamp(10rem, 28vw, 24rem);
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.035);
  letter-spacing: -0.03em;
  z-index: 1;
  pointer-events: none;
  animation: watermark-drift 18s ease-in-out infinite alternate;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100dvh - var(--nav-h));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: end;
  gap: 12px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding-bottom: clamp(40px, 8vh, 90px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 8px 14px;
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--gold-light);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(14px);
}

.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--red);
  box-shadow: 0 0 10px var(--red-bright);
}

.hero-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(4rem, 9vw, 10rem);
  line-height: 0.82;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(42px);
}

.hero-line-red {
  color: var(--red-bright);
  text-shadow: 0 0 28px rgba(227, 28, 61, 0.25);
}

.hero-line-gold {
  background: linear-gradient(180deg, var(--gold-shine), var(--gold) 50%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-ticker {
  margin-top: 18px;
  font-family: "Anton", sans-serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-shine) 40%, var(--gold) 60%, var(--gold-light));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gold-flow 5s linear infinite;
  opacity: 0;
  transform: translateX(-24px);
}

.hero-punch {
  margin-top: 18px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  letter-spacing: 0.12em;
  color: var(--white-dim);
  opacity: 0;
  transform: translateY(16px);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(28px);
}

.hero-stage {
  position: relative;
  height: 100%;
  min-height: 70vh;
}

.hero-aura {
  position: absolute;
  width: 78%;
  height: 70%;
  right: 2%;
  bottom: 6%;
  background: radial-gradient(circle, rgba(240, 213, 106, 0.28), transparent 68%);
  filter: blur(30px);
  animation: aura-pulse 6s ease-in-out infinite;
}

.hero-stars span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-shine);
  box-shadow: 0 0 10px var(--gold-light);
  border-radius: 50%;
  animation: star-float 5.5s ease-in-out infinite;
}

.hero-stars span:nth-child(1) { top: 16%; right: 18%; animation-delay: 0s; }
.hero-stars span:nth-child(2) { top: 28%; right: 8%; width: 3px; height: 3px; animation-delay: 0.8s; }
.hero-stars span:nth-child(3) { top: 42%; right: 30%; animation-delay: 1.4s; }
.hero-stars span:nth-child(4) { top: 12%; right: 42%; width: 2px; height: 2px; animation-delay: 2s; }
.hero-stars span:nth-child(5) { top: 55%; right: 6%; animation-delay: 2.6s; }

.hero-character {
  position: absolute;
  right: 0;
  bottom: -2%;
  height: clamp(68vh, 86vh, 94vh);
  width: auto;
  max-width: min(52vw, 760px);
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
  opacity: 0;
  transform: translate3d(70px, 90px, 0) scale(0.92);
  transform-origin: 80% 100%;
  will-change: transform;
  z-index: 3;
  pointer-events: none;
}

.hero.is-ready .hero-badge,
.hero.is-ready .hero-ticker,
.hero.is-ready .hero-punch,
.hero.is-ready .hero-ctas,
.hero.is-ready .hero-line {
  opacity: 1;
  transform: none;
}

.hero.is-ready .hero-badge { transition: opacity 0.55s ease 0.22s, transform 0.55s var(--ease) 0.22s; }
.hero.is-ready .hero-line[data-delay="1"] { transition: opacity 0.6s ease 0.34s, transform 0.7s var(--ease) 0.34s; }
.hero.is-ready .hero-line[data-delay="2"] { transition: opacity 0.6s ease 0.46s, transform 0.7s var(--ease) 0.46s; }
.hero.is-ready .hero-line[data-delay="3"] { transition: opacity 0.6s ease 0.58s, transform 0.7s var(--ease) 0.58s; }
.hero.is-ready .hero-line[data-delay="4"] { transition: opacity 0.6s ease 0.7s, transform 0.7s var(--ease) 0.7s; }
.hero.is-ready .hero-ticker { transition: opacity 0.6s ease 0.82s, transform 0.7s var(--ease) 0.82s; }
.hero.is-ready .hero-punch { transition: opacity 0.55s ease 0.92s, transform 0.6s var(--ease) 0.92s; }
.hero.is-ready .hero-ctas { transition: opacity 0.6s ease 1.02s, transform 0.7s var(--ease) 1.02s; }
.hero.is-ready .hero-character {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition: opacity 0.85s ease 0.4s, transform 1.05s var(--ease) 0.4s;
  animation: hero-idle 6.5s ease-in-out 1.6s infinite;
}

@keyframes rays-spin {
  to { transform: rotate(360deg); }
}

@keyframes watermark-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-4vw, -3vh, 0); }
}

@keyframes aura-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes star-float {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(-12px); opacity: 1; }
}

@keyframes gold-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes hero-idle {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -10px, 0) scale(1); }
}

@keyframes hero-idle-mobile {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* --------------------------------------------------------------------------
   Ticker
   -------------------------------------------------------------------------- */

.ticker {
  position: relative;
  width: 100%;
  border-block: 1px solid rgba(201, 162, 39, 0.35);
  background: linear-gradient(90deg, #5c0c18, #8d1424 40%, #5c0c18);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-move 28s linear infinite;
}

.ticker-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 28px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  white-space: nowrap;
  font-size: 0.95rem;
}

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

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about {
  padding: clamp(80px, 12vw, 140px) 0;
  background:
    linear-gradient(180deg, #0a0e1c, var(--navy) 30%, var(--navy-deep));
}

.about-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.about-poster {
  perspective: 1200px;
}

.poster-frame {
  position: relative;
  border: 1px solid var(--line);
  background: var(--navy-mid);
  box-shadow:
    0 0 0 10px rgba(7, 11, 22, 0.6),
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(201, 162, 39, 0.12);
  transform: rotateY(-8deg) rotateX(3deg);
  transform-style: preserve-3d;
  will-change: transform;
}

.poster-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.poster-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--gold);
  pointer-events: none;
}

.poster-corner-tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.poster-corner-tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.poster-corner-bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.poster-corner-br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* --------------------------------------------------------------------------
   Fight
   -------------------------------------------------------------------------- */

.fight {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #05070f;
  padding: 80px 0;
}

.fight-stack {
  position: relative;
  z-index: 2;
  width: 100%;
}

.fight-word {
  font-family: "Anton", sans-serif;
  font-size: clamp(5.5rem, 22vw, 17rem);
  line-height: 0.78;
  text-align: center;
  letter-spacing: -0.02em;
  background-image: linear-gradient(180deg, #fff1b0 0%, var(--gold-light) 18%, var(--gold) 48%, #6d5410 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 18px 0 rgba(0, 0, 0, 0.35));
  will-change: transform, clip-path;
}

.fight-word-1 { transform: translateX(-8vw); }
.fight-word-2 { transform: translateX(6vw); }
.fight-word-3 { transform: translateX(-3vw); }

.fight-art,
.fight-sil {
  position: absolute;
  pointer-events: none;
}

.fight-art {
  inset: 0;
}

.fight-logo {
  width: min(280px, 32vw);
  opacity: 0.22;
  left: 6%;
  top: 12%;
  position: absolute;
}

.fight-sil {
  width: min(380px, 40vw);
  right: 0;
  bottom: -6%;
  opacity: 0.18;
  filter: grayscale(0.2) contrast(1.15);
}

/* --------------------------------------------------------------------------
   Token
   -------------------------------------------------------------------------- */

.token {
  padding: clamp(80px, 12vw, 140px) 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(201, 162, 39, 0.08), transparent 46%),
    var(--navy);
}

.token-head {
  margin-bottom: 36px;
}

.token-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 26, 48, 0.9), rgba(7, 11, 22, 0.92));
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.05), 0 30px 80px rgba(0, 0, 0, 0.28);
  position: relative;
}

.token-panel::before,
.token-panel::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--gold);
}

.token-panel::before {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}

.token-panel::after {
  bottom: -1px;
  right: -1px;
  border-left: 0;
  border-top: 0;
}

.token-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}

.token-label {
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 8px;
}

.token-value {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.contract-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.contract-address {
  word-break: break-all;
}

.token-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

/* --------------------------------------------------------------------------
   How to buy
   -------------------------------------------------------------------------- */

.howto {
  padding: clamp(80px, 12vw, 140px) 0;
  background: linear-gradient(180deg, var(--navy), var(--navy-deep));
}

.howto-head {
  margin-bottom: 48px;
}

.howto-steps {
  display: grid;
  gap: 0;
  position: relative;
}

.howto-steps::before {
  content: "";
  position: absolute;
  left: 46px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.howto-step {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}

.howto-num {
  font-family: "Anton", sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.8;
  background: linear-gradient(180deg, var(--gold-shine), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  z-index: 1;
}

.howto-body h3 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.howto-body p {
  color: var(--white-dim);
  font-size: 1.15rem;
  max-width: 42ch;
}

/* --------------------------------------------------------------------------
   Community
   -------------------------------------------------------------------------- */

.community {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) 0 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201, 162, 39, 0.14), transparent 50%),
    #060910;
}

.community-particles,
.community-spot {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.community-spot {
  background: radial-gradient(circle at 70% 80%, rgba(240, 213, 106, 0.18), transparent 42%);
  animation: aura-pulse 7s ease-in-out infinite;
}

.community-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.community-title span {
  display: block;
}

.community-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 60px;
}

.community-hero {
  justify-self: end;
  width: min(100%, 560px);
  height: auto;
  max-height: 86vh;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */

.final-cta {
  padding: clamp(90px, 14vw, 160px) 0;
  background:
    linear-gradient(180deg, rgba(200, 16, 46, 0.16), transparent 40%),
    linear-gradient(180deg, #0a0d16, #12060b 100%);
  text-align: center;
  border-top: 1px solid rgba(201, 162, 39, 0.18);
}

.final-kicker {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 18px;
}

.final-title {
  margin-bottom: 36px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  padding: 48px 0 28px;
  background: var(--black);
  border-top: 1px solid rgba(201, 162, 39, 0.18);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.footer-name {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.footer-meta {
  color: var(--white-dim);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-copy {
  width: min(1180px, calc(100% - 48px));
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--white-dim);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

/* --------------------------------------------------------------------------
   Toast + reveals
   -------------------------------------------------------------------------- */

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 16px);
  background: var(--gold);
  color: var(--navy-deep);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.16em;
  padding: 10px 18px;
  opacity: 0;
  pointer-events: none;
  z-index: 320;
  transition: opacity 0.25s ease, transform 0.25s var(--ease);
}

.toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.8s var(--ease), clip-path 0.8s var(--ease);
}

[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="clip"] { transform: translateY(18px); }
[data-reveal="clip"] span {
  display: block;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.85s var(--ease);
}
[data-reveal="clip"] span:nth-child(2) { transition-delay: 0.08s; }
[data-reveal="clip"] span:nth-child(3) { transition-delay: 0.16s; }
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
[data-reveal="clip"].is-in span {
  clip-path: inset(0 0 0 0);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1200px) {
  .hero-character {
    right: 0;
    height: clamp(64vh, 80vh, 86vh);
    max-width: min(50vw, 640px);
  }
}

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

  .nav-toggle {
    display: block;
  }

  .btn-nav {
    display: none;
  }

  .hero-grid,
  .about-wrap,
  .community-wrap {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    display: block;
    position: relative;
    min-height: calc(100dvh - var(--nav-h));
    padding-bottom: 0;
  }

  .hero-copy {
    padding-bottom: 42vh;
  }

  .hero-punch {
    font-size: 0.92rem;
  }

  .hero-stage {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 58vh;
    min-height: 0;
  }

  .hero-character {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 0;
    height: auto;
    width: min(92vw, 480px);
    max-width: none;
    max-height: 62vh;
    margin: 0;
    display: block;
    transform: translateX(-50%) translateY(48px) scale(0.94);
  }

  .hero.is-ready .hero-character {
    transform: translateX(-50%);
    animation: hero-idle-mobile 6.5s ease-in-out 1.6s infinite;
  }

  .hero-watermark {
    font-size: clamp(7rem, 32vw, 14rem);
    right: 0;
    bottom: 8%;
  }

  .poster-frame {
    transform: none;
  }

  .community-hero {
    justify-self: center;
    width: min(78vw, 420px);
    height: auto;
    max-height: 58vh;
    margin-top: 12px;
  }

  .fight-sil {
    opacity: 0.12;
  }

  .fight-word-1,
  .fight-word-2,
  .fight-word-3 {
    transform: none;
  }
}

@media (max-width: 768px) {
  .section-wrap,
  .hero-grid,
  .footer-copy {
    width: calc(100% - 32px);
  }

  :root {
    --nav-h: 72px;
  }

  .hero-title {
    font-size: clamp(3.4rem, 16vw, 5.4rem);
  }

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

  .howto-steps::before {
    left: 28px;
  }

  .howto-step {
    grid-template-columns: 64px 1fr;
    gap: 12px;
  }

  .fight {
    min-height: 80vh;
    padding: 60px 0;
  }

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

@media (max-width: 430px) {
  .token-actions,
  .community-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy {
    padding-bottom: 40vh;
  }

  .hero-stage {
    height: 52vh;
  }

  .hero-character {
    width: min(100vw, 400px);
    max-height: 54vh;
  }

  .hero-badge {
    letter-spacing: 0.18em;
  }

  .hero-ctas {
    gap: 8px;
  }

  .display {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }
}

@media (max-width: 360px) {
  .nav-brand span {
    letter-spacing: 0.1em;
    font-size: 0.88rem;
  }

  .hero-title {
    font-size: 3rem;
  }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-badge,
  .hero-line,
  .hero-ticker,
  .hero-punch,
  .hero-ctas,
  .hero-character,
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  @media (max-width: 1024px) {
    .hero.is-ready .hero-character {
      transform: translateX(-50%) !important;
    }
  }

  .nav {
    transform: none;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}
