/* Rich Trump — Ultra Gold & Shiny Theme */

:root {
  --gold-1: #fff8dc;
  --gold-2: #ffe566;
  --gold-3: #ffd700;
  --gold-4: #d4af37;
  --gold-5: #b8860b;
  --gold-6: #8b6914;
  --gold-7: #5c4a0a;
  --black: #060504;
  --black-soft: #0e0c08;
  --black-panel: rgba(12, 10, 6, 0.82);
  --white: #fff9e6;
  --gray: #c4b896;
  --gray-dim: #8a7d5c;
  --gold-glow: rgba(255, 215, 0, 0.55);
  --gold-glow-soft: rgba(212, 175, 55, 0.25);
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-height: 72px;
  --radius: 14px;
  --radius-lg: 22px;
  --gold-gradient: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-3) 25%, var(--gold-4) 50%, var(--gold-5) 75%, var(--gold-6) 100%);
  --gold-gradient-h: linear-gradient(90deg, var(--gold-6), var(--gold-3), var(--gold-1), var(--gold-3), var(--gold-6));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

/* ── Vector background layers ── */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.site-bg-vector {
  position: absolute;
  inset: -5%;
  background: url('bg-vector.svg') center / cover no-repeat;
  animation: bgDrift 30s ease-in-out infinite alternate;
}

.site-bg-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 248, 200, 0.04) 45%,
    rgba(255, 215, 0, 0.08) 50%,
    rgba(255, 248, 200, 0.04) 55%,
    transparent 65%
  );
  background-size: 200% 100%;
  animation: shimmerSweep 8s ease-in-out infinite;
}

.site-bg-rays {
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 0deg at 50% 30%,
    transparent 0deg,
    rgba(255, 215, 0, 0.03) 30deg,
    transparent 60deg,
    rgba(255, 215, 0, 0.02) 120deg,
    transparent 180deg,
    rgba(255, 215, 0, 0.03) 240deg,
    transparent 300deg
  );
  animation: raysSpin 60s linear infinite;
}

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

.gold-vignette {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(6, 5, 4, 0.85) 100%);
}

@keyframes bgDrift {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-1%, -1%); }
}

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

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

/* ── Gold text effects ── */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-shine-text {
  background: linear-gradient(
    90deg,
    var(--gold-5) 0%,
    var(--gold-1) 20%,
    var(--gold-3) 40%,
    var(--gold-1) 60%,
    var(--gold-4) 80%,
    var(--gold-5) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 4s linear infinite;
}

.white-text {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

@keyframes textShine {
  to { background-position: 200% center; }
}

/* ── Gold panels (glass + metallic border) ── */
.gold-panel {
  position: relative;
  background: linear-gradient(145deg, rgba(20, 16, 8, 0.9), rgba(8, 6, 4, 0.95));
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow:
    0 0 0 1px rgba(184, 134, 11, 0.1) inset,
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(255, 215, 0, 0.06);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.gold-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 248, 200, 0.08) 0%, transparent 40%, rgba(255, 215, 0, 0.04) 100%);
  pointer-events: none;
}

.gold-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 248, 220, 0.12), transparent);
  animation: panelShine 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes panelShine {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(6, 5, 4, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.1);
  border-bottom-color: rgba(255, 215, 0, 0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.shine-ring {
  border: 3px solid transparent;
  background:
    linear-gradient(var(--black-soft), var(--black-soft)) padding-box,
    var(--gold-gradient) border-box;
  box-shadow: 0 0 20px var(--gold-glow-soft), 0 0 40px rgba(255, 215, 0, 0.15);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s, text-shadow 0.2s;
}

.nav-links a:hover {
  color: var(--gold-3);
  text-shadow: 0 0 12px var(--gold-glow-soft);
}

.nav-cta {
  background: var(--gold-gradient) !important;
  color: var(--black) !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: 999px;
  font-weight: 700 !important;
  box-shadow: 0 0 24px var(--gold-glow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  animation: btnPulse 3s ease-in-out infinite !important;
  position: relative;
  overflow: hidden;
}

.nav-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-100%);
  animation: btnGlide 3s ease-in-out infinite;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px var(--gold-glow) !important;
}

.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(--gold-gradient);
  transition: 0.3s;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.5s;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--black);
  box-shadow: 0 4px 28px var(--gold-glow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px var(--gold-glow);
}

.btn-secondary {
  background: rgba(255, 215, 0, 0.08);
  color: var(--gold-2);
  border: 1px solid rgba(255, 215, 0, 0.45);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.18);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--gold-2);
  border: 1px solid rgba(255, 215, 0, 0.35);
}

.btn-outline:hover {
  border-color: var(--gold-3);
  background: rgba(255, 215, 0, 0.06);
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(255, 215, 0, 0.15);
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

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

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 20px var(--gold-glow-soft); }
  50% { box-shadow: 0 0 35px var(--gold-glow); }
}

@keyframes btnGlide {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 2rem) 0 4rem;
  text-align: center;
  overflow: hidden;
}

.hero-rays {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 40%, rgba(255, 215, 0, 0.12), transparent 70%);
  animation: heroPulse 5s ease-in-out infinite;
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid rgba(255, 215, 0, 0.5);
  background: rgba(255, 215, 0, 0.08);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.pulse-gold {
  animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.15); }
  50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.35); }
}

.hero-logo-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}

.logo-orbit {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 215, 0, 0.25);
  animation: orbitSpin 12s linear infinite;
}

.logo-orbit::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold-3);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-glow);
  transform: translateX(-50%);
}

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

.hero-logo {
  width: min(220px, 55vw);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite, logoGlow 3s ease-in-out infinite alternate;
}

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

@keyframes logoGlow {
  from { box-shadow: 0 0 30px var(--gold-glow-soft), 0 0 60px rgba(255, 215, 0, 0.2); }
  to { box-shadow: 0 0 50px var(--gold-glow), 0 0 90px rgba(255, 215, 0, 0.35); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.4));
}

.hero-tagline {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  max-width: 620px;
}

.hero-sub {
  color: var(--gray);
  max-width: 520px;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

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

.ca-box {
  width: min(560px, 92vw);
  padding: 1.1rem 1.35rem;
  border-radius: var(--radius);
}

.ca-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-3);
  margin-bottom: 0.5rem;
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.ca-address {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--gold-1);
  word-break: break-all;
  text-align: left;
}

.btn-copy {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.45);
  border-radius: 8px;
  color: var(--gold-2);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
}

.btn-copy:hover {
  background: rgba(255, 215, 0, 0.25);
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.2);
}

.btn-copy.copied {
  background: rgba(255, 215, 0, 0.3);
  border-color: var(--gold-3);
  color: var(--gold-1);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  animation: bounce 2s infinite;
}

.hero-scroll a {
  color: var(--gold-3);
  font-size: 1.5rem;
  opacity: 0.8;
  text-shadow: 0 0 10px var(--gold-glow-soft);
}

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

/* ── Sections ── */
.section {
  position: relative;
  padding: 5rem 0;
  z-index: 1;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80%);
  height: 1px;
  background: var(--gold-gradient-h);
  opacity: 0.4;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-4);
  margin-bottom: 0.75rem;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.25));
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--gray);
}

.about-text strong {
  color: var(--gold-2);
}

.about-lead {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-2) !important;
  font-weight: 700;
  margin-bottom: 1.25rem !important;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.about-closer {
  font-weight: 700;
  color: var(--gold-1) !important;
  font-size: 1.05rem;
}

.about-footer-line {
  font-style: italic;
  color: var(--gold-3) !important;
  margin-bottom: 1.25rem !important;
}

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

.tag {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.35);
  color: var(--gold-2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.tag:hover {
  transform: scale(1.05);
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.2);
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}

.stat-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15), 0 0 30px rgba(255, 215, 0, 0.08);
}

.stat-card.highlight {
  grid-column: span 2;
  background: linear-gradient(145deg, rgba(30, 24, 8, 0.95), rgba(12, 10, 4, 0.98));
  border-color: rgba(255, 215, 0, 0.45);
}

.stat-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.stat-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-2);
  margin-bottom: 0.35rem;
  position: relative;
  z-index: 1;
}

.stat-card p {
  font-size: 0.875rem;
  color: var(--gray-dim);
  position: relative;
  z-index: 1;
}

/* ── How to Buy ── */
.steps {
  display: grid;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold-3);
  transition: transform 0.3s, border-color 0.3s;
}

.step:hover {
  transform: translateX(6px);
  border-left-color: var(--gold-1);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.step-body {
  position: relative;
  z-index: 1;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--gold-1);
}

.step-body p {
  color: var(--gray);
  font-size: 0.925rem;
}

.step-body strong {
  color: var(--gold-2);
}

.disclaimer {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: var(--gray-dim);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Chart ── */
.chart-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--gold-3);
  font-weight: 700;
  transition: color 0.2s, text-shadow 0.2s;
}

.chart-link:hover {
  color: var(--gold-1);
  text-shadow: 0 0 12px var(--gold-glow-soft);
}

.chart-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.chart-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: relative;
  z-index: 1;
}

.chart-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 6, 4, 0.95);
  text-align: center;
  padding: 2rem;
  z-index: 2;
}

.chart-placeholder p {
  color: var(--gray);
  max-width: 400px;
}

.chart-placeholder code {
  color: var(--gold-2);
  background: rgba(255, 215, 0, 0.1);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.chart-wrapper.has-chart .chart-placeholder {
  display: none;
}

/* ── Join Us ── */
.joinus {
  padding: 5rem 0;
}

.joinus-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.joinus-inner .section-header {
  margin-bottom: 0;
}

.joinus-desc {
  color: var(--gray);
  max-width: 520px;
  margin: 0.75rem auto 0;
  font-size: 1.05rem;
}

.joinus-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0 1.5rem;
}

.joinus-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.joinus-hashtags span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-3);
  animation: tagFloat 3s ease-in-out infinite;
}

.joinus-hashtags span:nth-child(2) { animation-delay: 0.5s; }
.joinus-hashtags span:nth-child(3) { animation-delay: 1s; }
.joinus-hashtags span:nth-child(4) { animation-delay: 1.5s; }

.joinus-banner-wrap {
  width: 100%;
  max-width: 100%;
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.joinus-banner-wrap.gold-panel::after {
  display: none;
}

.joinus-banner {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius-lg) - 4px);
  object-fit: contain;
  object-position: center;
  filter: saturate(1.1) brightness(1.03);
  box-shadow: 0 8px 40px rgba(255, 215, 0, 0.15);
}

@keyframes tagFloat {
  0%, 100% { opacity: 0.7; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

/* ── Footer ── */
.footer {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding: 2.5rem 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(8, 6, 4, 0.9));
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-dim);
}

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

.footer-links a {
  font-size: 0.875rem;
  color: var(--gray);
  transition: color 0.2s, text-shadow 0.2s;
}

.footer-links a:hover {
  color: var(--gold-2);
  text-shadow: 0 0 10px var(--gold-glow-soft);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-card.highlight {
    grid-column: span 1;
  }
}

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

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(6, 5, 4, 0.97);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

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

  .nav-links .nav-cta {
    text-align: center;
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

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

  .ca-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-copy {
    justify-content: center;
  }

  .chart-wrapper {
    height: 400px;
  }
}

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