/* =====================================================
   ROOT & RESET
   ===================================================== */
:root {
  --bg:        #080808;
  --bg-card:   #0e0e0e;
  --bg-dark:   #040404;
  --border:    #1e1e1e;
  --border-hi: #2e2e2e;
  --red:       #c0392b;      /* single accent — used sparingly */
  --red-dim:   #922b21;
  --text:      #e5e5e5;
  --text-dim:  #6b6b6b;
  --white:     #ffffff;
  --font-head: 'Bebas Neue', 'Orbitron', sans-serif;
  --font-sub:  'Inter', 'Share Tech Mono', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --nav-h:     68px;
  --radius:    3px;
  --t:         0.2s ease;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sub);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
img { max-width: 100%; display: block; }

/* =====================================================
   UTILITY
   ===================================================== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

.accent { color: var(--red); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--white);
  color: #000;
  border-color: var(--white);
}
.btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--white);
}

.inline-link {
  color: var(--white);
  border-bottom: 1px solid var(--border-hi);
  transition: border-color var(--t);
}
.inline-link:hover { border-color: var(--white); }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(8, 8, 8, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
}
.navbar.scrolled { background: rgba(8, 8, 8, 0.96); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.nav-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  color: var(--white);
}

.nav-links { display: flex; gap: 32px; margin: 0 auto; }
.nav-links a {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--t);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  padding: 8px 22px;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: var(--t); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(4, 4, 4, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 40px 24px;
}
.mobile-link {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  transition: color var(--t);
}
.mobile-link:hover { color: var(--white); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: #040408;
  padding-top: var(--nav-h);
}

/* ── GIF / video background ── */
/* To use a GIF:    add class "hero-media" to an <img> tag inside .hero  */
/* To use a video:  add class "hero-media" to a <video> tag inside .hero */
.hero-media {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - var(--nav-h));
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* Dark cinematic overlay — heavier at top/bottom for text legibility */
.hero-overlay {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(to bottom,
      rgba(4,4,8,0.15)  0%,
      rgba(4,4,8,0.0)   30%,
      rgba(4,4,8,0.0)   55%,
      rgba(4,4,8,0.45)  80%,
      rgba(4,4,8,0.75)  100%
    ),
    linear-gradient(to right,
      rgba(4,4,8,0.15)  0%,
      rgba(4,4,8,0)     50%,
      rgba(4,4,8,0.15)  100%
    );
  z-index: 1;
}

/* Placeholder graphic shown before GIF is added */
.hero-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 60% 40%, #0d1520 0%, #040408 65%);
}
.hero-placeholder-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #2a2a2a;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 2;
  border: 1px dashed #1a1a1a;
  padding: 24px 40px;
  border-radius: var(--radius);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 28px 48px;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 14px;
}
.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400; /* Bebas Neue is naturally bold */
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 18px;
}
.hero-title em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 26px;
  line-height: 1.75;
  max-width: 520px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

/* CA bar */
.ca-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(14, 14, 14, 0.85);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  padding: 10px 16px;
  flex-wrap: wrap;
  backdrop-filter: blur(6px);
  max-width: 580px;
}
.ca-bar-sm { margin-top: 16px; max-width: 100%; }

.ca-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-transform: uppercase;
}
.ca-address {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  word-break: break-all;
  flex: 1;
  min-width: 0;
}
.small-ca { font-size: 0.68rem; }

.ca-copy {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  padding: 4px 12px;
  font-family: var(--font-sub);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--t), border-color var(--t);
  white-space: nowrap;
  flex-shrink: 0;
}
.ca-copy:hover { color: var(--white); border-color: var(--white); }

.ca-copied {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.ca-copied.show { opacity: 1; }

.scroll-arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 1.2rem;
  color: var(--text-dim);
  animation: bounceArrow 2s ease-in-out infinite;
  letter-spacing: 0;
}
@keyframes bounceArrow {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 0.8; }
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section      { padding: 104px 0; }
.section-dark { background: var(--bg-dark); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 12px;
  text-align: center;
}
.section-title-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--red);
  margin: 14px auto 0;
}
.section-sub {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.97rem;
  max-width: 620px;
  margin: 24px auto 56px;
  line-height: 1.85;
}
.section-sub strong { color: var(--text); font-weight: 600; }

/* =====================================================
   ABOUT CARDS
   ===================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;          /* gap = border illusion */
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 2px;
}

.card {
  background: var(--bg-card);
  padding: 40px 32px;
  transition: background var(--t);
}
.card:hover { background: #111; }

.card-eyebrow {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}
.card p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.78; }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  background: var(--border);
  gap: 1px;
  margin-top: 1px;
}
.stat-item {
  background: var(--bg-card);
  padding: 28px 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  font-weight: 500;
}

/* =====================================================
   TOKENOMICS
   ===================================================== */
.tokenomics-wrap {
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: center;
  flex-wrap: wrap;
}
.chart-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}
.chart-center-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.chart-center-num {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}
.chart-center-sub {
  font-family: var(--font-sub);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 5px;
}

.token-legend { display: flex; flex-direction: column; gap: 16px; min-width: 280px; }
.legend-item  { display: flex; align-items: center; gap: 14px; }
.legend-dot   { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.legend-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dim);
  flex: 1;
  letter-spacing: 0.02em;
}
.legend-pct {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 400;
}

/* =====================================================
   HOW TO BUY
   ===================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.step-card {
  background: var(--bg-card);
  padding: 36px 28px;
  transition: background var(--t);
}
.step-card:hover { background: #111; }

.step-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--border-hi);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0;
}
.step-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 10px;
}
.step-card p { font-size: 0.86rem; color: var(--text-dim); line-height: 1.75; }

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

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  margin-bottom: 2px;
  background: var(--border);
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
  background: var(--bg-dark);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  flex-shrink: 0;
}
.timeline-phase {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  line-height: 1.1;
}
.timeline-status {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 2px;
}
.status-done {
  background: rgba(192, 57, 43, 0.15);
  color: var(--red);
  border: 1px solid rgba(192, 57, 43, 0.3);
}
.status-progress {
  background: rgba(217, 119, 6, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(217, 119, 6, 0.35);
}
.status-pending {
  background: rgba(107, 107, 107, 0.1);
  color: var(--text-dim);
  border: 1px solid var(--border-hi);
}

.timeline-content {
  background: var(--bg-card);
  padding: 28px 28px;
}
.timeline-content h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 14px;
}
.timeline-content ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.timeline-content ul li {
  font-size: 0.86rem;
  color: var(--text-dim);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.timeline-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--border-hi);
  font-size: 0.7rem;
  top: 3px;
}
.timeline-item.done .timeline-content ul li { color: #9ca3af; }
.timeline-item.done .timeline-content ul li::before { content: '✓'; color: var(--red); font-size: 0.65rem; }

/* =====================================================
   COMMUNITY
   ===================================================== */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 760px;
  margin: 0 auto;
}
.social-card {
  background: var(--bg-card);
  padding: 44px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background var(--t);
}
.social-card:hover { background: #111; }
.social-icon { color: var(--text-dim); transition: color var(--t); }
.social-card:hover .social-icon { color: var(--white); }
.social-card .social-name {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--white);
}
.social-handle {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 52px 0 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}
.footer-brand .nav-name { font-size: 1.5rem; margin-bottom: 12px; }
.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-dim);
  max-width: 340px;
  line-height: 1.75;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.footer-links-col a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--t);
}
.footer-links-col a:hover { color: var(--white); }

.footer-ca {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 28px;
}

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

.footer-disclaimer-box {
  background: rgba(192, 57, 43, 0.04);
  border: 1px solid rgba(192, 57, 43, 0.12);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 28px;
}
.footer-disclaimer {
  font-size: 0.76rem;
  color: var(--text-dim);
  line-height: 1.8;
}
.footer-disclaimer strong { color: var(--red); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.72rem;
  color: #333;
  letter-spacing: 0.06em;
}

/* =====================================================
   RESPONSIVE — TABLET (≤ 900px)
   ===================================================== */
@media (max-width: 900px) {
  .steps-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-row   { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links-col { align-items: flex-start; }
}

/* =====================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ===================================================== */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* ── Mobile hero: video full-width on top, content below ── */
  .hero {
    height: auto;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    padding-top: var(--nav-h);
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    flex-shrink: 0;
  }

  .hero-overlay { display: none; }

  /* Content moves below the video with a solid background */
  .hero-content {
    position: relative;
    background: var(--bg);
    padding: 32px 24px 40px;
    margin-top: 0;
    text-align: center;
  }

  .scroll-arrow { display: none; }

  .hero-eyebrow { justify-content: center; }
  .hero-title   { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero-buttons { justify-content: center; }
  .ca-bar       { justify-content: center; }

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

  .tokenomics-wrap { flex-direction: column; gap: 40px; }
  .chart-wrap      { width: 240px; height: 240px; }

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

  .timeline-item   { grid-template-columns: 1fr; gap: 0; }
  .timeline-marker { flex-direction: row; align-items: center; padding: 16px 20px; }

  .socials-grid    { grid-template-columns: 1fr; max-width: 320px; }

  .section { padding: 72px 0; }
  .section-sub { margin-bottom: 40px; }
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
