/* Trump Oil — Custom Styles */

:root {
  --oil-black: #07080d;
  --oil-deep: #0f1118;
  --oil-surface: #161922;
  --gold: #e8b923;
  --gold-bright: #ffd54f;
  --gold-dark: #b8860b;
  --amber: #ff8c2a;
  --sunset: #ff5e1a;
  --crimson: #c62828;
  --navy: #1a2744;
  --text: #f0ece4;
  --text-muted: #9a958a;
  --border: rgba(232, 185, 35, 0.18);
  --glow-gold: rgba(232, 185, 35, 0.45);
  --glow-amber: rgba(255, 140, 42, 0.35);
  --radius: 16px;
  --radius-lg: 24px;
  --header-h: 76px;
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--oil-black);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

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

.brand-logo {
  object-fit: contain;
  flex-shrink: 0;
}

.wallet-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.brand-logo-x {
  background: #000;
  border-radius: 8px;
  padding: 4px;
}

.btn .brand-logo,
.social-link .brand-logo {
  filter: none;
}

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

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

.container {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold-bright), var(--amber), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== FX BACKGROUND ===== */
.fx-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

#oilCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.fx-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(255, 94, 26, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 80%, rgba(232, 185, 35, 0.08), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 50%, rgba(26, 39, 68, 0.35), transparent 60%),
    linear-gradient(180deg, #0a0c14 0%, #07080d 40%, #0d0f16 100%);
  animation: gradientShift 18s ease-in-out infinite alternate;
}

.fx-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 185, 35, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 185, 35, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.fx-embers {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 10% 20%, rgba(255, 140, 42, 0.8), transparent),
    radial-gradient(2px 2px at 30% 70%, rgba(232, 185, 35, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 70% 30%, rgba(255, 94, 26, 0.6), transparent),
    radial-gradient(2px 2px at 90% 60%, rgba(255, 213, 79, 0.5), transparent),
    radial-gradient(1px 1px at 50% 90%, rgba(255, 140, 42, 0.5), transparent);
  animation: emberDrift 12s linear infinite;
}

@keyframes gradientShift {
  0% { filter: hue-rotate(0deg) brightness(1); }
  100% { filter: hue-rotate(8deg) brightness(1.05); }
}

@keyframes emberDrift {
  0% { transform: translateY(0); opacity: 0.6; }
  50% { opacity: 1; }
  100% { transform: translateY(-30px); opacity: 0.6; }
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(7, 8, 13, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border);
}

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

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

.nav-logo {
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px var(--glow-gold);
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 16px var(--glow-gold); }
  50% { box-shadow: 0 0 28px var(--glow-amber), 0 0 40px rgba(255, 94, 26, 0.2); }
}

.nav-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
}

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}

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

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-actions {
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  white-space: nowrap;
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

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

.btn-xl {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-dark));
  color: #1a1200;
  box-shadow: 0 4px 24px var(--glow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-gold:hover {
  box-shadow: 0 8px 32px var(--glow-gold), 0 0 40px var(--glow-amber);
}

.btn-outline {
  border: 1.5px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(232, 185, 35, 0.08);
  box-shadow: 0 0 24px rgba(232, 185, 35, 0.15);
}

.btn-dark {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.pulse-glow {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 24px var(--glow-gold); }
  50% { box-shadow: 0 4px 36px var(--glow-gold), 0 0 50px var(--glow-amber); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-video-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255, 140, 42, 0.15), transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(26, 39, 68, 0.4), transparent 55%),
    url('../logo.png') center 30% / 280px no-repeat;
  animation: heroFallbackPulse 8s ease-in-out infinite alternate;
}

.hero.has-video .hero-video-fallback {
  display: none;
}

@keyframes heroFallbackPulse {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.02); }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 13, 0.5) 0%, rgba(7, 8, 13, 0.2) 40%, rgba(7, 8, 13, 0.85) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(7, 8, 13, 0.7) 100%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  animation: badgeFloat 4s ease-in-out infinite;
}

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

.hero-logo-wrap {
  position: relative;
  margin: 0.5rem 0;
}

.hero-logo-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--amber);
  animation: ringSpin 6s linear infinite;
}

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

.hero-logo {
  width: min(220px, 45vw);
  height: auto;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow:
    0 0 40px var(--glow-gold),
    0 0 80px rgba(255, 94, 26, 0.15);
  animation: heroLogoFloat 5s ease-in-out infinite;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}

.hero-title {
  font-family: var(--font-display);
  line-height: 0.95;
}

.title-line {
  display: block;
  font-size: clamp(3.5rem, 12vw, 7rem);
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #fff8e1 0%, var(--gold-bright) 40%, var(--amber) 70%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 20px rgba(232, 185, 35, 0.4));
  animation: titleShimmer 4s ease-in-out infinite;
}

@keyframes titleShimmer {
  0%, 100% { filter: drop-shadow(0 4px 20px rgba(232, 185, 35, 0.4)); }
  50% { filter: drop-shadow(0 4px 30px rgba(255, 140, 42, 0.6)); }
}

.title-symbol {
  display: block;
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: 0.12em;
  color: var(--text);
  margin-top: 0.15em;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 520px;
}

.hero-tagline strong {
  color: var(--gold-bright);
}

.hero-contract {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem 0.65rem 1.25rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  max-width: 100%;
}

.contract-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  flex-shrink: 0;
}

.contract-value {
  font-size: 0.82rem;
  color: var(--gold-bright);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(340px, 50vw);
}

.copy-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(232, 185, 35, 0.12);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  transition: background 0.25s, transform 0.25s;
}

.copy-btn:hover {
  background: rgba(232, 185, 35, 0.25);
  transform: scale(1.05);
}

.copy-btn.copied {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.4);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

.stat-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  animation: chipBob 3s ease-in-out infinite;
}

.stat-chip:nth-child(2) { animation-delay: 0.5s; }
.stat-chip:nth-child(3) { animation-delay: 1s; }

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

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

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

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

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  letter-spacing: 0.04em;
}

.oil-drip-divider {
  height: 40px;
  margin-bottom: -20px;
  background:
    radial-gradient(ellipse 8px 12px at 5% 0, #111 60%, transparent 61%),
    radial-gradient(ellipse 6px 10px at 12% 0, #111 60%, transparent 61%),
    radial-gradient(ellipse 10px 14px at 20% 0, #111 60%, transparent 61%),
    radial-gradient(ellipse 7px 11px at 28% 0, #111 60%, transparent 61%),
    radial-gradient(ellipse 9px 13px at 36% 0, #111 60%, transparent 61%),
    radial-gradient(ellipse 6px 10px at 44% 0, #111 60%, transparent 61%),
    radial-gradient(ellipse 8px 12px at 52% 0, #111 60%, transparent 61%),
    radial-gradient(ellipse 10px 14px at 60% 0, #111 60%, transparent 61%),
    radial-gradient(ellipse 7px 11px at 68% 0, #111 60%, transparent 61%),
    radial-gradient(ellipse 9px 13px at 76% 0, #111 60%, transparent 61%),
    radial-gradient(ellipse 6px 10px at 84% 0, #111 60%, transparent 61%),
    radial-gradient(ellipse 8px 12px at 92% 0, #111 60%, transparent 61%),
    linear-gradient(180deg, rgba(232, 185, 35, 0.25) 0%, rgba(10, 10, 15, 0.9) 100%);
  position: relative;
  z-index: 1;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-card {
  padding: 2rem 1.75rem;
  background: linear-gradient(160deg, rgba(22, 25, 34, 0.9), rgba(15, 17, 24, 0.95));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 185, 35, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(232, 185, 35, 0.08);
}

.about-card-featured {
  border-color: rgba(255, 140, 42, 0.3);
  background: linear-gradient(160deg, rgba(30, 25, 15, 0.6), rgba(15, 17, 24, 0.95));
}

.about-icon {
  margin-bottom: 1.25rem;
  animation: iconBounce 3s ease-in-out infinite;
}

.about-card:nth-child(2) .about-icon { animation-delay: 0.3s; }
.about-card:nth-child(3) .about-icon { animation-delay: 0.6s; }

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

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  margin-bottom: 0.75rem;
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-banner-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, rgba(232, 185, 35, 0.06), rgba(255, 140, 42, 0.08), rgba(232, 185, 35, 0.06));
  border: 1px solid var(--border);
  text-align: center;
}

.about-banner-text p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  max-width: 640px;
}

/* ===== HOW TO BUY ===== */
.howtobuy {
  background: linear-gradient(180deg, transparent, rgba(26, 39, 68, 0.12), transparent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.step-card {
  position: relative;
  padding: 2rem 1.5rem 1.75rem;
  background: var(--oil-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--amber), var(--sunset));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 185, 35, 0.3);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(232, 185, 35, 0.15);
  line-height: 1;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  min-height: 56px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  color: var(--gold-bright);
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.buy-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ===== CHART ===== */
.chart-wrap {
  max-width: 900px;
  margin-inline: auto;
}

.chart-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--oil-surface);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  min-height: 500px;
}

.chart-frame iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: none;
}

.chart-frame.has-embed iframe {
  display: block;
}

.chart-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 3rem 2rem;
  min-height: 500px;
  text-align: center;
}

.chart-frame.has-embed .chart-placeholder {
  display: none;
}

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

.chart-placeholder code {
  color: var(--gold-bright);
  background: rgba(0, 0, 0, 0.3);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85em;
}

/* ===== JOIN US ===== */
.joinus-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.joinus-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.banner-image {
  width: 100%;
  display: block;
  transition: transform 8s var(--ease-out);
}

.joinus-banner:hover .banner-image {
  transform: scale(1.04);
}

.banner-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7, 8, 13, 0.6) 100%);
  pointer-events: none;
}

.joinus-content h3 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

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

.joinus-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.social-link:hover {
  transform: translateX(6px);
  border-color: var(--gold);
  background: rgba(232, 185, 35, 0.06);
  box-shadow: 0 0 24px rgba(232, 185, 35, 0.1);
}

.joinus-ticker {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  padding: 0.75rem 0;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: tickerScroll 20s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
}

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

/* ===== FOOTER ===== */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
}

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

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

.footer-brand img {
  border-radius: 50%;
  border: 1px solid var(--border);
}

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

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

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.25s;
}

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

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .nav-links,
  .nav-actions {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(7, 8, 13, 0.96);
    backdrop-filter: blur(16px);
    padding: 1.5rem;
    flex-direction: column;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.35s;
  }

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

  .nav-actions {
    display: flex;
    top: calc(var(--header-h) + 180px);
    padding-top: 0;
  }

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

  .nav.open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav.open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

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

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

  .about-banner-text {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

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