:root {
    --black: #050505;
    --ink: #0c0c0c;
    --card: #121212;
    --card-2: #181818;
    --line: rgba(255, 255, 255, .12);
    --line-strong: rgba(202, 249, 1, .54);
    --lime: #caf901;
    --lime-ink: #151807;
    --white: #f7f7f2;
    --muted: rgba(247, 247, 242, .68);
    --muted-2: rgba(247, 247, 242, .46);
    --danger: #ff6b6b;
    --maxw: 1120px;
    --radius: 16px;
    --font-display: "Bricolage Grotesque", sans-serif;
    --font-body: "Familjen Grotesk", sans-serif;
    --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;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(rgba(202, 249, 1, .026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(202, 249, 1, .026) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
}

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;
}

.hero {
    position: relative;
    padding: clamp(46px, 7vw, 76px) 0 clamp(34px, 5vw, 52px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 0%, rgba(202, 249, 1, .14), transparent 36%),
        linear-gradient(180deg, rgba(202, 249, 1, .035), transparent 52%);
}

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

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    padding: 7px 14px;
    border: 1px solid rgba(202, 249, 1, .22);
    border-radius: 8px;
    background: rgba(202, 249, 1, .08);
    color: var(--lime);
    font-size: .88rem;
    font-weight: 700;
}

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

.hero-title {
    max-width: 620px;
    margin: 18px auto 0;
    font-size: clamp(1.85rem, 3.9vw, 3.15rem);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    line-height: 1;
    transition: transform .18s var(--ease), filter .18s ease, border-color .18s ease, background .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 18px 52px -22px rgba(202, 249, 1, .82);
}

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

.btn-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, .04);
    color: var(--white);
}

.btn-secondary:hover {
    border-color: rgba(202, 249, 1, .34);
}

.btn-full {
    width: 100%;
}

.hero-video {
    width: min(100%, 920px);
    margin-top: 24px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #000;
    box-shadow: 0 42px 90px -48px #000, inset 0 0 0 8px rgba(255, 255, 255, .03);
}

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

.quick-proof {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .025);
}

.social-proof {
    padding: 34px 0 clamp(58px, 7vw, 88px);
    border-bottom: 1px solid var(--line);
}

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

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

.proof-strip span {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--muted);
    text-align: center;
    font-size: 1.03rem;
}

.proof-strip strong {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.4rem;
}

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

.section-muted {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #0a0a0a;
}

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

.section-head.compact {
    margin-bottom: 0;
}

.section-head.compact h2 {
    max-width: 620px;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.section-head h2,
.mentor-copy h2 {
    margin-top: 18px;
    font-size: clamp(2rem, 4.6vw, 3.65rem);
}

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

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

.feature-card {
    min-height: 250px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(180deg, var(--card-2), var(--card));
}

.feature-card i {
    width: 34px;
    height: 34px;
    color: var(--lime);
}

.feature-card h3,
.step h3 {
    margin-top: 22px;
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1.08;
}

.feature-card p,
.step p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 1rem;
}

.mentor-layout {
    display: grid;
    grid-template-columns: .86fr 1fr;
    gap: clamp(34px, 6vw, 72px);
    align-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 var(--line);
    border-radius: 16px;
    background: #000;
    box-shadow: 0 32px 70px -46px #000;
}

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

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.step {
    min-height: 220px;
    padding: 30px;
    border-right: 1px solid var(--line);
}

.step:last-child {
    border-right: 0;
}

.step span {
    color: var(--lime);
    font-family: var(--font-display);
    font-size: .92rem;
    font-weight: 800;
}

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

.mentor-photo {
    width: 100%;
    max-height: 560px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #111;
}

.mentor-copy {
    max-width: 560px;
}

.offer {
    position: relative;
    overflow: hidden;
}

.offer::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 50%;
    width: min(820px, 86vw);
    height: 440px;
    transform: translateX(-50%);
    pointer-events: none;
    background: radial-gradient(circle, rgba(202, 249, 1, .18), transparent 68%);
    filter: blur(4px);
}

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

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

.offer-card {
    padding: 24px;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background: linear-gradient(180deg, #191919, #101010);
    box-shadow: 0 34px 86px -52px rgba(202, 249, 1, .5), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.offer-top {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.offer-top span {
    color: var(--lime);
    font-size: .84rem;
    font-weight: 800;
    text-transform: uppercase;
}

.offer-top strong {
    font-family: var(--font-display);
    font-size: 1.55rem;
    line-height: 1;
}

.price {
    padding: 24px 0 18px;
}

.price small {
    color: var(--muted-2);
    font-size: .98rem;
}

.price small:first-child {
    text-decoration: line-through;
}

.price div {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin: 2px 0;
    color: var(--lime);
    font-family: var(--font-display);
    font-size: clamp(4.1rem, 7vw, 5.3rem);
    font-weight: 800;
    line-height: .92;
}

.price div span {
    margin-top: 10px;
    font-size: .34em;
}

.offer-list {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
    list-style: none;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 600;
}

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

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

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

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

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

.faq-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--card);
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 66px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-size: 1.08rem;
    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 {
    padding: 38px 0 92px;
    border-top: 1px solid var(--line);
    color: var(--muted-2);
    background: var(--black);
}

.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: .92rem;
    text-align: right;
}

.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: 8px;
    background: var(--lime);
    color: var(--lime-ink);
    font-weight: 800;
    box-shadow: 0 18px 42px -24px rgba(202, 249, 1, .8);
}

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

.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;
    }
}

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

    .mentor-copy {
        max-width: none;
    }

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

    .step {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .step:last-child {
        border-bottom: 0;
    }
}

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

    .hero {
        min-height: auto;
        padding: 36px 0 38px;
    }

    .hero-title {
        margin-top: 18px;
        font-size: clamp(1.7rem, 8vw, 2.25rem);
    }

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

    .hero-video {
        margin-top: 20px;
        border-radius: 12px;
    }

    .proof-strip {
        grid-template-columns: 1fr;
    }

    .proof-strip span {
        min-height: 70px;
        border-bottom: 1px solid var(--line);
    }

    .proof-strip span:last-child {
        border-bottom: 0;
    }

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

    .feature-card,
    .step,
    .offer-card {
        padding: 22px;
    }

    .proof-images {
        gap: 10px;
    }

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

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

    .mentor-photo {
        max-height: 430px;
        border-radius: 12px;
    }

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

    .footer p {
        text-align: left;
    }

    .mobile-bar {
        display: flex;
    }
}
