*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: #0c0c14;
  color: #d4d4dc;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ── Intro Overlay ── */
.intro-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: #000;
  display: flex; align-items: center; justify-content: center;
}
.intro-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.intro-video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.intro-continue {
  position: absolute;
  bottom: 60px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 48px;
  border-radius: 10px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.5s ease, background 0.2s;
  pointer-events: none;
}
.intro-continue.visible {
  opacity: 1;
  pointer-events: auto;
}
.intro-continue:hover {
  background: rgba(255,255,255,0.18);
}
body.intro-active {
  overflow: hidden;
}

/* ── X Community Button ── */
.x-community {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: #666;
  transition: color 0.2s, background 0.2s;
}
.x-community:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
ul { list-style: none; }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: rgba(12, 12, 20, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.logo {
  font-size: 1.3rem; font-weight: 700; letter-spacing: 3px;
  color: #fff;
}
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-tg {
  font-size: 0.85rem; font-weight: 600; color: #7eb8d4;
  transition: color 0.2s;
}
.nav-tg:hover { color: #3bb5e0; }
.nav-buy {
  font-size: 0.85rem; font-weight: 600;
  color: #0c0c14;
  background: #3bb5e0;
  padding: 8px 22px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-buy:hover { background: #2da0ca; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center; gap: 60px;
  padding: 120px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero-bg-logos {
  position: absolute; inset: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}
.bg-logo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(2px);
}
.bg-1 { width: 220px; top: 5%; left: 5%; animation: drift1 18s ease-in-out infinite; }
.bg-2 { width: 160px; top: 55%; right: 8%; animation: drift2 22s ease-in-out infinite; }
.bg-3 { width: 120px; top: 20%; left: 45%; animation: drift3 25s ease-in-out infinite; }
.bg-4 { width: 280px; bottom: -5%; left: 20%; animation: drift4 20s ease-in-out infinite; }
.bg-5 { width: 100px; top: 10%; right: 25%; animation: drift5 16s ease-in-out infinite; }

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(15px, 20px) rotate(5deg); }
  66% { transform: translate(-10px, 10px) rotate(-3deg); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  40% { transform: translate(-20px, -15px) rotate(-6deg); }
  70% { transform: translate(10px, -25px) rotate(4deg); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(25px, -20px) rotate(8deg); }
}
@keyframes drift4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  35% { transform: translate(-15px, -30px) rotate(-4deg); }
  65% { transform: translate(20px, -10px) rotate(6deg); }
}
@keyframes drift5 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  45% { transform: translate(-18px, 15px) rotate(-7deg); }
  80% { transform: translate(12px, -12px) rotate(3deg); }
}

.hero-left, .hero-right { position: relative; z-index: 1; }
.hero-left { flex: 1; max-width: 560px; }
.hero-left h1 {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -1px;
}
.subtitle {
  margin-top: 24px;
  font-size: 1.05rem;
  color: #8a8a9a;
  line-height: 1.7;
}
.subtitle-sm {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #3bb5e0;
  font-weight: 600;
}
.hero-actions {
  margin-top: 32px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: #3bb5e0;
  color: #0c0c14;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #2da0ca; transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  color: #d4d4dc;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s, transform 0.15s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-1px); }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

.ca-row {
  margin-top: 24px;
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.ca-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
  color: #555;
  text-transform: uppercase;
}
#ca-text {
  font-size: 0.8rem;
  color: #6a8fa8;
  word-break: break-all;
  background: rgba(255,255,255,0.03);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06);
}
.ca-copy {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  color: #3bb5e0;
  background: rgba(59, 181, 224, 0.08);
  border: 1px solid rgba(59, 181, 224, 0.15);
  padding: 6px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.ca-copy:hover { background: rgba(59, 181, 224, 0.15); }

.hero-right { flex: 0 0 auto; }
.hero-img {
  width: 380px; max-width: 80vw;
  border-radius: 20px;
  box-shadow:
    0 24px 80px rgba(59, 181, 224, 0.12),
    0 0 0 1px rgba(255,255,255,0.05);
  transition: transform 0.4s;
}
.hero-img:hover { transform: scale(1.03) rotate(-1deg); }

/* ── Stats ── */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  overflow: hidden;
  margin-left: 40px; margin-right: 40px;
}
.stat-card {
  display: flex; flex-direction: column; gap: 6px;
  padding: 28px 24px;
  background: rgba(12, 12, 20, 0.8);
  backdrop-filter: blur(10px);
}
.stat-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
}
.stat-value {
  font-size: 1.4rem; font-weight: 700; color: #fff;
}

/* ── Why ── */
.why {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}
.why h2 {
  font-size: 2.4rem; font-weight: 700; color: #fff;
  letter-spacing: -0.5px;
}
.why-intro {
  margin-top: 16px;
  font-size: 1rem;
  color: #6a6a7a;
  max-width: 560px;
  line-height: 1.8;
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.why-card {
  padding: 36px 32px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}
.why-card h3 {
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 20px; letter-spacing: 0.5px;
}
.why-card li {
  padding: 10px 0;
  font-size: 0.9rem;
  color: #8a8a9a;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  display: flex; align-items: center; gap: 10px;
}
.why-card li:last-child { border-bottom: none; }
.why-card li::before {
  flex-shrink: 0;
  font-size: 0.7rem;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-weight: 800;
}
.bad { border-color: rgba(220, 60, 60, 0.1); background: rgba(220, 60, 60, 0.02); }
.bad h3 { color: #dc5050; }
.bad li::before { content: "x"; color: #dc5050; background: rgba(220, 60, 60, 0.1); }
.good { border-color: rgba(59, 181, 224, 0.1); background: rgba(59, 181, 224, 0.02); }
.good h3 { color: #3bb5e0; }
.good li::before { content: "/"; color: #3bb5e0; background: rgba(59, 181, 224, 0.1); }

/* ── CTA ── */
.cta {
  text-align: center;
  padding: 80px 40px 100px;
  max-width: 600px;
  margin: 0 auto;
}
.cta h2 {
  font-size: 2rem; font-weight: 700; color: #fff;
}
.cta p {
  margin-top: 12px;
  color: #6a6a7a; font-size: 1rem;
}
.cta .btn-primary { margin-top: 28px; }

/* ── Footer ── */
footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.8rem; color: #444;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: #555; font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #3bb5e0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse; text-align: center;
    gap: 40px; padding: 100px 24px 60px;
  }
  .hero-left h1 { font-size: 2.8rem; }
  .hero-actions { justify-content: center; }
  .ca-row { justify-content: center; }
  .hero-img { width: 300px; }
  .stats { grid-template-columns: 1fr 1fr; margin-left: 24px; margin-right: 24px; }
  .why { padding: 60px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 500px) {
  .hero-left h1 { font-size: 2.2rem; }
  .stats { grid-template-columns: 1fr; }
  nav { padding: 14px 20px; }
}
