:root {
    --bg: #f9f5ff;
    --bg2: #ffffff;
    --text: #141026;
    --muted: #6d637e;
    --card: rgba(255, 255, 255, .88);
    --card2: rgba(255, 255, 255, .72);
    --border: rgba(132, 64, 190, .18);
    --border2: rgba(207, 75, 255, .34);
    --primary: #8b35ff;
    --purple: #a837ff;
    --pink: #e943d1;
    --blue: #3155ff;
    --shadow: 0 35px 100px rgba(93, 47, 145, .16);
    --input: rgba(255, 255, 255, .82);
}

html[data-theme="dark"] {
    --bg: #050416;
    --bg2: #090622;
    --text: #ffffff;
    --muted: #c8bfd8;
    --card: rgba(17, 14, 48, .74);
    --card2: rgba(15, 12, 43, .58);
    --border: rgba(200, 90, 255, .20);
    --border2: rgba(220, 90, 255, .38);
    --shadow: 0 35px 105px rgba(0, 0, 0, .48);
    --input: rgba(7, 7, 28, .62);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 82% 15%, rgba(185, 68, 255, .20), transparent 28%),
        radial-gradient(circle at 0% 100%, rgba(128, 62, 255, .18), transparent 38%),
        linear-gradient(135deg, var(--bg), var(--bg2));
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.main-page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.bg-glow,
.bg-dots {
    position: fixed;
    pointer-events: none;
    z-index: -1;
}

.bg-glow-one {
    width: 700px;
    height: 700px;
    left: -300px;
    bottom: -320px;
    border-radius: 50%;
    border: 1px solid rgba(185, 72, 255, .12);
    box-shadow:
        0 0 0 75px rgba(185, 72, 255, .03),
        0 0 0 150px rgba(185, 72, 255, .018);
}

.bg-glow-two {
    width: 560px;
    height: 560px;
    right: -210px;
    top: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(177, 64, 255, .16), transparent 65%);
}

.bg-dots {
    width: 120px;
    height: 160px;
    opacity: .20;
    background-image: radial-gradient(var(--purple) 1px, transparent 1px);
    background-size: 15px 15px;
}

.dots-one {
    top: 130px;
    left: 45%;
}

.dots-two {
    right: 60px;
    top: 130px;
}

.main-header {
    height: 105px;
    padding: 28px 58px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 20;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #fff;
    font-size: 34px;
    font-weight: 950;
    box-shadow: 0 16px 42px rgba(180, 52, 255, .30);
}

.brand-text strong {
    display: block;
    font-size: 31px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .3px;
}

.brand-text strong em {
    color: var(--purple);
    font-style: normal;
}

.brand-text small {
    display: block;
    margin-top: 11px;
    color: var(--muted);
    letter-spacing: 7px;
    font-size: 13px;
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
}

.help-link {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 18px;
    font-weight: 600;
}

.help-link span {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    font-weight: 900;
}

.header-divider {
    width: 1px;
    height: 31px;
    background: var(--border);
}

.theme-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-icon {
    font-size: 25px;
}

.theme-toggle {
    width: 58px;
    height: 30px;
    padding: 3px;
    border: 1px solid var(--border2);
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    background: linear-gradient(100deg, var(--primary), var(--pink));
    box-shadow: 0 0 22px rgba(188, 63, 255, .34);
}

.theme-toggle i {
    width: 22px;
    height: 22px;
    display: block;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .26);
}

html[data-theme="light"] .theme-toggle {
    justify-content: flex-start;
}

.main-layout {
    min-height: calc(100vh - 105px);
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    align-items: center;
    gap: 70px;
    padding: 25px 58px 70px;
}

.left-panel {
    max-width: 760px;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(52px, 5.4vw, 82px);
    line-height: 1.04;
    letter-spacing: -3.2px;
    font-weight: 950;
}

.hero-copy h1 span {
    background: linear-gradient(92deg, #6f45ff 0%, #a235ff 48%, #e941d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.title-line {
    width: 74px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--pink));
    box-shadow: 0 0 25px rgba(211, 61, 255, .55);
    margin: 24px 0 27px;
}

.hero-copy p {
    max-width: 660px;
    margin: 0;
    color: var(--muted);
    font-size: 22px;
    line-height: 1.55;
}

.feature-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    min-height: 148px;
    border-radius: 15px;
    border: 1px solid var(--border);
    background: var(--card2);
    padding: 20px;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 16px;
    align-items: start;
    box-shadow: 0 20px 55px rgba(112, 40, 170, .11);
    backdrop-filter: blur(12px);
}

.feature-icon {
    width: 57px;
    height: 57px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #d762ff;
    background: rgba(154, 56, 255, .13);
    border: 1px solid var(--border);
    font-size: 33px;
}

.feature-card h3 {
    margin: 2px 0 10px;
    font-size: 18px;
    line-height: 1.22;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.45;
}

.right-panel {
    display: flex;
    justify-content: center;
}

.choice-card {
    width: 100%;
    max-width: 650px;
    border: 1px solid var(--border2);
    border-radius: 24px;
    background: var(--card);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    padding: 50px 52px 38px;
}

.choice-icon {
    width: 126px;
    height: 126px;
    border-radius: 50%;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    color: #df67ff;
    font-size: 62px;
    border: 1px solid var(--border2);
    background: radial-gradient(circle, rgba(167, 56, 255, .18), transparent 67%);
    box-shadow: 0 0 36px rgba(181, 62, 255, .22);
}

.choice-card h2 {
    margin: 0;
    text-align: center;
    font-size: 42px;
    font-weight: 950;
    letter-spacing: -1px;
}

.choice-subtitle {
    text-align: center;
    margin: 11px 0 28px;
    color: var(--muted);
    font-size: 20px;
}

.choice-divider {
    height: 1px;
    background: var(--border);
    margin: 0 0 28px;
}

.alert {
    border-radius: 14px;
    padding: 12px 14px;
    margin: 0 0 16px;
    font-weight: 700;
}

.alert.error {
    background: rgba(239, 68, 68, .13);
    border: 1px solid rgba(239, 68, 68, .24);
    color: #fecaca;
}

html[data-theme="light"] .alert.error {
    color: #991b1b;
    background: #fee2e2;
}

.choice-option {
    width: 100%;
    min-height: 140px;
    border-radius: 17px;
    border: 1px solid var(--border2);
    background:
        radial-gradient(circle at 10% 10%, rgba(164, 57, 255, .22), transparent 40%),
        rgba(14, 11, 40, .20);
    display: grid;
    grid-template-columns: 92px 1fr 34px;
    gap: 24px;
    align-items: center;
    padding: 25px 28px;
    color: var(--text);
    margin-bottom: 22px;
    position: relative;
}

.admin-option {
    border-color: rgba(49, 85, 255, .65);
    background:
        radial-gradient(circle at 10% 10%, rgba(49, 85, 255, .22), transparent 40%),
        rgba(14, 11, 40, .16);
}

.option-icon {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 44px;
    background: linear-gradient(135deg, #6d3dff, #9a30ff);
    box-shadow: 0 20px 45px rgba(126, 55, 255, .30);
}

.option-icon.blue {
    background: linear-gradient(135deg, #3155ff, #2c35d8);
    box-shadow: 0 20px 45px rgba(49, 85, 255, .26);
}

.option-content strong {
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
}

.option-content span {
    display: block;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.45;
}

.slug-box {
    margin-top: 16px;
}

.slug-box input {
    width: 100%;
    height: 46px;
    border-radius: 10px;
    border: 1px solid var(--border);
    outline: 0;
    background: var(--input);
    color: var(--text);
    font-size: 15px;
    padding: 0 14px;
}

.arrow-btn,
.arrow-text {
    border: 0;
    background: transparent;
    color: #df67ff;
    font-size: 54px;
    line-height: 1;
    cursor: pointer;
}

.demo-link {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    border: 1px dashed var(--border2);
    color: #d967ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-top: -4px;
}

.secure-note {
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
}

.secure-note svg {
    color: #bda3ff;
    font-size: 23px;
}

@media (max-width: 1200px) {
    .main-layout {
        grid-template-columns: 1fr;
    }

    .left-panel {
        max-width: 100%;
    }
}

@media (max-width: 760px) {
    .main-header {
        height: 88px;
        padding: 18px;
    }

    .brand-mark {
        width: 46px;
        height: 46px;
        font-size: 28px;
    }

    .brand-text strong {
        font-size: 22px;
    }

    .brand-text small {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .help-link,
    .header-divider {
        display: none;
    }

    .main-layout {
        padding: 34px 18px 45px;
        gap: 36px;
    }

    .hero-copy h1 {
        font-size: 43px;
    }

    .hero-copy p {
        font-size: 17px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .choice-card {
        padding: 32px 22px;
    }

    .choice-option {
        grid-template-columns: 64px 1fr;
        padding: 20px;
    }

    .option-icon {
        width: 58px;
        height: 58px;
        font-size: 30px;
    }

    .arrow-btn,
    .arrow-text {
        display: none;
    }
}
.fx-brand-image {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 255px;
    height: 72px;
    overflow: hidden;
}

.fx-brand-logo {
    width: 100%;
    height: 100%;
    max-width: 255px;
    max-height: 72px;
    object-fit: contain;
    object-position: left center;
    display: block;
    filter: drop-shadow(0 0 18px rgba(196, 58, 255, .35));
}

html[data-theme="light"] .fx-brand-logo {
    filter: drop-shadow(0 12px 24px rgba(139, 52, 255, .18));
}