*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
--bg: #0E0C0A;
--surface: #161310;
--surface-2: #1E1A16;
--surface-3: #252018;
--border: rgba(255,255,255,0.07);
--border-warm: rgba(200,148,58,0.2);
--gold: #C8943A;
--gold-light: #E8B96A;
--gold-pale: rgba(200,148,58,0.1);
--text: rgba(255,255,255,0.92);
--text-soft: rgba(255,255,255,0.6);
--text-muted: rgba(255,255,255,0.35);
--red: #C24B35;
--green: #4A9B6F;
}

html { scroll-behavior: smooth; }

body {
font-family: 'Outfit', sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.7;
-webkit-font-smoothing: antialiased;
}

/* PROGRESS BAR */
.progress-bar {
background: var(--surface);
border-bottom: 1px solid var(--border);
padding: 14px 24px;
display: flex;
align-items: center;
justify-content: center;
gap: 0;
}
.progress-step {
display: flex;
align-items: center;
gap: 8px;
font-size: 12px;
font-weight: 500;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--text-muted);
}
.progress-step.done { color: var(--green); }
.progress-step.active { color: var(--gold); }
.progress-dot {
width: 8px; height: 8px;
border-radius: 50%;
background: var(--text-muted);
flex-shrink: 0;
}
.progress-step.done .progress-dot { background: var(--green); }
.progress-step.active .progress-dot { background: var(--gold); box-shadow: 0 0 0 3px rgba(200,148,58,0.2); }
.progress-line {
width: 40px; height: 1px;
background: var(--border);
margin: 0 12px;
flex-shrink: 0;
}
@media (max-width: 480px) {
.progress-step span { display: none; }
.progress-line { width: 24px; }
}

/* HERO */
.hero {
padding: 72px 24px 80px;
text-align: center;
position: relative;
border-bottom: 1px solid var(--border);
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -120px; left: 50%; transform: translateX(-50%);
width: 600px; height: 400px;
background: radial-gradient(ellipse, rgba(200,148,58,0.07) 0%, transparent 70%);
pointer-events: none;
}

.confirmation-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(74,155,111,0.12);
border: 1px solid rgba(74,155,111,0.25);
color: #6DBF93;
font-size: 12px;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: 8px 18px;
border-radius: 100px;
margin-bottom: 36px;
}
.confirmation-badge::before {
content: '';
width: 6px; height: 6px;
border-radius: 50%;
background: #6DBF93;
flex-shrink: 0;
}

.hero h1 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(32px, 6vw, 62px);
font-weight: 700;
line-height: 1.08;
letter-spacing: -0.02em;
color: var(--text);
max-width: 820px;
margin: 0 auto 12px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-divider {
width: 48px; height: 1px;
background: var(--gold);
margin: 28px auto;
opacity: 0.5;
}

.hero-context {
font-size: clamp(16px, 2vw, 19px);
color: var(--text-soft);
max-width: 560px;
margin: 0 auto;
font-weight: 300;
line-height: 1.7;
}
.hero-context strong { color: var(--text); font-weight: 500; }

/* SECTIONS */
section { padding: 72px 24px; }
.container { max-width: 700px; margin: 0 auto; }
.container-wide { max-width: 960px; margin: 0 auto; }

.section-label {
font-size: 11px;
font-weight: 600;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 16px;
display: block;
}
.section-h2 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(28px, 4vw, 44px);
font-weight: 700;
line-height: 1.15;
color: var(--text);
margin-bottom: 28px;
letter-spacing: -0.02em;
}
.section-h2 em { font-style: italic; color: var(--gold-light); }

.prose p {
font-size: 17px;
color: var(--text-soft);
margin-bottom: 20px;
font-weight: 300;
line-height: 1.8;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text); font-weight: 500; }

/* BRIDGE */
.bridge { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.two-paths {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
margin-top: 40px;
}
.path-card {
border-radius: 10px;
padding: 28px 24px;
border: 1px solid var(--border);
}
.path-card.path-slow { background: var(--surface-2); }
.path-card.path-fast { background: var(--gold-pale); border-color: var(--border-warm); }

.path-tag {
font-size: 10px;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
margin-bottom: 16px;
display: block;
}
.path-slow .path-tag { color: var(--text-muted); }
.path-fast .path-tag { color: var(--gold); }

.path-card h3 {
font-family: 'Cormorant Garamond', serif;
font-size: 20px;
font-weight: 600;
margin-bottom: 16px;
line-height: 1.3;
}
.path-slow h3 { color: var(--text-soft); }
.path-fast h3 { color: var(--text); }

.path-list { list-style: none; }
.path-list li {
font-size: 14px;
font-weight: 300;
line-height: 1.5;
padding: 8px 0;
border-bottom: 1px solid var(--border);
display: flex;
align-items: flex-start;
gap: 10px;
}
.path-list li:last-child { border-bottom: none; }
.path-slow .path-list li { color: var(--text-muted); }
.path-fast .path-list li { color: var(--text-soft); }
.path-list li::before { flex-shrink: 0; margin-top: 2px; font-size: 13px; }
.path-slow .path-list li::before { content: '—'; color: var(--text-muted); }
.path-fast .path-list li::before { content: '✓'; color: var(--gold); font-weight: 600; }

@media (max-width: 580px) { .two-paths { grid-template-columns: 1fr; } }

/* COURSE REVEAL */
.course-reveal { background: var(--bg); }

.course-box {
background: var(--surface);
border: 1px solid var(--border-warm);
border-radius: 14px;
overflow: hidden;
margin-top: 8px;
}
.course-box-header {
background: linear-gradient(135deg, #1E1A14 0%, #221C12 100%);
padding: 40px 40px 36px;
border-bottom: 1px solid var(--border-warm);
position: relative;
overflow: hidden;
}
.course-box-header::before {
content: '';
position: absolute;
top: -60px; right: -60px;
width: 200px; height: 200px;
background: radial-gradient(circle, rgba(200,148,58,0.08) 0%, transparent 70%);
pointer-events: none;
}
.course-eyebrow {
font-size: 10px;
font-weight: 700;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 12px;
display: block;
}
.course-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(22px, 3.5vw, 34px);
font-weight: 700;
color: var(--text);
line-height: 1.15;
margin-bottom: 12px;
}
.course-subtitle {
font-size: 15px;
color: var(--text-soft);
font-weight: 300;
max-width: 480px;
line-height: 1.6;
}

.course-modules {
padding: 32px 40px;
border-bottom: 1px solid var(--border);
}
.modules-label {
font-size: 11px;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--text-muted);
margin-bottom: 20px;
display: block;
}
.module-list { display: flex; flex-direction: column; gap: 12px; }
.module-item {
display: flex;
align-items: flex-start;
gap: 16px;
padding: 16px 18px;
background: var(--surface-2);
border-radius: 8px;
border: 1px solid var(--border);
}
.module-num {
flex-shrink: 0;
width: 28px; height: 28px;
border-radius: 50%;
border: 1px solid var(--border-warm);
display: flex;
align-items: center;
justify-content: center;
font-size: 11px;
font-weight: 600;
color: var(--gold);
margin-top: 1px;
}
.module-item h4 {
font-size: 14px;
font-weight: 500;
color: var(--text);
margin-bottom: 4px;
line-height: 1.3;
}
.module-item p {
font-size: 13px;
color: var(--text-muted);
font-weight: 300;
line-height: 1.5;
}

.course-cta-block { padding: 36px 40px; }
.price-row {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 24px;
}
.price-left { display: flex; flex-direction: column; gap: 4px; }
.price-was { font-size: 13px; color: var(--text-muted); font-weight: 300; }
.price-was s { color: var(--text-muted); }
.price-now {
font-family: 'Cormorant Garamond', serif;
font-size: 52px;
font-weight: 700;
color: var(--text);
line-height: 1;
}
.price-note { font-size: 13px; color: var(--gold); font-weight: 400; }

.cta-btn {
display: inline-block;
background: var(--gold);
color: #0E0C0A;
font-family: 'Outfit', sans-serif;
font-size: 16px;
font-weight: 700;
padding: 18px 36px;
border-radius: 6px;
text-decoration: none;
letter-spacing: 0.01em;
transition: background 0.2s, transform 0.15s;
border: none;
cursor: pointer;
white-space: nowrap;
}
.cta-btn:hover { background: #D9A548; transform: translateY(-1px); }
.cta-btn:active { transform: translateY(0); }

.skip-link {
display: block;
text-align: center;
margin-top: 16px;
font-size: 13px;
color: var(--text-muted);
text-decoration: none;
border-top: 1px solid var(--border);
padding-top: 20px;
transition: color 0.2s;
}
.skip-link:hover { color: var(--text-soft); }

@media (max-width: 580px) {
.course-box-header, .course-modules, .course-cta-block { padding-left: 24px; padding-right: 24px; }
.price-row { flex-direction: column; align-items: flex-start; }
.cta-btn { width: 100%; text-align: center; display: block; }
}

/* WHY NOW */
.why-now { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.insight-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 16px;
margin-top: 36px;
}
.insight-card {
background: var(--surface-2);
border: 1px solid var(--border);
border-radius: 8px;
padding: 24px 20px;
}
.insight-card .insight-icon { font-size: 22px; margin-bottom: 12px; display: block; }
.insight-card h4 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.insight-card p { font-size: 13px; color: var(--text-muted); font-weight: 300; line-height: 1.6; }

/* URGENCY */
.urgency { background: var(--bg); border-top: 1px solid var(--border); }
.urgency-inner {
background: var(--surface-2);
border: 1px solid var(--border-warm);
border-radius: 12px;
padding: 48px 40px;
text-align: center;
position: relative;
overflow: hidden;
}
.urgency-inner::before {
content: '';
position: absolute;
bottom: -80px; left: 50%; transform: translateX(-50%);
width: 400px; height: 200px;
background: radial-gradient(ellipse, rgba(200,148,58,0.05) 0%, transparent 70%);
pointer-events: none;
}
.urgency-badge {
display: inline-block;
background: rgba(194,75,53,0.12);
border: 1px solid rgba(194,75,53,0.25);
color: #E07060;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
padding: 6px 16px;
border-radius: 100px;
margin-bottom: 24px;
}
.urgency-inner h2 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(24px, 3.5vw, 36px);
font-weight: 700;
line-height: 1.2;
color: var(--text);
max-width: 520px;
margin: 0 auto 16px;
}
.urgency-inner p {
font-size: 16px;
color: var(--text-soft);
font-weight: 300;
max-width: 460px;
margin: 0 auto 36px;
line-height: 1.7;
}
@media (max-width: 580px) { .urgency-inner { padding: 36px 24px; } }

/* FINAL SKIP */
.final-skip { padding: 40px 24px 64px; text-align: center; }
.final-skip p { font-size: 14px; color: var(--text-muted); font-weight: 300; max-width: 480px; margin: 0 auto 16px; line-height: 1.6; }
.final-skip a { font-size: 13px; color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.final-skip a:hover { color: var(--text-soft); }

/* FOOTER */
footer {
background: var(--surface);
padding: 24px;
text-align: center;
font-size: 12px;
color: var(--text-muted);
border-top: 1px solid var(--border);
letter-spacing: 0.03em;
}
footer a { color: var(--text-muted); text-decoration: none; margin: 0 10px; }
footer a:hover { color: var(--text-soft); }