:root {
    --ce-ink: #111827;
    --ce-copy: #5c687c;
    --ce-muted: #8490a2;
    --ce-line: #dce2eb;
    --ce-violet: #7857f1;
    --ce-violet-dark: #6544dc;
    --ce-cyan: #22c7e8;
    --ce-green: #20c997;
    color-scheme: light;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html,
body { min-width: 320px; min-height: 100%; margin: 0; }
body.customer-entry { color: var(--ce-ink); background: #080d1c; font-family: inherit; -webkit-font-smoothing: antialiased; }
button,
input { font: inherit; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

.ce-skip-link {
    position: fixed; z-index: 100; top: 12px; left: 12px; padding: 10px 14px;
    border-radius: 9px; color: #fff; background: #7857f1; transform: translateY(-150%);
}
.ce-skip-link:focus { transform: none; }

.ce-page {
    position: relative; isolation: isolate; display: flex; min-height: 100vh; min-height: 100svh;
    flex-direction: column; overflow: hidden; color: #fff;
    background:
        radial-gradient(circle at 12% 3%, rgba(121, 84, 255, .25), transparent 30rem),
        radial-gradient(circle at 68% 65%, rgba(21, 167, 208, .18), transparent 34rem),
        linear-gradient(135deg, #0a0f20 0%, #080d1c 58%, #071625 100%);
}
.ce-page::before {
    position: absolute; z-index: -1; inset: 0; content: ""; opacity: .29; pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, .19) .75px, transparent .75px);
    background-size: 23px 23px;
    mask-image: linear-gradient(110deg, #000, transparent 72%);
}
.ce-page::after {
    position: absolute; z-index: -1; width: 560px; height: 560px; right: -260px; top: 18%;
    border: 1px solid rgba(255, 255, 255, .06); border-radius: 50%; content: "";
    box-shadow: 0 0 0 70px rgba(255, 255, 255, .017), 0 0 0 150px rgba(255, 255, 255, .012);
}

.ce-header {
    display: flex; width: min(100% - 48px, 1420px); min-height: 80px; margin: 0 auto;
    align-items: center; justify-content: space-between; gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.ce-brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; font-weight: 850; }
.ce-brand__mark {
    display: flex; width: 38px; height: 38px; padding: 8px; align-items: flex-end; gap: 3px;
    border: 1px solid rgba(255, 255, 255, .12); border-radius: 12px;
    background: rgba(255, 255, 255, .09); box-shadow: 0 10px 24px rgba(0, 0, 0, .2); backdrop-filter: blur(12px);
}
.ce-brand__mark span { display: block; width: 5px; border-radius: 99px; background: #fff; }
.ce-brand__mark span:nth-child(1) { height: 9px; opacity: .52; }
.ce-brand__mark span:nth-child(2) { height: 15px; opacity: .76; }
.ce-brand__mark span:nth-child(3) { height: 22px; background: #9a7cff; }
.ce-brand__word { font-size: 21px; letter-spacing: -.045em; }
.ce-brand__word > span { color: #987aff; }
.ce-brand small { margin-left: 2px; padding-left: 13px; border-left: 1px solid rgba(255, 255, 255, .18); color: #9ca8bb; font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

.ce-nav { display: flex; align-items: center; gap: 22px; color: #aeb8c9; font-size: 11px; font-weight: 720; }
.ce-nav > a:first-child:hover { color: #fff; }
.ce-nav__admin {
    display: inline-flex; min-height: 38px; padding: 8px 14px; align-items: center; gap: 8px;
    border: 1px solid rgba(255, 255, 255, .16); border-radius: 9px; color: #fff;
    background: rgba(255, 255, 255, .07); transition: background .18s, border-color .18s, transform .18s;
}
.ce-nav__admin svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ce-nav__admin:hover { border-color: rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .12); transform: translateY(-1px); }

.ce-main {
    display: grid; width: min(100% - 48px, 1380px); min-height: calc(100svh - 140px); margin: 0 auto;
    padding: clamp(38px, 6vh, 70px) 0 44px; grid-template-columns: minmax(0, 1fr) minmax(390px, 450px);
    align-items: center; gap: clamp(48px, 7vw, 105px);
}
.ce-intro { position: relative; min-width: 0; min-height: 610px; padding-top: 15px; }
.ce-kicker { display: inline-flex; align-items: center; gap: 10px; color: #c7bcff; font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.ce-kicker i { width: 7px; height: 7px; border-radius: 50%; background: #9274ff; box-shadow: 0 0 0 6px rgba(146, 116, 255, .12); }
.ce-intro h1 {
    position: relative; z-index: 2; max-width: 640px; margin: 20px 0 0; color: #fff;
    font-size: clamp(48px, 5vw, 73px); line-height: 1.01; letter-spacing: -.06em; text-wrap: balance;
}
.ce-lead { position: relative; z-index: 2; max-width: 540px; margin: 22px 0 0; color: #a6b2c5; font-size: 15px; line-height: 1.72; }

.ce-actions { position: relative; z-index: 3; display: flex; margin-top: 29px; align-items: center; gap: 14px; }
.ce-app-button {
    display: grid; min-width: 270px; min-height: 66px; padding: 8px 13px;
    grid-template-columns: 40px 1fr 20px; align-items: center; gap: 11px;
    border: 1px solid rgba(255, 255, 255, .48); border-radius: 10px; color: #fff;
    background: #050505; box-shadow: 0 18px 34px -21px rgba(0, 0, 0, .9); transition: transform .18s, box-shadow .18s, border-color .18s;
}
.ce-app-button:hover { border-color: rgba(255, 255, 255, .78); box-shadow: 0 22px 40px -20px rgba(0, 0, 0, .9); transform: translateY(-2px); }
.ce-app-button__icon { display: grid; width: 40px; height: 40px; place-items: center; }
.ce-app-button__icon svg { width: 36px; height: 36px; }
.ce-app-button small,
.ce-app-button strong { display: block; }
.ce-app-button small { color: #c6cbd3; font-size: 8px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.ce-app-button strong { margin-top: 2px; color: #fff; font-size: 17px; letter-spacing: -.025em; }
.ce-app-button__arrow { width: 20px; height: 20px; stroke: #c6cbd3; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ce-app-meta { color: #77859a; font-size: 9px; font-weight: 650; letter-spacing: .03em; }

.ce-feature-list { position: relative; z-index: 3; display: grid; max-width: 610px; margin: 33px 0 0; padding: 0; grid-template-columns: repeat(3, 1fr); gap: 10px; list-style: none; }
.ce-feature-list li { display: grid; min-width: 0; padding: 12px; grid-template-columns: 34px 1fr; grid-template-rows: auto auto; column-gap: 9px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 12px; background: rgba(255, 255, 255, .045); backdrop-filter: blur(12px); }
.ce-feature-list li > span { display: grid; width: 34px; height: 34px; grid-row: 1 / 3; place-items: center; border-radius: 10px; color: #a891ff; background: rgba(137, 104, 255, .12); }
.ce-feature-list li:nth-child(2) > span { color: #5cdcf7; background: rgba(44, 193, 225, .1); }
.ce-feature-list li:nth-child(3) > span { color: #5ee1b9; background: rgba(38, 201, 151, .1); }
.ce-feature-list svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.ce-feature-list strong { align-self: end; color: #f4f7fb; font-size: 10px; }
.ce-feature-list small { overflow: hidden; color: #738198; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }

.ce-device-stage { position: absolute; z-index: 1; right: -45px; bottom: -40px; width: 390px; height: 490px; pointer-events: none; transform: scale(.8); transform-origin: bottom right; }
.ce-orbit { position: absolute; border: 1px solid rgba(70, 208, 238, .13); border-radius: 50%; }
.ce-orbit--one { width: 390px; height: 390px; right: -20px; bottom: 20px; }
.ce-orbit--two { width: 300px; height: 300px; right: 25px; bottom: 65px; box-shadow: 0 0 80px rgba(43, 190, 222, .08); }
.ce-phone { position: absolute; right: 76px; bottom: 0; width: 218px; height: 440px; padding: 9px; border: 1px solid rgba(255, 255, 255, .19); border-radius: 36px; background: linear-gradient(150deg, #2b3449, #101625); box-shadow: 0 38px 80px rgba(0, 0, 0, .48); transform: rotate(3deg); }
.ce-phone__speaker { position: absolute; z-index: 2; top: 17px; left: 50%; width: 55px; height: 16px; border-radius: 0 0 12px 12px; background: #111727; transform: translateX(-50%); }
.ce-phone__screen { height: 100%; padding: 27px 13px 14px; overflow: hidden; border-radius: 28px; color: #172136; background: linear-gradient(165deg, #f9fbff, #edf5fa); }
.ce-phone__top { display: flex; align-items: center; justify-content: space-between; }
.ce-mini-brand { display: inline-flex; align-items: center; gap: 5px; color: #26344a; font-size: 7px; font-weight: 850; }
.ce-mini-brand i { width: 15px; height: 15px; border-radius: 5px; background: linear-gradient(145deg, #7657f0, #20b8d8); }
.ce-avatar { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 8px; color: #fff; background: #182238; font-size: 6px; font-weight: 850; }
.ce-phone__greeting { margin-top: 25px; }
.ce-phone__greeting small,
.ce-phone__greeting strong { display: block; }
.ce-phone__greeting small { color: #8793a5; font-size: 6px; }
.ce-phone__greeting strong { max-width: 150px; margin-top: 3px; color: #1a253a; font-size: 11px; line-height: 1.25; }
.ce-phone__status { display: flex; margin-top: 14px; padding: 9px; align-items: center; justify-content: space-between; border: 1px solid #d9e8e5; border-radius: 10px; background: #f1fbf8; font-size: 6px; }
.ce-phone__status span { display: inline-flex; align-items: center; gap: 5px; color: #657468; }
.ce-phone__status i { width: 6px; height: 6px; border-radius: 50%; background: #1fc88d; box-shadow: 0 0 0 3px rgba(31, 200, 141, .1); }
.ce-phone__status b { color: #087b55; font-size: 6px; }
.ce-phone__bill { margin-top: 11px; padding: 13px; border-radius: 13px; color: #fff; background: radial-gradient(circle at 90% 10%, rgba(68, 218, 242, .26), transparent 40%), linear-gradient(145deg, #17243c, #0d6373); box-shadow: 0 14px 25px -18px rgba(8, 44, 69, .8); }
.ce-phone__bill small,
.ce-phone__bill strong,
.ce-phone__bill span { display: block; }
.ce-phone__bill small { color: #9fc2cc; font-size: 6px; }
.ce-phone__bill strong { margin-top: 4px; font-size: 13px; }
.ce-phone__bill span { margin-top: 5px; color: #9fc2cc; font-size: 5px; }
.ce-phone__bill button { width: 100%; margin-top: 11px; padding: 7px; border: 0; border-radius: 7px; color: #153043; background: #fff; font-size: 6px; font-weight: 800; }
.ce-phone__quick { display: grid; margin-top: 11px; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.ce-phone__quick span { display: grid; min-height: 55px; padding: 8px 4px; place-items: center; border: 1px solid #e0e6ee; border-radius: 9px; background: #fff; }
.ce-phone__quick i { width: 19px; height: 19px; border-radius: 6px; background: #ece8ff; }
.ce-phone__quick span:nth-child(2) i { background: #e4f8fc; }
.ce-phone__quick span:nth-child(3) i { background: #e6f9f2; }
.ce-phone__quick small { color: #687487; font-size: 5px; }
.ce-float-card { position: absolute; z-index: 4; display: grid; min-width: 125px; padding: 10px; grid-template-columns: 27px 1fr; align-items: center; gap: 8px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 11px; color: #fff; background: rgba(18, 28, 47, .82); box-shadow: 0 18px 34px rgba(0, 0, 0, .28); backdrop-filter: blur(16px); }
.ce-float-card--online { top: 100px; left: 1px; }
.ce-float-card--secure { right: 0; bottom: 75px; }
.ce-float-card > i { width: 27px; height: 27px; border-radius: 9px; background: radial-gradient(circle at center, #35dda8 0 17%, rgba(53, 221, 168, .16) 20% 100%); }
.ce-float-card > svg { width: 27px; height: 27px; padding: 5px; border-radius: 9px; color: #a990ff; background: rgba(137, 104, 255, .13); stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ce-float-card small,
.ce-float-card strong { display: block; }
.ce-float-card small { color: #7f8ca1; font-size: 6px; text-transform: uppercase; }
.ce-float-card strong { margin-top: 2px; color: #eef3f9; font-size: 8px; }

.ce-login { position: relative; z-index: 5; width: 100%; padding: 38px 38px 29px; border: 1px solid rgba(255, 255, 255, .82); border-radius: 20px; color: var(--ce-ink); background: rgba(255, 255, 255, .975); box-shadow: 0 34px 85px -35px rgba(0, 0, 0, .75); }
.ce-login__head { margin-bottom: 25px; }
.ce-login__icon { display: grid; width: 44px; height: 44px; margin-bottom: 17px; place-items: center; border: 1px solid #ded6ff; border-radius: 13px; color: #6d4ce0; background: linear-gradient(145deg, #f7f4ff, #ece7ff); }
.ce-login__icon svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ce-login__eyebrow { display: block; color: #6d4ce0; font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.ce-login h2 { margin: 9px 0 0; color: #121a2a; font-size: 29px; line-height: 1.1; letter-spacing: -.045em; }
.ce-login__head p { margin: 10px 0 0; color: var(--ce-copy); font-size: 12px; line-height: 1.55; }
.ce-alert { display: grid; margin-bottom: 17px; padding: 11px 12px; grid-template-columns: 19px 1fr; align-items: start; gap: 8px; border: 1px solid; border-radius: 9px; font-size: 11px; line-height: 1.5; }
.ce-alert svg { width: 19px; height: 19px; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ce-alert--error { color: #b42318; border-color: #fecdca; background: #fff1f0; }
.ce-alert--success { color: #067647; border-color: #abefc6; background: #ecfdf3; }
.ce-alert--info { color: #175cd3; border-color: #b2ccff; background: #eff8ff; }
.ce-form { display: grid; gap: 16px; }
.ce-field { display: grid; gap: 7px; }
.ce-field label { color: #30394a; font-size: 11px; font-weight: 760; }
.ce-control { position: relative; display: flex; align-items: center; }
.ce-control > svg { position: absolute; left: 13px; z-index: 1; width: 19px; height: 19px; color: #78859a; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.ce-control input { width: 100%; height: 49px; padding: 0 13px 0 42px; border: 1px solid #bdc6d4; border-radius: 9px; outline: 0; color: #151d2d; background: #fff; font-size: 13px; transition: border-color .16s, box-shadow .16s; }
.ce-control input::placeholder { color: #929cad; }
.ce-control input:hover { border-color: #94a0b1; }
.ce-control input:focus { border-color: #7857f1; box-shadow: 0 0 0 3px rgba(120, 87, 241, .17); }
.ce-control:focus-within > svg { color: #6a49db; }
.ce-submit { display: flex; width: 100%; min-height: 50px; margin-top: 2px; align-items: center; justify-content: center; gap: 9px; border: 1px solid #7453e9; border-radius: 10px; color: #fff; background: linear-gradient(110deg, #7657ef, #6846df); box-shadow: 0 13px 25px -16px rgba(104, 70, 223, .9); font-size: 12px; font-weight: 800; cursor: pointer; transition: transform .18s, box-shadow .18s; }
.ce-submit svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ce-submit:hover { box-shadow: 0 17px 29px -15px rgba(104, 70, 223, .9); transform: translateY(-1px); }
.ce-forgot { display: block; margin-top: 16px; color: #6948db; font-size: 11px; font-weight: 750; text-align: center; }
.ce-forgot:hover { text-decoration: underline; text-underline-offset: 3px; }
.ce-forgot--back { display: flex; align-items: center; justify-content: center; gap: 7px; }
.ce-trust { display: flex; margin: 21px -2px 0; padding-top: 16px; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid #e8ebf0; color: #7c8799; font-size: 8px; font-weight: 650; }
.ce-trust span:first-child { display: inline-flex; align-items: center; gap: 6px; }
.ce-trust i { width: 6px; height: 6px; border-radius: 50%; background: #1fc58e; box-shadow: 0 0 0 4px rgba(31, 197, 142, .09); }

.ce-footer { display: flex; width: min(100% - 48px, 1420px); min-height: 60px; margin: auto auto 0; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255, 255, 255, .07); color: #68758b; font-size: 9px; }
.ce-footer a { color: #9ba7b9; font-weight: 700; }
.ce-footer nav { display: flex; gap: 18px; }

.ce-loading { position: fixed; z-index: 200; inset: 0; display: grid; padding: 24px; place-items: center; background: rgba(6, 10, 21, .72); backdrop-filter: blur(8px); }
.ce-loading[hidden] { display: none; }
.ce-loading > div { display: grid; width: min(100%, 280px); padding: 29px; place-items: center; border: 1px solid rgba(255, 255, 255, .16); border-radius: 18px; color: #fff; background: #131b2e; box-shadow: 0 28px 70px rgba(0, 0, 0, .45); }
.ce-spinner { width: 34px; height: 34px; margin-bottom: 15px; border: 3px solid rgba(255, 255, 255, .15); border-top-color: #9a7cff; border-radius: 50%; animation: ce-spin .8s linear infinite; }
@keyframes ce-spin { to { transform: rotate(360deg); } }
.ce-loading strong { font-size: 13px; }
.ce-loading small { margin-top: 5px; color: #96a3b7; font-size: 10px; }

.ce-app-button:focus-visible,
.ce-nav a:focus-visible,
.ce-submit:focus-visible,
.ce-forgot:focus-visible,
.ce-footer a:focus-visible { outline: 3px solid rgba(154, 124, 255, .35); outline-offset: 3px; }

@media (max-width: 1240px) {
    .ce-main { grid-template-columns: minmax(0, 1fr) 420px; gap: 55px; }
    .ce-intro h1 { max-width: 560px; font-size: 57px; }
    .ce-device-stage { display: none; }
    .ce-intro { min-height: 0; }
}

@media (max-width: 960px) {
    body.customer-entry { background: #fff; }
    .ce-page { overflow: visible; background: #fff; }
    .ce-page::before,
    .ce-page::after { display: none; }
    .ce-header { width: 100%; min-height: 70px; padding: 13px 20px; border-bottom-color: #e7eaf0; background: #fff; }
    .ce-brand { color: #111827; }
    .ce-brand__mark { border-color: transparent; background: linear-gradient(145deg, #20283c, #111827); }
    .ce-brand small { color: #778296; border-left-color: #d9dee7; }
    .ce-nav { color: #657085; }
    .ce-nav__admin { color: #2d3648; border-color: #ccd3df; background: #fff; }
    .ce-main { display: block; width: 100%; min-height: 0; padding: 0; }
    .ce-intro { min-height: 0; padding: 52px 24px 46px; background: radial-gradient(circle at 90% 10%, rgba(43, 190, 222, .18), transparent 38%), linear-gradient(145deg, #0b1123, #081a27); }
    .ce-intro h1 { max-width: 690px; font-size: clamp(43px, 8vw, 65px); }
    .ce-lead { max-width: 620px; }
    .ce-feature-list { max-width: 680px; }
    .ce-login { width: min(100% - 36px, 480px); margin: 42px auto; border-color: #dfe3eb; box-shadow: 0 18px 50px -35px rgba(20, 27, 45, .5); }
    .ce-footer { width: 100%; min-height: 64px; padding: 15px 22px; color: #7b8698; border-top-color: #e8ebf0; background: #fff; }
    .ce-footer a { color: #5d687b; }
}

@media (max-width: 600px) {
    .ce-header { padding-inline: 16px; }
    .ce-brand__mark { width: 34px; height: 34px; padding: 7px; }
    .ce-brand__word { font-size: 19px; }
    .ce-brand small { display: none; }
    .ce-nav > a:first-child { display: none; }
    .ce-nav__admin { min-height: 35px; padding: 7px 11px; font-size: 10px; }
    .ce-intro { padding: 43px 18px 39px; }
    .ce-intro h1 { font-size: 42px; }
    .ce-lead { font-size: 13px; }
    .ce-actions { align-items: flex-start; flex-direction: column; }
    .ce-app-button { width: 100%; max-width: 320px; }
    .ce-app-meta { margin-left: 3px; }
    .ce-feature-list { grid-template-columns: 1fr; }
    .ce-feature-list li { max-width: 320px; }
    .ce-login { width: 100%; margin: 0; padding: 38px 18px 30px; border: 0; border-radius: 0; box-shadow: none; }
    .ce-login__head { margin-bottom: 23px; }
    .ce-login h2 { font-size: 28px; }
    .ce-control input,
    .ce-submit { min-height: 51px; }
    .ce-footer { align-items: flex-start; flex-direction: column; gap: 9px; }
}

@media (max-height: 760px) and (min-width: 961px) {
    .ce-main { padding-top: 26px; padding-bottom: 26px; }
    .ce-intro { min-height: 520px; }
    .ce-intro h1 { font-size: 52px; }
    .ce-feature-list { margin-top: 22px; }
    .ce-login { padding-top: 30px; padding-bottom: 24px; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
