@charset "UTF-8";
/* ── RESET & BASE ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root { --bg: #090D16; --surface: #0F1521; --surface2: #141C2E; --gold: #C8952A; --gold-lt: #E8B84B; --gold-dim: rgba(200, 149, 42, 0.15); --gold-line: rgba(200, 149, 42, 0.3); --text: #F0EAD8; --text-2: #A89F8C; --text-3: #5C5750; --border: rgba(240, 234, 216, 0.08); --teal: #2A9D8F; --teal-dim: rgba(42, 157, 143, 0.12); --red-dim: rgba(185, 28, 28, 0.1); --red: #EF4444; }

html { scroll-behavior: smooth; }

body { background: var(--bg); color: var(--text); font-family: 'IBM Plex Sans', sans-serif; font-weight: 300; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

a { color: inherit; text-decoration: none; }

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

/* ── UTILITY ──────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

.mono { font-family: 'IBM Plex Mono', monospace; }

.gold { color: var(--gold); }

.rule { border: none; border-top: 1px solid var(--border); }

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

@keyframes shimmer { 0% { background-position: -200% center; }
  100% { background-position: 200% center; } }

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

.fade-up { animation: fadeUp 0.7s ease both; }

.delay-1 { animation-delay: 0.1s; }

.delay-2 { animation-delay: 0.2s; }

.delay-3 { animation-delay: 0.35s; }

.delay-4 { animation-delay: 0.5s; }

.delay-5 { animation-delay: 0.65s; }

/* ── NAV ──────────────────────────────────────────────────────────── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; border-bottom: 1px solid var(--border); background: rgba(9, 13, 22, 0.88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }

.nav-logo { font-family: 'IBM Plex Mono', monospace; font-size: 15px; font-weight: 500; letter-spacing: -0.02em; display: flex; align-items: center; gap: 8px; }

.nav-logo-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); display: inline-block; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }

.nav-links a { font-size: 13px; font-weight: 400; color: var(--text-2); transition: color 0.2s; letter-spacing: 0.01em; }

.nav-links a:hover { color: var(--text); }

.nav-cta { font-size: 12px; font-weight: 500; padding: 8px 18px; border: 1px solid var(--gold-line); color: var(--gold) !important; border-radius: 2px; transition: background 0.2s, color 0.2s !important; letter-spacing: 0.04em; }

.nav-cta:hover { background: var(--gold-dim) !important; color: var(--gold-lt) !important; }

.nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--text-2); }

/* ── HERO ─────────────────────────────────────────────────────────── */
.hero { padding: 160px 0 100px; position: relative; overflow: hidden; }

.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(200, 149, 42, 0.06) 0%, transparent 60%), radial-gradient(ellipse 40% 60% at 20% 80%, rgba(42, 157, 143, 0.04) 0%, transparent 50%); pointer-events: none; }

.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; }

.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); opacity: 0.6; animation: pulse-line 2.5s ease-in-out infinite; }

.hero h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; max-width: 780px; margin-bottom: 28px; }

.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }

.hero-sub { font-size: 18px; font-weight: 300; color: var(--text-2); max-width: 560px; line-height: 1.65; margin-bottom: 48px; }

.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: #0B0F1A; font-size: 13px; font-weight: 500; padding: 13px 28px; border-radius: 2px; letter-spacing: 0.04em; transition: background 0.2s, transform 0.15s; border: none; cursor: pointer; }

.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn-ghost { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border); color: var(--text-2); font-size: 13px; font-weight: 400; padding: 13px 24px; border-radius: 2px; letter-spacing: 0.02em; transition: border-color 0.2s, color 0.2s, transform 0.15s; }

.btn-ghost:hover { border-color: var(--text-3); color: var(--text); transform: translateY(-1px); }

.hero-disclaimer { margin-top: 20px; font-size: 11px; color: var(--text-3); letter-spacing: 0.02em; }

.hero-stats { margin-top: 72px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: 2px; }

.stat { padding: 24px 28px; border-right: 1px solid var(--border); }

.stat:last-child { border-right: none; }

.stat-val { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 4px; }

.stat-label { font-size: 12px; color: var(--text-3); letter-spacing: 0.04em; }

/* ── PROBLEM ──────────────────────────────────────────────────────── */
.problem { padding: 100px 0; border-top: 1px solid var(--border); }

.section-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }

.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.problem-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; line-height: 1.2; letter-spacing: -0.015em; margin-bottom: 20px; }

.problem-left p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 16px; }

.problem-right { padding-top: 8px; }

.pain-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }

.pain-item:first-child { border-top: 1px solid var(--border); }

.pain-num { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--text-3); min-width: 24px; padding-top: 2px; }

.pain-text { font-size: 14px; color: var(--text-2); line-height: 1.6; }

.pain-text strong { color: var(--text); font-weight: 500; }

/* ── PACKS ────────────────────────────────────────────────────────── */
#packs { padding: 100px 0; border-top: 1px solid var(--border); }

.packs-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 56px; flex-wrap: wrap; }

.packs-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; line-height: 1.2; letter-spacing: -0.015em; }

.packs-header-note { font-size: 13px; color: var(--text-3); max-width: 280px; text-align: right; line-height: 1.55; }

.pack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 2px; overflow: hidden; }

.pack-card { background: var(--surface); padding: 32px 28px; display: flex; flex-direction: column; transition: background 0.2s; position: relative; }

.pack-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; transition: background 0.2s; }

.pack-card:hover { background: var(--surface2); }

.pack-card:hover::before { background: var(--gold); }

.pack-card.featured { background: var(--surface2); }

.pack-card.featured::before { background: var(--gold); }

.pack-badge { display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 1px; margin-bottom: 20px; align-self: flex-start; }

.badge-free { background: var(--teal-dim); color: var(--teal); border: 1px solid rgba(42, 157, 143, 0.25); }

.badge-legal { background: rgba(99, 102, 241, 0.1); color: #818CF8; border: 1px solid rgba(99, 102, 241, 0.2); }

.badge-fin { background: rgba(245, 158, 11, 0.1); color: #FCD34D; border: 1px solid rgba(245, 158, 11, 0.2); }

.badge-pro { background: var(--gold-dim); color: var(--gold); border: 1px solid var(--gold-line); }

.pack-name { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 600; line-height: 1.2; margin-bottom: 8px; letter-spacing: -0.01em; }

.pack-tagline { font-size: 12px; color: var(--text-3); line-height: 1.5; margin-bottom: 24px; min-height: 36px; }

.pack-price { font-family: 'IBM Plex Mono', monospace; font-size: 2rem; font-weight: 500; color: var(--text); margin-bottom: 4px; letter-spacing: -0.03em; }

.pack-price-note { font-size: 11px; color: var(--text-3); margin-bottom: 28px; letter-spacing: 0.02em; }

.pack-includes { list-style: none; margin-bottom: 32px; flex: 1; }

.pack-includes li { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: var(--text-2); padding: 6px 0; border-bottom: 1px solid var(--border); line-height: 1.45; }

.pack-includes li:last-child { border-bottom: none; }

.pack-includes li::before { content: '→'; color: var(--gold); font-size: 11px; flex-shrink: 0; margin-top: 1px; font-family: 'IBM Plex Mono', monospace; }

.pack-cta { display: block; text-align: center; font-size: 12px; font-weight: 500; padding: 12px 20px; border-radius: 2px; letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.2s; cursor: pointer; }

.pack-cta-free { border: 1px solid rgba(42, 157, 143, 0.35); color: var(--teal); }

.pack-cta-free:hover { background: var(--teal-dim); }

.pack-cta-legal { border: 1px solid rgba(99, 102, 241, 0.35); color: #818CF8; }

.pack-cta-legal:hover { background: rgba(99, 102, 241, 0.08); }

.pack-cta-fin { border: 1px solid rgba(245, 158, 11, 0.35); color: #FCD34D; }

.pack-cta-fin:hover { background: rgba(245, 158, 11, 0.07); }

.pack-cta-pro { background: var(--gold); color: #0B0F1A; border: none; }

.pack-cta-pro:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* ── PROOF ────────────────────────────────────────────────────────── */
.proof { padding: 100px 0; border-top: 1px solid var(--border); }

.proof h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 600; letter-spacing: -0.015em; margin-bottom: 48px; text-align: center; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 2px; overflow: hidden; }

.testimonial { background: var(--surface); padding: 32px 28px; }

.testimonial-quote { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 400; font-style: italic; color: var(--text); line-height: 1.65; margin-bottom: 20px; }

.testimonial-quote::before { content: '"'; font-size: 2.5rem; color: var(--gold); line-height: 0; vertical-align: -0.6rem; margin-right: 4px; font-style: normal; }

.testimonial-attr { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--text-3); letter-spacing: 0.04em; }

/* ── HOW IT WORKS ─────────────────────────────────────────────────── */
.how { padding: 100px 0; border-top: 1px solid var(--border); }

.how-header { text-align: center; margin-bottom: 64px; }

.how-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; letter-spacing: -0.015em; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.step { display: flex; flex-direction: column; gap: 12px; }

.step-num { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--gold); letter-spacing: 0.12em; }

.step h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; line-height: 1.3; }

.step p { font-size: 14px; color: var(--text-2); line-height: 1.7; }

.step-connector { display: none; }

/* ── DISCLAIMER BANNER ────────────────────────────────────────────── */
.disclaimer-banner { margin: 0 0 0; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--red-dim); }

.disclaimer-inner { display: flex; align-items: flex-start; gap: 16px; }

.disclaimer-icon { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--red); white-space: nowrap; padding-top: 1px; letter-spacing: 0.05em; }

.disclaimer-text { font-size: 12px; color: var(--text-3); line-height: 1.6; }

/* ── FAQ ──────────────────────────────────────────────────────────── */
.faq { padding: 100px 0; border-top: 1px solid var(--border); }

.faq-header { margin-bottom: 48px; }

.faq-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; letter-spacing: -0.015em; }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; }

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

.faq-q { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 8px; line-height: 1.4; }

.faq-a { font-size: 13px; color: var(--text-2); line-height: 1.7; }

/* ── FOOTER CTA ───────────────────────────────────────────────────── */
.footer-cta { padding: 100px 0; border-top: 1px solid var(--border); text-align: center; position: relative; overflow: hidden; }

.footer-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200, 149, 42, 0.05) 0%, transparent 60%); pointer-events: none; }

.footer-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 20px; }

.footer-cta h2 em { font-style: italic; color: var(--gold); font-weight: 400; }

.footer-cta p { font-size: 16px; color: var(--text-2); margin-bottom: 40px; }

.footer-ctas-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER ───────────────────────────────────────────────────────── */
footer { padding: 40px 0; border-top: 1px solid var(--border); }

.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }

.footer-logo { font-family: 'IBM Plex Mono', monospace; font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 7px; }

.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }

.footer-links a { font-size: 12px; color: var(--text-3); transition: color 0.2s; letter-spacing: 0.02em; }

.footer-links a:hover { color: var(--text-2); }

.footer-copy { font-size: 11px; color: var(--text-3); letter-spacing: 0.02em; }

/* ── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 900px) { .pack-grid { grid-template-columns: repeat(2, 1fr); } .testimonial-grid { grid-template-columns: 1fr; } .hero-stats { grid-template-columns: repeat(2, 1fr); } .stat { border-bottom: 1px solid var(--border); } .stat:nth-child(2n) { border-right: none; } .problem-grid { grid-template-columns: 1fr; gap: 40px; } .steps { grid-template-columns: 1fr; gap: 32px; } .faq-grid { grid-template-columns: 1fr; } .nav-links { display: none; } .nav-mobile-btn { display: block; } }

@media (max-width: 600px) { .pack-grid { grid-template-columns: 1fr; } .hero-stats { grid-template-columns: repeat(2, 1fr); } .packs-header-note { display: none; } .footer-inner { flex-direction: column; align-items: flex-start; } }

/*# sourceMappingURL=main.css.map */