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

:root {
  --red: #e53935;
  --red-dark: #b71c1c;
  --red-light: #ef5350;
  --red-glow: rgba(229, 57, 53, 0.35);
  --gold: #fbbf24;
  --bg: #0d0505;
  --bg2: #150808;
  --bg3: #1e0a0a;
  --text: #faf0f0;
  --muted: #c29090;
  --border: rgba(229, 57, 53, 0.2);
  --card: rgba(21, 8, 8, 0.85);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Animated background ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(229,57,53,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(183,28,28,0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* ── Grid overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(229,57,53,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229,57,53,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(13, 5, 5, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.nav-logo span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.nav-logo span em {
  color: var(--red);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-links a:hover { color: var(--red); background: rgba(229,57,53,0.08); }

.btn-buy {
  background: var(--red) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  padding: 9px 20px !important;
  transition: all 0.2s !important;
}

.btn-buy:hover {
  background: var(--red-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--red-glow) !important;
}

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229,57,53,0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red-light);
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #00e676;
  border-radius: 50%;
  box-shadow: 0 0 8px #00e676;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 28px;
  animation: fadeInUp 0.7s ease 0.1s both;
  filter: drop-shadow(0 0 36px var(--red-glow));
  border: 2px solid rgba(229,57,53,0.3);
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  animation: fadeInUp 0.7s ease 0.15s both;
}

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

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--muted);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

/* ── CA Box ── */
.ca-box {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  max-width: 600px;
  width: 100%;
  margin: 0 auto 48px;
  animation: fadeInUp 0.7s ease 0.25s both;
  backdrop-filter: blur(12px);
}

.ca-label {
  padding: 0 16px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  white-space: nowrap;
  border-right: 1px solid var(--border);
}

.ca-address {
  flex: 1;
  padding: 14px 16px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.82rem;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-copy {
  background: var(--red);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0 20px;
  height: 100%;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  min-height: 52px;
}

.ca-copy:hover { background: var(--red-light); }
.ca-copy.copied { background: #00e676; color: #0d0505; }

/* ── CTA Buttons ── */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  animation: fadeInUp 0.7s ease 0.3s both;
  margin-bottom: 60px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.cta-btn.primary {
  background: var(--red);
  color: #fff;
}

.cta-btn.primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--red-glow);
}

.cta-btn.outline {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.03);
}

.cta-btn.outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(229,57,53,0.06);
  transform: translateY(-2px);
}

/* ── Banner ── */
.banner-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.35s both;
}

.banner-wrap img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 80px rgba(229,57,53,0.2), 0 0 0 1px var(--border);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Section ── */
section {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
}

.section-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-desc {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ── Trade Links ── */
.trade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.trade-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.25s;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.trade-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.trade-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(229,57,53,0.15);
}

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

.trade-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
}

.trade-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.trade-card-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.trade-card-arrow {
  margin-top: auto;
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
  transition: gap 0.2s;
}

.trade-card:hover .trade-card-arrow { gap: 8px; }

/* ── Stats ── */
.stats-section {
  background: linear-gradient(135deg, rgba(229,57,53,0.07) 0%, rgba(183,28,28,0.04) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

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

.stat-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
}

.stat-box-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.stat-row:last-child { border-bottom: none; }

.stat-row-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.stat-row-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.stat-supply-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 6px;
}

.stat-supply-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.about-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.about-text h2 span { color: var(--red); }

.about-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-text strong {
  display: block;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.feature-text span {
  font-size: 0.83rem;
  color: var(--muted);
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-glow {
  position: relative;
}

.about-logo-glow img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px var(--red-glow));
  animation: float 4s ease-in-out infinite;
  border: 3px solid rgba(229,57,53,0.25);
}

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

.about-logo-glow::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* ── How to Buy ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  backdrop-filter: blur(12px);
  transition: all 0.25s;
}

.step-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(229,57,53,0.1);
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(229,57,53,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.step-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.step-card p code {
  background: rgba(229,57,53,0.12);
  color: var(--red-light);
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 0.78rem;
  word-break: break-all;
}

/* ── Community Section ── */
.community-section {
  background: linear-gradient(135deg, rgba(229,57,53,0.08) 0%, rgba(13,5,5,0) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.community-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.community-inner p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.85;
}

.community-inner p strong {
  color: var(--red-light);
  font-weight: 700;
}

/* ── Footer ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
}

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

.footer-logo img { width: 32px; height: 32px; border-radius: 50%; }

.footer-logo span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-logo span em { color: var(--red); font-style: normal; }

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.footer-links a:hover { color: var(--red); background: rgba(229,57,53,0.08); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(194, 144, 144, 0.5);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(194, 144, 144, 0.35);
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.6;
}

/* ── Ticker tape ── */
.ticker {
  position: relative;
  z-index: 1;
  background: rgba(229,57,53,0.06);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 12px 0;
}

.ticker-inner {
  display: flex;
  gap: 0;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red-light);
  letter-spacing: 0.05em;
}

.ticker-dot { color: rgba(229,57,53,0.4); }

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 3px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links a:not(.btn-buy) { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
}
