*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--ink: #1a1a2e;
--ink-soft: #3d3d5c;
--ink-muted: #7a7a9a;
--bg: #faf9f7;
--bg-warm: #f5f0ea;
--bg-card: #ffffff;
--accent: #7b5ea7;
--accent-light: #a885d4;
--accent-pale: #ede8f5;
--gold: #c9a84c;
--gold-pale: #f9f2e3;
--teal: #3a8c82;
--teal-pale: #e4f3f1;
--coral: #c45c45;
--coral-pale: #faeee9;
--border: rgba(26,26,46,0.1);
--shadow: 0 2px 24px rgba(26,26,46,0.07);
--shadow-lg: 0 8px 48px rgba(26,26,46,0.12);
--r: 16px;
--r-sm: 8px;
}
html { scroll-behavior: smooth; }
body {
font-family: 'Mulish', sans-serif;
background: var(--bg);
color: var(--ink);
font-size: 16px;
line-height: 1.7;
-webkit-font-smoothing: antialiased;
}
.hero {
background: var(--ink);
color: #fff;
padding: 80px 24px 72px;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(123,94,167,0.35) 0%, transparent 70%);
pointer-events: none;
}
.hero-eyebrow {
display: inline-block;
font-family: 'Mulish', sans-serif;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--accent-light);
border: 1px solid rgba(168,133,212,0.4);
border-radius: 100px;
padding: 5px 18px;
margin-bottom: 28px;
}
.hero h1 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(38px, 7vw, 64px);
font-weight: 300;
line-height: 1.15;
letter-spacing: -0.01em;
max-width: 720px;
margin: 0 auto 20px;
color: #fff;
}
.hero h1 em { font-style: italic; color: var(--accent-light); }
.hero-sub {
font-size: 17px;
font-weight: 300;
color: rgba(255,255,255,0.65);
max-width: 500px;
margin: 0 auto 40px;
line-height: 1.65;
}
.hero-cta {
display: inline-block;
background: var(--accent);
color: #fff;
font-family: 'Mulish', sans-serif;
font-size: 15px;
font-weight: 600;
letter-spacing: 0.04em;
padding: 16px 40px;
border-radius: 100px;
text-decoration: none;
transition: background 0.2s, transform 0.15s;
box-shadow: 0 4px 24px rgba(123,94,167,0.45);
}
.hero-cta:hover { background: var(--accent-light); transform: translateY(-2px); }
.hero-meta {
margin-top: 32px;
display: flex;
justify-content: center;
gap: 32px;
flex-wrap: wrap;
font-size: 13px;
color: rgba(255,255,255,0.45);
letter-spacing: 0.02em;
}
.hero-meta span { display: flex; align-items: center; gap: 7px; }
section { padding: 72px 24px; }
.container { max-width: 720px; margin: 0 auto; }
.section-label {
font-size: 10px;
font-weight: 600;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 12px;
}
.section-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(28px, 5vw, 42px);
font-weight: 400;
line-height: 1.2;
color: var(--ink);
margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--accent); }
.lead {
font-size: 17px;
font-weight: 300;
color: var(--ink-soft);
line-height: 1.75;
margin-bottom: 16px;
}
p { color: var(--ink-soft); margin-bottom: 14px; line-height: 1.75; }
.divider { height: 1px; background: var(--border); max-width: 720px; margin: 0 auto; }
.pain { background: var(--bg); }
.pain-quote {
border-left: 3px solid var(--accent-light);
padding: 20px 24px;
margin: 28px 0;
background: var(--accent-pale);
border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.pain-quote p {
font-family: 'Cormorant Garamond', serif;
font-size: 20px;
font-weight: 400;
font-style: italic;
color: var(--accent);
margin: 0;
line-height: 1.55;
}
.pain-voices { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.voice-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--r-sm);
padding: 20px;
box-shadow: var(--shadow);
}
.voice-label {
font-size: 10px;
font-weight: 600;
letter-spacing: 0.15em;
text-transform: uppercase;
margin-bottom: 8px;
}
.voice-card.action .voice-label { color: var(--teal); }
.voice-card.fear .voice-label { color: var(--coral); }
.voice-card p { font-size: 15px; margin: 0; color: var(--ink); font-weight: 400; }
.about { background: var(--ink); color: #fff; }
.about .section-title { color: #fff; }
.about .section-title em { color: var(--accent-light); }
.about .lead { color: rgba(255,255,255,0.65); }
.about p { color: rgba(255,255,255,0.55); }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill {
display: inline-block;
border: 1px solid rgba(168,133,212,0.4);
color: var(--accent-light);
border-radius: 100px;
padding: 7px 18px;
font-size: 13px;
}
.program { background: var(--bg-warm); }
.practice-card {
background: var(--bg-card);
border-radius: var(--r);
border: 1px solid var(--border);
padding: 36px;
margin-bottom: 20px;
box-shadow: var(--shadow);
position: relative;
overflow: hidden;
}
.practice-card::before {
content: '';
position: absolute;
top: 0; left: 0;
width: 4px;
height: 100%;
border-radius: 4px 0 0 4px;
}
.practice-card.p1::before { background: var(--accent); }
.practice-card.p2::before { background: var(--teal); }
.practice-num {
font-size: 11px;
font-weight: 600;
letter-spacing: 0.15em;
text-transform: uppercase;
margin-bottom: 10px;
}
.practice-card.p1 .practice-num { color: var(--accent); }
.practice-card.p2 .practice-num { color: var(--teal); }
.practice-title {
font-family: 'Cormorant Garamond', serif;
font-size: 26px;
font-weight: 400;
color: var(--ink);
margin-bottom: 14px;
line-height: 1.25;
}
.practice-body { font-size: 15px; color: var(--ink-soft); margin-bottom: 20px; line-height: 1.7; }
.practice-list { list-style: none; padding: 0; }
.practice-list li {
font-size: 14px;
color: var(--ink-soft);
padding: 6px 0 6px 22px;
position: relative;
border-top: 1px solid var(--border);
}
.practice-list li:first-child { border-top: none; }
.practice-list li::before { content: '→'; position: absolute; left: 0; font-size: 12px; }
.practice-card.p1 .practice-list li::before { color: var(--accent); }
.practice-card.p2 .practice-list li::before { color: var(--teal); }
.results { background: var(--bg); }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.result-item {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--r-sm);
padding: 24px;
box-shadow: var(--shadow);
}
.result-icon {
width: 36px; height: 36px;
border-radius: 50%;
background: var(--accent-pale);
display: flex; align-items: center; justify-content: center;
margin-bottom: 14px;
font-size: 16px;
}
.result-item h4 { font-family: 'Mulish', sans-serif; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.result-item p { font-size: 13px; margin: 0; color: var(--ink-muted); line-height: 1.55; }
.for-whom { background: var(--accent-pale); }
.audience-list { list-style: none; padding: 0; margin-top: 28px; }
.audience-list li {
display: flex; align-items: flex-start; gap: 16px;
padding: 16px 0;
border-bottom: 1px solid rgba(123,94,167,0.15);
font-size: 16px; color: var(--ink-soft);
}
.audience-list li:last-child { border-bottom: none; }
.audience-check {
flex-shrink: 0;
width: 22px; height: 22px;
border-radius: 50%;
background: var(--accent);
color: #fff;
font-size: 11px;
display: flex; align-items: center; justify-content: center;
margin-top: 2px;
font-weight: 600;
}
.expert { background: var(--bg); }
.expert-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--r);
padding: 40px;
box-shadow: var(--shadow-lg);
display: flex; gap: 32px; align-items: flex-start;
}
.expert-avatar {
width: 88px; height: 88px;
border-radius: 50%;
background: var(--accent-pale);
flex-shrink: 0;
display: flex; align-items: center; justify-content: center;
font-family: 'Cormorant Garamond', serif;
font-size: 36px; color: var(--accent);
border: 2px solid var(--accent-light);
}
.expert-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--ink); margin-bottom: 4px; }
.expert-role { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.expert-bio { font-size: 15px; color: var(--ink-soft); margin: 0; line-height: 1.7; }
.testimonials { background: var(--bg-warm); }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.testimonial {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--r-sm);
padding: 24px;
box-shadow: var(--shadow);
}
.testimonial-text {
font-family: 'Cormorant Garamond', serif;
font-size: 17px; font-style: italic;
color: var(--ink); line-height: 1.55;
margin-bottom: 16px;
}
.testimonial-author { font-size: 12px; color: var(--ink-muted); font-weight: 600; letter-spacing: 0.05em; }
.faq { background: var(--bg); }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-q { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.faq-a { font-size: 14px; color: var(--ink-muted); margin: 0; line-height: 1.65; }
.final-cta {
background: var(--ink); color: #fff;
text-align: center; padding: 80px 24px;
position: relative; overflow: hidden;
}
.final-cta::before {
content: '';
position: absolute; inset: 0;
background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(123,94,167,0.3) 0%, transparent 70%);
pointer-events: none;
}
.final-cta .section-title { color: #fff; }
.final-cta .section-title em { color: var(--accent-light); }
.final-cta .lead { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 20px; }
.cta-pricing {
display: inline-flex; align-items: baseline; gap: 8px;
margin: 28px auto;
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.12);
border-radius: var(--r); padding: 16px 32px;
}
.cta-price { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; color: #fff; line-height: 1; }
.cta-price-label { font-size: 13px; color: rgba(255,255,255,0.4); }
.final-cta .hero-cta { margin: 0 auto 20px; display: block; width: fit-content; }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 16px; }
.cta-deadline {
display: inline-block;
background: rgba(201,168,76,0.15);
border: 1px solid rgba(201,168,76,0.3);
color: var(--gold); border-radius: 100px;
padding: 7px 20px; font-size: 13px;
margin-bottom: 28px; letter-spacing: 0.03em;
}
footer {
background: var(--ink);
border-top: 1px solid rgba(255,255,255,0.06);
padding: 24px; text-align: center;
font-size: 12px; color: rgba(255,255,255,0.2);
}
.sticky-nav {
position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
background: var(--ink);
border: 1px solid rgba(255,255,255,0.12);
border-radius: 100px; padding: 12px 28px;
display: flex; align-items: center; gap: 16px;
box-shadow: 0 8px 32px rgba(0,0,0,0.4);
z-index: 100; font-size: 13px; color: rgba(255,255,255,0.6);
}
.sticky-nav a {
background: var(--accent); color: #fff;
padding: 9px 22px; border-radius: 100px;
text-decoration: none; font-weight: 600; font-size: 13px;
transition: background 0.2s;
}
.sticky-nav a:hover { background: var(--accent-light); }
@media (max-width: 600px) {
.pain-voices, .results-grid, .testimonial-grid { grid-template-columns: 1fr; }
.expert-card { flex-direction: column; }
.sticky-nav { display: none; }
}