:root {
    --black: #07050a;
    --ink: #17101f;
    --purple: #6f2dbd;
    --purple-dark: #3c096c;
    --purple-soft: #f3ecff;
    --white: #ffffff;
    --muted: #6d6478;
    --line: #e7dff1;
    --shadow: 0 18px 45px rgba(20, 8, 32, 0.14);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--ink);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

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

img {
    display: block;
    width: 100%;
    border-radius: 8px;
}

.container {
    width: min(92%, 1080px);
    margin: 0 auto;
}

.section {
    padding: 76px 0;
}

.hero {
    min-height: 92vh;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(7, 5, 10, 0.92), rgba(60, 9, 108, 0.72)),
        url("https://images.unsplash.com/photo-1519682337058-a94d519337bc?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
}

.brand {
    font-size: 1.1rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 24px;
    font-size: 0.95rem;
}

.nav-links a {
    opacity: 0.86;
}

.nav-links a:hover {
    opacity: 1;
}

.hero-content {
    display: grid;
    align-items: center;
    min-height: calc(92vh - 76px);
    padding: 48px 0 96px;
}

.eyebrow,
.package-label {
    color: #d8c2ff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    max-width: 820px;
    margin-top: 14px;
    font-size: clamp(2.4rem, 7vw, 5.8rem);
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.02;
}

h1 span {
    color: #d8c2ff;
    font-style: italic;
    font-weight: 500;
}

h2 {
    margin-bottom: 28px;
    color: var(--black);
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.1;
    text-align: center;
}

h3 {
    color: var(--black);
    font-size: 1.25rem;
    line-height: 1.25;
}

.subtitle,
.section-intro {
    max-width: 720px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.12rem;
}

.section-intro {
    margin: -10px auto 32px;
    color: var(--muted);
    text-align: center;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 22px;
    border: 0;
    border-radius: 8px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
button:hover {
    transform: translateY(-2px);
}

.button.primary,
button {
    background: var(--purple);
    color: var(--white);
    box-shadow: 0 12px 26px rgba(111, 45, 189, 0.28);
}

.button.primary:hover,
button:hover {
    background: var(--purple-dark);
}

.button.secondary {
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.card,
.price-card,
.locked-panel,
.intake-form,
.before,
.after {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.card {
    padding: 30px;
}

.card p,
.price-card p,
.step p,
.locked-panel p,
.seo-copy p {
    color: var(--muted);
}

.card h3,
.price-card h3 {
    margin-bottom: 12px;
}

.split-section,
.sample-section {
    background: var(--purple-soft);
}

.split {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 42px;
    align-items: center;
}

.split h2 {
    text-align: left;
}

.split p {
    color: var(--muted);
    font-size: 1.08rem;
}

.steps {
    display: grid;
    gap: 18px;
}

.step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    align-items: center;
    padding: 24px;
    border-left: 6px solid var(--purple);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 26px rgba(20, 8, 32, 0.08);
}

.step span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    font-weight: 700;
}

.pricing-section {
    background: var(--black);
}

.pricing-section h2,
.pricing-section h3,
.pricing-section .price {
    color: var(--white);
}

.pricing-section .section-intro,
.pricing-section .payment-note {
    color: rgba(255, 255, 255, 0.72);
}

.price-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
    background: #120b1d;
    border-color: rgba(216, 194, 255, 0.24);
}

.price-card.featured {
    outline: 2px solid #d8c2ff;
}

.price {
    font-size: 2.4rem;
    font-weight: 700;
}

.paypal-button {
    margin-top: auto;
}

.payment-note {
    margin-top: 22px;
    text-align: center;
}

.registration-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
    align-items: start;
}

.locked-panel,
.intake-form {
    padding: 28px;
}

.locked-panel .eyebrow {
    color: var(--purple);
}

.locked-panel h3,
.intake-form h3 {
    margin-bottom: 12px;
}

.locked-panel p {
    margin-bottom: 20px;
}

.disabled-link {
    width: 100%;
    border-color: var(--line);
    background: #eee8f6;
    color: #83758f;
    pointer-events: none;
}

.disabled-link.is-active {
    background: var(--purple);
    color: var(--white);
    pointer-events: auto;
}

.text-button {
    width: 100%;
    min-height: auto;
    margin-top: 14px;
    padding: 0;
    background: transparent;
    color: var(--purple);
    box-shadow: none;
    font-size: 0.92rem;
}

.text-button:hover {
    background: transparent;
    color: var(--purple-dark);
    transform: none;
}

.intake-form {
    display: grid;
    gap: 10px;
}

.intake-form fieldset {
    display: grid;
    gap: 10px;
    border: 0;
}

.intake-form fieldset:disabled {
    opacity: 0.55;
}

.form-note {
    margin-bottom: 10px;
    color: var(--muted);
}

label {
    color: var(--black);
    font-size: 0.9rem;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 15px;
    color: var(--ink);
    font: inherit;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--purple);
    outline: 3px solid rgba(111, 45, 189, 0.14);
}

#formFeedback {
    min-height: 28px;
    color: var(--purple-dark);
    font-weight: 700;
}

.sample-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.before,
.after {
    padding: 26px;
}

.before {
    border-style: dashed;
    color: var(--muted);
}

.after {
    border-color: var(--purple);
}

.before strong,
.after strong {
    display: block;
    margin-bottom: 10px;
    color: var(--black);
}

.seo-copy {
    max-width: 840px;
}

.seo-copy p {
    font-size: 1.05rem;
}

.transparency-note {
    margin-top: 18px;
}

footer {
    background: var(--black);
    color: var(--white);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
}

.footer-content a {
    color: #d8c2ff;
    font-weight: 700;
}

@media (max-width: 820px) {
    .site-nav,
    .footer-content {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding: 18px 0;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .grid,
    .pricing-grid,
    .split,
    .registration-layout,
    .sample-box {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        min-height: auto;
        padding-top: 70px;
    }

    .section {
        padding: 56px 0;
    }
}
