/* ============================================
   Trump the Bull — $TRUMPBULL
   Wall Street × Golden Bull × Meme Energy
   ============================================ */

:root {
  --bg: #050505;
  --bg-soft: #0d0d0f;
  --bg-elevated: #141418;
  --charcoal: #1a1a1f;
  --gold: #d4af37;
  --gold-light: #f5d76e;
  --gold-deep: #8a6a12;
  --amber: #e8a838;
  --green: #00ff88;
  --green-dim: rgba(0, 255, 136, 0.15);
  --red: #c41e3a;
  --text: #f4f0e6;
  --muted: #9a9488;
  --border: rgba(212, 175, 55, 0.28);
  --glass: rgba(18, 18, 22, 0.72);
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.25);
  --font-display: "Bebas Neue", Impact, Haettenschweiler, sans-serif;
  --font-body: "Sora", "Segoe UI", sans-serif;
  --font-mono: "Share Tech Mono", "Courier New", monospace;
  --nav-h: 76px;
  --radius: 14px;
  --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(--nav-h);
}

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

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

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

ul,
ol {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 9999;
  background: var(--gold);
  color: #111;
  padding: 0.75rem 1rem;
  font-weight: 700;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ---------- Background orbs ---------- */

.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

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

.orb-1 {
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.35), transparent 70%);
  top: -10%;
  left: -8%;
}

.orb-2 {
  width: 36vw;
  height: 36vw;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.12), transparent 70%);
  bottom: 10%;
  right: -10%;
  animation-delay: -6s;
}

.orb-3 {
  width: 28vw;
  height: 28vw;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.12), transparent 70%);
  top: 40%;
  left: 40%;
  animation-delay: -12s;
}

@keyframes orbDrift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(4%, 6%) scale(1.08); }
}

/* ---------- Cursor glow ---------- */

.cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  background: radial-gradient(circle, rgba(245, 215, 110, 0.16), transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: screen;
}

.cursor-glow.is-active {
  opacity: 1;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

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

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1002;
}

.nav-brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
}

.nav-brand strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 1.15rem;
  line-height: 1;
}

.nav-brand small {
  font-family: var(--font-mono);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

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

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

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

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

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

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1002;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold-light);
  margin: 5px auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.35) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  z-index: -1;
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(120%);
}

.btn-sm {
  min-height: 42px;
  padding: 0.55rem 1.1rem;
  font-size: 0.75rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  color: #111;
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(245, 215, 110, 0.45);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.06);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(212, 175, 55, 0.16);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

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

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

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--nav-h) + 2rem) 0 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212, 175, 55, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0, 255, 136, 0.06), transparent 50%),
    linear-gradient(180deg, #050505 0%, #0a0a0c 50%, #050505 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  animation: gridDrift 40s linear infinite;
  opacity: 0.55;
  pointer-events: none;
}

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

.hero-particles,
.hero-chart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-chart {
  opacity: 0.45;
  z-index: 0;
}

.chart-line {
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.8));
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation: drawChart 4.5s var(--ease) forwards, chartPulse 3s ease-in-out 4.5s infinite;
}

.chart-fill {
  opacity: 0;
  animation: fadeFill 1.5s ease 1.2s forwards;
}

@keyframes drawChart {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeFill {
  to { opacity: 1; }
}

@keyframes chartPulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.6)); }
  50% { filter: drop-shadow(0 0 14px rgba(0, 255, 136, 1)); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.terminal-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--green);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulseDot 1.6s ease-in-out infinite;
}

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

.hero-title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #fff6d4 0%, var(--gold-light) 35%, var(--gold) 70%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

.hero-ticker {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  letter-spacing: 0.22em;
  color: var(--green);
  text-shadow: 0 0 24px rgba(0, 255, 136, 0.35);
}

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

.hero-sub {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 1rem;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.75rem;
}

.hero-meta span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.05);
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  will-change: transform;
}

.hero-glow {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 215, 110, 0.45), rgba(212, 175, 55, 0.12) 45%, transparent 70%);
  filter: blur(18px);
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 0;
}

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

.hero-art-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(212, 175, 55, 0.35);
  background: #000;
  display: grid;
  place-items: center;
}

.hero-banner {
  width: 92%;
  height: 92%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 50%;
}

.float-art {
  animation: floatBreath 5.5s ease-in-out infinite;
}

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

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  z-index: 2;
}

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

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

/* ---------- Marquee ---------- */

.marquee {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.08), rgba(0, 0, 0, 0.9), rgba(0, 255, 136, 0.06));
  overflow: hidden;
  padding: 0.95rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  letter-spacing: 0.12em;
  color: var(--gold-light);
}

.marquee-group .dot {
  opacity: 0.85;
  font-size: 0.95rem;
}

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

/* ---------- Sections ---------- */

.section {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-head h2,
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  letter-spacing: 0.05em;
  line-height: 1;
  background: linear-gradient(180deg, #fff, var(--gold-light) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-sub {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 42ch;
  margin-inline: auto;
}

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

.about {
  background:
    radial-gradient(ellipse at 10% 20%, rgba(212, 175, 55, 0.08), transparent 45%),
    var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-gold);
  background: #000;
}

.about-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}

.about-candles {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  height: 72px;
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  padding: 0.65rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 255, 136, 0.2);
}

.about-candles span {
  flex: 1;
  height: var(--h);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, #009955, var(--green));
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.45);
  animation: candleRise 2.4s ease-in-out infinite alternate;
}

.about-candles span:nth-child(odd) { animation-delay: 0.3s; }
.about-candles span:nth-child(3n) { animation-delay: 0.7s; }

@keyframes candleRise {
  from { transform: scaleY(0.85); }
  to { transform: scaleY(1.05); }
}

.about-copy .lead {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.about-copy > p:not(.lead) {
  color: var(--muted);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.about-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.mini-card {
  padding: 1rem 0.85rem;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.12), rgba(20, 20, 24, 0.9));
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18);
}

.mini-icon {
  display: block;
  color: var(--green);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.5);
}

.mini-card strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.mini-card small {
  color: var(--muted);
  font-size: 0.72rem;
}

/* ---------- Market ---------- */

.market {
  background:
    linear-gradient(180deg, transparent, rgba(0, 255, 136, 0.03), transparent),
    var(--bg-soft);
}

.market-board {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.25rem;
}

.terminal-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(20, 20, 24, 0.95), rgba(8, 8, 10, 0.98));
  padding: 1.25rem;
  box-shadow: inset 0 0 60px rgba(0, 255, 136, 0.04);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 1rem;
}

.status-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
}

.status-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulseDot 1.4s ease-in-out infinite;
}

.scanner-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.7), transparent);
  animation: scan 3.5s linear infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes scan {
  from { top: 18%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  to { top: 88%; opacity: 0; }
}

.market-svg {
  width: 100%;
  height: auto;
  display: block;
}

.m-line {
  filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.85));
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}

.market-board.in-view .m-line {
  animation: drawChart 2.8s var(--ease) forwards;
}

.candle-row {
  display: flex;
  align-items: flex-end;
  gap: 0.55rem;
  height: 90px;
  margin-top: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.candle {
  flex: 1;
  height: var(--h);
  position: relative;
  background: linear-gradient(to top, #007a44, var(--green));
  border-radius: 3px 3px 1px 1px;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.25);
  animation: candleRise 2s ease-in-out infinite alternate;
}

.candle i {
  position: absolute;
  left: 50%;
  top: -12%;
  bottom: -8%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(0, 255, 136, 0.7);
}

.candle:nth-child(2n) { animation-delay: 0.25s; }
.candle:nth-child(3n) { animation-delay: 0.5s; }

.market-side {
  display: grid;
  gap: 1rem;
}

.glass-card,
.feature-card,
.step-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(30, 28, 22, 0.9), rgba(12, 12, 14, 0.95));
}

.market-card {
  display: grid;
  gap: 0.85rem;
  padding: 0.85rem;
}

.market-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 10px;
}

.market-card h3 {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 1.5rem;
  margin: 0.2rem 0 0.35rem;
}

.market-card p:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.arrow-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 255, 136, 0.25);
  background: var(--green-dim);
  color: var(--green);
  font-family: var(--font-display);
  letter-spacing: 0.16em;
}

.arrow-stack span {
  animation: arrowBounce 1.2s ease-in-out infinite;
  font-size: 1.4rem;
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.7);
}

.arrow-stack span:nth-child(2) { animation-delay: 0.15s; }
.arrow-stack span:nth-child(3) { animation-delay: 0.3s; }

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

.bull-silhouette {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(212, 175, 55, 0.06);
}

.bull-silhouette svg {
  width: 72px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.45));
}

.bull-silhouette span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
}

/* ---------- Why / Features ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-card {
  padding: 1.5rem 1.25rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(245, 215, 110, 0.12) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 215, 110, 0.55);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.18), 0 0 30px rgba(212, 175, 55, 0.1);
}

.feature-card:hover::after {
  transform: translateX(120%);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 0.85rem;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.35));
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

.feature-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.why-art {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.why-art img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center 20%;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: none;
}

.step-card {
  padding: 1.75rem 1.4rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.step-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--green);
  margin-bottom: 1rem;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
}

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

.step-card a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-all;
}

.ca-note {
  margin-top: 1.75rem;
  text-align: center;
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
  color: var(--muted);
  font-size: 0.85rem;
}

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

.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(5rem, 12vw, 8rem);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.18), transparent 55%),
    linear-gradient(180deg, transparent, rgba(196, 30, 58, 0.08), transparent);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
  animation: floatBreath 5s ease-in-out infinite;
}

.cta .hero-actions {
  justify-content: center;
}

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

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: #030303;
  padding: 2.5rem 0 1.75rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

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

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

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

.footer-brand span {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.8rem;
  max-width: 62ch;
}

.copyright {
  white-space: nowrap;
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}

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

.feature-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.feature-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.feature-grid .reveal:nth-child(3) { transition-delay: 0.19s; }
.feature-grid .reveal:nth-child(4) { transition-delay: 0.26s; }

.steps .reveal:nth-child(1) { transition-delay: 0.05s; }
.steps .reveal:nth-child(2) { transition-delay: 0.15s; }
.steps .reveal:nth-child(3) { transition-delay: 0.25s; }

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

@media (max-width: 980px) {
  .hero-inner,
  .about-grid,
  .market-board {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: -1;
  }

  .hero-art-frame {
    width: min(86vw, 380px);
    margin-inline: auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .why-art img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(18px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .nav-links a {
    font-size: 1.15rem;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 1.25rem);
    padding-bottom: 3.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .about-tags {
    grid-template-columns: 1fr;
  }

  .hero-scroll {
    display: none;
  }

  .cursor-glow {
    display: none;
  }

  .orb {
    opacity: 0.2;
    filter: blur(60px);
  }
}

@media (max-width: 520px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .nav-brand strong {
    font-size: 1rem;
  }

  .hero-meta {
    gap: 0.4rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
  }

  .float-art,
  .cta-logo {
    animation: none;
  }

  .cursor-glow {
    display: none;
  }
}

body.is-hidden .orb,
body.is-hidden .marquee-track,
body.is-hidden .hero-grid,
body.is-hidden .scanner-line,
body.is-hidden .float-art {
  animation-play-state: paused;
}
