/* Paid Elon — monochrome X Money identity */

:root {
  --bg: #050505;
  --bg-elevated: #0c0c0c;
  --bg-soft: #111111;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.28);
  --text: #f5f5f5;
  --text-dim: #9a9a9a;
  --text-mute: #6a6a6a;
  --white: #ffffff;
  --black: #000000;
  --accent: #e8e8e8;
  --glow: rgba(255, 255, 255, 0.06);
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

*,
*::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.65;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul,
ol {
  list-style: none;
}

/* Atmosphere */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  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");
  mix-blend-mode: overlay;
}

.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 10%, rgba(255, 255, 255, 0.05), transparent 55%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(255, 255, 255, 0.03), transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 64px 64px, 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
}

.grid-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='160' viewBox='0 0 280 160'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.2'%3E%3Cpath d='M36 28h18c10 0 18 8 18 18s-8 18-18 18H48v20H36V28zm12 12v12h6c3.3 0 6-2.7 6-6s-2.7-6-6-6h-6z'/%3E%3Cline x1='42' y1='32' x2='54' y2='32'/%3E%3C/g%3E%3Ctext x='120' y='58' fill='%23ffffff' font-family='Arial,sans-serif' font-size='14' font-weight='700' letter-spacing='3'%3EX MONEY%3C/text%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.2' transform='translate(40 80)'%3E%3Cpath d='M36 28h18c10 0 18 8 18 18s-8 18-18 18H48v20H36V28zm12 12v12h6c3.3 0 6-2.7 6-6s-2.7-6-6-6h-6z'/%3E%3Cline x1='42' y1='32' x2='54' y2='32'/%3E%3C/g%3E%3Ctext x='40' y='138' fill='%23ffffff' font-family='Arial,sans-serif' font-size='14' font-weight='700' letter-spacing='3'%3EX MONEY%3C/text%3E%3C/svg%3E");
  background-size: 280px 160px;
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 55;
  opacity: 0.035;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.05) 2px,
    rgba(255, 255, 255, 0.05) 3px
  );
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 65%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
}

body.has-pointer .cursor-glow.is-on {
  opacity: 1;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.header-inner {
  max-width: calc(var(--max) + 64px);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  transition: transform 0.4s var(--ease), border-color 0.3s;
}

.brand:hover .brand-mark {
  transform: scale(1.04) rotate(-2deg);
  border-color: var(--white);
}

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

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-ticker {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  transition: color 0.25s;
}

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

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

.nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.icon-btn img {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.icon-btn:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
  white-space: nowrap;
}

.btn img {
  filter: brightness(0) invert(1);
}

.btn-solid {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-solid img {
  filter: none;
}

.btn-solid:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-solid:hover img {
  filter: brightness(0) invert(1);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 0.92rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 32px) 24px 72px;
  z-index: 2;
  overflow: hidden;
}

.hero-plane {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-portrait {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-48%);
  height: min(92vh, 920px);
  width: auto;
  max-width: none;
  object-fit: contain;
  opacity: 0.92;
  filter: contrast(1.05);
  animation: portraitIn 1.4s var(--ease) both, portraitFloat 8s ease-in-out 1.4s infinite;
  mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 100%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.97) 0%, rgba(5, 5, 5, 0.78) 42%, rgba(5, 5, 5, 0.2) 72%, rgba(5, 5, 5, 0.55) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.35) 0%, transparent 30%, rgba(5, 5, 5, 0.85) 100%);
}

.hero-streaks {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -18deg,
    transparent,
    transparent 80px,
    rgba(255, 255, 255, 0.015) 80px,
    rgba(255, 255, 255, 0.015) 81px
  );
  animation: streakShift 18s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
  border: 1px solid var(--line);
  padding: 8px 14px;
}

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

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 9vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 0.18em;
  text-shadow: 0 0 80px rgba(255, 255, 255, 0.08);
}

.p-mark {
  display: block;
  width: 0.78em;
  height: 0.78em;
  object-fit: contain;
  flex-shrink: 0;
  animation: markPulse 3.5s ease-in-out infinite;
}

.hero-lead {
  max-width: 34rem;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 40rem;
}

.meta-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 4px;
}

.meta-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

#copyTicker {
  cursor: pointer;
  border-bottom: 1px dashed var(--line-strong);
  transition: color 0.2s;
}

#copyTicker:hover {
  color: var(--white);
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.scroll-hint i {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--line);
  background: var(--bg-elevated);
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.marquee-track span:nth-child(odd) {
  color: var(--white);
}

/* Sections */
.section {
  position: relative;
  z-index: 2;
  padding: 120px 24px;
}

.section-wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  max-width: 44rem;
  margin-bottom: 64px;
}

.section-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 16px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.08rem;
  color: var(--text-dim);
  max-width: 40rem;
}

/* About */
.about {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 48px;
}

.about-block {
  background: var(--bg);
  padding: 36px 28px 40px;
  transition: background 0.35s;
}

.about-block:hover {
  background: var(--bg-soft);
}

.about-index {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  margin-bottom: 20px;
}

.about-block h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.about-block p {
  color: var(--text-dim);
  font-size: 0.98rem;
  margin-bottom: 14px;
}

.about-block p:last-child {
  margin-bottom: 0;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.pillar-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 48px;
}

.pillar-band article {
  background: var(--bg);
  padding: 36px 32px;
}

.pillar-band h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.pillar-band p {
  color: var(--text-dim);
  margin-bottom: 12px;
}

.pillar-band p:last-child {
  margin-bottom: 0;
}

.stat {
  padding: 24px 0;
  border-top: 1px solid var(--line-strong);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat span {
  color: var(--text-mute);
  font-size: 0.9rem;
}

.manifesto {
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 40%),
    var(--bg-elevated);
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: "PAID";
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 14vw, 10rem);
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.manifesto blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 38rem;
}

.manifesto p {
  color: var(--text-dim);
  max-width: 46rem;
  margin-bottom: 14px;
  position: relative;
}

.manifesto p:last-child {
  margin-bottom: 0;
}

/* How to buy */
.buy-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.buy-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}

.buy-step:hover {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.04em;
  color: var(--text-mute);
  line-height: 1;
  transition: color 0.3s, transform 0.35s var(--ease);
}

.buy-step:hover .step-num {
  color: var(--white);
  transform: translateX(4px);
}

.step-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.step-body p {
  color: var(--text-dim);
  max-width: 42rem;
  margin-bottom: 16px;
}

.text-link,
.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: opacity 0.25s, border-color 0.25s, transform 0.25s;
}

.text-link {
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
}

.text-link:hover {
  opacity: 0.75;
}

.text-link img,
.pill-link img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.step-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-link {
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.pill-link:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

.buy-note {
  margin-top: 40px;
  padding: 20px 24px;
  border-left: 2px solid var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.buy-note p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* Chart */
.chart-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02), transparent);
}

.chart-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.chart-frame {
  border: 1px solid var(--line);
  background: #0b0b0b;
  overflow: hidden;
  position: relative;
}

.chart-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.03);
  z-index: 1;
}

.chart-frame iframe {
  display: block;
  width: 100%;
  height: min(70vh, 680px);
  border: 0;
  background: #0b0b0b;
}

.chart-caption {
  padding: 14px 18px;
  font-size: 0.82rem;
  color: var(--text-mute);
  border-top: 1px solid var(--line);
}

.chart-caption a {
  color: var(--white);
  border-bottom: 1px solid var(--line-strong);
}

.chart-caption a:hover {
  border-bottom-color: var(--white);
}

.text-link img,
.pill-link img,
.social-card img,
.btn img,
.icon-btn img,
.inline-icon {
  object-fit: contain;
}

/* Join Us */
.joinus .banner-frame {
  margin: 0 0 48px;
  width: 100%;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--black);
  position: relative;
}

.joinus .banner-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  animation: bannerSheen 5s ease-in-out infinite;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.06) 48%,
    transparent 66%
  );
  background-size: 200% 100%;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s var(--ease);
}

.joinus .banner-frame:hover .banner-img {
  transform: scale(1.03);
}

.join-copy {
  max-width: 46rem;
  margin-bottom: 36px;
}

.join-copy p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.3s, background 0.3s, transform 0.35s var(--ease);
}

.social-card img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
  flex-shrink: 0;
}

.social-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.social-card span {
  font-size: 0.8rem;
  color: var(--text-mute);
}

.social-card:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding: 64px 24px 40px;
  background: #030303;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

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

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
}

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

.footer-tag {
  max-width: 36rem;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-bottom: 32px;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.25s;
}

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

.footer-legal,
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-mute);
  max-width: 48rem;
}

.footer-legal {
  margin-bottom: 12px;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--white);
  color: var(--black);
  padding: 12px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  transition: opacity 0.3s, transform 0.3s var(--ease);
}

.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Animations */
@keyframes portraitIn {
  from {
    opacity: 0;
    transform: translateY(-42%) scale(1.05);
  }
  to {
    opacity: 0.92;
    transform: translateY(-48%) scale(1);
  }
}

@keyframes portraitFloat {
  0%,
  100% {
    transform: translateY(-48%);
  }
  50% {
    transform: translateY(-50%);
  }
}

@keyframes streakShift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 120px 60px;
  }
}

@keyframes markPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.7);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

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

@keyframes bannerSheen {
  0%,
  100% {
    background-position: 140% 0;
  }
  50% {
    background-position: -40% 0;
  }
}

@keyframes glitchFlicker {
  0%,
  92%,
  100% {
    opacity: 1;
    clip-path: none;
  }
  93% {
    opacity: 0.85;
    clip-path: inset(20% 0 40% 0);
  }
  94% {
    opacity: 1;
    clip-path: inset(60% 0 10% 0);
  }
  96% {
    transform: translate(2px, -1px);
  }
}

.hero-brand.is-glitch {
  animation: glitchFlicker 4.5s steps(2, end) infinite;
}

/* Mobile */
@media (max-width: 960px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.35s;
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions .btn-solid {
    display: none;
  }

  .hero-portrait {
    right: -18%;
    opacity: 0.55;
    height: min(70vh, 640px);
  }

  .about-grid,
  .stat-strip,
  .social-row,
  .pillar-band {
    grid-template-columns: 1fr;
  }

  .buy-step {
    grid-template-columns: 64px 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    align-items: center;
    padding-bottom: 96px;
  }

  .hero-brand {
    font-size: clamp(2.8rem, 14vw, 3.8rem);
  }

  .hero-meta {
    gap: 20px;
  }

  .section {
    padding: 88px 20px;
  }

  .chart-frame iframe {
    height: 480px;
  }
}

@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;
  }
}
