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

:root {
  --bg-primary: #0a0f1c;
  --bg-secondary: #111827;
  --bg-card: rgba(17, 24, 39, 0.8);
  --bg-card-hover: rgba(30, 41, 59, 0.9);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-strong: rgba(255, 255, 255, 0.08);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent-gold: #d4a853;
  --accent-gold-light: #e8c97a;
  --accent-blue: #3b82f6;
  --accent-teal: #14b8a6;
  --accent-emerald: #10b981;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(212, 168, 83, 0.3);
  --shadow-glow: 0 0 60px rgba(212, 168, 83, 0.08);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.4);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 168, 83, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
}

img, svg { max-width: 100%; height: auto; }
a { color: var(--accent-gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-gold-light); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ─── Header ────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 15, 28, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }

.brand-mark {
  width: 52px; height: auto;
  flex-shrink: 0;
}

.brand-mark img { width: 100%; height: auto; display: block; border-radius: 6px; }

.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--text-primary); letter-spacing: -0.01em;
}
.brand-copy small {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent-gold); opacity: 0.9;
}

.site-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.site-nav a {
  color: var(--text-secondary); font-size: 0.82rem; font-weight: 500;
  padding: 6px 14px; border-radius: 100px; transition: var(--transition);
  white-space: nowrap;
}
.site-nav a:hover { color: var(--text-primary); background: var(--bg-glass-strong); }

.nav-cta {
  background: linear-gradient(135deg, var(--accent-gold), #c49340) !important;
  color: var(--bg-primary) !important; font-weight: 600 !important;
  padding: 8px 20px !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.mobile-toggle { display: none; background: none; border: none; color: var(--text-primary); cursor: pointer; padding: 8px; }

/* ─── Hero ──────────────────────────────────── */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 100px;
  background: var(--bg-glass-strong); border: 1px solid var(--border);
  font-size: 0.8rem; font-weight: 500; color: var(--accent-gold);
  margin-bottom: 32px; letter-spacing: 0.05em;
}

.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-emerald);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero h1 .gold { color: var(--accent-gold); }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary); max-width: 640px; margin: 0 auto 48px; line-height: 1.7;
}

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

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 100px;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), #c49340);
  color: var(--bg-primary);
  box-shadow: 0 4px 24px rgba(212, 168, 83, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212, 168, 83, 0.35); color: var(--bg-primary); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
}
.btn-outline:hover { border-color: var(--accent-gold); color: var(--accent-gold); background: rgba(212, 168, 83, 0.05); }

.btn-ghost {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-secondary); padding: 10px 24px; font-size: 0.85rem;
}
.btn-ghost:hover { border-color: var(--text-secondary); color: var(--text-primary); }

/* ─── Logos / Social Proof Bar ──────────────── */
.proof-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}

.proof-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-muted); font-size: 0.85rem; font-weight: 500;
}

.proof-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--bg-glass-strong); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

/* ─── Section Styles ────────────────────────── */
section { padding: 100px 0; position: relative; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent-gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: ''; width: 24px; height: 1px; background: var(--accent-gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 600px; line-height: 1.7;
}

.section-header { margin-bottom: 64px; }
.section-header-center { text-align: center; }
.section-header-center .section-desc { margin: 0 auto; }

/* ─── How It Works ──────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

.step-card {
  padding: 40px 28px; border-radius: var(--radius-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}

.step-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0; transition: var(--transition);
}

.step-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.step-card:hover::before { opacity: 1; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent-gold), rgba(212, 168, 83, 0.3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 20px;
}

.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.step-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ─── Pricing ───────────────────────────────── */
.pricing-card {
  max-width: 520px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 56px 48px;
  text-align: center; position: relative; overflow: hidden;
}

.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal), var(--accent-blue));
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 800; line-height: 1;
  margin: 24px 0 8px;
}

.pricing-amount .currency { font-size: 1.8rem; vertical-align: super; color: var(--accent-gold); }
.pricing-amount .cents { font-size: 1.8rem; color: var(--text-secondary); }

.pricing-per { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 32px; }

.pricing-features {
  list-style: none; text-align: left; margin-bottom: 40px;
}

.pricing-features li {
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 0.95rem; color: var(--text-secondary);
  display: flex; align-items: flex-start; gap: 12px;
}

.pricing-features li::before {
  content: '✓'; color: var(--accent-emerald); font-weight: 700; flex-shrink: 0;
}

/* ─── Trust Types ───────────────────────────── */
.trust-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px;
}

.trust-chip {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 22px; border-radius: var(--radius-md);
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-primary); font-size: 0.92rem; font-weight: 500;
  transition: var(--transition); text-decoration: none;
}

.trust-chip:hover {
  border-color: var(--border-hover); background: var(--bg-card-hover);
  color: var(--accent-gold-light); transform: translateX(4px);
}

.trust-chip .chip-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--bg-glass-strong); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 1rem;
}

/* ─── Packet Contents ───────────────────────── */
.packet-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.packet-item {
  padding: 32px 24px; border-radius: var(--radius-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: var(--transition);
}

.packet-item:hover { border-color: var(--border-hover); }

.packet-num {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--accent-gold); text-transform: uppercase; margin-bottom: 12px;
}

.packet-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.packet-item p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ─── Knowledge Hub ─────────────────────────── */
.hub-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px;
}

.hub-link {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-radius: var(--radius-md);
  background: var(--bg-glass); border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 0.88rem; font-weight: 500;
  transition: var(--transition); text-decoration: none;
}

.hub-link:hover { color: var(--accent-gold); border-color: var(--border-hover); background: var(--bg-glass-strong); }
.hub-link::before { content: '→'; color: var(--accent-gold); font-weight: 600; }

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

.faq-item {
  border-bottom: 1px solid var(--border); padding: 28px 0;
}

.faq-q {
  font-size: 1.05rem; font-weight: 600; color: var(--text-primary);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}

.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--accent-gold); flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '−'; }

.faq-a {
  font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-a { max-height: 300px; padding-top: 16px; }

/* ─── Disclaimer ────────────────────────────── */
.disclaimer {
  padding: 48px; border-radius: var(--radius-xl);
  background: rgba(160, 48, 48, 0.08); border: 1px solid rgba(160, 48, 48, 0.2);
  margin-top: 40px;
}

.disclaimer h3 { color: #e87070; font-size: 1rem; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.disclaimer p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ─── Footer ────────────────────────────────── */
.site-footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 56px;
}

.footer-brand { max-width: 320px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

.footer-col h4 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-secondary); margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size: 0.88rem; }
.footer-col a:hover { color: var(--accent-gold); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-size: 0.8rem; color: var(--text-muted);
}

.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); font-size: 0.8rem; }
.footer-links a:hover { color: var(--text-secondary); }

/* ─── Legal / Subpages ──────────────────────── */
.legal-page {
  max-width: 780px; margin: 0 auto; padding: 140px 24px 80px;
  position: relative; z-index: 1;
}

.legal-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; margin-bottom: 24px;
}

.legal-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; margin-top: 40px; margin-bottom: 16px;
}

.legal-page p { color: var(--text-secondary); margin-bottom: 16px; }
.legal-page ul { padding-left: 20px; margin-bottom: 16px; }
.legal-page li { color: var(--text-secondary); margin-bottom: 8px; }

.review-note {
  padding: 20px 24px; border-radius: var(--radius-md);
  background: var(--bg-glass-strong); border: 1px solid var(--border);
  margin: 24px 0 32px;
}

.review-note p { margin-bottom: 4px; font-size: 0.88rem; }

/* ─── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .packet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
    background: var(--bg-primary); padding: 24px;
    border-top: 1px solid var(--border); z-index: 999;
  }
  .site-nav.open a { padding: 14px 0; font-size: 1rem; }
  .mobile-toggle { display: block; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 2.4rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .packet-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .proof-inner { gap: 24px; }
  .pricing-card { padding: 40px 28px; }
  .pricing-amount { font-size: 3rem; }
  section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 16px; }
  .brand-mark { width: 40px; height: auto; }
  .brand-copy strong { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}

/* ─── Animations ────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0; transform: translateY(24px);
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ─── Divider ───────────────────────────────── */
.divider {
  height: 1px; border: none;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ─── Two-Col Layout ────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* ─── Stats ─────────────────────────────────── */
.stats-row { display: flex; gap: 48px; margin-top: 40px; }
.stat-item { }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 800; color: var(--accent-gold); line-height: 1;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

@media (max-width: 480px) {
  .stats-row { flex-direction: column; gap: 24px; }
}

/* ─── CTA Banner ────────────────────────────── */
.cta-banner {
  padding: 80px 48px; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.1), rgba(59, 130, 246, 0.08));
  border: 1px solid var(--border); text-align: center;
  position: relative; overflow: hidden;
}

.cta-banner::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700; margin-bottom: 16px;
  position: relative;
}

.cta-banner p { color: var(--text-secondary); max-width: 500px; margin: 0 auto 32px; position: relative; }
