/* Trump vs Bibi — fight poster red vs blue theme */
:root {
  --bg-deep: #050508;
  --bg: #0a0a12;
  --bg-card: rgba(12, 12, 22, 0.88);
  --red: #e6392f;
  --red-bright: #ff5544;
  --red-dim: #8b1a14;
  --blue: #2563eb;
  --blue-bright: #60a5fa;
  --blue-dim: #1e3a8a;
  --white: #f4f6fa;
  --muted: #94a3b8;
  --border-red: rgba(230, 57, 47, 0.3);
  --border-blue: rgba(37, 99, 235, 0.3);
  --border: rgba(148, 163, 184, 0.18);
  --glow-red: rgba(255, 70, 50, 0.45);
  --glow-blue: rgba(60, 140, 255, 0.45);
  --gold: #fbbf24;
  --font-display: "Anton", "Bebas Neue", "Oswald", sans-serif;
  --font-body: "Rajdhani", "Oswald", system-ui, sans-serif;
  --nav-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--white);
  background: var(--bg-deep);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Split background */
.vs-split-bg {
  position: fixed;
  inset: 0;
  z-index: -4;
  display: flex;
  pointer-events: none;
}

.vs-side {
  flex: 1;
  opacity: 0.35;
}

.vs-red {
  background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(180, 30, 20, 0.5), transparent 70%);
}

.vs-blue {
  background: radial-gradient(ellipse 80% 60% at 80% 60%, rgba(20, 60, 180, 0.45), transparent 70%);
}

.vs-lightning {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 200, 100, 0.6) 20%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(100, 180, 255, 0.6) 80%,
    transparent 100%
  );
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.3),
    -8px 0 30px var(--glow-red),
    8px 0 30px var(--glow-blue);
  animation: lightning-flicker 4s ease-in-out infinite;
}

@keyframes lightning-flicker {
  0%, 100% { opacity: 0.4; }
  5% { opacity: 1; }
  8% { opacity: 0.3; }
  12% { opacity: 0.9; }
  50% { opacity: 0.5; }
  55% { opacity: 1; }
  58% { opacity: 0.4; }
}

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

a {
  color: var(--blue-bright);
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
}

a:hover {
  color: var(--white);
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Overlays */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  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");
  animation: noise-shift 0.5s steps(2) infinite;
}

@keyframes noise-shift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-2%, 1%); }
  100% { transform: translate(1%, -1%); }
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  animation: scanline-drift 8s linear infinite;
}

@keyframes scanline-drift {
  from { background-position: 0 0; }
  to { background-position: 0 100px; }
}

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(5, 5, 10, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(5, 5, 10, 0.96);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1120px, 92vw);
  margin-inline: auto;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
}

.nav-brand img {
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(255, 80, 60, 0.3), 0 0 16px rgba(60, 140, 255, 0.2);
  animation: logo-glow 3s ease-in-out infinite alternate;
}

@keyframes logo-glow {
  from { box-shadow: 0 0 12px var(--glow-red), 0 0 8px var(--glow-blue); }
  to { box-shadow: 0 0 24px var(--glow-red), 0 0 20px var(--glow-blue); }
}

.nav-brand-text {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.brand-trump { color: var(--red-bright); }
.brand-vs {
  font-size: 0.75rem;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}
.brand-bibi { color: var(--blue-bright); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}

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

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

.nav-links a: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;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s;
}

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

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-dim));
  color: var(--white);
  box-shadow: 0 4px 20px var(--glow-red);
}

.btn-red:hover {
  box-shadow: 0 8px 32px var(--glow-red);
  color: var(--white);
}

.btn-blue-outline {
  background: transparent;
  color: var(--blue-bright);
  border: 2px solid var(--blue);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.2);
}

.btn-blue-outline:hover {
  background: rgba(37, 99, 235, 0.15);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Sections */
.section {
  position: relative;
  padding: 5rem 0;
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent 30%, transparent 70%, var(--blue));
  margin-bottom: 3rem;
  opacity: 0.5;
}

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

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.2rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.section-sub {
  max-width: 560px;
  margin: 1rem auto 0;
  color: var(--muted);
}

.accent-red { color: var(--red-bright); }
.accent-blue { color: var(--blue-bright); }
.accent-vs {
  background: linear-gradient(90deg, var(--red-bright), var(--gold), var(--blue-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: glow-drift 8s ease-in-out infinite alternate;
}

.hero-glow-red {
  width: 50vw;
  height: 50vw;
  top: -10%;
  left: -15%;
  background: rgba(200, 40, 30, 0.25);
}

.hero-glow-blue {
  width: 45vw;
  height: 45vw;
  bottom: -10%;
  right: -10%;
  background: rgba(30, 80, 200, 0.22);
  animation-delay: -4s;
}

@keyframes glow-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(3%, 5%) scale(1.08); }
}

.hero-sparks {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-size: 200px 200px;
  animation: sparks-rise 20s linear infinite;
}

.hero-sparks-red {
  background-image: radial-gradient(circle, var(--red-bright) 1px, transparent 1px);
  mask-image: linear-gradient(90deg, black 40%, transparent 60%);
}

.hero-sparks-blue {
  background-image: radial-gradient(circle, var(--blue-bright) 1px, transparent 1px);
  mask-image: linear-gradient(270deg, black 40%, transparent 60%);
  animation-direction: reverse;
}

@keyframes sparks-rise {
  from { background-position: 0 0; }
  to { background-position: 0 -400px; }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}

.hero-inner {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(10, 10, 20, 0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.pulse-red {
  background: var(--red-bright);
  box-shadow: 0 0 8px var(--glow-red);
}

.pulse-blue {
  background: var(--blue-bright);
  box-shadow: 0 0 8px var(--glow-blue);
  animation-delay: 1s;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-logo-wrap {
  position: relative;
  width: min(340px, 70vw);
  margin: 0 auto 1.5rem;
}

.logo-ring {
  position: absolute;
  inset: -12px;
  border-radius: 16px;
  border: 2px solid transparent;
  animation: ring-spin 12s linear infinite;
}

.logo-ring-red {
  border-top-color: var(--red);
  border-right-color: rgba(230, 57, 47, 0.3);
}

.logo-ring-blue {
  inset: -20px;
  border-bottom-color: var(--blue);
  border-left-color: rgba(37, 99, 235, 0.3);
  animation-direction: reverse;
  animation-duration: 16s;
}

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

.hero-logo {
  width: 100%;
  border-radius: 12px;
  box-shadow:
    0 0 40px var(--glow-red),
    0 0 40px var(--glow-blue),
    0 20px 60px rgba(0, 0, 0, 0.5);
}

.float {
  animation: float 5s ease-in-out infinite;
}

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

.shake-hover:hover {
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px) rotate(-1deg); }
  40% { transform: translateX(4px) rotate(1deg); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}

.hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 0.5rem;
}

.title-trump,
.title-bibi {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 12vw, 5.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
}

.title-trump {
  color: var(--red-bright);
  text-shadow: 0 0 30px var(--glow-red), 2px 2px 0 var(--red-dim);
}

.title-bibi {
  color: var(--blue-bright);
  text-shadow: 0 0 30px var(--glow-blue), 2px 2px 0 var(--blue-dim);
}

.title-vs {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--gold);
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

.vs-pulse {
  animation: vs-pulse 2s ease-in-out infinite;
}

@keyframes vs-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.85; }
}

/* Glitch effect */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.glitch:hover::before {
  animation: glitch-1 0.3s linear;
  color: var(--red-bright);
  opacity: 0.8;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  transform: translate(-3px, 0);
}

.glitch:hover::after {
  animation: glitch-2 0.3s linear;
  color: var(--blue-bright);
  opacity: 0.8;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  transform: translate(3px, 0);
}

@keyframes glitch-1 {
  0% { transform: translate(0); }
  20% { transform: translate(-4px, 2px); }
  40% { transform: translate(4px, -2px); }
  100% { transform: translate(-3px, 0); }
}

@keyframes glitch-2 {
  0% { transform: translate(0); }
  20% { transform: translate(4px, -2px); }
  40% { transform: translate(-4px, 2px); }
  100% { transform: translate(3px, 0); }
}

.hero-symbol {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-bio {
  max-width: 520px;
  margin: 0 auto 1rem;
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-quote {
  max-width: 640px;
  margin: 0 auto 1.75rem;
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  letter-spacing: 0.02em;
  font-style: italic;
  color: var(--white);
  background: linear-gradient(135deg, rgba(230, 57, 47, 0.12), rgba(37, 99, 235, 0.12));
  border-left: 3px solid var(--red);
  border-right: 3px solid var(--blue);
  border-radius: 8px;
}

.quote-mark {
  color: var(--gold);
  font-size: 1.4em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.hero-ca {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  max-width: min(640px, 92vw);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(230, 57, 47, 0.1), rgba(10, 10, 20, 0.9) 40%, rgba(37, 99, 235, 0.1));
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(230, 57, 47, 0.15),
    0 0 0 1px rgba(37, 99, 235, 0.15),
    0 12px 40px rgba(0, 0, 0, 0.35);
}

.ca-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.ca-copy-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.ca-value {
  flex: 1;
  min-width: 200px;
  font-family: ui-monospace, monospace;
  font-size: clamp(0.72rem, 2.2vw, 0.9rem);
  color: var(--blue-bright);
  word-break: break-all;
  text-align: center;
  padding: 0.5rem 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 6px;
  border: 1px dashed rgba(96, 165, 250, 0.25);
}

.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--red), var(--blue-dim));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: var(--white);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-copy:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.btn-copy.copied {
  background: linear-gradient(135deg, #15803d, #166534);
  border-color: #22c55e;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.25);
}

.copy-icon {
  font-size: 1rem;
  line-height: 1;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  animation: fade-bounce 2s ease-in-out infinite;
}

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

@keyframes fade-bounce {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.about-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.about-card:hover {
  transform: translateY(-6px);
}

.card-red {
  border: 1px solid var(--border-red);
  box-shadow: inset 0 0 30px rgba(230, 57, 47, 0.05);
}

.card-red:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(230, 57, 47, 0.12);
}

.card-blue {
  border: 1px solid var(--border-blue);
  box-shadow: inset 0 0 30px rgba(37, 99, 235, 0.05);
}

.card-blue:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(37, 99, 235, 0.12);
}

.card-split {
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(230, 57, 47, 0.08), rgba(37, 99, 235, 0.08));
}

.card-split:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
}

.about-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.beef-quote {
  text-align: center;
  padding: 2rem;
  border-left: 4px solid var(--red);
  border-right: 4px solid var(--blue);
  background: linear-gradient(90deg, rgba(230, 57, 47, 0.08), rgba(37, 99, 235, 0.08));
  border-radius: 8px;
}

.beef-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.beef-quote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Buzzing — stack grid */
.buzzing {
  background: linear-gradient(180deg, rgba(8, 8, 16, 0.5), rgba(12, 12, 24, 0.9) 30%, rgba(8, 8, 16, 0.5));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.buzz-stack-grid {
  column-count: 3;
  column-gap: 1.25rem;
  margin-top: 2rem;
}

.buzz-tweet-card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 1.25rem;
  padding: 0.85rem 0.85rem 0.25rem;
  background: var(--bg-card);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), transform 0.35s;
  overflow: hidden;
}

.buzz-tweet-card:hover {
  transform: translateY(-4px);
}

.buzz-tweet-card.card-red:hover {
  border-color: rgba(230, 57, 47, 0.6);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35), 0 0 24px rgba(230, 57, 47, 0.1);
}

.buzz-tweet-card.card-blue:hover {
  border-color: rgba(37, 99, 235, 0.6);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35), 0 0 24px rgba(37, 99, 235, 0.1);
}

.buzz-tweet-card.card-split:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.buzz-tweet-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0 0.25rem 0.65rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.5rem;
}

.buzz-handle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.buzz-tweet-meta a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.buzz-tweet-card .twitter-tweet {
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

.buzz-tweet-card iframe {
  border-radius: 8px !important;
  max-width: 100% !important;
}

@media (max-width: 1100px) {
  .buzz-stack-grid {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .buzz-stack-grid {
    column-count: 1;
  }
}

/* How to buy */
.howtobuy {
  background: rgba(8, 8, 16, 0.6);
}

.steps {
  list-style: none;
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.steps li {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 8px;
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.step-red {
  border: 1px solid var(--border-red);
}

.step-red:hover {
  transform: translateX(8px);
  border-color: rgba(230, 57, 47, 0.55);
}

.step-blue {
  border: 1px solid var(--border-blue);
}

.step-blue:hover {
  transform: translateX(8px);
  border-color: rgba(37, 99, 235, 0.55);
}

.step-split {
  border: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(230, 57, 47, 0.06), rgba(37, 99, 235, 0.06));
}

.step-split:hover {
  transform: translateX(8px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  background: linear-gradient(180deg, var(--red-bright), var(--blue-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
}

.steps h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.steps p {
  color: var(--muted);
}

.buy-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.buy-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 8px;
  color: inherit;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.buy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transition: left 0.5s;
}

.buy-card:hover::before {
  left: 100%;
}

.buy-card:hover {
  transform: translateY(-4px);
}

.buy-card-red {
  border: 1px solid var(--border-red);
}

.buy-card-red:hover {
  box-shadow: 0 12px 32px rgba(230, 57, 47, 0.15);
}

.buy-card-blue {
  border: 1px solid var(--border-blue);
}

.buy-card-blue:hover {
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.buy-card-split {
  border: 1px solid var(--border);
}

.buy-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.buy-card strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.buy-card-desc {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Chart */
.chart-section {
  background: rgba(6, 6, 14, 0.8);
}

.chart-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0d0d14;
  box-shadow:
    inset 0 0 0 1px rgba(230, 57, 47, 0.1),
    inset 0 0 0 1px rgba(37, 99, 235, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.5);
}

.chart-wrap iframe {
  display: block;
  width: 100%;
  height: min(600px, 70vh);
  border: none;
}

.chart-fallback {
  padding: 3rem;
  text-align: center;
  color: var(--muted);
}

/* Join us */
.joinus {
  padding-top: 0;
  padding-bottom: 4rem;
}

.joinus-banner-wrap {
  position: relative;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.joinus-banner {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.ken-burns {
  animation: ken-burns 20s ease-in-out infinite alternate;
}

@keyframes ken-burns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.joinus-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.3) 0%, transparent 30%, transparent 60%, rgba(5, 5, 8, 0.95) 100%),
    linear-gradient(90deg, rgba(180, 30, 20, 0.15), transparent 40%, transparent 60%, rgba(20, 60, 180, 0.15));
  pointer-events: none;
}

.joinus-content {
  position: relative;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border-radius: 10px;
  text-align: center;
  color: inherit;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.social-card:hover {
  transform: translateY(-6px) scale(1.02);
  color: inherit;
}

.social-red {
  border: 1px solid var(--border-red);
}

.social-red:hover {
  box-shadow: 0 16px 40px rgba(230, 57, 47, 0.2);
}

.social-blue {
  border: 1px solid var(--border-blue);
}

.social-blue:hover {
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.2);
}

.social-split {
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(230, 57, 47, 0.1), rgba(37, 99, 235, 0.1));
}

.social-icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.social-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.social-handle {
  font-size: 0.85rem;
  color: var(--muted);
}

.joinus-footer {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
}

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

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: rgba(5, 5, 10, 0.9);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  text-align: center;
}

.footer-inner img {
  border-radius: 6px;
}

.footer-inner p {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(5, 5, 10, 0.98);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.35s;
    gap: 0;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
  }

  .nav.open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    display: none;
  }

  .nav.open .nav-cta-mobile {
    display: inline-flex;
  }
}

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

  .hero-cta .btn {
    width: 100%;
  }

  .hero-ca .ca-copy-wrap {
    flex-direction: column;
  }

  .ca-value {
    width: 100%;
  }

  .btn-copy {
    width: 100%;
    justify-content: center;
  }
}
