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

:root {
    --black: #0d0d0d;
    --white: #fefefe;
    --off-white: #f8f7f5;
    --gray-100: #f2f1ef;
    --gray-200: #e8e6e3;
    --gray-300: #d4d2cf;
    --gray-400: #9e9b97;
    --gray-500: #6b6966;
    --gray-600: #4a4845;
    --gray-700: #2e2c2a;
    --gray-800: #1a1918;
    --accent: #c9a86a; /* muted gold for emphasis */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--black);
    background: var(--black);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-narrow {
    max-width: 820px;
}

/* Typography */
h1 {
    font-size: clamp(2.6rem, 5.6vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
}

h3 {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

p {
    max-width: 640px;
}

strong {
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.btn-primary-light {
    background: var(--white);
    color: var(--black);
    padding: 18px 40px;
    border: 1.5px solid var(--white);
}

.btn-primary-light:hover {
    background: transparent;
    color: var(--white);
}

.btn-primary-dark {
    background: var(--black);
    color: var(--white);
    padding: 18px 40px;
    border: 1.5px solid var(--black);
}

.btn-primary-dark:hover {
    background: transparent;
    color: var(--black);
}

.btn-large {
    padding: 22px 52px;
    font-size: 1rem;
}

.btn-ghost {
    background: transparent;
    color: var(--gray-400);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gray-600);
    padding: 4px 0;
}

.btn-ghost:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

/* Sections */
.section {
    padding: 140px 0;
    position: relative;
}

.section-tight {
    padding: 110px 0;
}

/* White sections */
.section-white {
    background: var(--white);
    color: var(--black);
}

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

.section-white p {
    color: var(--gray-500);
}

.section-white strong {
    color: var(--black);
}

.section-white .section-intro {
    color: var(--gray-400);
}

/* Off-white sections */
.section-offwhite {
    background: var(--off-white);
    color: var(--black);
}

.section-offwhite h2,
.section-offwhite h3 {
    color: var(--black);
}

.section-offwhite p {
    color: var(--gray-500);
}

.section-offwhite strong {
    color: var(--black);
}

.section-offwhite .section-intro {
    color: var(--gray-400);
}

/* Black sections */
.section-black {
    background: var(--black);
    color: var(--white);
}

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

.section-black p {
    color: var(--gray-400);
}

.section-black strong {
    color: var(--white);
}

.section-black .section-intro {
    color: var(--gray-500);
}

.section-intro {
    font-size: 1.2rem;
    margin-bottom: 56px;
    font-weight: 400;
}

.section-cta-text {
    margin-top: 56px;
    font-size: 1.1rem;
}

.center {
    text-align: center;
}

.center p {
    margin-left: auto;
    margin-right: auto;
}

/* Parallax sections */
.parallax-section {
    position: relative;
    overflow: hidden;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero - Black */
.hero {
    padding: 48px 0 150px;
    text-align: center;
    background: var(--black);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    max-width: 170px;
    height: auto;
    margin-bottom: 40px;
    opacity: 0.9;
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-500);
    margin-bottom: 28px;
}

.eyebrow-accent {
    color: var(--accent);
}

.hero h1 {
    max-width: 900px;
    margin-bottom: 32px;
    color: var(--white);
}

.subtitle {
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 48px;
    color: var(--gray-500);
    line-height: 1.8;
}

.scarcity {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* VSL */
.vsl-wrapper {
    width: 100%;
    max-width: 760px;
    margin: 40px 0;
}

.vsl-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    overflow: hidden;
}

.vsl-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Stat band */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 8px;
    background: var(--gray-700);
    border: 1px solid var(--gray-700);
}

.section-white .stats-grid,
.section-offwhite .stats-grid {
    background: var(--gray-200);
    border-color: var(--gray-200);
}

.stat {
    padding: 44px 28px;
    text-align: center;
    background: var(--black);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-white .stat,
.section-offwhite .stat {
    background: var(--white);
}

.section-offwhite .stat {
    background: var(--off-white);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--white);
    line-height: 1;
}

.section-white .stat-number,
.section-offwhite .stat-number {
    color: var(--black);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    line-height: 1.5;
    max-width: none;
}

.section-white .stat-label,
.section-offwhite .stat-label {
    color: var(--gray-400);
}

/* Problem grid (reused) */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 56px;
    background: var(--gray-200);
    border: 1px solid var(--gray-200);
}

.section-black .problem-grid {
    background: var(--gray-700);
    border-color: var(--gray-700);
}

.problem-card {
    padding: 44px 38px;
    background: var(--white);
}

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

.problem-card h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 0.92rem;
    line-height: 1.7;
}

/* Pillars */
.pillars {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--gray-700);
    border: 1px solid var(--gray-700);
}

.pillar {
    background: var(--black);
    padding: 48px 44px;
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 36px;
    align-items: start;
}

.pillar-num {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent);
    padding-top: 6px;
}

.pillar-body h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
}

.pillar-body p {
    font-size: 0.95rem;
    color: var(--gray-400);
    max-width: 560px;
}

.pillar-tags {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pillar-tag {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    color: var(--gray-500);
    border: 1px solid var(--gray-700);
    padding: 5px 12px;
    border-radius: 999px;
}

.pillar-link {
    align-self: center;
    white-space: nowrap;
}

/* Game plan list */
.gameplan {
    margin-top: 56px;
    max-width: 760px;
    display: flex;
    flex-direction: column;
}

.gameplan-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 24px;
    padding: 26px 0;
    border-bottom: 1px solid var(--gray-200);
    align-items: start;
}

.section-black .gameplan-item {
    border-bottom-color: var(--gray-700);
}

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

.section-black .gameplan-item:first-child {
    border-top-color: var(--gray-700);
}

.gameplan-num {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    padding-top: 2px;
}

.gameplan-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.gameplan-item p {
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Value stack + price */
.value-stack {
    max-width: 640px;
    margin: 0 auto 8px;
    border: 1px solid var(--gray-200);
}

.section-black .value-stack {
    border-color: var(--gray-700);
}

.value-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    padding: 20px 28px;
    border-bottom: 1px solid var(--gray-200);
}

.section-black .value-row {
    border-bottom-color: var(--gray-700);
}

.value-row:last-child {
    border-bottom: 0;
}

.value-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--black);
    max-width: none;
}

.section-black .value-name {
    color: var(--white);
}

.value-name small {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--gray-400);
    margin-top: 2px;
}

.value-price {
    font-size: 0.95rem;
    color: var(--gray-500);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.value-row-total {
    background: var(--gray-100);
}

.section-black .value-row-total {
    background: var(--gray-800);
}

.value-row-total .value-name {
    font-weight: 600;
}

.value-row-total .value-price {
    text-decoration: line-through;
    color: var(--gray-400);
}

.price-block {
    text-align: center;
    margin: 48px auto 0;
    max-width: 640px;
    border: 1.5px solid var(--accent);
    padding: 48px 40px;
}

.price-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 16px;
}

.price-number {
    font-size: 3.4rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--black);
}

.section-black .price-number {
    color: var(--white);
}

.price-number span {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gray-400);
    letter-spacing: 0;
}

.price-sub {
    margin: 18px auto 0;
    font-size: 0.92rem;
    color: var(--gray-500);
}

.section-black .price-sub {
    color: var(--gray-400);
}

/* Deliverables (reused) */
.deliverables {
    display: flex;
    flex-direction: column;
    max-width: 560px;
}

.deliverable {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-700);
    font-size: 1rem;
    font-weight: 400;
}

.section-black .deliverable {
    color: var(--white);
}

.deliverable:first-child {
    border-top: 1px solid var(--gray-700);
}

.check {
    font-size: 0.8rem;
    flex-shrink: 0;
    color: var(--accent);
}

/* Guarantee */
.guarantee-box {
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
    padding: 76px 48px;
    border: 1px solid var(--gray-700);
}

.guarantee-text {
    font-size: 1.15rem;
    margin: 0 auto 16px;
    max-width: none;
    line-height: 1.8;
}

.guarantee-box > p:last-child {
    font-size: 0.92rem;
    max-width: none;
    color: var(--gray-500);
    margin: 0 auto;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.testimonial-card {
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.section-black .testimonial-card {
    border-color: var(--gray-700);
}

.testimonial-feature {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
}

.testimonial-video {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--gray-800);
}

.testimonial-feature .testimonial-video {
    aspect-ratio: auto;
    min-height: 280px;
}

.testimonial-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.testimonial-info {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-feature .testimonial-info {
    padding: 44px 40px;
}

.testimonial-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
}

.section-black .testimonial-name {
    color: var(--white);
}

.testimonial-feature .testimonial-name {
    font-size: 1.3rem;
}

.testimonial-result {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 6px;
}

.testimonial-feature .testimonial-result {
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 14px;
}

/* Who for / not for */
.two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}

.two-col h2 {
    font-size: 1.6rem;
    margin-bottom: 32px;
}

.check-list, .x-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.check-list li, .x-list li {
    padding-left: 32px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.section-black .check-list li {
    color: var(--gray-400);
}

.section-black .x-list li {
    color: var(--gray-500);
}

.check-list li::before {
    content: "\2014";
    position: absolute;
    left: 0;
    color: var(--white);
}

.x-list li::before {
    content: "\2014";
    position: absolute;
    left: 0;
    color: var(--gray-600);
}

/* FAQ */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

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

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

.faq-item summary {
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    color: var(--black);
    transition: color 0.2s;
}

.faq-item summary:hover {
    color: var(--gray-600);
}

.faq-item summary::after {
    content: "+";
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--gray-300);
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: "\2212";
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--gray-400);
    max-width: none;
}

/* CTA box */
.cta-box {
    text-align: center;
    margin-top: 64px;
}

.scarcity-box {
    border: 1px solid var(--gray-700);
    padding: 24px 40px;
    display: inline-block;
    margin-bottom: 40px;
    font-size: 0.88rem;
    color: var(--gray-500);
    max-width: 540px;
    line-height: 1.7;
}

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

.steps-grid .step {
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 18px;
    background: var(--white);
    color: var(--black);
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 auto;
}

/* Footer */
.footer {
    padding: 48px 0;
    border-top: 1px solid var(--gray-800);
    background: var(--black);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    font-size: 0.8rem;
    color: var(--gray-600);
    letter-spacing: 0.02em;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Responsive */
@media (max-width: 880px) {
    .pillar {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 40px 32px;
    }
    .pillar-link {
        align-self: start;
    }
    .testimonial-feature {
        grid-template-columns: 1fr;
    }
    .testimonial-feature .testimonial-video {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .section, .section-tight {
        padding: 96px 0;
    }
    .hero {
        padding: 40px 0 96px;
        min-height: auto;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .problem-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .two-col {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .footer .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .guarantee-box {
        padding: 56px 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .btn-large {
        padding: 18px 32px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
    .value-row {
        padding: 18px 20px;
    }
    .price-number {
        font-size: 2.8rem;
    }
}
