@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Press+Start+2P&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0a0f;
  color: #e8e8e8;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ========== PARTICLES ========== */
.particles {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ff6b35;
  border-radius: 50%;
  opacity: 0;
  animation: float-up linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-duration: 8s; animation-delay: 0s; width: 3px; height: 3px; }
.particle:nth-child(2) { left: 25%; animation-duration: 11s; animation-delay: 1s; width: 5px; height: 5px; background: #ff9f43; }
.particle:nth-child(3) { left: 40%; animation-duration: 9s; animation-delay: 2s; width: 3px; height: 3px; background: #ff4757; }
.particle:nth-child(4) { left: 55%; animation-duration: 12s; animation-delay: 0.5s; width: 4px; height: 4px; }
.particle:nth-child(5) { left: 70%; animation-duration: 10s; animation-delay: 3s; width: 6px; height: 6px; background: #ff9f43; }
.particle:nth-child(6) { left: 85%; animation-duration: 7s; animation-delay: 1.5s; width: 3px; height: 3px; background: #ff4757; }
.particle:nth-child(7) { left: 50%; animation-duration: 13s; animation-delay: 4s; width: 4px; height: 4px; }
.particle:nth-child(8) { left: 15%; animation-duration: 9s; animation-delay: 2.5s; width: 5px; height: 5px; background: #e74c3c; }
.particle:nth-child(9) { left: 90%; animation-duration: 10s; animation-delay: 0.8s; width: 3px; height: 3px; background: #ff9f43; }
.particle:nth-child(10) { left: 35%; animation-duration: 8s; animation-delay: 3.5s; width: 4px; height: 4px; }

@keyframes float-up {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.navbar-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #ff6b35, #e74c3c);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.navbar-logo-text {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: #f0f0f0;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.navbar-logo-text span {
  color: #ff6b35;
}

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

.navbar-links a {
  color: #a0a0b0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: #ff6b35;
}

.navbar-buy {
  background: linear-gradient(135deg, #ff6b35, #e74c3c);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.navbar-buy:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.5) !important;
  color: #fff !important;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #a0a0b0;
  border-radius: 2px;
  transition: 0.2s;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(231, 76, 60, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(155, 89, 182, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 0%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, #0a0a0f, transparent);
  z-index: -1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 100px;
  font-size: 12px;
  color: #ff6b35;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(28px, 6vw, 56px);
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b35, #ff9f43, #ff4757);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 40px rgba(255, 107, 53, 0.3));
}

.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: #a0a0b0;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35, #e74c3c);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #c0c0d0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  animation: glow-rotate 4s linear infinite;
}

@keyframes glow-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ========== SECTION ========== */
.section {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: #ff6b35;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #f0f0f0, #a0a0b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 16px;
  color: #808098;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ========== FEATURES GRID ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff6b35, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.2);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.08);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #f0f0f0;
}

.feature-card p {
  font-size: 13px;
  color: #808098;
  line-height: 1.6;
}

/* ========== HOW IT WORKS ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #ff6b35, #e74c3c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.step h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #f0f0f0;
}

.step p {
  font-size: 13px;
  color: #808098;
  line-height: 1.6;
}

/* ========== PRICE CARD ========== */
.price-section {
  text-align: center;
}

.price-card {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(231, 76, 60, 0.04));
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: 40px 48px;
  max-width: 440px;
  box-shadow: 0 8px 40px rgba(255, 107, 53, 0.08);
}

.price-amount {
  font-family: 'Press Start 2P', monospace;
  font-size: 32px;
  color: #ff6b35;
  margin-bottom: 4px;
}

.price-label {
  font-size: 14px;
  color: #808098;
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  color: #c0c0d0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li::before {
  content: '✓';
  color: #ff6b35;
  font-weight: 700;
}

/* ========== REVIEWS ========== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.review-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.3s;
}

.review-card:hover {
  border-color: rgba(255, 107, 53, 0.15);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-name {
  font-size: 13px;
  font-weight: 600;
  color: #f0f0f0;
}

.review-date {
  font-size: 11px;
  color: #606070;
}

.review-stars {
  color: #ff9f43;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.review-text {
  font-size: 13px;
  color: #a0a0b0;
  line-height: 1.6;
}

.review-meta {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  font-size: 11px;
  color: #606070;
}

.review-meta span {
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: #f0f0f0;
  cursor: pointer;
  padding: 4px 0;
  font-family: inherit;
  text-align: left;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: #ff6b35;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  color: #808098;
  font-size: 14px;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 12px;
}

/* ========== CTA SECTION ========== */
.cta-section {
  text-align: center;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at center, rgba(255, 107, 53, 0.06) 0%, transparent 60%);
  z-index: -1;
}

.cta-section h2 {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(18px, 3vw, 28px);
  color: #f0f0f0;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 15px;
  color: #808098;
  margin-bottom: 28px;
}

/* ========== FOOTER ========== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 12px;
  color: #606070;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #606070;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ff6b35;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 700px) {
  .navbar-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 16px 24px;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .navbar-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .price-card {
    padding: 28px 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
