@font-face{
    font-family:'Raleway';
    src:url('/include/font/Raleway-Light.ttf') format('truetype');
    font-weight:300;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:'Raleway';
    src:url('/include/font/Raleway-Regular.ttf') format('truetype');
    font-weight:400;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:'Raleway';
    src:url('/include/font/Raleway-Medium.ttf') format('truetype');
    font-weight:500;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:'Raleway';
    src:url('/include/font/Raleway-Black.ttf') format('truetype');
    font-weight:900;
    font-style:normal;
    font-display:swap;
}

html{
    background-color:#000000;
    height:100%;
    min-height:100%;
}

body{
    margin:0;
    padding:0;
    font-family:'Raleway', sans-serif;
    background:#000000;
    color:#333;
    height:100%;
    min-height:100vh;
    min-height:100svh;
    display:flex;
    flex-direction:column;
    overflow-x:hidden;
}

a,
a:visited{
    color:var(--keyColor);
    text-decoration:underline;
    text-decoration-thickness:1px;
    text-underline-offset:2px;
}

a:hover,
a:focus,
a:active{
    color:var(--keyColor);
    opacity:0.9;
}

#uw-bg-stage{
    position:fixed;
    inset:0;
    z-index:0;
    overflow:hidden;
    pointer-events:none;
}

#uw-bg-current,
#uw-bg-blackout{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    background-attachment:fixed;
    will-change:opacity;
}

#uw-bg-current{
    opacity:1;
}

#uw-bg-blackout{
    background:#000;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

#uw-bg-blackout.is-visible{
    opacity:1;
}

.logo-container{
    position:absolute;
    top: 0px;
    left:28px;
    z-index:100;
}

.logo-container img{
    height:133px;
    cursor:pointer;
}

.progress-wrap{
    position:absolute;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    width:300px;
    max-width:80%;
    z-index:20;
}

.progress-container{
    position:relative;
    display:flex;
    gap:5px;
    width:100%;
    max-width:100%;
    z-index:20;
    transition:opacity 1s ease;
}

.progress-hover-label{
    position:absolute;
    top:12px;
    left:0;
    transform:translateX(-50%) translateY(-6px);
    background:rgba(0,0,0,0.72);
    color:#ffffff;
    font-size:12px;
    font-weight:700;
    letter-spacing:0.2px;
    padding:7px 10px;
    border-radius:999px;
    white-space:nowrap;
    pointer-events:none;
    opacity:0;
    visibility:hidden;
    transition:opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    box-shadow:0 10px 28px rgba(0,0,0,0.18);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
}

.progress-hover-label.is-visible{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}

body.ob-1 .progress-container{
    opacity:0;
}

.progress-bar{
    height:4px;
    flex:1;
    background-color:#e0e0e0;
    border-radius:2px;
    cursor:pointer;
    transition:background-color 0.3s, opacity 0.5s ease;
    display:block;
}

.progress-bar.active{
    background-color:#ffffff;
}

.progress-bar:hover{
    opacity:0.8;
}

.bar-hidden-init{
    opacity:0;
}

#progressMeter .progress-bar.is-back-link{
    cursor:pointer;
    text-decoration:none;
    background-color:var(--keyColor);
}

#progressMeter .progress-bar.is-future{
    opacity:1;
    background:rgba(255,255,255,.16);
}

.main-content{
    position:relative;
    z-index:1;
    flex:1 0 auto;
    min-height:min(calc(100svh - 140px), 840px);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    max-width:800px;
    margin:0 auto;
    width:100%;
    box-sizing:border-box;
    padding-top:100px;
    min-height: 100vh;
}

.uw-footer-menu{
    position:relative;
    z-index:5;
    width:100%;
    background:#000000;
    border-top:1px solid rgba(255,255,255,0.08);
    padding:18px 24px 20px 24px;
    box-sizing:border-box;
}

.uw-footer-menu-inner{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.uw-footer-link{
    color:rgba(255,255,255,0.62);
    text-decoration:none;
    font-size:12px;
    line-height:1.2;
    font-weight:500;
    letter-spacing:0.04em;
    transition:color .18s ease, opacity .18s ease;
}

.uw-footer-link:hover,
.uw-footer-link:focus{
    color:#ffffff;
    opacity:1;
}

.uw-footer-links{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    text-align:center;
}

.uw-footer-copyright{
    color:rgba(255,255,255,0.52);
    font-size:12px;
    line-height:1.2;
    font-weight:500;
    letter-spacing:0.04em;
    text-align:center;
    width:100%;
}

.title-text{
    font-weight:700;
    color:#333;
    margin-bottom:40px;
    opacity:0;
    transition:opacity 1.5s ease;
    position:absolute;
    width:100%;
    padding:0 20px;
    box-sizing:border-box;
    top:45%;
    transform:translateY(-50%);
    font-size:3rem;
}

#proceedBtn{
    opacity:0;
    transition:opacity 1.0s ease;
    z-index:50;
    position:absolute;
    top:calc(55% + 5vh);
    font-size:20px;
    padding:0 18px;
    height:44px;
}

.converse-container{
    display:none;
    flex-direction:column;
    align-items:center;
    width:100%;
    max-width:800px;
    opacity:0;
    transition:opacity 1s ease;
    margin-top:-8vh;
}

#converseContainer{
    transition:opacity .55s ease, transform .55s ease;
    will-change:opacity, transform;
}

#converseContainer.uw-step-exit{
    opacity:0;
    transform:translateY(16px) scale(.985);
}

.converse-image{
    width:240px;
    height:auto;
    margin-bottom:0;
    margin-top:33px;
    opacity:0;
    transform:translateY(18px) scale(.985);
    transition:opacity .7s ease, transform .7s ease;
    will-change:opacity, transform;
}

.converse-image.uw-entered{
    opacity:1;
    transform:translateY(0) scale(1);
}

.converse-box{
    position:relative;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:18px;
    padding:35px;
    width:100%;
    box-sizing:border-box;
    min-height:360px;
    text-align:left;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    gap:0;
    background:rgba(0,0,0,0.58);
    box-shadow:0 22px 70px rgba(0,0,0,0.32);
    overflow:hidden;
    -webkit-backdrop-filter:blur(0px);
    backdrop-filter:blur(0px);
    opacity:0;
    transform:translateY(22px) scale(.985);
    transition:
        opacity .75s ease,
        transform .75s ease,
        -webkit-backdrop-filter 700ms ease,
        backdrop-filter 700ms ease,
        background-color 700ms ease,
        border-color 700ms ease;
}

.converse-box.uw-entered{
    opacity:1;
    transform:translateY(0) scale(1);
}

.converse-box.uw-blur-on{
    -webkit-backdrop-filter:blur(4px);
    backdrop-filter:blur(4px);
}

.converse-box::before{
    content:"";
    display:none;
}

.converse-box.uw-blur-on::before{
    opacity:1;
}

.converse-box::after{
    content:"";
    display:none;
}

.converse-box > *{
    position:relative;
    z-index:2;
}

.converse-box,
.converse-box *{
    opacity:1;
}

.converse-box .converse-text,
.converse-box #converseTypewriter{
    color:rgba(255,255,255,1);
}

.converse-box .converse-text a,
.converse-box #converseTypewriter a{
    color:var(--keyColor);
    text-decoration:underline;
    text-decoration-thickness:1px;
    text-underline-offset:2px;
    font-weight:700;
}

.converse-box .converse-text a:hover,
.converse-box #converseTypewriter a:hover{
    opacity:0.9;
}

@keyframes converseGradientMove{
    0%{
        transform:translate3d(-5%, -5%, 0) scale(1);
    }
    50%{
        transform:translate3d(5%, 3%, 0) scale(1.05);
    }
    100%{
        transform:translate3d(-3%, 6%, 0) scale(1.08);
    }
}

@keyframes converseGlowIn{
    0%{
        opacity:0;
        transform:translate3d(0,0,0) scale(0.98);
    }
    100%{
        opacity:1;
        transform:translate3d(0,0,0) scale(1);
    }
}

@keyframes converseOverlayIn{
    0%{
        opacity:0;
    }
    100%{
        opacity:1;
    }
}

.converse-text{
    font-size:1.15rem;
    font-weight:400;
    color:rgba(255,255,255,1);
    line-height:1.6;
    width:100%;
    box-sizing:border-box;
    flex:1;
    overflow:visible;
    opacity:1;
}

.converse-input-slot{
    width:auto;
    box-sizing:border-box;
    margin-left:-17px;
    margin-right:-17px;
    margin-bottom:-17px;
    margin-top:10px;
}

.converse-input-row{
    width:100%;
    box-sizing:border-box;
    display:flex;
    align-items:center;
    gap:10px;
    border:1px solid #d6dbe3;
    border-radius:14px;
    background:#ffffff;
    padding:10px 10px 10px 16px;
    box-shadow:0 1px 2px rgba(0, 0, 0, 0.06);
}

.converse-box .converse-input-row{
    border:1px solid rgba(0,0,0,0.12);
    background:rgba(0,0,0,0.66);
    box-shadow:0 10px 26px rgba(0,0,0,0.18);
}

.converse-box .converse-input-row:focus-within{
    border-color:rgba(0,0,0,0.20);
    box-shadow:0 0 0 3px rgba(0, 123, 255, 0.16), 0 10px 26px rgba(0,0,0,0.18);
}

.converse-box .converse-input-row #goalInput{
    color:rgba(255,255,255,0.96);
}

.converse-box .converse-input-row #goalInput::placeholder{
    color:rgba(255,255,255,0.62);
}

.converse-box .converse-input-row #goalInput:-webkit-autofill,
.converse-box .converse-input-row #goalInput:-webkit-autofill:hover,
.converse-box .converse-input-row #goalInput:-webkit-autofill:focus{
    -webkit-box-shadow:0 0 0px 1000px rgba(0,0,0,0.66) inset !important;
}

.converse-input-row:focus-within{
    border-color:var(--keyBgColor);
    box-shadow:0 0 0 3px rgba(0, 123, 255, 0.14);
}

.converse-input-row #goalInput{
    flex:1;
    width:100%;
    max-width:100%;
    box-sizing:border-box;
    display:block;
    border:0;
    outline:none;
    padding:0;
    font-size:16px;
    background:transparent;
    color:#222;
    height:24px;
    line-height:24px;
}

.converse-input-row #goalInput:-webkit-autofill,
.converse-input-row #goalInput:-webkit-autofill:hover,
.converse-input-row #goalInput:-webkit-autofill:focus{
    -webkit-box-shadow:0 0 0px 1000px #ffffff inset !important;
    transition:background-color 5000s ease-in-out 0s;
}

.converse-input-row #goalInput::placeholder{
    color:#9aa4b2;
}

button.primary-btn{
    background:linear-gradient(135deg, #1b4dff 0%, #2b7bff 45%, #60aaff 100%);
    background-size:220% 220%;
    background-position:20% 50%;
    color:#ffffff;
    border:none;
    font-size:14px;
    font-weight:800;
    border-radius:12px;
    cursor:pointer;
    height:40px;
    padding:0 22px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
    box-shadow:0 10px 26px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.10) inset;
    transition:transform 0.14s ease, box-shadow 0.14s ease, filter 0.14s ease, background-position 0.7s ease;
    letter-spacing:0.2px;
}

button.primary-btn:hover{
    background-position:80% 50%;
    transform:translateY(-1px);
    filter:saturate(1.12) brightness(1.04);
    box-shadow:0 16px 34px rgba(0,0,0,0.22), 0 0 0 1px rgba(255,255,255,0.14) inset;
}

button.primary-btn:disabled{
    background:linear-gradient(135deg, rgba(27,77,255,0.45) 0%, rgba(43,123,255,0.40) 45%, rgba(96,170,255,0.38) 100%);
    color:rgba(255,255,255,0.85);
    cursor:not-allowed;
    transform:none;
    filter:none;
    box-shadow:0 8px 18px rgba(0,0,0,0.14), 0 0 0 1px rgba(255,255,255,0.08) inset;
}

button.primary-btn:active{
    transform:translateY(0);
    filter:saturate(1.08) brightness(0.98);
    box-shadow:0 10px 22px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.10) inset;
}

#saveGoalBtn{
    margin-top:0;
    width:auto;
}

.input-area{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:0;
    box-sizing:border-box;
}

.status-message{
    display:inline-block;
    max-width:520px;
    background:#ffffff;
    border-radius:14px;
    padding:10px 14px;
    box-shadow:0 10px 26px rgba(0,0,0,0.12);
    border:1px solid rgba(0,0,0,0.08);
    margin-top:12px;
    font-size:1.1rem;
    min-height:24px;
}

.status-message.success{
    color: #ffffff;
    background-color: var(--keyColor);
    font-weight: normal;
    font-family:'Raleway', sans-serif;
}

.status-message.error{
    color:#60aaff;
    background:#ffffff;
}

.status-message.error a,
.status-message.error a:visited,
.status-message.error a:hover,
.status-message.error a:active,
.status-message.error a:focus{
    color:var(--keyColor);
    text-decoration:underline;
    font-weight:700;
}

.status-message.retry{
    color:var(--alertColorB);
    display:none;
}

.status-message:empty{
    display:none;
}

.skip-link{
    position:relative;
    align-self:center;
    font-size:0.95rem;
    font-weight:700;
    letter-spacing:0.2px;
    color:var(--keyColor);
    text-decoration:none;
    cursor:pointer;
    z-index:60;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:10px 14px;
    border-radius:999px;
    border:2px solid rgba(0, 0, 0, 0.12);
    background:rgba(0, 0, 0, 0.04);
    box-shadow:0 6px 18px rgba(0, 0, 0, 0.08);
    transition:transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease, color 0.12s ease, border-color 0.12s ease, opacity 0.12s ease;
}

.skip-link:hover{
    opacity:1;
    transform:translateY(-1px);
    border-color:var(--keyBgColor);
    background:var(--keyBgColor);
    color:#ffffff;
    box-shadow:0 10px 24px rgba(0, 0, 0, 0.14);
}

.skip-link:active{
    transform:translateY(0);
    box-shadow:0 6px 18px rgba(0, 0, 0, 0.10);
}

.skip-link:focus-visible{
    outline:none;
    box-shadow:0 0 0 4px rgba(0, 123, 255, 0.18), 0 10px 24px rgba(0, 0, 0, 0.14);
    border-color:var(--keyBgColor);
}

.placeholder-message{
    font-size:2rem;
    color:#777;
    font-weight:300;
}

.uw-bubble-typing{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:0 2px;
    height:24px;
    vertical-align:middle;
}

.uw-bubble-typing span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#9aa4b2;
    display:inline-block;
    animation:uwb 1.2s infinite ease-in-out;
}

.uw-bubble-typing span:nth-child(2){
    animation-delay:.15s;
}

.uw-bubble-typing span:nth-child(3){
    animation-delay:.3s;
}

@keyframes uwb{
    0%{
        transform:translateY(0);
        opacity:.5;
    }
    50%{
        transform:translateY(-5px);
        opacity:1;
    }
    100%{
        transform:translateY(0);
        opacity:.5;
    }
}

#inputEllipsis{
    margin-right:5px;
}

.uw-loader-wrap{
    width:min(100%, 680px);
    margin:18px auto 14px;
    opacity:0;
    transform:translateY(8px);
    transition:opacity .45s ease, transform .45s ease;
    pointer-events:none;
}

.uw-loader-wrap.is-visible{
    opacity:1;
    transform:translateY(0);
}

.uw-loader-wrap.is-done{
    opacity:0;
    transform:translateY(-6px);
}

.uw-loader-track{
    position:relative;
    width:100%;
    height:10px;
    border-radius:999px;
    overflow:visible;
    background:rgba(255,255,255,.08);
    box-shadow:inset 0 -1px 2px rgba(0,0,0,.18), 0 8px 24px rgba(0,0,0,.14);
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
}

.uw-loader-fill{
    position:absolute;
    left:0;
    top:0;
    height:100%;
    width:0%;
    border-radius:0;
    background:linear-gradient(90deg, #173b8f 0%, #1d4ed8 34%, #2563eb 68%, #60a5fa 100%);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.14), 0 0 10px rgba(37,99,235,.12), 0 0 20px rgba(37,99,235,.16);
    will-change:width;
}

.uw-loader-glow{
    position:absolute;
    top:0;
    width:140px;
    height:100%;
    right:-140px;
    background:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.10) 18%, rgba(255,255,255,.42) 52%, rgba(255,255,255,0) 100%);
    filter:blur(7px);
    opacity:.95;
    pointer-events:none;
}

.uw-loader-fireball{
    position:absolute;
    top:50%;
    right:-8px;
    width:16px;
    height:16px;
    transform:translateY(-50%);
    border-radius:50%;
    pointer-events:none;
    z-index:3;
    background:radial-gradient(circle at 38% 38%, rgba(255,255,255,.98) 0%, rgba(255,255,255,.98) 16%, rgba(170,220,255,.95) 34%, rgba(96,170,255,.88) 52%, rgba(43,123,255,.68) 68%, rgba(43,123,255,0) 100%);
    box-shadow:0 0 10px rgba(255,255,255,.70), 0 0 20px rgba(96,170,255,.62), 0 0 34px rgba(43,123,255,.42);
    opacity:0;
    transition:opacity .18s ease;
}

.uw-loader-fireball::before{
    content:"";
    position:absolute;
    top:50%;
    right:6px;
    width:20px;
    height:8px;
    transform:translateY(-50%);
    border-radius:999px;
    background:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(170,220,255,.28) 26%, rgba(96,170,255,.46) 58%, rgba(43,123,255,.08) 100%);
    filter:blur(4px);
    opacity:.95;
}

.uw-loader-fireball::after{
    content:"";
    position:absolute;
    inset:-4px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(255,255,255,.32) 0%, rgba(96,170,255,.22) 42%, rgba(43,123,255,0) 76%);
    animation:uwLoaderFireballPulse 1.15s ease-in-out infinite;
}

@keyframes uwLoaderFireballPulse{
    0%{
        transform:scale(.9);
        opacity:.75;
    }
    50%{
        transform:scale(1.14);
        opacity:1;
    }
    100%{
        transform:scale(.9);
        opacity:.75;
    }
}

.uw-loader-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-top:8px;
    font-size:11px;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:rgba(255,255,255,.78);
}

.uw-loader-label{
    white-space:nowrap;
}

.uw-loader-percent{
    min-width:42px;
    text-align:right;
    font-variant-numeric:tabular-nums;
}

.uw-loader-shell{
    transition:opacity .35s ease, transform .35s ease;
}

.uw-loader-shell.is-hidden{
    opacity:0;
    transform:translateY(-6px);
    pointer-events:none;
}

.uw-loader-cta-wrap{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transform:translateY(10px);
    transition:opacity .42s ease, transform .42s ease;
}

.uw-loader-cta-wrap.is-visible{
    opacity:1;
    transform:translateY(0);
}

.uw-loader-cta-pill{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    padding:8px 20px;
    font-size:16px;
    font-weight:400;
    letter-spacing:0;
    line-height:1.2;
    text-align:center;
    white-space:nowrap;
    color:var(--keyColor);
    background:#ffffff;
    box-shadow:0 6px 18px rgba(0,0,0,.12);
    overflow:visible;
    z-index:1;
}

.uw-loader-cta-pill::before{
    content:"";
    position:absolute;
    inset:-6px -10px;
    border-radius:999px;
    opacity:.90;
    z-index:-1;
    pointer-events:none;
    animation:uwLoaderBobblePulse 1.9s ease-in-out infinite;
}

@keyframes uwLoaderBobblePulse{
    0%{
        transform:scale(0.96);
        opacity:.72;
    }
    50%{
        transform:scale(1.06);
        opacity:1;
    }
    100%{
        transform:scale(0.96);
        opacity:.72;
    }
}

.uw-top-menu{
    position:fixed;
    top:18px;
    right:18px;
    z-index:1200;
    width:48px;
    height:48px;
    margin:0;
    opacity:0;
    transform:translateY(-10px) scale(.82);
    pointer-events:none;
    transition:opacity .45s ease, transform .55s cubic-bezier(.22,.9,.2,1);
    overflow:visible;
}

.uw-top-menu.is-visible{
    opacity:1;
    transform:translateY(0) scale(1);
}

.uw-top-menu.is-ready{
    pointer-events:auto;
}

.uw-top-menu-btn{
    position:relative;
    width:48px;
    height:48px;
    border:0;
    border-radius:999px;
    background:#000;
    color:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.24), 0 2px 10px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    padding:0;
    margin:0;
    appearance:none;
    -webkit-appearance:none;
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
    z-index:2;
    margin-bottom: 14px;
}

.uw-top-menu-btn:hover{
    background:#fff;
    transform:translateY(-1px);
    box-shadow:0 14px 34px rgba(0,0,0,.2), 0 3px 12px rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.95);
}

.uw-top-menu-btn:hover .uw-top-menu-star path:last-child{
    fill:rgba(0,0,0,0.08);
}

.uw-top-menu-btn:active{
    transform:scale(.97);
}

.uw-top-menu-star-wrap{
    position:relative;
    width:28px;
    height:28px;
    display:block;
}

.uw-top-menu-star{
    width:28px;
    height:28px;
    display:block;
    filter:drop-shadow(0 0 10px rgba(255,255,255,.18)) drop-shadow(0 0 12px rgba(59,130,246,.2));
    transform-origin:50% 50%;
}

.uw-top-menu-btn:hover .uw-top-menu-star{
    filter:drop-shadow(0 0 10px rgba(255,255,255,.34)) drop-shadow(0 0 12px rgba(59,130,246,.28));
}

.uw-top-menu-shine{
    position:absolute;
    top:-4px;
    left:-14px;
    width:18px;
    height:36px;
    border-radius:999px;
    background:linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.95) 50%, rgba(255,255,255,0) 100%);
    opacity:0;
    transform:rotate(24deg) translateX(0);
    pointer-events:none;
    filter:blur(.2px);
}

.uw-top-menu-panel{
    position:absolute;;
    right:58px;
    width:340px;
    max-width:min(340px, calc(100vw - 90px));
    background:rgba(255,255,255,.98);
    border:1px solid rgba(0,0,0,.08);
    border-radius:20px;
    box-shadow:0 24px 70px rgba(0,0,0,.20), 0 6px 24px rgba(0,0,0,.10);
    opacity:0;
    visibility:hidden;
    transform:translateX(14px) scale(.96);
    transform-origin:100% 22px;
    transition:opacity .22s ease, transform .28s cubic-bezier(.22,.9,.2,1), visibility .22s ease;
    pointer-events:none;
    overflow:hidden;
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    z-index:1;
    display:block;
}

.uw-top-menu-panel.is-open{
    opacity:1;
    visibility:visible;
    transform:translateX(0) scale(1);
    pointer-events:auto;
}

.uw-top-menu.is-panel-open{
    pointer-events:auto;
}

.uw-campaign-form{
    display:flex;
    flex-direction:column;
    gap:16px;
    padding:18px;
}

.uw-campaign-title{
    font-size:20px;
    line-height:1.15;
    font-weight:800;
    color:#111827;
    letter-spacing:-0.02em;
}

.uw-campaign-fields{
    display:flex;
    flex-direction:column;
    gap:12px;
    max-height:min(56vh, 520px);
    overflow-y:auto;
    overflow-x:hidden;
    padding-right:14px;
    margin-right:-14px;
    scrollbar-gutter:stable;
}

.uw-campaign-fields::-webkit-scrollbar{
    width:10px;
}

.uw-campaign-fields::-webkit-scrollbar-track{
    background:transparent;
}

.uw-campaign-fields::-webkit-scrollbar-thumb{
    background:rgba(17,24,39,.20);
    border-radius:999px;
    border:2px solid transparent;
    background-clip:padding-box;
}

.uw-campaign-fields::-webkit-scrollbar-thumb:hover{
    background:rgba(17,24,39,.32);
    border:2px solid transparent;
    background-clip:padding-box;
}

.uw-campaign-row{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.uw-campaign-label{
    font-size:12px;
    line-height:1.2;
    font-weight:800;
    letter-spacing:.05em;
    text-transform:uppercase;
    color:#6b7280;
}

.uw-campaign-input{
    width:100%;
    box-sizing:border-box;
    border:1px solid rgba(17,24,39,.10);
    border-radius:14px;
    background:#ffffff;
    color:#111827;
    font-size:15px;
    line-height:1.35;
    padding:13px 14px;
    outline:none;
    transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    box-shadow:0 2px 8px rgba(0,0,0,.03);
}

.uw-campaign-input:focus{
    border-color:rgba(96,170,255,.75);
    box-shadow:0 0 0 4px rgba(96,170,255,.14);
}

.uw-campaign-empty{
    font-size:14px;
    line-height:1.45;
    color:#6b7280;
    background:rgba(17,24,39,.03);
    border:1px solid rgba(17,24,39,.06);
    border-radius:14px;
    padding:14px 15px;
}

.uw-campaign-actions{
    display:flex;
    justify-content:flex-end;
    padding-top:2px;
}

.uw-top-menu.is-flashing .uw-top-menu-btn{
    animation:uwTopMenuPop 6.1s ease-in-out;
}

.uw-top-menu.is-flashing .uw-top-menu-star{
    animation:uwTopMenuStarFlash 6.1s ease-in-out;
}

.uw-top-menu.is-flashing .uw-top-menu-shine{
    animation:uwTopMenuShineSweep 6.1s ease-in-out;
}

.uw-top-menu.is-visible{
    opacity:1;
    transform:translateY(0) scale(1);
}

.uw-top-menu.is-ready{
    pointer-events:auto;
}

.uw-top-menu-btn{
    width:48px;
    height:48px;
    border:0;
    border-radius:999px;
    background:#000;
    color:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.24), 0 2px 10px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    padding:0;
    margin:0;
    appearance:none;
    -webkit-appearance:none;
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.uw-top-menu-btn:hover{
    background:#fff;
    transform:translateY(-1px);
    box-shadow:0 14px 34px rgba(0,0,0,.2), 0 3px 12px rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.95);
}

.uw-top-menu-btn:hover .uw-top-menu-star path:last-child{
    fill:rgba(0,0,0,0.08);
}

.uw-top-menu-btn:active{
    transform:scale(.97);
}

.uw-top-menu-star-wrap{
    position:relative;
    width:28px;
    height:28px;
    display:block;
}

.uw-top-menu-star{
    width:28px;
    height:28px;
    display:block;
    filter:drop-shadow(0 0 10px rgba(255,255,255,.18)) drop-shadow(0 0 12px rgba(59,130,246,.2));
    transform-origin:50% 50%;
}

.uw-top-menu-btn:hover .uw-top-menu-star{
    filter:drop-shadow(0 0 10px rgba(255,255,255,.34)) drop-shadow(0 0 12px rgba(59,130,246,.28));
}

.uw-top-menu-shine{
    position:absolute;
    top:-4px;
    left:-14px;
    width:18px;
    height:36px;
    border-radius:999px;
    background:linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.95) 50%, rgba(255,255,255,0) 100%);
    opacity:0;
    transform:rotate(24deg) translateX(0);
    pointer-events:none;
    filter:blur(.2px);
}

.uw-top-menu.is-flashing .uw-top-menu-btn{
    animation:uwTopMenuPop 6.1s ease-in-out;
}

.uw-top-menu.is-flashing .uw-top-menu-star{
    animation:uwTopMenuStarFlash 6.1s ease-in-out;
}

.uw-top-menu.is-flashing .uw-top-menu-shine{
    animation:uwTopMenuShineSweep 6.1s ease-in-out;
}

@keyframes uwTopMenuPop{
    0%{
        transform:scale(.82);
        box-shadow:0 0 0 rgba(0,0,0,0), 0 0 0 rgba(0,0,0,0), inset 0 1px 0 rgba(255,255,255,.08);
    }
    11.475%{
        transform:scale(1.22);
        box-shadow:0 18px 44px rgba(0,0,0,.22), 0 0 0 10px rgba(255,255,255,.06), inset 0 1px 0 rgba(255,255,255,.14);
    }
    22%{
        transform:scale(1.28);
        box-shadow:0 22px 50px rgba(0,0,0,.25), 0 0 0 12px rgba(255,255,255,.08), inset 0 1px 0 rgba(255,255,255,.16);
    }
    34%{
        transform:scale(1.18);
        box-shadow:0 17px 42px rgba(0,0,0,.21), 0 0 0 8px rgba(255,255,255,.05), inset 0 1px 0 rgba(255,255,255,.13);
    }
    46%{
        transform:scale(1.27);
        box-shadow:0 21px 48px rgba(0,0,0,.24), 0 0 0 11px rgba(255,255,255,.07), inset 0 1px 0 rgba(255,255,255,.16);
    }
    58%{
        transform:scale(1.19);
        box-shadow:0 17px 42px rgba(0,0,0,.21), 0 0 0 8px rgba(255,255,255,.05), inset 0 1px 0 rgba(255,255,255,.13);
    }
    70%{
        transform:scale(1.26);
        box-shadow:0 20px 46px rgba(0,0,0,.23), 0 0 0 10px rgba(255,255,255,.06), inset 0 1px 0 rgba(255,255,255,.15);
    }
    93.443%{
        transform:scale(1.22);
        box-shadow:0 18px 44px rgba(0,0,0,.22), 0 0 0 10px rgba(255,255,255,.06), inset 0 1px 0 rgba(255,255,255,.14);
    }
    100%{
        transform:scale(1);
        box-shadow:0 10px 30px rgba(0,0,0,.24), 0 2px 10px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.08);
    }
}

@keyframes uwTopMenuStarFlash{
    0%{
        transform:scale(.45) rotate(-18deg);
        filter:drop-shadow(0 0 0 rgba(255,255,255,0)) drop-shadow(0 0 0 rgba(59,130,246,0));
    }
    11.475%{
        transform:scale(1.75) rotate(5deg);
        filter:drop-shadow(0 0 20px rgba(255,255,255,.95)) drop-shadow(0 0 24px rgba(59,130,246,.55));
    }
    22%{
        transform:scale(1.95) rotate(7deg);
        filter:drop-shadow(0 0 25px rgba(255,255,255,.98)) drop-shadow(0 0 30px rgba(59,130,246,.64));
    }
    34%{
        transform:scale(1.65) rotate(2deg);
        filter:drop-shadow(0 0 18px rgba(255,255,255,.9)) drop-shadow(0 0 22px rgba(59,130,246,.48));
    }
    46%{
        transform:scale(1.9) rotate(6deg);
        filter:drop-shadow(0 0 24px rgba(255,255,255,.97)) drop-shadow(0 0 28px rgba(59,130,246,.62));
    }
    58%{
        transform:scale(1.68) rotate(2deg);
        filter:drop-shadow(0 0 18px rgba(255,255,255,.9)) drop-shadow(0 0 22px rgba(59,130,246,.48));
    }
    70%{
        transform:scale(1.88) rotate(5deg);
        filter:drop-shadow(0 0 23px rgba(255,255,255,.96)) drop-shadow(0 0 27px rgba(59,130,246,.58));
    }
    93.443%{
        transform:scale(1.75) rotate(4deg);
        filter:drop-shadow(0 0 20px rgba(255,255,255,.95)) drop-shadow(0 0 24px rgba(59,130,246,.55));
    }
    100%{
        transform:scale(1) rotate(0deg);
        filter:drop-shadow(0 0 10px rgba(255,255,255,.18)) drop-shadow(0 0 12px rgba(59,130,246,.2));
    }
}

@keyframes uwTopMenuShineSweep{
    0%{
        opacity:0;
        transform:rotate(24deg) translateX(-8px);
    }
    4%{
        opacity:.95;
    }
    14%{
        opacity:.88;
        transform:rotate(24deg) translateX(30px);
    }
    20%{
        opacity:0;
        transform:rotate(24deg) translateX(38px);
    }
    100%{
        opacity:0;
        transform:rotate(24deg) translateX(38px);
    }
}

#uwTopMenu{
    position:fixed;
    top:42px;
    right:18px;
    width:48px;
    height:48px;
    margin:0;
    padding:0;
    z-index:1200;
    pointer-events:none;
    overflow:visible;
}

#uwTopMenu.is-ready{
    pointer-events:auto;
}

#uwTopMenuBtn{
    width:48px;
    height:48px;
    margin:0;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom: 14px;
}

#uw-menu-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.4);
    opacity:0;
    pointer-events:none;
    transition:opacity 220ms ease;
    z-index:2;
}

body.uw-menu-open #uw-menu-backdrop{
    opacity:1;
}

.uw-campaign-select {
    appearance: none;
}

.uw-campaign-tags-editor {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.uw-campaign-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 18px;
}

.uw-campaign-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #696969;
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff;
    font-size: 13px;
    line-height: 1;
}

.uw-campaign-tag-text {
    display: inline-block;
}

.uw-campaign-tag-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    padding: 0;
}

.uw-campaign-tag-remove:hover {
    background: rgba(255,255,255,0.28);
}

.uw-campaign-tag-input-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.uw-campaign-tag-input-row .uw-campaign-tag-input {
    flex: 1 1 auto;
}

.uw-campaign-tag-add {
    white-space: nowrap;
}

.uw-save-toast{
    position:fixed;
    top:18px;
    left:50%;
    transform:translateX(-50%) translateY(-20px);
    z-index:2147483646;
    opacity:0;
    pointer-events:none;
    transition:opacity .28s ease, transform .28s ease;
}

.uw-save-toast.is-visible{
    opacity:1;
    transform:translateX(-50%) translateY(0);
}

.uw-save-toast-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 18px;
    border-radius:14px;
    background:var(--keyColor);
    color:#fff;
    font-size:14px;
    font-weight:600;
    line-height:1;
    box-shadow:0 14px 34px rgba(0,0,0,.22);
    white-space:nowrap;
}

.uw-checkout-overlay{
    position:fixed;
    inset:0;
    z-index:99999;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    opacity:0;
    pointer-events:none;
    transition:opacity 0.22s ease;
    padding:24px 24px 36px 24px;
    box-sizing:border-box;
    overflow-y:auto;
    overflow-x:hidden;
    -webkit-overflow-scrolling:touch;
}

.uw-checkout-overlay.is-visible{
    opacity:1;
    pointer-events:auto;
}

.uw-checkout-backdrop{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.05);
    backdrop-filter:blur(3px);
    -webkit-backdrop-filter:blur(3px);
}

.uw-checkout-content-wrap{
    position:relative;
    z-index:2;
    width:min(100%, 520px);
    margin:0 auto;
    box-sizing:border-box;
}

.uw-checkout-content{
    width:100%;
    box-sizing:border-box;
}

.uw-checkout-close{
    position:sticky;
    top:10px;
    margin-left:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:4;
    width:36px;
    height:36px;
    border:0;
    border-radius:999px;
    background:rgba(255,255,255,0.88);
    color:#111111;
    font-size:24px;
    line-height:1;
    cursor:pointer;
    box-shadow:0 8px 24px rgba(0,0,0,0.16);
}

body.uw-overlay-open{
    overflow:hidden;
}

@media (max-width: 640px){
    .uw-checkout-overlay{
        padding:12px 12px 24px 12px;
    }

    .uw-checkout-content-wrap{
        width:100%;
    }
}

.uw-loader-meta{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.uw-loader-label{
    font-size:14px;
    line-height:1;
    white-space:nowrap;
}

#uwBillingMenuBtn{
    opacity:0;
    transform:scale(0.55);
    pointer-events:none;
    transition:opacity 0.38s ease, transform 0.38s ease;
}

#uwBillingMenuBtn.is-visible{
    opacity:1;
    transform:scale(1);
    pointer-events:auto;
    margin-bottom: 17px;
}

#uwBillingMenuBtn.is-flashing{
    animation:uwBillingMenuPulse 1.2s ease 0s 2;
}

#uwMainLogo.is-premium-pop{
    animation: uwPremiumLogoPop 3.4s cubic-bezier(.22,.84,.24,1);
}

@keyframes uwPremiumLogoPop{
    0%{
        transform: scale(1);
    }
    12%{
        transform: scale(1.16);
    }
    38%{
        transform: scale(1.16);
    }
    62%{
        transform: scale(1.12);
    }
    100%{
        transform: scale(1);
    }
}

@keyframes uwPremiumLogoPop{
    0%{transform:scale(1);}
    18%{transform:scale(1.34);}
    40%{transform:scale(1.18);}
    100%{transform:scale(1);}
}

@keyframes uwBillingMenuPulse{
    0%{transform:scale(1);}
    20%{transform:scale(1.28);}
    42%{transform:scale(1.08);}
    100%{transform:scale(1);}
}

.uw-top-menu-panel-billing{
    display:none;
    flex-direction:column;
    gap:16px;
    padding:18px;
}

.uw-top-menu.is-billing-panel-open .uw-top-menu-panel-billing{
    display:block;
}

.uw-top-menu.is-billing-panel-open #uwTopMenuPanel{
    display:none;
}

.uw-top-menu-panel-billing .uw-campaign-title{
    color:#111827;
    margin-bottom: 12px;
}

.uw-billing-panel-grid{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:0;
}

.uw-billing-row{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.uw-billing-label{
    font-size:12px;
    line-height:1.2;
    font-weight:800;
    letter-spacing:.05em;
    text-transform:uppercase;
    color:#6b7280;
}

.uw-billing-value{
    font-size:15px;
    line-height:1.45;
    color:#111827;
    word-break:break-word;
    min-height:22px;
    font-weight:500;
}

.uw-top-menu-panel-billing .uw-campaign-actions{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:10px;
    padding-top:2px;
    flex-wrap:wrap;
}

.uw-top-menu-panel-billing .primary-btn{
    width:auto;
    min-height:40px;
}

.uw-top-menu-panel-billing .primary-btn + .primary-btn{
    margin-top:0;
}

.uw-top-bobble{
    position: fixed;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    max-width: calc(100vw - 32px);
    min-width: 260px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--keyColor);
    color: #ffffff;
    font-size: 15px;
    line-height: 1.3;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0,0,0,.26);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
}

.uw-top-bobble.is-visible{
    display: block !important;
    animation: uwTopBobbleDrop 3.2s cubic-bezier(.22,.8,.2,1) forwards;
}

@keyframes uwTopBobbleDrop{
    0%{
        top: -120px;
        opacity: 0;
        transform: translateX(-50%) scale(.96);
    }
    12%{
        top: 18px;
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    18%{
        top: 28px;
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    24%{
        top: 22px;
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    74%{
        top: 22px;
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    100%{
        top: -120px;
        opacity: 0;
        transform: translateX(-50%) scale(.97);
    }
}

@media (max-width: 640px){
    .uw-top-bobble{
        min-width: 0;
        width: calc(100vw - 24px);
        padding: 13px 18px;
        font-size: 14px;
        white-space: normal;
    }
}

#uwTrialResultsScroller::-webkit-scrollbar {
    width: 10px;
}

#uwTrialResultsScroller::-webkit-scrollbar-track {
    background: transparent;
}

#uwTrialResultsScroller::-webkit-scrollbar-thumb {
    background: rgba(37,99,235,0.26);
    border-radius: 999px;
    background-clip: padding-box;
}

#uwTrialResultsScroller::-webkit-scrollbar-thumb:hover {
    background: rgba(37,99,235,0.42);
    border-radius: 999px;
    background-clip: padding-box;
}

.uw-footer-left { 
    color: #b7b7b7;
    margin-top: 12px;
}

body.wf-trial-overlay-open {
    overflow: hidden;
    height: 100vh;
    touch-action: none;
}

.wf-trial-overlay-shell {
    position: fixed;
    inset: 0;
    z-index: 9998;
}

.wf-trial-overlay-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(6px);
    z-index: 9998;
    transition: opacity .28s ease;
}

.wf-trial-overlay-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 18px)) scale(.975);
    width: min(860px, 92vw);
    max-width: 92vw;
    height: min(78vh, 820px);
    max-height: 78vh;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(37,99,235,0.10);
    border-radius: 24px;
    z-index: 9999;
    box-shadow: 0 28px 90px rgba(15,23,42,0.22);
    will-change: transform, opacity;
}

.wf-trial-overlay-scroller {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 14px 18px 18px 0;
    margin: 10px 10px 10px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(37,99,235,0.35) transparent;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

.wf-trial-overlay-close {
    margin-right: 11px;
    margin-top: 9px;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 4;
    appearance: none;
    border: none;
    background: var(--keyColor);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 12px 16px;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(37,99,235,0.22);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}