/* ============================================
   THE AMERICAN ROBINHOOD — $ROBINTRUMP
   Grand Patriotic Medieval Theme
   ============================================ */

:root {
  --green-deep: #0a1f14;
  --green-dark: #0f2e1c;
  --green-mid: #1a4a2e;
  --green-light: #2d6b45;
  --green-glow: #3d8f5a;
  --gold: #d4a843;
  --gold-light: #f0d78c;
  --gold-dark: #b8860b;
  --red: #c0392b;
  --red-light: #e74c3c;
  --cream: #f5f0e1;
  --cream-dim: #c8c0a8;
  --white: #ffffff;
  --black: #050a07;
  --font-display: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Inter', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--green-deep);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}

/* Particles */
.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--green-deep);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-gold:hover::after {
  transform: translateX(100%);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(212, 168, 67, 0.1);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 0.9rem; }
.btn-xl { padding: 1.2rem 3rem; font-size: 1rem; }
.btn-icon { font-size: 1.2em; }

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(10, 31, 20, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  padding: 0.6rem 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.nav-brand {
  display: flex;
  flex-direction: column;
}

.nav-name {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.nav-ticker {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
}

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

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cream-dim);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

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

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

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

.nav-cta {
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
}

.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);
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 31, 20, 0.55) 0%, rgba(10, 31, 20, 0.25) 35%, rgba(10, 31, 20, 0.9) 100%),
    radial-gradient(ellipse at 50% 40%, transparent 25%, rgba(10, 31, 20, 0.55) 100%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 220px 60px rgba(5, 10, 7, 0.85);
  pointer-events: none;
}

.hero-mist {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(180, 210, 190, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(160, 200, 170, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 85%, rgba(160, 200, 170, 0.08) 0%, transparent 50%);
  animation: mist-drift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes mist-drift {
  0% { opacity: 0.5; transform: translateX(-2%); }
  100% { opacity: 0.9; transform: translateX(2%); }
}

.hero-crest {
  display: inline-block;
  margin-bottom: 1.75rem;
  animation: fade-up 1s ease 0.1s both;
}

.hero-crest img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 45px rgba(212, 168, 67, 0.45), 0 8px 30px rgba(0, 0, 0, 0.5);
  animation: crest-float 5s ease-in-out infinite;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 2rem 4rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 67, 0.3);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  background: rgba(10, 31, 20, 0.5);
  backdrop-filter: blur(10px);
  animation: fade-up 1s ease 0.2s both;
}

.badge-star { color: var(--gold-light); }

.hero-title {
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
  animation: fade-up 1s ease 0.4s both;
}

.title-line {
  display: block;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.title-accent {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-ticker {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  animation: fade-up 1s ease 0.5s both;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--cream-dim);
  margin-bottom: 2.5rem;
  animation: fade-up 1s ease 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fade-up 1s ease 0.7s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: rgba(10, 31, 20, 0.6);
  border: 1px solid rgba(212, 168, 67, 0.2);
  backdrop-filter: blur(10px);
  animation: fade-up 1s ease 0.9s both;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(212, 168, 67, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fade-up 1s ease 1.2s both;
}

.hero-scroll span {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section {
  padding: 7rem 0;
  position: relative;
}

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

.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold);
  font-size: 0.7rem;
}

.ornament-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Shared section background layer */
.section {
  isolation: isolate;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* About */
.about {
  background: var(--green-deep);
}

.about .section-bg {
  background-image: url("asset/bg-parchment.png");
}

.about .section-scrim {
  background: linear-gradient(180deg, rgba(10,31,20,0.88) 0%, rgba(10,31,20,0.8) 50%, rgba(15,46,28,0.92) 100%);
}

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

.about-frame {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.about-frame img {
  width: 100%;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 60px rgba(212, 168, 67, 0.2);
}

.frame-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--gold);
  border-style: solid;
}

.frame-corner.tl { top: -10px; left: -10px; border-width: 2px 0 0 2px; }
.frame-corner.tr { top: -10px; right: -10px; border-width: 2px 2px 0 0; }
.frame-corner.bl { bottom: -10px; left: -10px; border-width: 0 0 2px 2px; }
.frame-corner.br { bottom: -10px; right: -10px; border-width: 0 2px 2px 0; }

.about-text .lead {
  font-size: 1.35rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--cream-dim);
  margin-bottom: 1rem;
}

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

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pillar {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(212, 168, 67, 0.15);
  background: rgba(15, 46, 28, 0.72);
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.pillar:hover {
  border-color: rgba(212, 168, 67, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  margin: 0;
}

/* Tokenomics */
.tokenomics {
  background: var(--green-dark);
}

.tokenomics .section-bg {
  background-image: url("asset/bg-treasury.png");
}

.tokenomics .section-scrim {
  background: linear-gradient(180deg, rgba(10,31,20,0.9) 0%, rgba(5,10,7,0.82) 50%, rgba(10,31,20,0.92) 100%);
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.token-card {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(212, 168, 67, 0.15);
  background: rgba(10, 31, 20, 0.78);
  backdrop-filter: blur(5px);
  text-align: center;
  transition: var(--transition);
  overflow: hidden;
}

.token-card:hover {
  border-color: rgba(212, 168, 67, 0.4);
  transform: translateY(-4px);
}

.token-card.featured {
  border-color: var(--gold);
  background: rgba(26, 74, 46, 0.82);
}

.token-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 168, 67, 0.08), transparent 70%);
  pointer-events: none;
}

.token-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0.75rem;
}

.token-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.token-contract {
  font-size: 0.85rem;
  word-break: break-all;
  cursor: pointer;
}

.token-chart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.chart-ring {
  position: relative;
  width: 200px;
  height: 200px;
}

.donut {
  width: 100%;
  height: 100%;
}

.donut-segment {
  animation: draw-ring 2s ease forwards;
}

@keyframes draw-ring {
  from { stroke-dasharray: 0 503; }
  to { stroke-dasharray: 377 126; }
}

.chart-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.chart-pct {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.chart-desc {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.chart-legend {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legend-item {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--cream-dim);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-dot.gold { background: var(--gold); }
.legend-dot.green { background: var(--green-light); }
.legend-dot.red { background: var(--red); }

/* How to Buy */
.buy {
  background: var(--green-deep);
}

.buy .section-bg {
  background-image: url("asset/bg-archery.png");
}

.buy .section-scrim {
  background: linear-gradient(180deg, rgba(10,31,20,0.9) 0%, rgba(5,10,7,0.8) 50%, rgba(10,31,20,0.92) 100%);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid rgba(212, 168, 67, 0.3);
  border-radius: 50%;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-top: 4.5rem;
  flex-shrink: 0;
}

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

/* Roadmap */
.roadmap {
  background: var(--green-dark);
}

.roadmap .section-bg {
  background-image: url("asset/bg-castle.png");
}

.roadmap .section-scrim {
  background: linear-gradient(180deg, rgba(10,31,20,0.9) 0%, rgba(5,10,7,0.85) 50%, rgba(10,31,20,0.92) 100%);
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(212, 168, 67, 0.2));
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  padding-bottom: 3rem;
  opacity: 0.6;
  transition: var(--transition);
}

.timeline-item.active,
.timeline-item:hover {
  opacity: 1;
}

.timeline-marker {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--green-dark);
  z-index: 1;
  transition: var(--transition);
}

.timeline-item.active .timeline-marker {
  background: var(--gold);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.5);
}

.timeline-phase {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.timeline-content {
  background: rgba(10, 31, 20, 0.68);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(212, 168, 67, 0.12);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0.5rem 0 1rem;
  letter-spacing: 0.04em;
}

.timeline-content ul {
  list-style: none;
}

.timeline-content li {
  font-size: 0.95rem;
  color: var(--cream-dim);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.timeline-content li::before {
  content: '➤';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
}

/* Community */
.community {
  background: var(--green-deep);
}

.community .section-bg {
  background-image: url("asset/bg-campfire.png");
}

.community .section-scrim {
  background: linear-gradient(180deg, rgba(10,31,20,0.9) 0%, rgba(5,10,7,0.82) 50%, rgba(10,31,20,0.95) 100%);
}

.community-lead {
  text-align: center;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream-dim);
  margin-bottom: 3rem;
}

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

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(212, 168, 67, 0.15);
  background: rgba(10, 31, 20, 0.78);
  backdrop-filter: blur(5px);
  text-decoration: none;
  transition: var(--transition);
}

.social-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  background: rgba(26, 74, 46, 0.3);
}

.social-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.social-icon svg {
  width: 100%;
  height: 100%;
}

.social-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.social-handle {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--cream-dim);
}

/* Footer */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(212, 168, 67, 0.1);
  background: var(--black);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

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

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

.footer-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.06em;
}

.footer-ticker {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.footer-disclaimer {
  max-width: 500px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(200, 192, 168, 0.5);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 168, 67, 0.08);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom span {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: rgba(200, 192, 168, 0.4);
}

.footer-motto {
  font-style: italic;
  color: var(--gold) !important;
  opacity: 0.6;
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive */
@media (max-width: 968px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 31, 20, 0.97);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  }

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

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

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

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    width: 2px;
    height: 30px;
    margin: 0;
  }

  .social-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

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

  .hero-stats {
    gap: 0.5rem;
  }

  .stat {
    padding: 0.5rem 1rem;
  }

  .stat-divider {
    display: none;
  }

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

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