:root {
    --black: #050505;
    --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;
    --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;
    min-height: 100vh;
    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: -2;
    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 74%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 26% 16%, rgba(202, 249, 1, .16), transparent 30%),
        linear-gradient(180deg, rgba(202, 249, 1, .04), transparent 52%);
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.hero {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 88px);
    padding: clamp(38px, 6vw, 72px) 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
}

.hero-copy {
    max-width: 690px;
}

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

h1,
h2 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: 0;
    text-wrap: balance;
}

.hero-copy h1,
.thanks-card h1 {
    margin-top: 18px;
    font-size: clamp(2.25rem, 5vw, 4.55rem);
}

.hero-copy p,
.thanks-card p,
.lead-panel p {
    color: var(--muted);
    text-wrap: balance;
}

.hero-copy p {
    max-width: 620px;
    margin-top: 18px;
    font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.proof-line {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: min(100%, 660px);
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
}

.proof-line span {
    display: grid;
    gap: 2px;
    min-height: 76px;
    place-items: center;
    padding: 12px;
    color: var(--muted);
    text-align: center;
    font-size: .96rem;
}

.proof-line strong {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.32rem;
    line-height: 1;
}

.lead-panel,
.thanks-card {
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    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);
}

.lead-panel {
    padding: clamp(22px, 4vw, 30px);
}

.mentor-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.mentor-mini img {
    width: 58px;
    height: 58px;
    flex: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    object-fit: cover;
    object-position: center top;
    background: #111;
}

.mentor-mini span {
    color: var(--lime);
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.mentor-mini strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.28rem;
    line-height: 1.04;
}

.lead-panel h2 {
    font-size: clamp(1.8rem, 4vw, 2.45rem);
}

.lead-panel p {
    margin-top: 8px;
    font-size: 1rem;
}

.lead-form {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.lead-form label {
    color: var(--white);
    font-weight: 800;
}

.lead-form input {
    width: 100%;
    min-height: 52px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    outline: 0;
    background: rgba(255, 255, 255, .055);
    color: var(--white);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.lead-form input::placeholder {
    color: var(--muted-2);
}

.lead-form input:focus {
    border-color: rgba(202, 249, 1, .58);
    background: rgba(255, 255, 255, .075);
    box-shadow: 0 0 0 4px rgba(202, 249, 1, .09);
}

.lead-form .btn {
    margin-top: 8px;
}

#formStatus {
    min-height: 20px;
    color: var(--muted-2);
    text-align: center;
}

#formStatus.error {
    color: var(--danger);
}

.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;
    text-align: center;
    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-full {
    width: 100%;
}

.thanks-page[hidden] {
    display: none;
}

.thanks-hero {
    min-height: calc(100vh - 88px);
}

.thanks-card {
    max-width: 720px;
    padding: clamp(28px, 6vw, 48px);
    text-align: center;
}

.thanks-card p {
    max-width: 560px;
    margin: 16px auto 0;
    font-size: clamp(1.04rem, 2vw, 1.2rem);
}

.completion {
    max-width: 520px;
    margin: 22px auto 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .045);
}

.completion-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
    text-align: left;
}

.completion-top strong {
    color: var(--lime);
    font-family: var(--font-display);
    font-size: 1.08rem;
    line-height: 1;
}

.completion-top span {
    color: var(--muted);
    font-weight: 700;
    line-height: 1.1;
}

.completion-bar {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
}

.completion-bar span {
    display: block;
    width: 99%;
    height: 100%;
    border-radius: inherit;
    background: var(--lime);
    box-shadow: 0 0 24px rgba(202, 249, 1, .52);
}

.thanks-card .btn {
    margin-top: 28px;
}

.ghost-link {
    display: block;
    margin: 18px auto 0;
    border: 0;
    background: transparent;
    color: var(--muted-2);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer {
    padding: 30px 0;
    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;
}

.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) {
    .hero {
        align-items: flex-start;
        min-height: auto;
        padding-top: 34px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-copy {
        max-width: none;
        text-align: center;
    }

    .hero-copy p,
    .proof-line {
        margin-right: auto;
        margin-left: auto;
    }
}

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

    .hero {
        padding: 24px 0 28px;
    }

    .hero-copy {
        text-align: left;
    }

    .badge {
        min-height: 30px;
        padding: 6px 10px;
        font-size: .8rem;
    }

    .hero-copy h1 {
        margin-top: 14px;
        font-size: clamp(1.78rem, 8.7vw, 2.34rem);
        line-height: 1.03;
    }

    .thanks-card h1 {
        font-size: clamp(1.85rem, 9vw, 2.45rem);
    }

    .hero-copy p {
        margin-top: 12px;
        font-size: 1rem;
    }

    .proof-line {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-top: 18px;
    }

    .proof-line span {
        min-height: 54px;
        padding: 8px 6px;
        border-right: 1px solid var(--line);
        border-bottom: 0;
        font-size: .78rem;
        line-height: 1.08;
    }

    .proof-line span:last-child {
        border-right: 0;
    }

    .proof-line strong {
        font-size: 1rem;
    }

    .lead-panel {
        padding: 18px;
    }

    .mentor-mini {
        gap: 10px;
        margin-bottom: 16px;
        padding-bottom: 14px;
    }

    .mentor-mini img {
        width: 48px;
        height: 48px;
    }

    .mentor-mini span {
        font-size: .74rem;
    }

    .mentor-mini strong {
        font-size: 1.08rem;
    }

    .lead-panel h2 {
        font-size: 1.62rem;
    }

    .lead-form {
        gap: 8px;
        margin-top: 16px;
    }

    .lead-form label {
        font-size: .95rem;
    }

    .lead-form input {
        min-height: 48px;
        padding: 0 12px;
    }

    .lead-form .btn {
        margin-top: 6px;
    }

    .btn {
        min-height: 50px;
        padding: 0 16px;
        line-height: 1.08;
    }

    #formStatus {
        min-height: 18px;
    }

    .thanks-hero {
        min-height: auto;
    }

    .thanks-card {
        padding: 24px 18px;
    }

    .thanks-card p {
        font-size: 1rem;
    }

    .completion {
        margin-top: 18px;
        padding: 12px;
    }

    .completion-top {
        gap: 8px;
    }

    .completion-top strong,
    .completion-top span {
        font-size: .95rem;
    }

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

    .footer p {
        text-align: left;
    }
}

@media (max-width: 380px) {
    .hero-copy h1 {
        font-size: 1.66rem;
    }

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

    .btn {
        padding: 0 12px;
        font-size: .95rem;
    }
}
