/* ============================================================
   JOCOLA WORLD — Global Stylesheet
   Colors derived from JOCOLA logo: Crimson Red + Gold
   Day / Night toggle via [data-theme="light"] on <html>
   ============================================================ */

/* ── Google-like import for system fonts fallback ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  /* Brand palette */
  --red:        #C1272D;
  --red-deep:   #8B0000;
  --red-light:  #E03535;
  --gold:       #E8B84B;
  --gold-deep:  #B8860B;
  --gold-light: #F5D07A;
  --cream:      #FFF8F0;

  /* Dark theme (default) */
  --bg:         #080808;
  --bg2:        #120606;
  --bg3:        #1E0A0A;
  --surface:    #220E0E;
  --surface2:   #2E1212;
  --border:     rgba(225, 183, 75, 0.18);
  --text:       #F5EDD6;
  --text-muted: #A89070;
  --text-dim:   #6B4E35;
  --shadow:     rgba(0,0,0,0.7);
  --glow-red:   rgba(193,39,45,0.35);
  --glow-gold:  rgba(232,184,75,0.25);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Transitions */
  --transition: 0.3s ease;

  /* Layout */
  --max-w: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
}

/* ── Light Theme ── */
[data-theme="light"] {
  --bg:         #FFF8F0;
  --bg2:        #FFF0E0;
  --bg3:        #FFE8D0;
  --surface:    #FFFFFF;
  --surface2:   #FFF4E8;
  --border:     rgba(193,39,45,0.18);
  --text:       #1A0606;
  --text-muted: #6B3020;
  --text-dim:   #9B6040;
  --shadow:     rgba(100,20,20,0.12);
  --glow-red:   rgba(193,39,45,0.12);
  --glow-gold:  rgba(184,134,11,0.15);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
p  { font-size: 1.05rem; }

.gold-text  { color: var(--gold); }
.red-text   { color: var(--red); }
.muted      { color: var(--text-muted); }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
[data-theme="light"] .nav {
  background: rgba(255,248,240,0.94);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 42px; width: auto; }
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a { color: var(--text-muted); letter-spacing: 0.03em; }
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Theme toggle */
.theme-toggle {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); }
.theme-toggle .icon { font-size: 1rem; }

/* Nav CTA */
.btn-nav {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  border: 1px solid var(--red-light);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 20px var(--glow-red); }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  box-shadow: 0 4px 24px var(--glow-red);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--glow-red);
  color: #fff;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #0A0A0A;
  box-shadow: 0 4px 24px var(--glow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--glow-gold);
  color: #0A0A0A;
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0A0A0A;
}
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.88rem; }

/* ── CARDS ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px var(--glow-gold);
  transform: translateY(-4px);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, var(--glow-red) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(232,184,75,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,184,75,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,184,75,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  margin-bottom: 24px;
}
.hero-title .brand-name {
  display: block;
  background: linear-gradient(135deg, var(--red) 20%, var(--gold) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--gold);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero visual side */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero-logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-ring {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(var(--bg), var(--bg)) padding-box,
              linear-gradient(135deg, var(--red), var(--gold)) border-box;
  animation: rotate 20s linear infinite;
}
.hero-logo-ring::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid var(--border);
}
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-logo-img {
  position: relative;
  z-index: 2;
  width: 280px;
  filter: drop-shadow(0 0 40px var(--glow-red));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-token-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  text-align: center;
  width: 100%;
  max-width: 340px;
}
.token-symbol {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}
.token-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 4px;
}
.token-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
}
.token-discount {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}
.token-public {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title { margin-bottom: 16px; }
.section-desc { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* Divider */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  margin: 20px auto;
  border-radius: 2px;
}

/* ── ABOUT SECTION ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-placeholder {
  aspect-ratio: 4/3;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.about-img-placeholder .big-icon { font-size: 4rem; }
.about-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}
.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.98rem;
}
.about-list li::before {
  content: '◆';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.7rem;
}

/* ── TOKENOMICS CHART ── */
.tokenomics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.donut-container {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.donut-canvas { width: 100%; }
.donut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}
.donut-total { font-size: 1.5rem; font-weight: 700; color: var(--gold); font-family: var(--font-display); }
.donut-label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.05em; }
.token-allocation-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.allocation-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.allocation-item:hover { border-color: var(--gold); }
.alloc-dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex-shrink: 0;
}
.alloc-info { flex: 1; }
.alloc-name { font-weight: 600; font-size: 0.92rem; }
.alloc-detail { font-size: 0.78rem; color: var(--text-muted); }
.alloc-pct {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  font-family: var(--font-display);
}

/* ── ROADMAP ── */
.roadmap-timeline {
  position: relative;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--red), var(--gold), var(--red));
}
.roadmap-phase {
  position: relative;
  padding: 0 0 48px 36px;
}
.roadmap-phase:last-child { padding-bottom: 0; }
.roadmap-dot {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
}
.roadmap-dot.active {
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--glow-gold);
}
.phase-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.phase-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-weight: 600;
}
.phase-title { font-size: 1.2rem; font-weight: 700; }
.phase-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phase-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-muted);
}
.phase-item::before {
  content: '→';
  color: var(--red);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── TRIBES ── */
.tribes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.tribe-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
}
.tribe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--glow-red);
  border-color: var(--red);
}
.tribe-emoji { font-size: 2.8rem; margin-bottom: 14px; }
.tribe-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.tribe-tagline { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }
.tribe-desc { font-size: 0.82rem; color: var(--text-dim); }

/* ── NFT SECTION ── */
.nft-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.nft-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(var(--glow-gold), transparent 70%);
  pointer-events: none;
}
.nft-count {
  font-size: 5rem;
  font-weight: 900;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--gold), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.nft-desc { color: var(--text-muted); max-width: 500px; margin: 12px 0 28px; }
.nft-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.nft-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.nft-perk::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ── TOKEN SALE / BUY SECTION ── */
.buy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.buy-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.buy-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px var(--glow-gold);
}
.buy-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.buy-tier { font-size: 1.1rem; font-weight: 700; }
.buy-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #0A0A0A;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.buy-price-big {
  font-size: 2.8rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--text);
  margin-bottom: 4px;
}
.buy-price-big span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.buy-original {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 20px;
}
.buy-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
}
.buy-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.buy-feature .check { color: var(--gold); font-weight: 700; }
.buy-feature .x { color: var(--text-dim); }

/* Investment form */
.invest-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-input {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  width: 100%;
}
.form-input:focus {
  outline: none;
  border-color: var(--gold);
}
[data-theme="light"] .form-input { background: var(--bg3); }
.form-input::placeholder { color: var(--text-dim); }
.token-calc {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc-label { font-size: 0.85rem; color: var(--text-muted); }
.calc-value { font-size: 1.3rem; font-weight: 700; color: var(--gold); font-family: var(--font-display); }

/* Progress bar */
.sale-progress {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 40px;
}
.progress-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.progress-title { font-weight: 700; font-size: 1rem; }
.progress-pct { color: var(--gold); font-weight: 700; }
.progress-bar {
  background: var(--bg2);
  border-radius: 50px;
  height: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 50px;
  width: 23%;
  transition: width 1s ease;
}
.progress-meta { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--text-muted); }

/* ── LEGAL NOTICE ── */
.legal-notice {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.legal-notice strong { color: var(--red); }

/* ── TEAM / FOUNDERS ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
}
.team-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 6px; }
.team-role { font-size: 0.85rem; color: var(--gold); margin-bottom: 10px; font-weight: 600; }
.team-bio { font-size: 0.82rem; color: var(--text-muted); }

/* ── INVESTOR RIGHTS TABLE ── */
.rights-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.rights-table th {
  text-align: left;
  padding: 14px 18px;
  background: var(--surface);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.rights-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}
.rights-table tr:last-child td { border-bottom: none; }
.rights-table tr:hover td { background: var(--surface); color: var(--text); }
.rights-table .term-name { font-weight: 600; color: var(--text); white-space: nowrap; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  gap: 16px;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gold);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ── FOOTER ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 300px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 48px; }
.footer-tagline { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: pointer;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a { font-size: 0.82rem; color: var(--text-dim); }
.footer-legal-links a:hover { color: var(--text-muted); }
.footer-copy { font-size: 0.82rem; color: var(--text-dim); }
.footer-disclaimer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── ANNOUNCEMENT BANNER ── */
.announcement {
  background: linear-gradient(90deg, var(--red), var(--red-deep));
  padding: 10px 24px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.announcement a { color: var(--gold-light); text-decoration: underline; }

/* ── HIGHLIGHT BOXES ── */
.highlight-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.highlight-box.red-glow::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(var(--glow-red), transparent 70%);
  pointer-events: none;
}
.highlight-box.gold-glow::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(var(--glow-gold), transparent 70%);
  pointer-events: none;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-logo-ring { width: 260px; height: 260px; }
  .hero-logo-img { width: 200px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .tokenomics-grid { grid-template-columns: 1fr; }
  .buy-grid { grid-template-columns: 1fr; }
  .nft-banner { grid-template-columns: 1fr; padding: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .section { padding: 70px 0; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .tribes-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
