:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a25;
  --fg: #e8e8ed;
  --fg-muted: #8a8a9a;
  --accent: #00e676;
  --accent-glow: rgba(0, 230, 118, 0.15);
  --gold: #ffd54f;
  --border: rgba(255,255,255,0.06);
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  color: var(--fg);
}

/* ---- HERO ---- */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 60px;
  align-items: center;
}
.nav { grid-column: 1 / -1; }
.hero-content { grid-column: 1; }
.hero-visual { grid-column: 2; justify-self: center; }

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* ticker widget */
.ticker {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  min-width: 300px;
  box-shadow: 0 0 80px rgba(0,230,118,0.06);
}
.tick-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.tick-row:last-child { border-bottom: none; }
.tick-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 500;
}
.tick-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}
.tick-val.green { color: var(--accent); }

/* ---- HOW IT WORKS ---- */
.how {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}
.section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 48px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  margin-bottom: 12px;
  line-height: 1;
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.how-step p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- NUMBERS ---- */
.numbers {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
}
.numbers-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.stat-block { text-align: center; flex: 1; min-width: 140px; }
.stat-big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-display);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ---- FEATURES ---- */
.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.3s;
}
.feature-card:hover {
  border-color: rgba(0,230,118,0.2);
}
.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.feature-card p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(0,230,118,0.04) 0%, transparent 70%);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.closing-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg-muted);
}
.footer-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ---- LANDING PAGE BUTTONS ---- */
.nav-links { margin-left: auto; }
.nav-store-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}
.nav-store-link:hover { opacity: 0.75; }

.hero-ctas { margin-top: 36px; }

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: -0.2px;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.closing-cta { margin-top: 36px; }

/* ---- STORE HEADER ---- */
.store-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.store-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.store-nav-links { display: flex; gap: 24px; align-items: center; }
.nav-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--fg); }

/* ---- STORE HERO ---- */
.store-hero {
  background: radial-gradient(ellipse at 30% 50%, rgba(0,230,118,0.05) 0%, transparent 60%);
  border-bottom: 1px solid var(--border);
  padding: 72px 24px;
}
.store-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.store-hero-inner .hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.store-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.store-hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ---- FILTER PILLS ---- */
.product-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.product-section-inner {}
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-pill {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.filter-pill:hover { border-color: rgba(255,255,255,0.15); color: var(--fg); }
.filter-pill.active {
  background: var(--accent-glow);
  border-color: rgba(0,230,118,0.3);
  color: var(--accent);
}

/* ---- PRODUCT GRID ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}
.product-card:hover {
  border-color: rgba(0,230,118,0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.product-card-emoji {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 4px;
}
.product-card-cat {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
}
.product-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.3px;
  color: var(--fg);
  flex: 1;
}
.product-card-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
}
.product-cta {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.2px;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 0 28px;
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* ---- BREADCRUMB ---- */
.breadcrumb-bar {
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.breadcrumb-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-link:hover { color: var(--fg); }
.breadcrumb-cat {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ---- PRODUCT DETAIL ---- */
.product-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}
.product-detail-emoji {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 16px;
}
.product-detail-cat {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}
.product-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.product-detail-tagline {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.product-detail-desc {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
}
.product-includes {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.product-includes-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.product-includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-includes-list li {
  font-size: 0.9rem;
  color: var(--fg);
}

/* ---- BUY CARD ---- */
.product-buy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: sticky;
  top: 80px;
}
.product-buy-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.product-buy-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.btn-buy {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}
.btn-buy:hover { opacity: 0.88; transform: translateY(-1px); }
.product-buy-secure {
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.product-buy-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}
.product-buy-features { display: flex; flex-direction: column; gap: 12px; }
.buy-feature-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--fg-muted);
}
.buy-feature-icon { font-size: 1rem; }

/* ---- MORE PRODUCTS ---- */
.more-products {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
}
.more-products-inner {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.more-products-inner p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.2); color: var(--accent); }

.btn-ghost {
  display: inline-block;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--fg); }

/* ---- SUCCESS PAGE ---- */
.success-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.success-inner {
  max-width: 520px;
  width: 100%;
  text-align: center;
}
.success-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
}
.success-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.3;
  animation: pulse-ring 2s ease-out infinite;
}
.success-check {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  background: var(--accent-glow);
  border-radius: 50%;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.15); opacity: 0.1; }
  100% { transform: scale(1); opacity: 0.3; }
}
.success-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.success-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.success-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.success-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}
.success-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.success-card-row:last-child { border-bottom: none; }
.success-card-label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-weight: 500;
}
.success-card-val {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
}
.success-card-val.green { color: var(--accent); }
.success-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 20px 20px 60px;
    gap: 40px;
  }
  .hero-content { grid-column: 1; }
  .hero-visual { grid-column: 1; justify-self: stretch; }
  .ticker { min-width: auto; }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .numbers-inner {
    flex-direction: column;
    gap: 24px;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

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

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-inner {
    grid-template-columns: 1fr;
  }

  .product-buy-card {
    position: static;
  }

  .trust-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .trust-divider { display: none; }

  .breadcrumb-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}