:root {
    --lp4-bg: #1c1e24;
    --lp4-bg-soft: #22242b;
    --lp4-card: #262830;
    --lp4-line: #3a3d46;
    --lp4-text: #ffffff;
    --lp4-text-soft: #d8dbe2;
    --lp4-gold-a: #ffac3b;
    --lp4-gold-b: #f98e1d;
    --lp4-ok: #1ba500;
    --lp4-width: 1400px;
    --lp4-header-h: 45px;
    --lp4-pastel: #d5d9e6;
    --lp4-chrome-top-bg: rgba(0, 0, 0, 0.82);
    --lp4-chrome-nav-bg: #000;
    --lp4-chrome-foot-bg: transparent;
    --lp4-chrome-fg: #fff;
    --lp4-chrome-border: rgba(255, 255, 255, 0.1);
    --lp4-chrome-stripe: rgba(255, 255, 255, 0.07);
    --lp4-chrome-hover: var(--lp4-gold-a);
    --lp4-chrome-burger: #fff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: radial-gradient(circle at 10% 0%, #2c303a 0%, var(--lp4-bg) 55%);
    color: var(--lp4-text);
    font-family: Montserrat, Arial, sans-serif;
    line-height: 1.5;
    padding-top: var(--lp4-header-h);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

body > main {
    flex: 1 0 auto;
}

a {
    color: inherit;
}

.lp4-wand-sparks {
    position: fixed;
    inset: 0;
    z-index: 18;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.lp4-wand-sparks.is-on {
    opacity: 1;
}

.lp4-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    overflow: visible;
    color: var(--lp4-chrome-fg);
    font-family: Montserrat, Arial, sans-serif;
    border-bottom: 1px solid var(--lp4-chrome-border);
    background: var(--lp4-chrome-top-bg);
    backdrop-filter: blur(6px);
    transform: translateY(0);
    transition: transform 0.28s ease;
}

.lp4-top.is-hidden {
    transform: translateY(-100%);
    pointer-events: none;
}

.lp4-top.is-open,
.lp4-top.is-open.is-hidden {
    z-index: 40;
    transform: translateY(0);
    pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
    .lp4-top {
        transition: none;
    }
}

.lp4-wrap {
    width: min(var(--lp4-width), calc(100% - 2rem));
    margin: 0 auto;
}

.lp4-top-inner {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
    font-weight: 700;
    letter-spacing: 0.02em;
}

.lp4-top-right {
    margin-left: auto;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
    text-align: right;
}

.lp4-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 44px;
    height: 44px;
    margin-left: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.lp4-burger,
.lp4-burger::before,
.lp4-burger::after {
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--lp4-chrome-burger);
    border-radius: 1px;
    transition: transform 0.4s ease, opacity 0.4s ease, top 0.4s ease;
}

.lp4-burger {
    top: 21px;
    left: auto;
    right: 0.45rem;
}

.lp4-burger::before,
.lp4-burger::after {
    content: "";
    left: 0;
}

.lp4-burger::before {
    top: -7px;
}

.lp4-burger::after {
    top: 7px;
}

.lp4-top.is-open .lp4-burger {
    background: transparent;
}

.lp4-top.is-open .lp4-burger::before {
    top: 0;
    transform: rotate(45deg);
}

.lp4-top.is-open .lp4-burger::after {
    top: 0;
    transform: rotate(-45deg);
}

.lp4-nav {
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    width: min(20rem, 100%);
    max-width: 20rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--lp4-chrome-nav-bg);
    max-height: 0;
    padding: 0 0.5rem;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

.lp4-top.is-open .lp4-nav {
    max-height: 100dvh;
    padding: 0.5rem;
    opacity: 1;
    pointer-events: auto;
}

.lp4-nav-link,
.lp4-drop-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--lp4-chrome-fg);
    font: inherit;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: right;
    text-decoration: none;
    box-sizing: border-box;
    padding: 0.9rem;
    min-height: 3.2rem;
    cursor: pointer;
}

.lp4-nav-link:hover,
.lp4-drop-toggle:hover {
    color: var(--lp4-chrome-hover);
}

.lp4-drop {
    position: relative;
}

.lp4-drop-list {
    position: static;
    min-width: 0;
    margin: 0 0 0.4rem;
    padding: 0;
    background: var(--lp4-chrome-nav-bg);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.4s ease, visibility 0.4s ease;
}

.lp4-drop.is-open .lp4-drop-list {
    visibility: visible;
    max-height: 16rem;
    pointer-events: auto;
}

.lp4-drop-link {
    display: block;
    padding: 0.55rem 0.75rem 0.55rem 0.2rem;
    color: var(--lp4-chrome-fg);
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.lp4-drop-link.last {
    border-bottom: 0;
}

.lp4-drop-link:hover {
    color: var(--lp4-chrome-hover);
    background: rgba(255, 172, 59, 0.12);
}

.lp4-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin: 0.7rem 0 0.4rem;
    padding: 0 0.9rem;
    color: #1a1004;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    background: linear-gradient(180deg, var(--lp4-gold-a), var(--lp4-gold-b));
}

.lp4-nav-langs {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    width: 100%;
    gap: 0.15rem;
    box-sizing: border-box;
    padding: 0.9rem;
    min-height: 3.2rem;
}

.lp4-nav-user {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
    color: inherit;
    text-decoration: none;
    font: inherit;
    font-weight: 600;
    box-sizing: border-box;
}

.lp4-nav-user span {
    color: var(--lp4-chrome-fg);
}

.lp4-nav-user:hover span {
    color: var(--lp4-chrome-hover);
}

.lp4-nav-user img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.lp4-nav-langs:has(.lp4-nav-user) {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.lp4-nav-langs:has(.lp4-nav-user) .lp4-nav-lang[aria-pressed="false"] {
    width: auto;
    height: auto;
    min-height: 0;
    flex: 0 0 auto;
}

body.lp4-nav-lock {
    overflow: hidden;
}

.lp4-nav-lang {
    border: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 1.25rem;
    line-height: 1;
    padding: 0.15rem;
    cursor: pointer;
    display: none;
    align-items: center;
}

.lp4-nav-lang[aria-pressed="false"] {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
}

.lp4-nav-lang > span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.lp4-nav-toolbar {
    display: none;
}

.lp4-nav-close {
    display: none;
}

body.mp-chrome-light {
    --lp4-chrome-fg: #1a1c22;
    --lp4-chrome-burger: #1a1c22;
    --lp4-chrome-stripe: rgba(26, 28, 34, 0.07);
    --lp4-chrome-hover: #c6781a;
}

body.mp-contact {
    --lp4-chrome-top-bg: #fffaf2;
    --lp4-chrome-nav-bg: #fff3e4;
    --lp4-chrome-foot-bg: #fffaf2;
    --lp4-chrome-border: rgba(36, 48, 68, 0.08);
}

body.mp-blog-view {
    --lp4-chrome-top-bg: #ead6f4;
    --lp4-chrome-nav-bg: #f6e8fb;
    --lp4-chrome-foot-bg: #ead6f4;
    --lp4-chrome-border: rgba(92, 58, 122, 0.12);
}

body.mp-consulting {
    --lp4-chrome-top-bg: #0F172A;
    --lp4-chrome-nav-bg: #0F172A;
    --lp4-chrome-foot-bg: #0F172A;
    --lp4-chrome-border: rgba(255, 255, 255, 0.08);
    --lp4-chrome-fg: #fff;
    --lp4-chrome-burger: #fff;
    --lp4-chrome-stripe: rgba(255, 255, 255, 0.07);
    --lp4-chrome-hover: var(--lp4-gold-a);
}

.lp4-nav > :nth-child(even) {
    background: var(--lp4-chrome-stripe);
}

.lp4-nav-close,
.lp4-foot,
.lp4-foot a {
    color: var(--lp4-chrome-fg);
}

.lp4-nav-close-x::before,
.lp4-nav-close-x::after {
    background: var(--lp4-chrome-burger);
}

@media (prefers-reduced-motion: reduce) {
    .lp4-burger,
    .lp4-burger::before,
    .lp4-burger::after,
    .lp4-drop-list,
    .lp4-nav {
        transition: none;
    }
}

@media (max-width: 720px) {
    :root {
        --lp4-header-h: 4rem;
    }

    .lp4-top-inner {
        height: var(--lp4-header-h);
        min-height: var(--lp4-header-h);
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .lp4-burger {
        top: 50%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }

    .lp4-nav {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        padding: 0;
        z-index: 6;
    }

    .lp4-top.is-open .lp4-nav {
        height: 100dvh;
        min-height: 100dvh;
        max-height: 100dvh;
        padding: 0;
        overflow-y: auto;
    }

    .lp4-nav-toolbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex: 0 0 auto;
        width: 100%;
        height: 6rem;
        padding: 0 0.85rem;
        box-sizing: border-box;
    }

    .lp4-nav-toolbar .lp4-brand {
        display: inline;
    }

    .lp4-nav-toolbar .lp4-brand-short {
        display: none;
    }

    .lp4-nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 44px;
        height: 44px;
        margin: 0;
        padding: 0;
        border: 0;
        background: transparent;
        color: #fff;
        cursor: pointer;
    }

    .lp4-nav-close-x {
        position: relative;
        width: 2rem;
        height: 2rem;
        flex-shrink: 0;
    }

    .lp4-nav-close-x::before,
    .lp4-nav-close-x::after {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 2rem;
        height: 3px;
        background: var(--lp4-chrome-burger);
        border-radius: 1px;
    }

    .lp4-nav-close-x::before {
        transform: rotate(45deg);
    }

    .lp4-nav-close-x::after {
        transform: rotate(-45deg);
    }

    .lp4-nav-link,
    .lp4-drop-toggle,
    .lp4-nav-langs {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 1 1 0;
        min-height: 0;
        padding: 0 1.2rem;
        box-sizing: border-box;
        font-size: 1.4rem;
    }

    .lp4-nav-lang {
        font-size: 2.5rem;
    }

    .lp4-nav-langs {
        padding: 0;
    }

    .lp4-nav-user {
        padding: 0 1.2rem 0 1.75rem;
    }

    .lp4-nav-lang[aria-pressed="false"] {
        display: flex;
        width: 100%;
        height: 100%;
        align-self: stretch;
        justify-content: flex-end;
        padding: 0 1.2rem;
        box-sizing: border-box;
    }
}

.lp4-top-inner img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
}

.lp4-hero {
    padding: 0.9rem 0 4.2rem;
    min-height: calc(100vh - var(--lp4-header-h));
    min-height: calc(100dvh - var(--lp4-header-h));
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient(circle at 10% 0%, #2c303a 0%, var(--lp4-bg) 55%);
    color: var(--lp4-text);
}

.lp4-hero-head {
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}

.lp4-kicker {
    color: var(--lp4-gold-a);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0 0 0.75rem;
}

.lp4-kicker-br {
    display: none;
}

.lp4-hero h1 {
    margin: 0 auto;
    font-size: clamp(1.85rem, 3.2vw, 3.1rem);
    line-height: 1.16;
    max-width: 100%;
}

.lp4-sub {
    margin: 1rem 0 0;
    color: var(--lp4-text-soft);
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 76ch;
    margin-left: auto;
    margin-right: auto;
}

.lp4-when {
    margin: 0 0 0.75rem;
    font-weight: 700;
    text-align: center;
    font-size: 0.85rem;
}

.lp4-grid {
    width: min(1180px, 100%);
    margin: 1.6rem auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 1.1rem;
    align-items: stretch;
}

.lp4-video,
.lp4-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--lp4-line);
    border-radius: 20px;
}

.lp4-video {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    align-self: start;
    border-radius: 8px;
}

.lp4-video-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    cursor: pointer;
    display: grid;
    place-items: center;
    background: #0b0d12;
    color: inherit;
}

.lp4-video-poster img,
.lp4-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
}

.lp4-card {
    padding: 1.2rem;
}

.lp4-card h2,
.lp4-card h3 {
    margin: 0 0 0.8rem;
    line-height: 1.2;
}

.lp4-hero-aside {
    display: flex;
    flex-direction: column;
    width: max-content;
    min-width: 30rem;
    max-width: 100%;
    justify-self: end;
    padding: 1.25rem 1.4rem;
    border-radius: 8px;
}

.lp4-card.lp4-hero-aside {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        var(--lp4-bg);
    color: var(--lp4-text);
}

.lp4-hero-aside h2 {
    color: var(--lp4-text);
}

.lp4-hero-aside .lp4-list li {
    color: var(--lp4-text-soft);
}

.lp4-hero-aside .lp4-list {
    flex: 1 1 auto;
    gap: 0.8rem;
    align-content: space-evenly;
}

.lp4-hero-aside .lp4-list li {
    padding-left: 2.1rem;
    white-space: nowrap;
}

.lp4-hero-aside .lp4-list li::before {
    width: 18px;
    height: 18px;
    border-radius: 0;
    top: 0.15rem;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='8.2' fill='none' stroke='%23ffac3b' stroke-width='1.6'/%3E%3Cpath d='M6 10.3l2.6 2.6 5.4-6' fill='none' stroke='%23ffac3b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
}

.lp4-hero-cta {
    margin-top: 1.6rem;
    text-align: center;
}

.lp4-hero-cta .lp4-btn {
    width: auto;
    min-width: 320px;
    margin: 0 auto;
}

.lp4-countdown {
    margin: 0.85rem 0 1.05rem;
}

.lp4-countdown-label {
    margin: 0 0 0.55rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lp4-text-soft);
}

.lp4-countdown-units {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
}

.lp4-countdown-unit {
    min-width: 4.4rem;
    padding: 0.55rem 0.4rem 0.45rem;
    background: var(--lp4-card);
    border: 1px solid var(--lp4-line);
    border-radius: 8px;
}

.lp4-countdown-unit strong {
    display: block;
    font-size: 1.45rem;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.lp4-countdown-unit span {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lp4-text-soft);
}

.lp4-hero-cta .lp4-micro {
    text-align: center;
}

.lp4-form label {
    font-weight: 700;
    display: block;
    margin-bottom: 0.4rem;
}

.lp4-form label.is-signal {
    color: var(--lp4-gold-a);
}

.lp4-form input:not([type="checkbox"]),
.lp4-form select {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #4a4f5f;
    background: #0f1117;
    color: var(--lp4-text);
    padding: 0.8rem 0.95rem;
    font: inherit;
    margin-bottom: 0.9rem;
}

.lp4-form input:not([type="checkbox"]):focus,
.lp4-form input:not([type="checkbox"]):focus-visible,
.lp4-form select:focus,
.lp4-form select:focus-visible {
    outline: none;
    box-shadow: none;
}

.lp4-select {
    position: relative;
    margin-bottom: 0.35rem;
}

.lp4-select-native {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.lp4-form select.lp4-select-native {
    width: 1px;
    height: 1px;
    padding: 0;
    margin: 0;
    border: 0;
}

.lp4-select-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-radius: 12px;
    border: 1px solid #4a4f5f;
    background: #0f1117;
    color: var(--lp4-text);
    padding: 0.8rem 0.95rem;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp4-select-value.is-placeholder {
    color: var(--lp4-text-soft);
}

.lp4-select-chevron {
    flex-shrink: 0;
    width: 12px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffac3b' d='M1.2 1.3L6 6.1l4.8-4.8'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.25s ease;
}

.lp4-select.is-open .lp4-select-chevron {
    transform: rotate(180deg);
}

.lp4-select.is-open .lp4-select-trigger {
    border-color: var(--lp4-gold-a);
    box-shadow: 0 0 0 2px rgba(255, 172, 59, 0.18);
}

.lp4-select-menu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    margin: 0;
    padding: 0.35rem;
    list-style: none;
    border-radius: 12px;
    border: 1px solid rgba(255, 172, 59, 0.28);
    background: linear-gradient(180deg, #171a22 0%, #0f1117 100%);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 172, 59, 0.08);
    max-height: 16rem;
    overflow: auto;
}

.lp4-select-option {
    width: 100%;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--lp4-text);
    padding: 0.7rem 0.75rem;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.lp4-select-option:hover,
.lp4-select-option:focus-visible {
    background: rgba(255, 172, 59, 0.12);
    outline: none;
}

.lp4-select-option.is-selected {
    background: rgba(255, 172, 59, 0.16);
    color: #ffd7a0;
}

.lp4-form input.is-signal,
.lp4-select.is-signal .lp4-select-trigger {
    border-color: var(--lp4-gold-a);
    animation: lp4-field-signal 1.5s ease-in-out infinite;
}

@keyframes lp4-field-signal {
    0%,
    100% {
        box-shadow: 0 0 0 2px rgba(255, 172, 59, 0.28), 0 0 12px rgba(255, 172, 59, 0.3);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(255, 172, 59, 0.16), 0 0 22px rgba(255, 172, 59, 0.55);
    }
}

.lp4-btn {
    border: 0;
    border-radius: 0;
    font: inherit;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    color: #1a1004;
    background: linear-gradient(180deg, var(--lp4-gold-a), var(--lp4-gold-b));
    box-shadow: 0 10px 26px rgba(249, 142, 29, 0.35);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 0 1.2rem;
}

.lp4-btn:hover {
    filter: brightness(1.05);
}

.lp4-micro,
.lp4-preview {
    margin: 0.6rem 0 0;
    font-size: 0.9rem;
    color: #b6bccb;
}

.lp4-form .lp4-micro {
    text-align: center;
}

.lp-already {
    width: 100%;
}

.lp-already[hidden],
.lp-already-wait[hidden],
.lp-already-account[hidden],
.lp-already-slot[hidden],
.lp-login-sent[hidden] {
    display: none !important;
}

.lp-already-kicker {
    margin: 0 0 0.45rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lp4-gold-a);
    font-size: 0.82rem;
}

.lp-already-title {
    margin: 0 0 0.7rem;
    color: #fff;
    font-size: clamp(1.45rem, 3.2vw, 2.05rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

.lp-already-slot {
    margin: 0;
    color: var(--lp4-text-soft);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.45;
}

.lp-already-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    margin: 1.2rem 0 0;
}

.lp-already-actions .lp4-btn {
    width: 100%;
    margin-top: 0;
    min-width: 0;
}

.lp4-signup-card .lp-already-actions .lp4-btn {
    margin-top: 0;
}

.lp-already-hint {
    margin: 0 0 0.9rem;
    color: #b6bccb;
}

.lp-login-sent {
    margin: 0 0 0.9rem;
    color: #3ecf6a;
    font-weight: 700;
}

.lp4-signup-identity:not([hidden]) {
    display: contents;
}

.lp4-signup-identity[hidden] {
    display: none !important;
}

body.logged-in .lp-signup-form .lp4-signup-identity,
body.logged-in .lp-signup-form .lp4-consent {
    display: none !important;
}

body.logged-in .lp-signup-form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 1.5rem;
}

body.logged-in .lp-signup-form > label {
    flex: 0 0 auto;
}

body.logged-in .lp-signup-form .lp4-signup-stack {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
}

body.logged-in .lp-signup-form .lp4-select {
    margin: 0 0 1.5rem;
}

body.logged-in .lp-signup-form .lp4-error {
    margin: 0 0 1rem;
}

body.logged-in .lp-signup-form .lp4-btn {
    margin-top: 0;
}

body.logged-in .lp-signup-form .lp4-micro {
    margin-top: 0.85rem;
}

@media (min-width: 860px) {
    body.logged-in .lp4-signup-card:not(.is-registered) .lp4-signup-split {
        align-items: stretch;
    }

    body.logged-in .lp-signup-form {
        margin-top: 0;
        min-height: 100%;
        padding-block: 0.35rem;
    }
}

.lp4-signup-card.is-registered .lp-signup-form {
    display: none;
}

html.lp-has-signup .lp4-signup-card .lp-signup-form {
    display: none !important;
}

html.lp-has-signup .lp-already {
    display: block !important;
}

html.lp-has-signup .lp-already-account {
    display: flex !important;
}

.lp4-btn.lp4-btn-ghost {
    color: #fff;
    background: transparent;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.lp4-btn.lp4-btn-ghost:hover {
    filter: none;
    border-color: var(--lp4-gold-a);
    color: var(--lp4-gold-a);
}

.lp4-signup-card .lp4-btn.lp4-btn-ghost {
    margin-top: 0.7rem;
    color: #fff;
    background: transparent;
    box-shadow: none;
}

.lp4-form label.lp4-consent[hidden] {
    display: none !important;
}

.lp4-form label.lp4-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    position: relative;
    margin: 0.15rem 0 1.1rem;
    padding: 0.2rem 0;
    min-height: 44px;
    cursor: pointer;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--lp4-text);
}

.lp4-form .lp4-consent input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.lp4-consent-box {
    display: block;
    flex: 0 0 1.75rem;
    width: 1.75rem;
    height: 1.75rem;
    margin-block-start: 0.1rem;
    box-sizing: border-box;
    border: 2px solid #8a90a3;
    border-radius: 6px;
    background: #0f1117;
    position: relative;
    pointer-events: none;
}

.lp4-form .lp4-consent input:checked + .lp4-consent-box {
    background: var(--lp4-gold-a);
    border-color: var(--lp4-gold-a);
}

.lp4-form .lp4-consent input:checked + .lp4-consent-box::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 46%;
    width: 0.38rem;
    height: 0.72rem;
    border: solid #1a1004;
    border-width: 0 3px 3px 0;
    transform: translate(-50%, -58%) rotate(45deg);
}

.lp4-form .lp4-consent input:focus-visible + .lp4-consent-box {
    box-shadow: 0 0 0 3px rgba(255, 172, 59, 0.4);
}

.lp4-consent-text {
    flex: 1 1 auto;
    min-width: 0;
    padding-top: 0.16rem;
}

.lp4-consent-text a {
    position: relative;
    z-index: 1;
    color: var(--lp4-gold-a);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.lp4-form .lp4-consent.is-signal .lp4-consent-box {
    border-color: var(--lp4-gold-a);
    animation: lp4-field-signal 1.5s ease-in-out infinite;
}

.lp4-error {
    margin: 0 0 0.65rem;
    color: #ff9d9d;
    font-weight: 700;
    text-align: center;
}

.lp4-section {
    padding: 3.6rem 0 2.4rem;
}

.lp4-section h2 {
    margin: 0 0 0.9rem;
    font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.lp4-benefits {
    position: relative;
    padding: 5.6rem 0 1.2rem;
    overflow: visible;
}

.lp4-benefits .lp4-wrap {
    /* gleiche Breite wie die Form-Box (.lp4-signup-inner), inkl. Card-Scale 0.96 */
    width: min(691px, calc(100% - 2rem));
    position: relative;
    z-index: 1;
}

.lp4-benefit-arrows {
    position: relative;
    z-index: 0;
    width: min(720px, calc(100% - 2rem));
    margin: 1.2rem auto -2.4rem;
    height: clamp(7rem, 14vw, 10rem);
    pointer-events: none;
}

.lp4-benefit-arrows-svg {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.78;
}

.lp4-benefit-arrow {
    transform-box: fill-box;
    transform-origin: center;
}

.lp4-benefit-arrow-a {
    animation: lp4-arrow-drift 3.4s ease-in-out infinite;
}

.lp4-benefit-arrow-b {
    animation: lp4-arrow-drift 2.8s ease-in-out infinite;
    animation-delay: -0.7s;
}

.lp4-benefit-arrow-c {
    animation: lp4-arrow-drift 3.8s ease-in-out infinite reverse;
    animation-delay: -1.4s;
}

@keyframes lp4-arrow-drift {
    0%,
    100% {
        translate: 0 0;
        opacity: 0.55;
    }
    50% {
        translate: 0 10px;
        opacity: 1;
    }
}

.lp4-benefits h2 {
    text-align: center;
    margin: 0 0 4.4rem;
}

.lp4-benefits-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lp4-benefit {
    margin: 0;
    padding: 1.7rem 1.3rem 1.8rem;
    text-align: center;
    border: 1px solid var(--lp4-line);
    border-radius: 20px;
    background: var(--lp4-card);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lp4-benefit h3 {
    margin: 0;
    width: 100%;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--lp4-text);
}

.lp4-benefit-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    border: 1.5px solid var(--lp4-gold-a);
    background: rgba(255, 172, 59, 0.08);
    position: relative;
    display: block;
}

.lp4-benefit-icon::before,
.lp4-benefit-icon::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
}

.lp4-icon-live::before {
    width: 3px;
    height: 16px;
    top: 18px;
    left: 24px;
    background: var(--lp4-gold-a);
}

.lp4-icon-live::after {
    width: 12px;
    height: 12px;
    top: 12px;
    left: 20px;
    border-left: 2.5px solid var(--lp4-gold-a);
    border-top: 2.5px solid var(--lp4-gold-a);
    transform: rotate(45deg);
}

.lp4-icon-token::before,
.lp4-icon-token::after {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2.5px solid var(--lp4-gold-a);
}

.lp4-icon-token::before {
    top: 10px;
    left: 12px;
}

.lp4-icon-token::after {
    top: 22px;
    left: 22px;
}

.lp4-icon-code::before,
.lp4-icon-code::after {
    width: 10px;
    height: 16px;
    top: 17px;
    border-top: 2.5px solid var(--lp4-gold-a);
    border-bottom: 2.5px solid var(--lp4-gold-a);
}

.lp4-icon-code::before {
    left: 14px;
    border-left: 2.5px solid var(--lp4-gold-a);
    border-radius: 3px 0 0 3px;
}

.lp4-icon-code::after {
    left: 28px;
    border-right: 2.5px solid var(--lp4-gold-a);
    border-radius: 0 3px 3px 0;
}

.lp4-icon-safe::before {
    width: 18px;
    height: 22px;
    top: 13px;
    left: 16px;
    background: var(--lp4-gold-a);
    clip-path: polygon(50% 0, 100% 16%, 100% 58%, 50% 100%, 0 58%, 0 18%);
}

.lp4-icon-safe::after {
    width: 6px;
    height: 10px;
    top: 18px;
    left: 23px;
    border-right: 2.5px solid var(--lp4-card);
    border-bottom: 2.5px solid var(--lp4-card);
    transform: rotate(40deg);
}

.lp4-icon-pro::before {
    width: 16px;
    height: 2.5px;
    top: 25px;
    left: 18px;
    background: var(--lp4-gold-a);
    box-shadow: 0 -8px 0 var(--lp4-gold-a), 0 8px 0 var(--lp4-gold-a);
}

.lp4-icon-pro::after {
    width: 5px;
    height: 5px;
    top: 23px;
    left: 11px;
    border-radius: 50%;
    background: var(--lp4-gold-a);
    box-shadow: 0 -8px 0 var(--lp4-gold-a), 0 8px 0 var(--lp4-gold-a);
}

.lp4-icon-env::before {
    width: 22px;
    height: 6px;
    top: 14px;
    left: 14px;
    border-radius: 1px;
    background: var(--lp4-gold-a);
    box-shadow: 0 10px 0 var(--lp4-gold-a), 0 20px 0 var(--lp4-gold-a);
}

.lp4-icon-env::after {
    width: 4px;
    height: 4px;
    top: 15px;
    left: 17px;
    border-radius: 50%;
    background: var(--lp4-card);
    box-shadow: 0 10px 0 var(--lp4-card), 0 20px 0 var(--lp4-card);
}

.lp4-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.lp4-list li {
    padding-left: 1.7rem;
    position: relative;
    color: var(--lp4-text-soft);
}

.lp4-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    position: absolute;
    top: 0.52rem;
    left: 0.35rem;
}

.lp4-list-ok li::before {
    background: var(--lp4-ok);
}

.lp4-list-dot li::before {
    background: var(--lp4-gold-a);
}

#fault {
    position: relative;
    background: var(--lp4-pastel);
    padding: 4.2rem 0 7.5rem;
}

#fault::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 7.5rem;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        var(--lp4-pastel) 0%,
        #c2c6d4 42%,
        #7a7f8c 72%,
        var(--lp4-bg) 100%
    );
}

#fault .lp4-wrap {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 2rem));
}

#fault h2,
#fault .lp4-fault-copy p strong {
    color: #1a1c22;
}

#fault .lp4-fault-copy p,
#fault .lp4-list li {
    color: #3a3d46;
}

.lp4-fault {
    display: grid;
    grid-template-columns: 30rem minmax(0, 58ch);
    column-gap: 2rem;
    row-gap: 0;
    justify-content: center;
    align-items: start;
}

.lp4-fault-card {
    grid-column: 2;
    background: #f7f8fc;
    border: 1px solid rgba(26, 28, 34, 0.08);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(26, 28, 34, 0.08);
    padding: 1.35rem 1.5rem 1.45rem;
}

.lp4-fault-head {
    text-align: left;
}

.lp4-fault-head h2 {
    margin: 0 0 0.4rem;
    font-size: clamp(1.55rem, 2.6vw, 2.15rem);
    line-height: 1.15;
}

.lp4-fault-photo {
    grid-column: 1;
    justify-self: start;
    width: 30rem;
}

.lp4-fault-photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
}

.lp4-fault-by {
    margin: 0.7rem 0 0;
    color: #2a2d36;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
}

.lp4-fault-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.lp4-fault-copy p {
    margin: 0 0 0.42rem;
    max-width: none;
    line-height: 1.45;
}

.lp4-fault-copy p strong {
    color: var(--lp4-text);
}

.lp4-fault-copy p:last-child {
    margin-bottom: 0;
}

.lp4-signup {
    position: relative;
    overflow: hidden;
    padding: 2.4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.lp4-signup-energy {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.lp4-space {
    position: absolute;
    inset: -6% -8%;
    width: 116%;
    height: 112%;
    opacity: 0.72;
}

.lp4-planet-left,
.lp4-planet-right {
    transform-box: fill-box;
    transform-origin: center;
}

.lp4-planet-left {
    animation: lp4-side-drift 9s ease-in-out infinite;
}

.lp4-planet-right {
    animation: lp4-side-drift 11s ease-in-out infinite reverse;
}

.lp4-planet-main {
    animation: lp4-globe-pulse 3.2s ease-in-out infinite;
    transform-origin: 800px 390px;
}

.lp4-globe-spin {
    transform-origin: 160px 160px;
    animation: lp4-globe-spin 56s linear infinite;
}

.lp4-planet-main .lp4-globe-spin {
    transform-origin: 180px 180px;
}

.lp4-planet-right .lp4-globe-spin {
    transform-origin: 150px 150px;
}

.lp4-globe-spin-rev {
    animation-direction: reverse;
    animation-duration: 42s;
}

.lp4-stars circle {
    animation: lp4-star-twinkle 3.6s ease-in-out infinite;
}

.lp4-stars circle:nth-child(3n) {
    animation-delay: 0.8s;
}

.lp4-stars circle:nth-child(4n) {
    animation-delay: 1.6s;
}

.lp4-signup-halo {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(90vw, 1080px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 172, 59, 0.16) 0%, rgba(255, 172, 59, 0.05) 38%, transparent 68%);
    transform: translate(-50%, -50%);
    animation: lp4-energy-out 3.2s ease-in-out infinite;
}

.lp4-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1.4px dashed rgba(255, 172, 59, 0.28);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.lp4-orbit-a {
    width: 128%;
    height: 42%;
    animation: lp4-orbit-out 7s linear infinite;
}

.lp4-orbit-b {
    width: 108%;
    height: 64%;
    animation: lp4-orbit-out 9s linear infinite reverse;
}

.lp4-signup-inner {
    position: relative;
    z-index: 1;
    width: min(720px, calc(100% - 2rem));
    margin: 0 auto;
}

.lp4-signup-card {
    position: relative;
    padding: 2.1rem 1.9rem 2.2rem;
    border-radius: 8px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        var(--lp4-bg);
    border-color: #fff;
    transform: scale(0.96);
    transform-origin: center;
    transition: transform 0.35s ease;
    animation: lp4-card-charge 3.2s ease-in-out infinite;
}

.lp4-signup-card:focus-within,
.lp4-signup-card.is-filled {
    transform: scale(1.03);
}

@media (hover: hover) and (pointer: fine) {
    .lp4-signup-card:hover {
        transform: scale(1.03);
    }
}

.lp4-border-lights {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border-radius: inherit;
}

.lp4-border-lights span {
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    offset-path: inset(0 round 8px);
    offset-anchor: 50% 50%;
    offset-rotate: 0deg;
    animation: lp4-border-travel 7.2s linear infinite;
    box-shadow:
        0 0 5px 1px #fff,
        0 0 12px 4px rgba(255, 172, 59, 0.7);
}

.lp4-border-lights span:nth-child(2) {
    width: 7px;
    height: 7px;
    background: var(--lp4-gold-a);
    animation-duration: 8.6s;
    animation-delay: -1.4s;
    box-shadow:
        0 0 6px 2px rgba(255, 172, 59, 0.95),
        0 0 16px 6px rgba(255, 172, 59, 0.45);
}

.lp4-border-lights span:nth-child(3) {
    animation-duration: 6.4s;
    animation-delay: -2.8s;
}

.lp4-border-lights span:nth-child(4) {
    width: 4px;
    height: 4px;
    animation-duration: 9.8s;
    animation-delay: -4.2s;
}

.lp4-border-lights span:nth-child(5) {
    width: 22px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #fff 52%, var(--lp4-gold-a));
    offset-rotate: auto;
    animation-duration: 7.8s;
    animation-delay: -5.1s;
    box-shadow: 0 0 10px 2px rgba(255, 172, 59, 0.65);
}

.lp4-border-lights span:nth-child(6) {
    width: 6px;
    height: 6px;
    background: #ffe7c2;
    animation-duration: 10.4s;
    animation-delay: -6.6s;
}

@keyframes lp4-border-travel {
    to {
        offset-distance: 100%;
    }
}

@supports not (offset-path: inset(0 round 8px)) {
    .lp4-border-lights {
        display: none;
    }
}

.lp4-signup-card .lp4-btn {
    color: #06240f;
    background: linear-gradient(180deg, #3ecf6a, #1f9d4a);
    box-shadow: 0 10px 26px rgba(31, 157, 74, 0.35);
    transition: transform 0.25s ease;
}

.lp4-signup-card .lp4-btn.is-ready {
    animation: lp4-btn-pulse 2.4s ease-in-out infinite;
}

@keyframes lp4-btn-pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 26px rgba(31, 157, 74, 0.35);
    }
    50% {
        transform: scale(1.015);
        box-shadow: 0 10px 28px rgba(62, 207, 106, 0.48);
    }
}

@media (hover: hover) and (pointer: fine) {
    .lp4-signup-card .lp4-btn:hover {
        animation: none;
        transform: scale(1.07);
    }
}

@keyframes lp4-globe-spin {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes lp4-globe-pulse {
    0%,
    100% {
        opacity: 0.78;
    }
    50% {
        opacity: 1;
    }
}

@keyframes lp4-side-drift {
    0%,
    100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -12px;
    }
}

@keyframes lp4-star-twinkle {
    0%,
    100% {
        opacity: 0.35;
    }
    50% {
        opacity: 1;
    }
}

@keyframes lp4-energy-out {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(0.72);
        opacity: 0.75;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.22);
        opacity: 0.28;
    }
}

@keyframes lp4-orbit-out {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes lp4-card-charge {
    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.55),
            0 18px 40px rgba(0, 0, 0, 0.35),
            0 0 28px rgba(255, 255, 255, 0.12);
    }
    50% {
        box-shadow:
            0 0 0 1px #fff,
            0 18px 40px rgba(0, 0, 0, 0.35),
            0 0 56px rgba(255, 255, 255, 0.22);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp4-globe-spin,
    .lp4-planet-left,
    .lp4-planet-right,
    .lp4-planet-main,
    .lp4-stars circle,
    .lp4-signup-halo,
    .lp4-orbit,
    .lp4-signup-card,
    .lp4-border-lights span,
    .lp4-form input.is-signal,
    .lp4-select.is-signal .lp4-select-trigger,
    .lp4-form .lp4-consent.is-signal .lp4-consent-box,
    .lp4-signup-card .lp4-btn.is-ready,
    .lp4-benefit-arrow {
        animation: none;
    }

    .lp4-border-lights {
        display: none;
    }

    .lp4-signup-card,
    .lp4-signup-card:hover,
    .lp4-signup-card:focus-within,
    .lp4-signup-card.is-filled {
        transform: none;
        transition: none;
        box-shadow:
            0 0 0 1px #fff,
            0 18px 40px rgba(0, 0, 0, 0.35);
    }

    .lp4-form input.is-signal,
    .lp4-select.is-signal .lp4-select-trigger {
        box-shadow: 0 0 0 2px rgba(255, 172, 59, 0.45);
    }

    .lp4-select-chevron {
        transition: none;
    }

    .lp4-wand-sparks {
        display: none;
    }
}

.lp4-signup-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 0.75rem;
    padding: 0.28rem 0.7rem;
    border-radius: 4px;
    background: rgba(249, 142, 29, 0.16);
    border: 1px solid rgba(255, 172, 59, 0.45);
    color: var(--lp4-gold-a);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 720px) {
    .lp4-signup-badge {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        box-sizing: border-box;
        text-align: left;
        line-height: 1.4;
        letter-spacing: 0.04em;
        white-space: normal;
    }

    .lp4-signup-badge img.emoji {
        display: inline;
        width: 1em;
        height: 1em;
        vertical-align: -0.15em;
        margin-right: 0.2em;
    }
}

.lp4-signup-copy > h2 {
    margin-bottom: 0.45rem;
    font-size: 1.05rem;
    color: var(--lp4-text-soft);
}

.lp4-signup-countdown {
    margin: 0 0 0.75rem;
}

.lp4-signup-countdown .lp4-countdown-units {
    justify-content: flex-start;
}

.lp4-toolkit {
    margin: 0.85rem 0 1.15rem;
    padding: 1rem 1.05rem 1.05rem;
    border-radius: 10px;
    background:
        linear-gradient(165deg, rgba(255, 172, 59, 0.12), rgba(255, 255, 255, 0.03) 42%, rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 172, 59, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 10px 24px rgba(0, 0, 0, 0.18);
}

.lp4-toolkit .lp4-toolkit-title {
    margin: 0 0 0.18rem;
    font-size: 1.42rem;
    line-height: 1.2;
    color: #fff;
}

.lp4-toolkit-sub {
    margin: 0 0 0.8rem;
    color: var(--lp4-text-soft);
    font-size: 1.12rem;
}

.lp4-toolkit-list {
    gap: 0.95rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lp4-toolkit-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding-left: 0;
    font-size: 1.28rem;
    color: var(--lp4-text);
}

.lp4-toolkit-list li::before {
    position: static;
    flex-shrink: 0;
    top: auto;
    left: auto;
    width: 16px;
    height: 16px;
    margin-top: 0.28em;
    border-radius: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='8.2' fill='none' stroke='%23ffac3b' stroke-width='1.6'/%3E%3Cpath d='M6 10.3l2.6 2.6 5.4-6' fill='none' stroke='%23ffac3b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 16px 16px no-repeat;
}

@media (min-width: 860px) {
    .lp4-signup-inner {
        width: min(980px, calc(100% - 2rem));
    }

    .lp4-benefits .lp4-wrap {
        width: min(941px, calc(100% - 2rem));
    }

    .lp4-benefit-arrows {
        width: min(980px, calc(100% - 2rem));
    }

    .lp4-signup-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 2.75rem;
        align-items: start;
        position: relative;
    }

    .lp4-signup-card.is-registered .lp4-signup-split {
        align-items: center;
    }

    .lp4-signup-split::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 1px;
        height: 90%;
        background: rgba(255, 255, 255, 0.22);
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

    .lp4-signup-copy .lp4-toolkit {
        margin-bottom: 0;
    }
}

body.lp4-is-thanks,
body.lp4-is-meet-wait {
    padding-top: 0;
}

body.lp4-is-thanks .lp4-top,
body.lp4-is-thanks .lp4-wand-sparks,
body.lp4-is-meet-wait .lp4-top,
body.lp4-is-meet-wait .lp4-wand-sparks {
    display: none;
}

body.lp4-is-thanks .lp4-foot,
body.lp4-is-meet-wait .lp4-foot {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    border-top: 0;
    background: linear-gradient(180deg, transparent, rgba(12, 14, 18, 0.72));
}

.lp4-thanks[hidden] {
    display: none !important;
}

.lp4-thanks {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    text-align: center;
    background: radial-gradient(circle at 50% 18%, #2a2418 0%, #12141a 52%, #0b0d12 100%);
}

.lp4-thanks-fireworks {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.lp4-thanks-inner {
    position: relative;
    z-index: 1;
    width: min(640px, calc(100% - 2.4rem));
    padding: 2.2rem 1rem 5.2rem;
}

.lp4-thanks .lp4-thanks-kicker {
    margin: 0 0 0.7rem;
    color: var(--lp4-gold-a);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lp4-thanks h1,
.lp4-thanks-inner > h2 {
    margin: 0 0 0.85rem;
    font-size: clamp(2.2rem, 7vw, 4.2rem);
    line-height: 1.05;
}

.lp4-thanks .lp4-thanks-check {
    margin: 0 0 1.1rem;
    color: #fff;
    font-size: clamp(1.25rem, 3.4vw, 1.85rem);
    font-weight: 800;
}

.lp4-thanks p {
    margin: 0 0 0.75rem;
    color: var(--lp4-text-soft);
}

.lp4-thanks .lp4-btn {
    width: auto;
    min-width: 220px;
    margin-top: 0.6rem;
}

.lp4-thanks-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 0.75rem;
    margin: 1rem 0 0;
}

.lp4-thanks-actions .lp4-btn {
    margin-top: 0;
    min-width: 180px;
}

.lp4-thanks .lp4-btn-ghost {
    color: #fff;
    background: transparent;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.lp4-thanks .lp4-btn-ghost:hover {
    filter: none;
    border-color: var(--lp4-gold-a);
    color: var(--lp4-gold-a);
}

.lp4-thanks-upsell {
    margin-top: 1.6rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lp4-thanks-upsell h2 {
    margin: 0 0 0.55rem;
    color: #fff;
    font-size: clamp(1.15rem, 3vw, 1.55rem);
    line-height: 1.25;
}

.lp4-meet-wait:not(.is-join-open) {
    background: var(--lp4-bg);
}

.lp4-meet-wait .lp4-signup-energy {
    z-index: 0;
}

.lp4-meet-wait .lp4-countdown {
    margin: 1.35rem 0 1.15rem;
}

.lp4-meet-wait .lp4-btn {
    min-width: 260px;
    animation: lp4-meet-btn 2.4s ease-in-out infinite;
}

@keyframes lp4-meet-btn {
    0%, 100% { box-shadow: 0 10px 26px rgba(249, 142, 29, 0.35); }
    50% { box-shadow: 0 12px 40px rgba(255, 172, 59, 0.72); }
}

@media (prefers-reduced-motion: reduce) {
    .lp4-meet-wait .lp4-btn {
        animation: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp4-thanks-fireworks {
        display: none;
    }
}

.lp4-foot {
    color: var(--lp4-chrome-fg);
    font-family: Montserrat, Arial, sans-serif;
    background: var(--lp4-chrome-foot-bg);
    border-top: 1px solid var(--lp4-chrome-border);
    padding: 1.3rem 0 1.8rem;
    margin-top: auto;
    flex-shrink: 0;
    width: 100%;
}

.lp4-foot-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 1024px) {
    .lp4-grid {
        grid-template-columns: 1fr;
    }

    .lp4-hero-aside {
        width: 100%;
        min-width: 0;
        justify-self: stretch;
    }

    .lp4-hero-aside .lp4-list li {
        white-space: normal;
    }

    .lp4-fault {
        grid-template-columns: 1fr;
        row-gap: 1.2rem;
    }

    .lp4-fault-card,
    .lp4-fault-head,
    .lp4-fault-photo,
    .lp4-fault-copy {
        grid-column: 1;
        grid-row: auto;
    }

    .lp4-fault-head {
        text-align: center;
    }

    .lp4-fault-copy {
        align-items: center;
        text-align: center;
    }

    .lp4-fault-copy p {
        margin: 0 auto 0.85rem;
        line-height: 1.55;
    }

    .lp4-fault-copy .lp4-list {
        margin: 0.75rem auto 1.2rem;
        width: fit-content;
        max-width: 100%;
        text-align: left;
        justify-items: start;
    }

    .lp4-fault-copy .lp4-list li {
        text-align: left;
        padding-left: 1.85rem;
    }

    .lp4-fault-head h2 {
        margin-bottom: 0.85rem;
    }

    .lp4-fault-photo {
        width: auto;
        max-width: 420px;
        margin: 0 auto;
        justify-self: center;
    }

    .lp4-fault-by {
        text-align: center;
    }

    .lp4-fault-photo img {
        aspect-ratio: auto;
        object-fit: unset;
        object-position: unset;
    }
}

@media (max-width: 720px) {
    .lp4-benefits-grid {
        grid-template-columns: 1fr;
    }

    .lp4-wrap {
        width: min(var(--lp4-width), calc(100% - 1.2rem));
    }

    #fault .lp4-wrap {
        width: min(1180px, calc(100% - 1.2rem));
    }

    .lp4-hero {
        padding-top: 0.4rem;
    }

    .lp4-hero-aside h2 {
        margin-bottom: 1.15rem;
    }

    .lp4-hero-aside .lp4-list {
        gap: 0.8rem;
        align-content: start;
    }

    .lp4-hero-aside .lp4-list li {
        display: grid;
        grid-template-columns: 1.15em minmax(0, 1fr);
        column-gap: 0.7rem;
        align-items: start;
        padding-left: 0;
        white-space: normal;
        color: var(--lp4-text);
        font-size: 1rem;
        line-height: 1.4;
    }

    .lp4-hero-aside .lp4-list li::before {
        position: static;
        top: auto;
        left: auto;
        width: 1.15em;
        height: 1.15em;
        margin-block-start: calc((1lh - 1.15em) / 2);
        background-size: contain;
    }

    .lp4-kicker-br {
        display: block;
    }

    .lp4-countdown-unit {
        min-width: 3.6rem;
        padding: 0.45rem 0.25rem 0.35rem;
    }

    .lp4-countdown-unit strong {
        font-size: 1.2rem;
    }

    .lp4-hero h1 {
        max-width: 100%;
    }
}
