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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0f;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-gradient {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -2;
}

.bg-grid {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo {
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: #9ca3af; text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

.btn-outline {
  background: transparent;
  color: #a855f7;
  border: 1px solid #a855f7;
}
.btn-outline:hover { background: rgba(168, 85, 247, 0.1); }

.btn-full { width: 100%; }
.btn-large { padding: 16px 32px; font-size: 16px; }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.hero-content { flex: 1; }

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #a855f7;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: #9ca3af;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-cta { display: flex; gap: 16px; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; }
.stat { display: flex; flex-direction: column; }
.stat-value {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 13px; color: #6b7280; }

.hero-visual { flex: 1; display: flex; justify-content: center; }

.browser-mockup {
  width: 100%;
  max-width: 480px;
  background: #1a1a2e;
  border-radius: 12px;
  border: 1px solid #2a2a4a;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 60px rgba(124, 58, 237, 0.1);
}

.browser-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #0f0f1a;
  border-bottom: 1px solid #2a2a4a;
}

.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; background: #3b3b5c; }
.browser-dots span:first-child { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #eab308; }
.browser-dots span:last-child { background: #22c55e; }

.browser-url {
  flex: 1;
  padding: 6px 12px;
  background: #1a1a2e;
  border-radius: 6px;
  font-size: 12px;
  color: #6b7280;
}

.browser-content { padding: 20px; }

.tweet-mockup {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: #0f0f1a;
  border-radius: 12px;
  border: 1px solid #2a2a4a;
}

.tweet-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.tweet-body { flex: 1; min-width: 0; }
.tweet-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.tweet-name { font-weight: 700; font-size: 14px; }
.tweet-handle { color: #6b7280; font-size: 14px; }
.tweet-text { font-size: 15px; margin-bottom: 12px; }

img.tweet-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.tweet-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #6b7280;
  font-size: 13px;
  flex-wrap: nowrap;
}

.tweet-text {
  font-size: 15px;
  margin-bottom: 12px;
  white-space: normal;
  word-wrap: break-word;
}

.launch-btn-demo {
  margin-left: auto;
  padding: 6px 12px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border: none;
  border-radius: 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); }
}


.features { padding: 100px 0; }

.section-title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: #9ca3af;
  font-size: 18px;
  margin-bottom: 60px;
}

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

.feature-card {
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 15, 26, 0.8) 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: #7c3aed;
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
}

.feature-card.pro-feature { border-color: rgba(236, 72, 153, 0.3); }
.feature-card.pro-feature:hover { border-color: #ec4899; }

.feature-icon { font-size: 36px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: #9ca3af; font-size: 14px; }

.pro-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  background: linear-gradient(135deg, #ec4899, #f97316);
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
}

.how-it-works {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.05) 0%, transparent 100%);
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.step { text-align: center; padding: 32px; max-width: 200px; }

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { color: #9ca3af; font-size: 14px; }
.step-arrow { color: #3b3b5c; font-size: 24px; }

.pricing { padding: 100px 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto 60px;
}

.pricing-card {
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
  border: 1px solid #2a2a4a;
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

.pricing-card.featured {
  border-color: #7c3aed;
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.pricing-header { text-align: center; margin-bottom: 32px; }
.pricing-header h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.price { font-size: 48px; font-weight: 800; margin-bottom: 8px; }

.token-price {
  font-size: 32px;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.token-symbol { display: block; font-size: 16px; color: #9ca3af; font-weight: 500; }
.pricing-header p { color: #6b7280; font-size: 14px; }

.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li { padding: 12px 0; border-bottom: 1px solid #2a2a4a; font-size: 14px; }
.pricing-features li.disabled { color: #4b5563; }

.token-info {
  text-align: center;
  padding: 40px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.1) 0%, transparent 100%);
  border-radius: 20px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  max-width: 600px;
  margin: 0 auto;
}

.token-info h3 { font-size: 20px; margin-bottom: 12px; }
.token-info p { color: #9ca3af; margin-bottom: 24px; }
.token-links { display: flex; gap: 16px; justify-content: center; }

.faq { padding: 100px 0; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 24px;
}

.faq-item h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.faq-item p { color: #9ca3af; font-size: 14px; }

.cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.1) 50%, transparent 100%);
}

.cta h2 { font-size: 42px; font-weight: 800; margin-bottom: 16px; }
.cta p { color: #9ca3af; font-size: 18px; margin-bottom: 32px; }

.footer { padding: 60px 0 30px; border-top: 1px solid #2a2a4a; }

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-brand p { color: #6b7280; font-size: 14px; margin-top: 8px; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { color: #9ca3af; text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #2a2a4a; }
.footer-bottom p { color: #4b5563; font-size: 13px; }

@media (max-width: 968px) {
  .hero { flex-direction: column; text-align: center; padding-top: 100px; }
  .hero-content { order: 1; }
  .hero-visual { order: 2; margin-top: 40px; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-cta, .hero-stats { justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 100px 20px 60px; gap: 30px; }
  .hero-title { font-size: 32px; }
  .hero-badge { font-size: 12px; padding: 6px 12px; }
  .hero-subtitle { font-size: 15px; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .stat-value { font-size: 24px; }
  .stat-label { font-size: 11px; }
  .browser-mockup { max-width: 100%; }
  .tweet-mockup { padding: 12px; gap: 10px; }
  .tweet-avatar { width: 40px; height: 40px; }
  .tweet-name { font-size: 13px; }
  .tweet-handle { font-size: 12px; }
  .tweet-text { font-size: 14px; margin-bottom: 10px; }
  .tweet-actions { gap: 10px; font-size: 11px; }
  .tweet-actions span { white-space: nowrap; }
  .launch-btn-demo { padding: 5px 10px; font-size: 10px; }
  .section-title { font-size: 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .nav-links a:not(.nav-social) { display: none; }
  .footer-content { flex-direction: column; gap: 24px; text-align: center; }
}
