/* ── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #07091a;
  --surface:  #0d1326;
  --surface2: #162040;
  --border:   #1e2d55;
  --accent:   #7c6cf6;
  --accent2:  #6b5cf0;
  --discord:  #7289da;
  --green:    #2dd55b;
  --text:     #dde4f7;
  --muted:    #6878a8;
  --radius:   12px;
  --font:     'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
  background-color: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Ccircle cx='45' cy='45' r='38' fill='none' stroke='rgba(124%2C108%2C246%2C0.05)' stroke-width='1.5'/%3E%3Cline x1='7' y1='45' x2='83' y2='45' stroke='rgba(124%2C108%2C246%2C0.05)' stroke-width='1.5'/%3E%3Ccircle cx='45' cy='45' r='10' fill='none' stroke='rgba(124%2C108%2C246%2C0.05)' stroke-width='1.5'/%3E%3Ccircle cx='45' cy='45' r='4' fill='rgba(124%2C108%2C246%2C0.05)'/%3E%3C/svg%3E");
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
}

html { scroll-behavior: smooth; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.accent { color: var(--accent); }
.muted  { color: var(--muted); }

/* ── Nav ───────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 26, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.3px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
}

.nav-links a { color: var(--muted); transition: color 0.15s; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-discord { color: var(--discord) !important; font-weight: 600; }

.nav-cta {
  background: var(--accent);
  color: #ffffff !important;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 8px;
  transition: opacity 0.15s !important;
}
.nav-cta:hover { opacity: 0.85; text-decoration: none !important; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 8px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 16px;
  gap: 12px;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { color: var(--muted); font-size: 0.95rem; }
.nav-mobile a:hover { color: var(--text); }
.nav-mobile-cta {
  background: var(--accent);
  color: #ffffff !important;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  text-align: center;
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 48px 20px 40px; }
  .hero-mockup { order: -1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 108, 246, 0.1);
  border: 1px solid rgba(124, 108, 246, 0.25);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-sub strong { color: var(--text); }

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn-hero-primary {
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: transform 0.15s, opacity 0.15s;
  box-shadow: 0 4px 24px rgba(124, 108, 246, 0.3);
}
.btn-hero-primary:hover { transform: translateY(-2px); opacity: 0.92; text-decoration: none; }

.btn-hero-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: background 0.15s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.1); text-decoration: none; }

.hero-hint { font-size: 0.82rem; color: var(--muted); }
.hero-hint a { color: var(--accent); }

/* ── Mockup ─────────────────────────────────────────────────────────────── */
.hero-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mockup-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.3px;
  font-weight: 600;
  text-align: center;
}

.mockup-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.mockup-badge-best {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(124, 108, 246, 0.12);
  border: 1px solid rgba(124, 108, 246, 0.25);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 99px;
}

.mockup-in-stock {
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 600;
}

.mockup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
}
.mockup-row:last-of-type { border-bottom: none; }
.mockup-store { color: var(--muted); }
.mockup-price { font-weight: 700; }
.mockup-price.accent { color: var(--accent); }
.mockup-price.muted { color: var(--muted); font-size: 0.8rem; font-weight: 400; }

.mockup-divider { border-top: 1px solid var(--border); margin: 12px 0 10px; }

.mockup-alert {
  background: rgba(124, 108, 246, 0.08);
  border: 1px solid rgba(124, 108, 246, 0.2);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 0.8rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 10px;
}

.mockup-history {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 0;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.78rem;
}
.mockup-history-label { color: var(--muted); }
.mockup-history-val { font-weight: 700; text-align: right; }

/* ── Proof bar ──────────────────────────────────────────────────────────── */
.proof-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}

.proof-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 40px;
  gap: 2px;
}

.proof-num {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.3px;
}

.proof-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

@media (max-width: 600px) {
  .proof-inner { gap: 8px; }
  .proof-stat { padding: 8px 20px; }
  .proof-divider { display: none; }
}

/* ── Sections ───────────────────────────────────────────────────────────── */
.section { padding: 80px 24px; }
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 48px;
  font-size: 1rem;
}

/* ── Steps ──────────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 640px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px 28px;
  position: relative;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.step:hover { border-color: rgba(124, 108, 246, 0.3); transform: translateY(-3px); }

.step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
  font-size: 0.8rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon { font-size: 2rem; margin: 12px 0 14px; }
.step h3 { font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.9rem; }

/* ── Store grid ─────────────────────────────────────────────────────────── */
.store-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.store-chip {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 7px 16px;
  font-size: 0.85rem;
  color: var(--text);
  transition: border-color 0.15s;
}
.store-chip:hover { border-color: rgba(124, 108, 246, 0.3); }

.stores-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 16px;
}

/* ── Features ───────────────────────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .features { grid-template-columns: 1fr; } }

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  transition: border-color 0.2s;
}
.feature:hover { border-color: rgba(124, 108, 246, 0.25); }
.feature-icon { font-size: 1.8rem; margin-bottom: 12px; }
.feature h3 { font-weight: 700; margin-bottom: 8px; font-size: 0.95rem; }
.feature p { color: var(--muted); font-size: 0.85rem; }

/* ── Pricing ────────────────────────────────────────────────────────────── */
.pricing-card {
  background: linear-gradient(135deg, #0e1c4a 0%, #0b1535 55%, #1a0e40 100%);
  border: 1px solid rgba(124, 108, 246, 0.3);
  border-radius: 20px;
  padding: 48px 48px 36px;
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 8px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(124, 108, 246, 0.08);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 16px;
  border-radius: 99px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 28px;
}
.pricing-dollar { font-size: 1.4rem; vertical-align: top; margin-top: 10px; display: inline-block; font-weight: 700; }
.pricing-period { font-size: 1rem; color: var(--muted); font-weight: 400; }

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.pricing-features li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}
.pricing-features li:last-child { border-bottom: none; }

.btn-pricing {
  display: block;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px;
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: opacity 0.15s, transform 0.15s;
}
.btn-pricing:hover { opacity: 0.9; transform: translateY(-1px); text-decoration: none; }

.pricing-hint { font-size: 0.78rem; color: var(--muted); }

/* ── CTA section ────────────────────────────────────────────────────────── */
.cta-section { text-align: center; }
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; }
.cta-inner p { color: var(--muted); }
.cta-logo { width: 72px; height: 72px; object-fit: contain; border-radius: 14px; }
.cta-inner .hero-btns { justify-content: center; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 36px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }

.footer-copy { font-size: 0.75rem; color: var(--muted); }
