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

:root {
  --red: #b91c1c;
  --red-bright: #dc2626;
  --red-glow: rgba(220, 38, 38, 0.4);
  --blue: #1e3a8a;
  --blue-bright: #2563eb;
  --navy: #0a0e1a;
  --navy-light: #111827;
  --white: #f8fafc;
  --gray: #94a3b8;
  --gold: #fbbf24;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.stars-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 10%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 85%, rgba(255,255,255,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 15%, rgba(255,255,255,0.2) 0%, transparent 100%),
    linear-gradient(180deg, var(--navy) 0%, #0f172a 50%, var(--navy) 100%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s;
}

.nav.scrolled {
  background: rgba(10, 14, 26, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--red-bright) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--red) !important;
  transform: translateY(-1px);
}

.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(--white);
  transition: 0.3s;
}

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

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 26, 0.7) 0%, rgba(10, 14, 26, 0.85) 50%, rgba(10, 14, 26, 0.95) 100%),
    linear-gradient(90deg, rgba(30, 58, 138, 0.15) 0%, rgba(185, 28, 28, 0.15) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}

.hero-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--red-bright);
  box-shadow: 0 0 40px var(--red-glow), 0 0 80px rgba(30, 58, 138, 0.3);
  margin-bottom: 24px;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 40px var(--red-glow), 0 0 80px rgba(30, 58, 138, 0.3); }
  50% { box-shadow: 0 0 60px var(--red-glow), 0 0 100px rgba(30, 58, 138, 0.5); }
}

.hero-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

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

.hero-title .line {
  display: block;
  font-size: clamp(4rem, 12vw, 8rem);
  letter-spacing: 6px;
  color: var(--white);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.hero-title .line.accent {
  color: var(--red-bright);
  text-shadow: 0 0 40px var(--red-glow);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--red-bright);
  color: var(--white);
  border-color: var(--red-bright);
}

.btn-primary:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}

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

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
  margin-top: 12px;
}

.ca-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 24px;
  display: inline-block;
  backdrop-filter: blur(8px);
}

.ca-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 8px;
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ca-row code {
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  color: var(--gold);
  word-break: break-all;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

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

/* SECTIONS */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ABOUT */
.about {
  background:
    linear-gradient(180deg, transparent 0%, rgba(30, 58, 138, 0.05) 50%, transparent 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.about-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 38, 38, 0.3);
}

.about-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

.tweets-section {
  margin-top: 20px;
}

.tweets-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 32px;
}

.tweets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tweet-embed {
  display: flex;
  justify-content: center;
  min-height: 200px;
}

.tweet-embed .twitter-tweet {
  margin: 0 auto !important;
}

/* HOW TO BUY */
.howtobuy {
  background:
    linear-gradient(180deg, transparent 0%, rgba(185, 28, 28, 0.04) 50%, transparent 100%);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, var(--red-bright), var(--blue-bright));
  opacity: 0.3;
}

.step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
}

.step-num {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red-bright);
  background: rgba(220, 38, 38, 0.1);
  border: 2px solid rgba(220, 38, 38, 0.3);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.step-body {
  flex: 1;
  padding-top: 12px;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.step-body p {
  color: var(--gray);
  font-size: 0.95rem;
}

.inline-copy {
  margin-top: 12px;
}

.buy-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.buy-link-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s;
}

.buy-link-card:hover {
  border-color: var(--red-bright);
  background: rgba(220, 38, 38, 0.08);
  transform: translateY(-3px);
}

.buy-link-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--red-bright);
}

.buy-link-desc {
  font-size: 0.85rem;
  color: var(--gray);
}

/* CHART */
.chart-section {
  background:
    linear-gradient(180deg, transparent 0%, rgba(30, 58, 138, 0.05) 50%, transparent 100%);
}

.chart-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d1117;
  margin-bottom: 24px;
}

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

.chart-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* JOIN US */
.joinus {
  padding-top: 0;
  padding-bottom: 100px;
}

.joinus-banner {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  position: relative;
  margin-bottom: 60px;
}

.joinus-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--navy) 100%);
}

.joinus-banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.joinus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.joinus-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
}

.joinus-card.highlight {
  border-color: rgba(220, 38, 38, 0.4);
  background: rgba(220, 38, 38, 0.06);
}

.joinus-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.joinus-card p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--blue-bright);
  background: rgba(37, 99, 235, 0.1);
}

.join-ca {
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 16px;
  border-radius: 8px;
}

/* FOOTER */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0 32px;
  background: rgba(0, 0, 0, 0.3);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-disclaimer {
  color: var(--gray);
  font-size: 0.75rem;
  max-width: 500px;
  margin: 0 auto 12px;
  opacity: 0.7;
}

.footer-copy {
  color: var(--gray);
  font-size: 0.8rem;
  opacity: 0.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid,
  .buy-links,
  .joinus-grid,
  .tweets-grid {
    grid-template-columns: 1fr;
  }

  .chart-wrapper iframe {
    height: 500px;
  }
}

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

  .nav-links {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

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

  .hero-logo {
    width: 100px;
    height: 100px;
  }

  .steps::before {
    display: none;
  }

  .step {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .step-num {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .joinus-banner img {
    height: 250px;
  }

  .section {
    padding: 72px 0;
  }
}
