/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
  --bg:          #080e08;
  --surface:     #0f1a0f;
  --card:        #152015;
  --card-hover:  #1a2a1a;
  --border:      rgba(180, 150, 50, 0.2);
  --border-hi:   rgba(201, 168, 76, 0.5);
  --gold:        #c9a84c;
  --gold-light:  #e8d898;
  --green:       #22c55e;
  --text:        #f0f0e8;
  --text-muted:  #8a9a7a;
  --text-dim:    #5a6a5a;
  --radius:      12px;
  --shadow:      0 8px 32px rgba(0,0,0,0.5);
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 14, 8, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--gold-light); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--text-muted); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.btn-nav {
  background: var(--gold);
  color: #0a0f0a !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s, transform .1s;
}
.btn-nav:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 96px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.suits {
  font-size: 28px;
  letter-spacing: 12px;
  margin-bottom: 24px;
  opacity: 0.4;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero h1 .gold { color: var(--gold); }
.hero h1 .light { color: var(--gold-light); }
.hero p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
}
.badge .icon { color: var(--gold); }

/* ── Section ──────────────────────────────────────────────────────────────── */
.section { padding: 80px 24px; }
.section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  text-align: center;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 56px;
}
.container { max-width: 1100px; margin: 0 auto; }

/* ── Product Cards ────────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.product-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
  box-shadow: var(--shadow), 0 0 40px rgba(201,168,76,0.06);
}
.product-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1e3220 0%, var(--card) 60%);
}
.product-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0a0f0a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.product-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.product-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.product-price .amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.product-price .currency {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  align-self: flex-start;
  margin-top: 8px;
}
.product-price .one-time {
  font-size: 13px;
  color: var(--text-dim);
}
.features {
  list-style: none;
  flex: 1;
  margin-bottom: 32px;
}
.features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.features li:last-child { border-bottom: none; }
.features .check { color: var(--green); font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.btn-buy {
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform .15s, box-shadow .15s, background .2s;
  letter-spacing: 0.3px;
}
.btn-buy-primary {
  background: var(--gold);
  color: #0a0f0a;
}
.btn-buy-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn-buy-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-buy-outline:hover {
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
}
.btn-buy:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
.btn-loading::after {
  content: ' ...';
}

/* ── How It Works ─────────────────────────────────────────────────────────── */
.how-it-works { background: var(--surface); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  text-align: center;
  padding: 32px 24px;
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 16px;
}
.step h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── Trust ────────────────────────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.trust-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.trust-icon { font-size: 28px; margin-bottom: 12px; }
.trust-item h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.trust-item p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq { background: var(--surface); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.faq-item h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--gold-light); }
.faq-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand .logo { font-size: 18px; }
.footer-brand p { font-size: 13px; color: var(--text-dim); margin-top: 8px; max-width: 260px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--text-muted); }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-dim); }

/* ── Toast ────────────────────────────────────────────────────────────────── */
#toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1e3a1e;
  border: 1px solid var(--gold);
  color: var(--text);
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  z-index: 999;
  transition: transform .3s ease;
  white-space: nowrap;
  box-shadow: var(--shadow);
}
#toast.show { transform: translateX(-50%) translateY(0); }
#toast.error { background: #2a1010; border-color: #c94c4c; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 64px 20px 56px; }
  .product-card { padding: 28px 24px; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
