/* ─── CLUTCH · World Cup USA Mascot ─── */
:root {
  --navy-deep: #050b18;
  --navy: #0c1a3a;
  --navy-mid: #132d6b;
  --patriot-red: #bf0a30;
  --patriot-red-bright: #e11d48;
  --usa-blue: #1e56a0;
  --usa-blue-bright: #3b82f6;
  --gold: #ffd700;
  --gold-dim: #c9a227;
  --white: #f8fafc;
  --white-dim: #cbd5e1;
  --pitch: #14532d;
  --pink-accent: #ec4899;
  --glass: rgba(12, 26, 58, 0.72);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-glow: 0 0 60px rgba(30, 86, 160, 0.35);
  --font-display: "Bebas Neue", sans-serif;
  --font-head: "Barlow Condensed", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
code { font-family: ui-monospace, monospace; font-size: 0.85em; }

/* ─── Background layers ─── */
.pitch-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(30, 86, 160, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(191, 10, 48, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-deep) 0%, #0a1530 40%, #061020 100%);
  pointer-events: none;
}

.pitch-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 83, 45, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 83, 45, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 30s linear infinite;
}

.pitch-grid::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: 400px;
  border: 2px solid rgba(20, 83, 45, 0.15);
  border-bottom: none;
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
  opacity: 0.4;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 80px 80px; }
}

.stadium-lights {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.light-beam {
  position: absolute;
  top: -20%;
  width: 200px;
  height: 120%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  filter: blur(20px);
  transform-origin: top center;
}

.beam-1 { left: 15%; animation: beamSweep 8s ease-in-out infinite; }
.beam-2 { left: 50%; animation: beamSweep 10s ease-in-out infinite 2s; opacity: 0.6; }
.beam-3 { right: 15%; animation: beamSweep 9s ease-in-out infinite 4s; }

@keyframes beamSweep {
  0%, 100% { transform: rotate(-15deg); opacity: 0.3; }
  50% { transform: rotate(15deg); opacity: 0.7; }
}

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

#particles {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

/* ─── Floating decorations ─── */
.floating-deco {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.deco-ball, .deco-star {
  position: absolute;
  opacity: 0.35;
  animation: floatDeco 12s ease-in-out infinite;
  object-fit: contain;
}

.deco-ball { width: 28px; height: 28px; filter: brightness(0) invert(1); }
.deco-star { width: 20px; height: 20px; }

.ball-1 { top: 18%; left: 8%; animation-delay: 0s; }
.ball-2 { top: 55%; right: 6%; animation-delay: 2s; }
.ball-3 { bottom: 25%; left: 12%; animation-delay: 4s; }
.star-1 { top: 12%; right: 18%; animation-delay: 1s; }
.star-2 { top: 40%; left: 4%; animation-delay: 3s; }
.star-3 { bottom: 35%; right: 10%; animation-delay: 5s; }
.star-4 { top: 70%; left: 20%; animation-delay: 2.5s; }
.star-5 { top: 30%; right: 4%; animation-delay: 6s; }

@keyframes floatDeco {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(15deg); }
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

.nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.nav-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
  50% { box-shadow: 0 0 35px rgba(255, 215, 0, 0.55); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a:not(.btn) {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.25s;
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--patriot-red), var(--gold));
  transition: width 0.3s;
}

.nav-links a:not(.btn):hover { color: var(--white); }
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Ticker ─── */
.ticker {
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  z-index: 99;
  background: linear-gradient(90deg, var(--patriot-red), var(--navy-mid), var(--usa-blue));
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: tickerScroll 35s linear infinite;
  padding: 0.45rem 0;
}

.ticker-track span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ticker-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  object-fit: contain;
}

.ticker-icon:not(.ticker-flag) {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.ticker-flag {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
}

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

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

.btn-buy {
  background: linear-gradient(135deg, var(--patriot-red) 0%, var(--patriot-red-bright) 50%, var(--pink-accent) 100%);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(191, 10, 48, 0.45);
  animation: buyPulse 2.5s ease-in-out infinite;
}

@keyframes buyPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(191, 10, 48, 0.45); }
  50% { box-shadow: 0 4px 40px rgba(236, 72, 153, 0.55); }
}

.btn-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white-dim);
  border: 1px solid var(--glass-border);
}

.btn-ghost.copied { background: rgba(34, 197, 94, 0.2); color: #4ade80; }

.btn-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.btn-buy .btn-icon {
  filter: brightness(0) invert(1);
}

.btn-icon-dex {
  filter: none;
}

.btn-outline .btn-icon-dex {
  width: 18px;
  height: 18px;
}

/* ─── Sections ─── */
main { position: relative; z-index: 5; padding-top: 100px; }

.section {
  position: relative;
  padding: 5rem 1.5rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--patriot-red), var(--gold), var(--usa-blue-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 5s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.section-sub {
  color: var(--white-dim);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.wave-divider {
  color: rgba(12, 26, 58, 0.6);
  line-height: 0;
  margin: -1px 0;
}

.wave-divider.flip { transform: scaleY(-1); }
.wave-divider svg { width: 100%; height: 60px; }

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Hero ─── */
.hero {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 86, 160, 0.2) 0%, rgba(191, 10, 48, 0.08) 40%, transparent 70%);
  animation: heroGlow 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroGlow {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.8; }
  50% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

.hero-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: min(420px, 80vw);
  height: min(420px, 80vw);
  border: 2px dashed rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  animation: ringSpin 40s linear infinite;
  pointer-events: none;
}

.hero-ring::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.1);
  animation: ringSpin 25s linear infinite reverse;
}

@keyframes ringSpin {
  from { transform: translate(-50%, -55%) rotate(0deg); }
  to { transform: translate(-50%, -55%) rotate(360deg); }
}

.hero-content { position: relative; max-width: 720px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  margin-bottom: 1.5rem;
}

.badge-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: dotBlink 2s ease-in-out infinite;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #22c55e; }
  50% { opacity: 0.5; box-shadow: none; }
}

.hero-logo-stage {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 1.5rem;
  transition: transform 0.15s ease-out;
}

.hero-orbit {
  position: absolute;
  inset: -30px;
  animation: orbitSpin 20s linear infinite;
}

.orbit-item {
  position: absolute;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
  background: rgba(12, 26, 58, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.orbit-item img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.o1 { top: 0; left: 50%; transform: translateX(-50%); }
.o2 { right: 0; top: 50%; transform: translateY(-50%); }
.o3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.o4 { left: 0; top: 50%; transform: translateY(-50%); }

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-logo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  background:
    linear-gradient(var(--navy-deep), var(--navy-deep)) padding-box,
    linear-gradient(135deg, var(--patriot-red), var(--gold), var(--usa-blue)) border-box;
  box-shadow: var(--shadow-glow), 0 0 0 8px rgba(255, 215, 0, 0.05);
  animation: frameFloat 4s ease-in-out infinite;
}

@keyframes frameFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

.hero-title {
  font-family: var(--font-display);
  line-height: 0.95;
  margin-bottom: 0.25rem;
}

.title-line {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.06em;
  color: var(--white-dim);
}

.title-accent {
  display: block;
  font-size: clamp(3rem, 9vw, 5.5rem);
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, var(--white) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-symbol {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.15em;
  color: var(--patriot-red-bright);
  text-shadow: 0 0 40px rgba(225, 29, 72, 0.4);
  margin-bottom: 0.75rem;
  animation: symbolGlow 3s ease-in-out infinite;
}

@keyframes symbolGlow {
  0%, 100% { text-shadow: 0 0 40px rgba(225, 29, 72, 0.4); }
  50% { text-shadow: 0 0 60px rgba(255, 215, 0, 0.5); }
}

.hero-tagline {
  color: var(--white-dim);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  min-width: 110px;
  transition: transform 0.3s, border-color 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.3);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 0.25rem;
}

.contract-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.6rem 1rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contract-bar:hover { border-color: rgba(255, 215, 0, 0.3); }
.contract-bar.copied-flash { animation: copyFlash 0.6s ease; }

@keyframes copyFlash {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 30px rgba(34, 197, 94, 0.4); }
}

.contract-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.contract-bar code {
  color: var(--gold);
  word-break: break-all;
  max-width: 280px;
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-hint span {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--white), transparent);
}

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

/* ─── About ─── */
.about {
  background: rgba(12, 26, 58, 0.5);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.about-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.about-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-frame:hover img { transform: scale(1.05); }

.frame-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--gold);
  border-style: solid;
}

.c-tl { top: 12px; left: 12px; border-width: 3px 0 0 3px; }
.c-tr { top: 12px; right: 12px; border-width: 3px 3px 0 0; }
.c-bl { bottom: 12px; left: 12px; border-width: 0 0 3px 3px; }
.c-br { bottom: 12px; right: 12px; border-width: 0 3px 3px 0; }

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pill {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(191, 10, 48, 0.2), rgba(30, 86, 160, 0.2));
  border: 1px solid var(--glass-border);
  animation: pillPop 0.5s ease backwards;
}

.pill:nth-child(1) { animation-delay: 0.1s; }
.pill:nth-child(2) { animation-delay: 0.2s; }
.pill:nth-child(3) { animation-delay: 0.3s; }
.pill:nth-child(4) { animation-delay: 0.4s; }

@keyframes pillPop {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.about-copy p {
  color: var(--white-dim);
  margin-bottom: 1rem;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--white) !important;
  border-left: 3px solid var(--patriot-red);
  padding-left: 1rem;
}

.host-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.host-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 0.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: transform 0.3s, border-color 0.3s;
}

.host-card:first-child {
  border-color: rgba(255, 215, 0, 0.35);
  background: linear-gradient(135deg, rgba(191, 10, 48, 0.15), rgba(30, 86, 160, 0.15));
}

.host-card:hover { transform: translateY(-4px); border-color: rgba(255, 215, 0, 0.3); }

.host-flag {
  width: 36px;
  height: 24px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.host-card strong { font-family: var(--font-head); font-size: 0.95rem; letter-spacing: 0.05em; }
.host-card span { font-size: 0.75rem; color: var(--white-dim); }

/* ─── How to Buy ─── */
.howtobuy { background: rgba(5, 11, 24, 0.6); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.step-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--patriot-red), var(--gold), var(--usa-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(59, 130, 246, 0.3);
}

.step-card:hover::before { transform: scaleX(1); }

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
}

.step-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.step-icon img:not(.icon-uniswap) {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.step-icon .icon-uniswap {
  width: 36px;
  height: 36px;
}

.step-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.step-card p { color: var(--white-dim); font-size: 0.95rem; }

.buy-cta { text-align: center; }

/* ─── Chart ─── */
.chart-wrap { margin-bottom: 1.5rem; }

.chart-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.4);
  min-height: 480px;
}

.chart-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.chart-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  color: var(--white-dim);
}

.chart-placeholder.hidden { display: none; }

.placeholder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: chartPulse 2s ease-in-out infinite;
}

.placeholder-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

@keyframes chartPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}

.chart-link { display: flex; margin: 0 auto; width: fit-content; }

/* ─── Join Us ─── */
.joinus {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.joinus-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.joinus-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: bannerKenBurns 20s ease-in-out infinite alternate;
}

@keyframes bannerKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.joinus-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 11, 24, 0.85) 0%, rgba(5, 11, 24, 0.7) 50%, rgba(5, 11, 24, 0.9) 100%),
    linear-gradient(90deg, rgba(191, 10, 48, 0.15) 0%, transparent 50%, rgba(30, 86, 160, 0.15) 100%);
}

.joinus-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.joinus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: transform 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.social-card:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 215, 0, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.x-card:hover { border-color: rgba(255, 255, 255, 0.4); }
.buy-card:hover { border-color: rgba(236, 72, 153, 0.5); }

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.social-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.social-icon-uniswap img {
  width: 32px;
  height: 32px;
}

.social-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.social-text strong {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.social-text span { font-size: 0.85rem; color: var(--white-dim); }

.social-arrow {
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.3s;
}

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

.joinus-tagline {
  text-align: center;
  color: var(--white-dim);
  font-size: 1.05rem;
}

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

/* ─── Footer ─── */
.footer {
  position: relative;
  z-index: 5;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(5, 11, 24, 0.9);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--white-dim);
  max-width: 600px;
  margin: 0 auto 0.75rem;
  opacity: 0.7;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--white-dim);
  opacity: 0.5;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 360px; margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .host-trio { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 62px;
    right: 0;
    width: min(300px, 85vw);
    height: calc(100vh - 62px);
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 1.5rem;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    gap: 0;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a:not(.btn) {
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-links .btn { margin-top: 1rem; text-align: center; }

  .ticker { top: 62px; }

  main { padding-top: 96px; }

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

  .hero-stats { gap: 0.75rem; }
  .stat-card { min-width: 90px; padding: 0.75rem 1rem; }

  .contract-bar { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
