/* ─── Bull Atlas — Epic Storm Monument Theme ─── */
:root {
  --bg-void: #06080c;
  --bg-deep: #0a0e14;
  --bg-storm: #121820;
  --bg-card: rgba(18, 24, 32, 0.72);
  --gold: #c9a84c;
  --gold-bright: #e8c96a;
  --gold-dim: #8a6f2e;
  --bronze: #a67c3d;
  --silver: #b8c4d0;
  --storm-blue: #1a2838;
  --text: #e8ecf0;
  --text-muted: #8a96a8;
  --glow-gold: rgba(201, 168, 76, 0.45);
  --glow-blue: rgba(80, 140, 200, 0.2);
  --border-gold: rgba(201, 168, 76, 0.35);
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --nav-h: 72px;
  --ticker-h: 36px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ─── Atmospheric Layers ─── */
.storm-sky {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(40, 70, 110, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0c1018 0%, #06080c 40%, #080a0e 100%);
  pointer-events: none;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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");
  background-size: 180px;
}

#storm-canvas {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.55;
}

.lightning-flash {
  position: fixed;
  inset: 0;
  z-index: 4;
  background: rgba(200, 220, 255, 0);
  pointer-events: none;
  transition: background 0.05s;
}

.lightning-flash.active {
  background: rgba(200, 220, 255, 0.12);
}

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

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

.orb-1 {
  width: 400px; height: 400px;
  top: 10%; left: -5%;
  background: rgba(201, 168, 76, 0.08);
}

.orb-2 {
  width: 500px; height: 500px;
  bottom: 20%; right: -10%;
  background: rgba(50, 90, 140, 0.12);
  animation-delay: -6s;
}

.orb-3 {
  width: 300px; height: 300px;
  top: 50%; left: 40%;
  background: rgba(201, 168, 76, 0.05);
  animation-delay: -12s;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: rgba(6, 8, 12, 0.6);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: background 0.4s var(--ease), box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(6, 8, 12, 0.92);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-gold);
  box-shadow: 0 0 20px var(--glow-gold);
}

.nav-wordmark { display: flex; flex-direction: column; line-height: 1.15; }

.nav-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
}

.nav-ticker {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.nav-links a:not(.btn) {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--silver);
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.3s;
}

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

.nav-links a:not(.btn):hover { color: var(--gold-bright); }
.nav-links a:not(.btn):hover::after { width: 100%; }

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

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

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Ticker ─── */
.ticker-bar {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 999;
  height: var(--ticker-h);
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.06), rgba(201, 168, 76, 0.12));
  border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

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

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s;
}

.btn:active { transform: scale(0.97); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--bronze) 100%);
  color: #1a1208;
  box-shadow: 0 4px 24px var(--glow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-gold:hover {
  box-shadow: 0 8px 36px var(--glow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-gold);
}

.btn-outline-gold {
  border: 1px solid var(--border-gold);
  color: var(--gold-bright);
  background: rgba(201, 168, 76, 0.06);
}

.btn-outline-gold:hover {
  background: rgba(201, 168, 76, 0.14);
  box-shadow: 0 0 24px var(--glow-gold);
}

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.8rem; }
.btn-lg { padding: 0.9rem 1.8rem; font-size: 0.95rem; }
.btn-xl { padding: 1.1rem 2.2rem; font-size: 1rem; }

.btn-icon { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }
.btn-icon-lg { width: 28px; height: 28px; }

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

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 4px 24px var(--glow-gold); }
  50% { box-shadow: 0 4px 40px rgba(201, 168, 76, 0.7); }
}

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

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

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

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + var(--ticker-h) + 2rem) 1.5rem 4rem;
  overflow: hidden;
}

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

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

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.3) 0%, rgba(6, 8, 12, 0.85) 70%, var(--bg-void) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
}

.hero-video-wrap.no-video .hero-video {
  display: none;
}

.hero-video-wrap.no-video .hero-video-overlay {
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(40, 70, 110, 0.2) 0%, transparent 60%),
    linear-gradient(180deg, rgba(6, 8, 12, 0.5) 0%, var(--bg-void) 100%);
}

.hero-inner {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-visual { display: flex; justify-content: center; }

.hero-logo-ring {
  position: relative;
  width: min(420px, 90vw);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hero-float 6s ease-in-out infinite;
}

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

.hero-logo-glow {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-gold) 0%, transparent 70%);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 88%;
  border-radius: 12px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(201, 168, 76, 0.15);
  border: 1px solid var(--border-gold);
}

.hero-orbit {
  position: absolute;
  inset: -8%;
  border: 1px dashed rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  animation: orbit-spin 20s linear infinite;
}

.orbit-dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
}

.orbit-dot.d1 { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-dot.d2 { bottom: 15%; right: 5%; }
.orbit-dot.d3 { bottom: 15%; left: 5%; }

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

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

.title-line {
  display: block;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  letter-spacing: 0.06em;
}

.title-accent {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 40%, var(--bronze) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 20px var(--glow-gold));
}

.hero-bio {
  font-size: 1.05rem;
  color: var(--gold-bright);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.hero-desc {
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

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

.contract-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
  max-width: 100%;
}

.contract-box:hover { border-color: var(--gold); box-shadow: 0 0 20px var(--glow-gold); }
.contract-box.copied-flash { animation: copy-flash 0.6s ease; }

@keyframes copy-flash {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 30px var(--glow-gold); }
}

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

.contract-box code {
  font-family: "Courier New", monospace;
  font-size: 0.78rem;
  color: var(--gold-bright);
  word-break: break-all;
  flex: 1;
  min-width: 0;
}

.copy-btn {
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--border-gold);
  flex-shrink: 0;
  transition: background 0.3s;
}

.copy-btn:hover { background: rgba(201, 168, 76, 0.3); }
.copy-btn.copied { background: var(--gold); color: #1a1208; }

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
  animation: cue-bounce 2s ease-in-out infinite;
}

.scroll-cue-text {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

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

/* ─── Sections ─── */
.section {
  position: relative;
  z-index: 10;
  padding: 6rem 1.5rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.title-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.title-ornament span:not(.diamond) {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.title-ornament .diamond {
  color: var(--gold);
  font-size: 0.6rem;
}

.title-ornament.light span:not(.diamond) {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
}

.section-sub.light { color: rgba(255, 255, 255, 0.7); }

/* ─── About ─── */
.about {
  background: linear-gradient(180deg, transparent, rgba(18, 24, 32, 0.5) 50%, transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text .lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

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

.stat-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar-card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}

.pillar-card:hover {
  transform: translateX(8px);
  border-color: var(--border-gold);
  box-shadow: -4px 0 24px var(--glow-gold);
}

.pillar-icon { font-size: 1.8rem; display: block; margin-bottom: 0.5rem; }

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  margin-bottom: 0.35rem;
}

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

/* ─── How to Buy ─── */
.howtobuy {
  background:
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

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

.step-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease), border-color 0.4s;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--gold-bright), var(--bronze));
  opacity: 0;
  transition: opacity 0.4s;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.step-card:hover::before { opacity: 1; }

.step-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.25);
  line-height: 1;
  flex-shrink: 0;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  margin-bottom: 0.4rem;
}

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

.step-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.buy-cta { text-align: center; }

/* ─── Chart ─── */
.chart-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.08);
  margin-bottom: 1.5rem;
  min-height: 480px;
  background: var(--bg-storm);
}

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

.chart-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--bg-storm);
  z-index: 2;
}

.chart-placeholder.hidden { display: none; }

.chart-placeholder-icon {
  width: 64px;
  height: 64px;
  opacity: 0.5;
  animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

.chart-placeholder p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.chart .btn-outline-gold {
  display: flex;
  margin: 0 auto;
}

/* ─── Join Us ─── */
.joinus {
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 7rem;
}

.joinus-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.joinus-banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: blur(2px);
}

.joinus-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg-void) 0%, rgba(6, 8, 12, 0.7) 30%, rgba(6, 8, 12, 0.85) 70%, var(--bg-void) 100%);
}

.joinus-inner { position: relative; z-index: 2; }

.joinus-banner-card {
  position: relative;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border-gold);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(201, 168, 76, 0.12);
}

.banner-showcase {
  width: 100%;
  display: block;
  animation: banner-breathe 8s ease-in-out infinite;
}

@keyframes banner-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.banner-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.08) 50%, transparent 58%);
  animation: banner-shine 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes banner-shine {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.social-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}

.social-tile:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.social-tile.gold-tile {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--border-gold);
}

.social-svg {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.social-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text);
}

.social-handle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.joinus-motto {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}

/* ─── Footer ─── */
.footer {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(6, 8, 12, 0.8);
}

.footer-emblem {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 1px solid var(--border-gold);
  opacity: 0.8;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.footer-name span { color: var(--gold); }

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.footer-links a:hover {
  border-color: var(--border-gold);
  box-shadow: 0 0 16px var(--glow-gold);
  transform: translateY(-2px);
}

.footer-links img { width: 18px; height: 18px; object-fit: contain; }

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

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

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

.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .contract-box { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; max-width: 320px; }
}

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

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    background: rgba(6, 8, 12, 0.97);
    border-bottom: 1px solid var(--border-gold);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s;
    pointer-events: none;
  }

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

  .chart-frame { min-height: 380px; }
  .chart-frame iframe { height: 400px; }

  .hero-logo-ring { width: min(320px, 85vw); }
}

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