:root {
    --bg: #1b0a25;
    --bg-2: #2a0f38;
    --surface: #fff7dc;
    --surface-2: #2f133e;
    --text: #ffffff;
    --muted: #decce7;
    --purple: #27102f;
    --purple-light: #6f3f9d;
    --yellow: #ffe98f;
    --yellow-2: #f3c85e;
    --pink: #d67ab2;
    --border: rgba(255, 233, 143, .22);
    --danger: #ffb4a8;
    --shadow: 0 28px 90px rgba(0, 0, 0, .32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 8%, rgba(214, 122, 178, .24), transparent 28%),
        radial-gradient(circle at 86% 0%, rgba(255, 233, 143, .18), transparent 30%),
        linear-gradient(180deg, var(--bg), #120617 100%);
    line-height: 1.55;
}

a { color: inherit; }

.hero {
    position: relative;
    isolation: isolate;
    max-width: 1220px;
    margin: 0 auto;
    padding: 78px 22px 58px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) 430px;
    gap: 42px;
    align-items: center;
    overflow: hidden;
}

.hero__glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(12px);
    opacity: .44;
    z-index: -1;
}
.hero__glow--one { left: -90px; top: 28px; background: radial-gradient(circle, #6f3f9d, transparent 68%); }
.hero__glow--two { right: 80px; bottom: 40px; background: radial-gradient(circle, #f3c85e, transparent 70%); opacity: .24; }

.hero__content h1 {
    margin: 12px 0 4px;
    max-width: 720px;
    font-size: clamp(3.1rem, 8vw, 7rem);
    line-height: .86;
    letter-spacing: -.075em;
    text-transform: none;
}

.hero__content h1::first-letter { color: var(--yellow); }

.overline {
    margin: 22px 0 0;
    font-size: clamp(1.2rem, 2vw, 1.75rem);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
}

.claim {
    margin: 16px 0 18px;
    font-size: clamp(1.5rem, 3.2vw, 3rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.04em;
    color: #fff;
}
.claim::first-letter { color: var(--yellow); }

.lead {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.badge,
.eyebrow {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 233, 143, .32);
    background: rgba(255, 233, 143, .11);
    color: var(--yellow);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 850;
    font-size: .86rem;
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

button,
.cta {
    border: 0;
    cursor: pointer;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
    color: #24102e;
    text-decoration: none;
    border-radius: 18px;
    padding: 16px 22px;
    font-weight: 950;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 18px 34px rgba(243, 200, 94, .24);
    transition: transform .18s ease, box-shadow .18s ease;
}
button:hover,
.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 42px rgba(243, 200, 94, .34);
}
.cta--ghost {
    background: rgba(255, 255, 255, .07);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: none;
}
.cta--light { background: #fff; color: var(--purple); }

.trust-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.trust-row span {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--muted);
    font-weight: 650;
}
.trust-row strong { color: #fff; }

.form-card {
    background: linear-gradient(180deg, #fff8dc, #f5db79);
    color: #24102e;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 32px;
    box-shadow: var(--shadow);
    padding: 32px;
}
.form-card__topline {
    color: #54315f;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .78rem;
    margin-bottom: 12px;
}
.form-card h2 {
    margin: 0 0 8px;
    font-size: 2rem;
    line-height: .98;
    letter-spacing: -.055em;
}
.form-card p { color: #5a4164; margin-top: 0; }

form { display: grid; gap: 16px; }
label { display: grid; gap: 7px; font-weight: 800; }
input[type="text"], input[type="email"], input[type="password"], select, textarea {
    width: 100%;
    border: 1px solid rgba(36, 16, 46, .18);
    border-radius: 15px;
    padding: 14px 15px;
    font: inherit;
    outline: none;
    background: rgba(255, 255, 255, .82);
    color: #24102e;
}
input:focus, textarea:focus, select:focus {
    border-color: var(--purple-light);
    box-shadow: 0 0 0 4px rgba(111, 63, 157, .18);
}
.check {
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: flex-start;
    color: #5a4164;
    font-size: .92rem;
    font-weight: 600;
}
.check input { margin-top: 5px; }
.hp { position: absolute; left: -99999px; opacity: 0; }
.alert {
    background: #fff1f0;
    color: #9c1c0f;
    border: 1px solid #ffd2cf;
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 800;
}
.form-note { font-size: .92rem; margin: 14px 0 0; }

.section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 64px 22px;
}
.section h2 {
    margin: 14px 0 14px;
    font-size: clamp(1.9rem, 4vw, 3.6rem);
    line-height: 1;
    letter-spacing: -.06em;
}
.section p { color: var(--muted); font-size: 1.06rem; }

.section--dark,
.promise-card,
.authority,
.faq {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border);
    border-radius: 34px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, .18);
}

.intro-strip {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 34px;
    align-items: center;
    margin-top: 10px;
}
.intro-strip p:last-child { margin: 0; }

.section-heading { max-width: 820px; }
.check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.check-grid article {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 233, 143, .20);
    border-radius: 24px;
    padding: 18px;
    color: #fff;
    font-size: 1.04rem;
}
.check-grid span {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
    color: var(--purple);
    display: grid;
    place-items: center;
    font-weight: 1000;
}

.promise-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: stretch;
}
.promise-card { padding: 42px; }
.promise-card .cta { margin-top: 12px; }

.mind-visual {
    min-height: 320px;
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid var(--border);
    background:
        radial-gradient(circle at 32% 28%, rgba(255, 233, 143, .22), transparent 18%),
        radial-gradient(circle at 68% 16%, rgba(214, 122, 178, .25), transparent 22%),
        linear-gradient(145deg, rgba(111, 63, 157, .42), rgba(255, 255, 255, .05));
}
.mind-visual__head {
    position: absolute;
    width: 150px;
    height: 190px;
    left: 78px;
    bottom: 36px;
    background: linear-gradient(180deg, #8a56b2, #402052);
    border-radius: 70% 45% 42% 48%;
    box-shadow: inset 24px 4px 40px rgba(255, 255, 255, .08);
}
.mind-visual__head::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 70px;
    left: 54px;
    top: 52px;
    background: var(--bg);
    border-radius: 0 70px 70px 0;
}
.mind-visual__orbit {
    position: absolute;
    width: 190px;
    height: 74px;
    left: 42px;
    bottom: 96px;
    border: 2px solid rgba(255, 233, 143, .45);
    border-radius: 50%;
    transform: rotate(-18deg);
}
.mind-visual span {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--yellow);
}
.mind-visual span:nth-child(3) { left: 70px; top: 54px; background: #8ba4ff; }
.mind-visual span:nth-child(4) { right: 72px; top: 76px; background: #d67ab2; }
.mind-visual span:nth-child(5) { right: 112px; bottom: 74px; background: var(--yellow-2); }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}
.feature-grid article {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 233, 143, .18);
    border-radius: 24px;
    padding: 20px;
}
.feature-grid p { color: #fff; margin-bottom: 0; }
.step-number {
    display: inline-flex;
    color: var(--yellow);
    font-size: 1.65rem;
    font-weight: 950;
    letter-spacing: -.05em;
    margin-bottom: 16px;
}

.method-section {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 30px;
}
.method-grid {
    display: grid;
    gap: 14px;
}
.method-grid article {
    background: linear-gradient(135deg, rgba(255, 233, 143, .13), rgba(255, 255, 255, .05));
    border: 1px solid rgba(255, 233, 143, .22);
    border-radius: 22px;
    padding: 20px;
    display: grid;
    gap: 5px;
}
.method-grid strong { color: var(--yellow); font-size: 1.3rem; }
.method-grid span { color: var(--muted); }

.authority,
.faq { padding: 46px; }
.faq { display: grid; gap: 12px; }
details {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 233, 143, .16);
    border-radius: 20px;
    padding: 18px;
}
details summary { cursor: pointer; font-weight: 900; color: #fff; }
details p { margin-bottom: 0; }

.final-cta {
    margin-top: 30px;
    padding: 78px 22px;
    text-align: center;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
    color: var(--purple);
}
.final-cta__badge {
    display: inline-flex;
    margin: 0 0 14px;
    border: 1px solid rgba(36, 16, 46, .22);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 950;
}
.final-cta h2 {
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: .95;
    letter-spacing: -.06em;
    margin: 0 auto 14px;
    max-width: 800px;
}
.final-cta p {
    color: #51335b;
    margin: 0 auto 26px;
    max-width: 620px;
}

.thanks-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}
.thanks-card {
    max-width: 640px;
    background: linear-gradient(180deg, #fff8dc, #f5db79);
    color: var(--purple);
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 32px;
    padding: 42px;
    box-shadow: var(--shadow);
}
.thanks-card h1 { font-size: 3rem; letter-spacing: -.06em; line-height: 1; }

@media (max-width: 980px) {
    .hero,
    .intro-strip,
    .promise-section,
    .method-section { grid-template-columns: 1fr; }
    .hero { padding-top: 44px; }
    .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
    .hero { padding: 34px 16px 40px; }
    .section { padding: 46px 16px; }
    .form-card, .promise-card, .authority, .faq { padding: 26px; border-radius: 24px; }
    .check-grid, .feature-grid { grid-template-columns: 1fr; }
    .trust-row span { width: 100%; }
    .hero-actions .cta { width: 100%; }
    .mind-visual { min-height: 240px; }
}
