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

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --gold: #d4a853;
  --gold-light: #f0d68a;
  --gold-dark: #b8912e;
  --accent: #8b5cf6;
  --accent-light: #a78bfa;
  --text-primary: #f0f0f5;
  --text-secondary: #9898a8;
  --text-muted: #5a5a6e;
  --border: rgba(212,168,83,0.15);
  --border-light: rgba(255,255,255,0.06);
  --gradient-gold: linear-gradient(135deg, #d4a853, #f0d68a, #d4a853);
  --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
  --gradient-card: linear-gradient(145deg, rgba(22,22,31,0.8), rgba(18,18,26,0.4));
  --shadow-gold: 0 0 40px rgba(212,168,83,0.15);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

h1, h2, h3, h4, h5 { font-family: 'Outfit', sans-serif; line-height: 1.15; font-weight: 700; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

img { max-width: 100%; display: block; }

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

/* ===== ANIMATED BACKGROUND ===== */
.bg-glow {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 20%, rgba(212,168,83,0.06), transparent),
    radial-gradient(ellipse 500px 500px at 80% 60%, rgba(139,92,246,0.04), transparent);
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 16px 0;
  background: rgba(10,10,15,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.header.scrolled { padding: 10px 0; background: rgba(10,10,15,0.92); }
.nav { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800;
  background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.9rem; color: var(--text-secondary); font-weight: 500;
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--gradient-gold); transition: var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 28px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  background: var(--gradient-gold); color: var(--bg-primary);
  transition: var(--transition); border: none; cursor: pointer;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* Mobile menu */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text-primary); transition: var(--transition); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 80px; position: relative; overflow: hidden;
}
.hero-particles {
  position: absolute; inset: 0; z-index: 0;
}
.hero-particles canvas { width: 100%; height: 100%; }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  background: rgba(212,168,83,0.1); border: 1px solid var(--border);
  color: var(--gold-light); margin-bottom: 28px;
  animation: fadeInUp 0.8s ease both;
}
.hero-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900;
  margin-bottom: 24px; animation: fadeInUp 0.8s 0.15s ease both;
}
.hero h1 .highlight {
  background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-secondary);
  max-width: 640px; margin: 0 auto 40px; animation: fadeInUp 0.8s 0.3s ease both;
  line-height: 1.7;
}
.hero-cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.8s 0.45s ease both; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px; border-radius: 50px; font-size: 1rem; font-weight: 700;
  background: var(--gradient-gold); color: var(--bg-primary);
  border: none; cursor: pointer; transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%); transition: 0.6s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(212,168,83,0.3); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px; border-radius: 50px; font-size: 1rem; font-weight: 600;
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border); cursor: pointer; transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--gold); background: rgba(212,168,83,0.05); }
.hero-stats {
  display: flex; justify-content: center; gap: 48px; margin-top: 64px;
  animation: fadeInUp 0.8s 0.6s ease both;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: 'Outfit'; font-size: 2.2rem; font-weight: 800;
  background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-stat .label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* ===== SECTIONS COMMON ===== */
section { padding: 100px 0; position: relative; z-index: 1; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gold); margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--gold); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.section-desc { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* ===== MARKET SECTION ===== */
.market-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.market-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.market-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-gold); opacity: 0; transition: var(--transition);
}
.market-card:hover { transform: translateY(-4px); border-color: var(--border); background: var(--bg-card-hover); }
.market-card:hover::before { opacity: 1; }
.market-card .icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(212,168,83,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 24px;
}
.market-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.market-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

/* ===== STEPS ===== */
.steps-list { display: flex; flex-direction: column; gap: 32px; max-width: 800px; margin: 0 auto; }
.step-item {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 32px; border-radius: var(--radius);
  background: var(--gradient-card); border: 1px solid var(--border-light);
  transition: var(--transition);
}
.step-item:hover { border-color: var(--border); transform: translateX(8px); }
.step-num {
  min-width: 48px; height: 48px; border-radius: 12px;
  background: rgba(212,168,83,0.12); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit'; font-size: 1.2rem; font-weight: 800; color: var(--gold);
}
.step-content h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step-content p { color: var(--text-secondary); font-size: 0.95rem; }

/* ===== ABOUT ===== */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-avatar {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg);
  background: var(--gradient-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-avatar .avatar-inner {
  width: 80%; height: 80%; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(212,168,83,0.15), rgba(139,92,246,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
}
.about-text .section-desc { margin-bottom: 32px; }
.about-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.metric {
  padding: 20px; border-radius: var(--radius-sm);
  background: rgba(212,168,83,0.05); border: 1px solid var(--border);
}
.metric .val {
  font-family: 'Outfit'; font-size: 1.6rem; font-weight: 800;
  background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.metric .meta { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* ===== PRICING ===== */
.pricing-wrapper { display: flex; justify-content: center; }
.pricing-card {
  max-width: 560px; width: 100%;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px; position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 3px;
  background: var(--gradient-gold);
}
.pricing-card .badge-top {
  display: inline-block; padding: 6px 16px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  background: rgba(212,168,83,0.12); color: var(--gold); margin-bottom: 24px;
  letter-spacing: 1px;
}
.pricing-card h3 { font-size: 1.6rem; margin-bottom: 16px; }
.price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.price-current {
  font-family: 'Outfit'; font-size: 3.5rem; font-weight: 900;
  background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.price-old {
  font-size: 1.3rem; color: var(--text-muted);
  text-decoration: line-through;
}
.price-note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 32px; }
.pricing-features { list-style: none; margin-bottom: 36px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; font-size: 0.95rem; color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.pricing-card .btn-primary { width: 100%; justify-content: center; font-size: 1.1rem; padding: 18px; }

/* ===== TIMER ===== */
.timer-bar {
  background: rgba(212,168,83,0.06); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px 32px;
  display: flex; align-items: center; justify-content: center; gap: 24px;
  max-width: 560px; margin: 24px auto 0; flex-wrap: wrap;
}
.timer-text { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; }
.timer-digits { display: flex; gap: 8px; }
.timer-digits .t-block {
  background: rgba(212,168,83,0.1); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 12px; text-align: center; min-width: 52px;
}
.timer-digits .t-val {
  font-family: 'Outfit'; font-size: 1.3rem; font-weight: 800; color: var(--gold-light);
}
.timer-digits .t-label { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--gradient-card); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 32px; transition: var(--transition);
}
.review-card:hover { border-color: var(--border); transform: translateY(-4px); }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(212,168,83,0.15); display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: var(--gold);
}
.review-name { font-weight: 600; font-size: 0.9rem; }
.review-earned { font-size: 0.8rem; color: var(--gold); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--gradient-card); border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); overflow: hidden; transition: var(--transition);
}
.faq-item.active { border-color: var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 1rem;
  transition: var(--transition); gap: 16px; background: none; border: none;
  width: 100%; text-align: left; color: var(--text-primary); font-family: inherit;
}
.faq-q:hover { color: var(--gold-light); }
.faq-q .arrow { font-size: 1.2rem; color: var(--gold); transition: var(--transition); flex-shrink: 0; }
.faq-item.active .arrow { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a-inner { padding: 0 24px 20px; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

/* ===== CTA BOTTOM ===== */
.cta-section {
  text-align: center; padding: 100px 0;
  background: radial-gradient(ellipse 700px 400px at center, rgba(212,168,83,0.08), transparent);
}
.cta-section h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 20px; }
.cta-section p { color: var(--text-secondary); font-size: 1.1rem; max-width: 540px; margin: 0 auto 36px; }

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0; border-top: 1px solid var(--border-light);
  text-align: center; color: var(--text-muted); font-size: 0.85rem;
}
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); }
.footer-links a:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .market-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta.desktop { display: none; }
  .burger { display: flex; }

  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; width: 100%;
    background: rgba(10,10,15,0.96); backdrop-filter: blur(20px);
    padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--border-light);
  }

  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat .num { font-size: 1.6rem; }

  section { padding: 64px 0; }

  .market-grid, .reviews-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-avatar { max-width: 300px; margin: 0 auto; }

  .pricing-card { padding: 32px 24px; }
  .price-current { font-size: 2.5rem; }

  .step-item { flex-direction: column; gap: 16px; }

  .timer-bar { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
