:root {
    --black: #060705;
    --card: #0c0e08;
    --card-2: #101208;
    --line: rgba(255, 255, 255, .09);
    --line-strong: rgba(200, 249, 2, .5);
    --lime: #c8f902;
    --lime-ink: #151807;
    --white: #f5f7ee;
    --muted: rgba(245, 247, 238, .6);
    --muted-2: rgba(245, 247, 238, .45);
    --maxw: 1120px;
    --font-display: "Bricolage Grotesque", sans-serif;
    --font-body: "Familjen Grotesk", sans-serif;
    --font-mono: "IBM Plex Mono", monospace;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-width: 320px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.wrap {
    width: min(100% - 40px, var(--maxw));
    margin: 0 auto;
}

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

.kicker {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--lime);
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    padding: clamp(52px, 8vw, 88px) 0 clamp(36px, 5vw, 56px);
    overflow: hidden;
    background: radial-gradient(circle at 50% -20%, rgba(200, 249, 2, .1), transparent 50%);
}

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

.hero-title,
.section-head h2,
.mentor-copy h2 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.01em;
    text-wrap: balance;
}

.hero-title {
    max-width: 720px;
    margin: 20px auto 0;
    font-size: clamp(2.2rem, 5.4vw, 4.4rem);
}

.hero-sub {
    max-width: 460px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 1.12rem;
    text-wrap: balance;
}

.hero-video {
    position: relative;
    width: min(100%, 920px);
    margin-top: 28px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background: #000;
    box-shadow: 0 42px 90px -48px #000, 0 24px 80px -40px rgba(200, 249, 2, .35);
    cursor: pointer;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vsl-progress {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    height: 5px;
    background: rgba(255, 255, 255, .14);
    pointer-events: none;
}

.vsl-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--lime);
    box-shadow: 0 0 12px rgba(200, 249, 2, .8);
}

.vsl-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    border: 0;
    background: rgba(6, 7, 5, .55);
    backdrop-filter: blur(2px);
    color: var(--white);
    cursor: pointer;
    transition: opacity .3s ease;
}

.vsl-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.vsl-overlay-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(64px, 9vw, 84px);
    height: clamp(64px, 9vw, 84px);
    margin-bottom: 10px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--lime-ink);
    box-shadow: 0 0 0 0 rgba(200, 249, 2, .5);
    animation: vsl-pulse 1.8s infinite;
}

.vsl-ic {
    width: 44%;
    height: 44%;
    display: none;
}

.vsl-overlay[data-state="sound"] .vsl-ic-sound,
.vsl-overlay[data-state="paused"] .vsl-ic-play,
.vsl-overlay[data-state="ended"] .vsl-ic-replay {
    display: block;
}

.vsl-overlay[data-state="paused"] .vsl-ic-play {
    margin-left: 6%;
}

.vsl-overlay-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.15rem, 2.6vw, 1.6rem);
    line-height: 1.1;
    text-wrap: balance;
}

.vsl-overlay-sub {
    font-family: var(--font-mono);
    font-size: clamp(.72rem, 1.6vw, .82rem);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--lime);
}

@keyframes vsl-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(200, 249, 2, .5);
    }

    70% {
        box-shadow: 0 0 0 22px rgba(200, 249, 2, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(200, 249, 2, 0);
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1;
    transition: transform .18s var(--ease), filter .18s ease;
}

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

.btn i {
    width: 1.1em;
    height: 1.1em;
}

.btn-primary {
    background: var(--lime);
    color: var(--lime-ink);
    box-shadow: 0 16px 44px -18px rgba(200, 249, 2, .7);
}

.btn-primary:hover {
    filter: brightness(1.04);
}

.btn-full {
    width: 100%;
}

/* ---------- Quick proof strip ---------- */

.quick-proof {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.proof-strip div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 96px;
    padding: 16px 8px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
    border-right: 0;
}

.proof-strip strong {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
}

.proof-strip span {
    color: var(--muted-2);
    font-size: .82rem;
}

/* ---------- Sections ---------- */

.section {
    padding: clamp(72px, 9vw, 116px) 0;
}

.section-head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-head h2 {
    margin-top: 16px;
    font-size: clamp(1.9rem, 4.2vw, 3.4rem);
}

.section-head p,
.mentor-copy p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 1.12rem;
    text-wrap: balance;
}

/* ---------- Social proof ---------- */

.social-proof {
    padding-top: clamp(56px, 7vw, 88px);
}

.social-proof-inner {
    display: grid;
    gap: 12px;
    justify-items: center;
}

.proof-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: end;
    width: min(100%, 680px);
}

.proof-images img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    background: #000;
    box-shadow: 0 32px 70px -46px #000;
}

.proof-images img:first-child {
    transform: translateY(24px);
}

/* ---------- Steps ---------- */

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

.step {
    display: flex;
    gap: 18px;
    min-height: 190px;
    padding: 26px;
    border-radius: 16px;
    background: var(--card);
}

.step-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.7rem;
    line-height: 1;
    color: var(--lime);
}

.step h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1.08;
}

.step p {
    margin-top: 8px;
    color: var(--muted);
    font-size: .95rem;
}

/* ---------- Mentor ---------- */

.mentor {
    padding-top: 0;
}

.mentor-card {
    display: grid;
    grid-template-columns: .72fr 1fr;
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--card);
    overflow: hidden;
}

.mentor-photo {
    width: 100%;
    max-height: 460px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    border-radius: 14px;
    background: #111;
}

.mentor-copy h2 {
    margin-top: 14px;
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
}

/* ---------- Offer ---------- */

.offer {
    background: radial-gradient(circle at 50% 0%, rgba(200, 249, 2, .08), transparent 60%);
    border-top: 1px solid var(--line);
}

.offer-wrap {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 440px);
    gap: clamp(32px, 6vw, 72px);
    align-items: center;
}

.offer-head {
    margin: 0;
    text-align: left;
}

.offer-card {
    padding: 28px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: linear-gradient(180deg, var(--card-2), #080905);
    box-shadow: 0 30px 70px -40px rgba(200, 249, 2, .45);
}

.price {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 14px;
    color: var(--lime);
    font-family: var(--font-display);
    font-weight: 800;
    line-height: .9;
}

.price-currency {
    margin-top: 10px;
    font-size: 1.4rem;
}

.price-value {
    font-size: clamp(4rem, 6vw, 4.8rem);
}

.price-meta {
    align-self: center;
    margin-left: 10px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: .86rem;
    line-height: 1.35;
    color: var(--muted-2);
}

.offer-list {
    display: grid;
    gap: 11px;
    margin: 22px 0 24px;
    list-style: none;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(245, 247, 238, .75);
    font-weight: 600;
    font-size: .98rem;
}

.offer-list i {
    flex: none;
    width: 17px;
    height: 17px;
    color: var(--lime);
}

.secure {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 13px;
    color: var(--muted-2);
    text-align: center;
    font-size: .86rem;
}

.secure i {
    flex: none;
    width: 15px;
    height: 15px;
    color: var(--lime);
}

/* ---------- FAQ ---------- */

.faq-wrap {
    max-width: 760px;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    border-radius: 14px;
    background: var(--card);
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 64px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
}

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

.faq-item summary i {
    flex: none;
    width: 20px;
    height: 20px;
    color: var(--lime);
    transition: transform .18s ease;
}

.faq-item[open] summary i {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 20px 20px;
    color: var(--muted);
}

/* ---------- Footer ---------- */

.footer {
    padding: 38px 0 96px;
    border-top: 1px solid var(--line);
    color: var(--muted-2);
}

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

.footer strong {
    color: var(--white);
    font-family: var(--font-display);
}

.footer p {
    font-size: .9rem;
    text-align: right;
}

/* ---------- Mobile bar ---------- */

.mobile-bar {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 60;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    border-radius: 10px;
    background: var(--lime);
    color: var(--lime-ink);
    font-weight: 800;
    box-shadow: 0 18px 42px -24px rgba(200, 249, 2, .8);
}

.mobile-bar i {
    width: 1em;
    height: 1em;
}

/* ---------- Reveal ---------- */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .btn:hover {
        transform: none;
    }

    .vsl-overlay-icon {
        animation: none;
    }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
    .steps,
    .offer-wrap {
        grid-template-columns: 1fr;
    }

    .mentor-card {
        grid-template-columns: 1fr;
    }

    .mentor-photo {
        aspect-ratio: 16 / 10;
        object-position: center 20%;
        max-height: 320px;
    }

    .offer-head {
        text-align: center;
        margin: 0 auto;
    }

    .step {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .wrap {
        width: min(100% - 30px, var(--maxw));
    }

    .hero {
        padding: 44px 0 40px;
    }

    .hero-inner {
        align-items: flex-start;
        text-align: left;
    }

    .hero-title {
        margin: 18px 0 0;
        font-size: clamp(2.1rem, 9.8vw, 2.6rem);
    }

    .hero-sub {
        margin: 14px 0 0;
        max-width: 330px;
        font-size: 1rem;
    }

    .hero-actions,
    .hero-actions .btn {
        width: 100%;
    }

    .hero-video {
        margin-top: 24px;
        border-radius: 14px;
    }

    .proof-strip div {
        min-height: 84px;
        padding: 14px 6px;
    }

    .proof-strip strong {
        font-size: 1.18rem;
    }

    .proof-strip span {
        font-size: .72rem;
    }

    .section-head {
        margin-bottom: 30px;
        text-align: left;
    }

    .section-head h2 {
        font-size: clamp(1.65rem, 6.4vw, 2rem);
    }

    .proof-images {
        gap: 12px;
    }

    .proof-images img {
        border-radius: 14px;
    }

    .proof-images img:first-child {
        transform: translateY(12px);
    }

    .step {
        padding: 18px;
        border-radius: 14px;
    }

    .mentor-card {
        padding: 0 0 20px;
        border-radius: 16px;
    }

    .mentor-photo {
        border-radius: 16px 16px 0 0;
        max-height: 280px;
    }

    .mentor-copy {
        padding: 0 20px;
    }

    .offer-card {
        padding: 24px;
    }

    .footer {
        padding-bottom: 110px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer p {
        text-align: left;
    }

    .mobile-bar {
        display: flex;
    }
}
