/* input(488,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '&' */
:root {
    --bg0: #05060a;
    --bg1: #070a12;
    --accent: #47DD68;
    --accent2: #2ec459;
    --card: rgba(255,255,255,.97);
    --ink: #0b1020;
    --muted: #6b7280;
    --shadow: 0 32px 90px rgba(0,0,0,.60);
    --shadow2: 0 16px 50px rgba(0,0,0,.32);
    --rXL: 28px;
    --rLG: 18px;
    --rMD: 14px;
    --font: "Work Sans",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    background: radial-gradient(1200px 700px at 22% 20%, rgba(198,86,251,.16), transparent 60%), radial-gradient(900px 520px at 78% 34%, rgba(71,221,104,.14), transparent 55%), linear-gradient(180deg,var(--bg0),var(--bg1));
    color: #fff;
    background-repeat: no-repeat;
    background-color: #070A12;
}

.wrap {
    max-width: 1220px;
    margin: 0 auto;
    padding: 54px 20px 78px;
    min-height: 100vh;
    display: grid;
    align-items: center;
}

.layout {
    display: grid;
    grid-template-columns: minmax(0,1.02fr) minmax(420px,.98fr);
    gap: 54px;
    align-items: start;
}

/* LEFT */

.leftCol {
    padding-top: 6px;
}

.logoWrap {
    margin-bottom: 22px;
}

h1 {
    margin: 0 0 14px;
    font-size: clamp(34px,4vw,56px);
    font-weight: 950;
    letter-spacing: -1.2px;
    line-height: 1.02;
}

.sub {
    max-width: 610px;
    color: rgba(255,255,255,.78);
    line-height: 1.78;
    font-size: 15px;
    margin: 0 0 32px;
}

/* FEATURE CARDS */

.featureGrid {
    display: grid;
    gap: 22px;
    max-width: 640px;
}

.featureCard {
    position: relative;
    min-height: 176px;
    padding: 34px 112px 34px 30px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(7,9,15,.92), rgba(7,9,15,.82)), linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 20px 50px rgba(0,0,0,.28);
    overflow: hidden;
}

    .featureCard:before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(580px 180px at -10% 0%, rgba(255,255,255,.04), transparent 40%), radial-gradient(380px 180px at 100% 100%, rgba(71,221,104,.05), transparent 42%);
        pointer-events: none;
    }

.featureTitle {
    position: relative;
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 950;
    line-height: 1.15;
    letter-spacing: -.3px;
    color: #f5f7fb;
}

.featureCard.community .featureTitle {
    max-width: 280px;
    font-size: 20px;
}

.featureText {
    position: relative;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,.56);
    max-width: 455px;
}

    .featureText a {
        color: #00ff84;
        text-decoration: none;
        font-weight: 900;
    }

.featureIcon {
    position: absolute;
    top: 20px;
    right: 18px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
}

    .featureIcon svg {
        width: 58px;
        height: 58px;
        display: block;
    }

/* FORM CARD */

.card {
    background: var(--card);
    color: var(--ink);
    border-radius: var(--rXL);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,.55);
    overflow: hidden;
    position: relative;
}

    .card:before {
        content: "";
        position: absolute;
        inset: -2px;
        background: radial-gradient(900px 240px at 30% 0%, rgba(71,221,104,.10), transparent 60%);
        pointer-events: none;
    }

.cardHead {
    position: relative;
    padding: 22px 22px 18px;
    border-bottom: 1px solid rgba(17,24,39,.08);
}

.cardTitle {
    font-size: 20px;
    font-weight: 950;
    margin-bottom: 6px;
}

.cardHint {
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
}

form {
    position: relative;
    padding: 22px;
    display: grid;
    gap: 18px;
}

.section h3 {
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #6b7280;
    margin: 0 0 10px;
}

.row {
    display: grid;
    gap: 12px;
}

    .row.two {
        grid-template-columns: 1fr 1fr;
    }

.field {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(17,24,39,.12);
    background: #fff;
    box-shadow: 0 10px 24px rgba(15,23,42,.06);
    transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}

    .field:focus-within {
        border-color: rgba(71,221,104,.40);
        box-shadow: 0 0 0 6px rgba(71,221,104,.12), 0 14px 26px rgba(15,23,42,.08);
        transform: translateY(-1px);
    }

input, select, textarea {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    color: #0b1020;
}

    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    textarea:-webkit-autofill,
    textarea:-webkit-autofill:hover,
    textarea:-webkit-autofill:focus,
    select:-webkit-autofill,
    select:-webkit-autofill:hover,
    select:-webkit-autofill:focus {
        -webkit-text-fill-color: #0b1020;
        -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    }

textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.65;
}

.regions {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}

    .regions label {
        padding: 10px 12px;
        border-radius: 14px;
        border: 1px solid rgba(17,24,39,.12);
        background: rgba(17,24,39,.02);
        font-size: 13px;
        font-weight: 750;
        cursor: pointer;
        transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
        user-select: none;
        text-align: center;
    }

        .regions label:hover {
            transform: translateY(-1px);
            border-color: rgba(17,24,39,.18);
            box-shadow: 0 10px 18px rgba(15,23,42,.06);
        }

    .regions input {
        margin-right: 8px;
        accent-color: var(--accent);
    }

/* COMPLIANCE */

.complianceBox {
    border-radius: 22px;
    border: 1px solid rgba(17,24,39,.10);
    background: radial-gradient(700px 180px at 20% 0%, rgba(71,221,104,.08), transparent 62%), linear-gradient(180deg, rgba(248,250,252,.92), rgba(243,244,246,.92));
    padding: 16px;
    display: grid;
    gap: 14px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}

.complianceTop {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 4px 4px 0;
}

.shield {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: rgba(71,221,104,.14);
    border: 1px solid rgba(71,221,104,.22);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    box-shadow: 0 10px 20px rgba(71,221,104,.10);
}

    .shield svg {
        width: 18px;
        height: 18px;
    }

.complianceTitle {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 950;
    line-height: 1.25;
    color: #0b1020;
}

.complianceHint {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #5f6b7a;
}

.checks {
    display: grid;
    gap: 10px;
}

.checkCard {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(17,24,39,.08);
    box-shadow: 0 8px 20px rgba(15,23,42,.05);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
    cursor: pointer;
}

    .checkCard:hover {
        transform: translateY(-1px);
        border-color: rgba(71,221,104,.24);
        box-shadow: 0 14px 24px rgba(15,23,42,.08);
    }

    .checkCard input {
        width: 16px;
        height: 16px;
        margin: 2px 0 0;
        accent-color: var(--accent);
    }

.checkText {
    font-size: 13px;
    line-height: 1.6;
    color: #172033;
}

    .checkText b {
        color: #0b1020;
        font-weight: 950;
    }

.legalLinks {
    color: #3a2fb3;
    font-weight: 900;
    text-decoration: none;
    border-bottom: 1px solid rgba(58,47,179,.18);
}

    .legalLinks:hover {
        border-bottom-color: rgba(58,47,179,.45);
    }

.btn {
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    border: 0;
    font-size: 14px;
    font-weight: 950;
    cursor: pointer;
    background: linear-gradient(180deg,var(--accent),var(--accent2));
    color: #07100a;
    box-shadow: 0 18px 34px rgba(71,221,104,.22);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

    .btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 22px 40px rgba(71,221,104,.26);
        filter: saturate(1.05);
    }

.btn-grey {
    text-decoration: none;
    display: flex;
    justify-content: center;
    background: #dcdcdc;
}

.fine {
    font-size: 11px;
    text-align: center;
    color: #6b7280;
    margin-top: 6px;
    line-height: 1.55;
}

@media(max-width:1080px) {
    .layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .card {
        order: 2;
    }

    .leftCol {
        order: 1;
        padding-top: 0;
    }

    .featureGrid,
    .sub {
        max-width: none;
    }
}

@media(max-width:700px) {
    .wrap {
        padding: 34px 16px 54px;
    }

    .featureCard {
        padding: 28px 24px 28px 24px;
        min-height: auto;
    }

    .featureIcon {
        position: static;
        margin: 0 0 18px auto;
    }
}

@media(max-width:560px) {
    .row.two {
        grid-template-columns: 1fr
    }

    .regions {
        grid-template-columns: repeat(2,1fr)
    }

    .featureCard.community .featureTitle {
        max-width: none
    }
}


.field-validation-error, .field-validation-valid {
    font-size: 12px;
    font-weight: 500;
    color: #e30000;
    margin-top: -8px;
}

.field-validation-valid, .field-validation-error {
    display: none;

    &:not(:empty) {
        display: block;
    }
}

.row:has(.field-validation-valid, .field-validation-error) {
    display: none;
}

.row:has(.field-validation-valid:not(:empty), .field-validation-error:not(:empty)) {
    display: block;
}

.icon-svg {
    background-color: #fff;
}

.toast-error {
    background: #d60000;
}