/* Trump The Boss — Premium Cinematic */

:root {
  --bg: #030303;
  --bg-2: #0a0a0a;
  --surface: rgba(18, 18, 18, 0.72);
  --surface-solid: #141414;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text: #f4f0ea;
  --text-2: #b8b0a4;
  --text-3: #6e6860;
  --red: #dc0a0a;
  --red-bright: #ff1a1a;
  --red-dim: rgba(220, 10, 10, 0.15);
  --gold: #c9a227;
  --gold-bright: #f0cc4a;
  --gold-dim: rgba(201, 162, 39, 0.12);
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --header-h: 72px;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.lucide {
  width: 1.15em;
  height: 1.15em;
  stroke-width: 1.75;
  flex-shrink: 0;
}

/* Ambient background */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  animation: orbFloat 18s ease-in-out infinite;
}

.ambient-orb--red {
  width: 55vw;
  height: 55vw;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(220, 10, 10, 0.35), transparent 70%);
}

.ambient-orb--gold {
  width: 45vw;
  height: 45vw;
  bottom: 10%;
  left: -15%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.2), transparent 70%);
  animation-delay: -9s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, 4%) scale(1.06); }
}

#particles {
  position: absolute;
  inset: 0;
  opacity: 0.7;
}

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

.bg-scanlines {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.03) 2px,
    rgba(255, 255, 255, 0.03) 4px
  );
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s;
}

.header.scrolled {
  background: rgba(3, 3, 3, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.15);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
}

.brand-symbol {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.14em;
}

.nav { display: flex; gap: 0.15rem; }

.nav-link {
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  border-radius: 8px;
  transition: color 0.3s, background 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: var(--glass);
}

.header-actions { display: flex; align-items: center; gap: 0.55rem; }

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  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); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, border-color 0.3s;
  white-space: nowrap;
}

.btn-sm { padding: 0.55rem 1rem; font-size: 0.75rem; }
.btn-lg { padding: 0.85rem 1.6rem; font-size: 0.85rem; }
.btn-xl { padding: 1rem 1.85rem; font-size: 0.88rem; }

.btn-red {
  background: linear-gradient(145deg, var(--red-bright), var(--red) 50%, #9a0808);
  color: #fff;
  box-shadow: 0 4px 28px rgba(220, 10, 10, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(220, 10, 10, 0.55);
}

.btn-gold {
  background: linear-gradient(145deg, var(--gold-bright), var(--gold) 55%, #8a6f18);
  color: #0a0804;
  box-shadow: 0 4px 24px rgba(201, 162, 39, 0.3);
}

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

.btn-glass {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  border-color: rgba(201, 162, 39, 0.35);
  background: rgba(201, 162, 39, 0.08);
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  transition: border-color 0.3s, background 0.3s;
}

.icon-btn:hover {
  border-color: rgba(201, 162, 39, 0.4);
  background: var(--gold-dim);
}

.icon-svg { width: 18px; height: 18px; }
.icon-x { filter: invert(1); }
.icon-brand { width: 20px; height: 20px; }

.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: shimmer 3.5s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 70%, 100% { transform: translateX(-120%); }
  85% { transform: translateX(120%); }
}

/* Hero */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2.5rem) 0 3rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(201, 162, 39, 0.25);
  background: var(--gold-dim);
}

.kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 10px var(--red-bright);
  animation: pulse 2s ease infinite;
}

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

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

.title-top {
  display: block;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  letter-spacing: 0.04em;
  color: var(--text);
}

.title-bottom {
  display: block;
  font-size: clamp(3rem, 7vw, 5.2rem);
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 45%, #fff5d0 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(201, 162, 39, 0.25));
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-2);
  font-style: italic;
  margin-bottom: 2rem;
  max-width: 28ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.ca-copy {
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  user-select: none;
}

.ca-copy:hover {
  border-color: rgba(201, 162, 39, 0.45);
  background: rgba(201, 162, 39, 0.06);
  box-shadow: 0 0 30px rgba(201, 162, 39, 0.08);
}

.ca-copy.copied {
  border-color: var(--gold-bright);
  background: rgba(201, 162, 39, 0.1);
}

.ca-copy--disabled {
  cursor: default;
  opacity: 0.6;
}

.ca-copy-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.ca-copy-icon {
  color: var(--gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.ca-copy-label {
  flex: 1;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-3);
}

.ca-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-bright);
  background: var(--gold-dim);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  flex-shrink: 0;
}

.ca-copy-btn .lucide { width: 14px; height: 14px; }

.ca-copy-btn:hover,
.ca-copy-btn.copied {
  background: var(--gold);
  color: #0a0804;
}

.ca-copy-value {
  display: block;
  font-family: "DM Sans", monospace;
  font-size: clamp(0.72rem, 2vw, 0.82rem);
  font-weight: 500;
  color: var(--gold-bright);
  word-break: break-all;
  line-height: 1.5;
  letter-spacing: 0.02em;
  user-select: all;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
}

.stat-icon { color: var(--gold); width: 16px; height: 16px; }
.stat-divider { width: 1px; height: 20px; background: var(--glass-border); }

/* Hero video */
.hero-media { position: relative; }

.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  aspect-ratio: 16 / 11;
}

.media-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(ellipse at center, rgba(220, 10, 10, 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.media-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 3;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.7;
}

.media-corner--tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.media-corner--br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.media-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, transparent 100%);
}

.media-badge-logo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--glass-border);
}

.media-badge-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
}

.media-badge-sub {
  display: block;
  font-size: 0.68rem;
  color: var(--text-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-3);
  animation: bob 2.2s ease-in-out infinite;
}

.scroll-cue .lucide { width: 24px; height: 24px; }

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* Sections */
.section {
  position: relative;
  z-index: 2;
  padding: clamp(4.5rem, 10vw, 7rem) 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.85rem;
}

.section-eyebrow .lucide { width: 15px; height: 15px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.85rem;
  line-height: 1.15;
}

.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-lead {
  color: var(--text-2);
  font-size: 1.02rem;
}

/* Bento about */
.about { background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.5) 50%, transparent); }

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.bento-card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.bento-card--wide { grid-column: span 1; }
.bento-card--story { grid-column: span 3; position: relative; }

.bento-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 162, 39, 0.2);
  margin-bottom: 1rem;
  color: var(--gold-bright);
}

.bento-icon .lucide { width: 22px; height: 22px; }

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  letter-spacing: 0.03em;
}

.bento-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

.quote-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  color: var(--gold);
  opacity: 0.2;
}

.bento-card--story p { margin-bottom: 0.85rem; }
.story-closer { color: var(--text) !important; }

/* Tweet grid */
.buzz {
  background: var(--bg-2);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.tweet-grid {
  column-count: 3;
  column-gap: 1.15rem;
}

.tweet-cell {
  break-inside: avoid;
  margin-bottom: 1.15rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-solid);
  border: 1px solid var(--glass-border);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.tweet-cell:hover {
  border-color: rgba(201, 162, 39, 0.2);
  transform: translateY(-2px);
}

.tweet-cell .twitter-tweet {
  margin: 0 !important;
}

/* Buy section */
.buy-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.buy-step { position: relative; }

.buy-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(201, 162, 39, 0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.buy-step-card {
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  height: 100%;
  transition: border-color 0.3s;
}

.buy-step-card:hover { border-color: rgba(201, 162, 39, 0.22); }

.buy-step-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.buy-step-icon img { width: 26px; height: 26px; }

.buy-step-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.buy-step-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  margin-bottom: 1rem;
}

.buy-connector {
  display: flex;
  align-items: center;
  padding-top: 4.5rem;
  color: var(--text-3);
}

.buy-connector .lucide { width: 20px; height: 20px; }

/* Chart */
.chart-panel {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--surface-solid);
  box-shadow: var(--shadow);
}

.dex-embed {
  width: 100%;
  height: 540px;
  border: none;
  display: block;
}

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

.joinus-visual {
  position: relative;
  width: 100%;
  max-height: 460px;
  overflow: hidden;
}

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

.joinus-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, var(--bg) 95%);
}

.joinus-body {
  margin-top: -4rem;
  position: relative;
  z-index: 2;
  padding-bottom: 5rem;
}

.joinus-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.joinus-card p {
  color: var(--text-2);
  margin-bottom: 1.75rem;
  font-size: 1.02rem;
}

.joinus-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--glass-border);
  background: var(--bg-2);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.footer-brand span { font-size: 0.72rem; color: var(--text-3); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.8rem;
  color: var(--text-2);
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--gold-bright); }

.footer-note {
  font-size: 0.68rem;
  color: var(--text-3);
  max-width: 420px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* Responsive */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 560px; margin: 0 auto; width: 100%; }
  .hero-copy { text-align: center; }
  .hero-tagline { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card--story { grid-column: span 2; }
  .tweet-grid { column-count: 2; }
  .buy-track {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .buy-connector { display: none; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem;
    background: rgba(3, 3, 3, 0.97);
    border-bottom: 1px solid var(--glass-border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s;
  }

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

  .nav-toggle { display: flex; }
  .header-actions .btn-gold { display: none; }
  .bento { grid-template-columns: 1fr; }
  .bento-card--story { grid-column: span 1; }
  .tweet-grid { column-count: 1; }
  .brand-text { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .joinus-btns { flex-direction: column; }
  .joinus-btns .btn { width: 100%; }
}
