#welcomeScreen {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    background: linear-gradient(145deg, #F4F9FF 0%, #E6F0FA 50%, #F5F8FF 100%);
    z-index: 800;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 80px;
}

@keyframes morphBlob1 {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: scale(1) rotate(0deg);
    }

    50% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: scale(1.05) rotate(180deg);
    }
}

@keyframes morphBlob2 {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: scale(1) rotate(0deg);
    }

    50% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: scale(1.1) rotate(-180deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(46, 154, 184, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(46, 154, 184, 0);
    }
}

@keyframes scanline {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 40px;
    }
}

.wl-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.wl-blob-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 216, 234, 0.4) 0%, transparent 60%);
    filter: blur(40px);
    animation: morphBlob1 20s ease-in-out infinite;
}

.wl-blob-2 {
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(179, 224, 204, 0.3) 0%, transparent 60%);
    filter: blur(50px);
    animation: morphBlob2 25s ease-in-out infinite;
}

.wl-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(46, 154, 184, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(46, 154, 184, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
    animation: scanline 4s linear infinite;
}

.wl-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
    position: relative;
    z-index: 10;
}

.wl-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wl-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -0.5px;
}

.wl-logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 22%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.wl-logo:hover .wl-logo-icon {
    transform: rotate(15deg) scale(1.1);
}

.wl-btn-nav {
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: var(--r-pill);
    padding: 12px 28px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 8px 24px rgba(46, 154, 184, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: pulseGlow 3s infinite;
}

.wl-btn-nav:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(46, 154, 184, 0.4);
}

.wl-top-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    margin-top: 20px;
    align-items: center;
    min-height: 500px;
}

.wl-hero-text {
    position: relative;
    z-index: 2;
    padding-top: 20px;
}

.wl-hero-title {
    font-size: clamp(3.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #1C2B38;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    opacity: 0;
    animation: slideRightFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
    position: relative;
}

.wl-hero-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--rule-2);
    border-radius: 4px;
}

.wl-hero-desc {
    font-size: 1.15rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 480px;
    opacity: 0;
    animation: slideRightFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.35s;
}

.wl-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: var(--r-pill);
    padding: 18px 36px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(46, 154, 184, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    animation: slideRightFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.wl-hero-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 40px rgba(46, 154, 184, 0.4);
    background: var(--brand-d);
}

.wl-hero-btn svg {
    transition: transform 0.3s;
}

.wl-hero-btn:hover svg {
    transform: translateX(6px);
}

.wl-visual-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    opacity: 0;
    animation: slideUpFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.4s;
}

.wl-bg-circle {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E2F2ED 0%, #E6F0FA 100%);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.8);
}

.wl-bg-grid-sm {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 180px;
    height: 180px;
    background-image: linear-gradient(rgba(168, 216, 234, 0.6) 1px, transparent 1px), linear-gradient(90deg, rgba(168, 216, 234, 0.6) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 2;
    opacity: 0.5;
}

.wl-bg-grid-sm::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #A8E6CF;
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.8;
}

.wl-doc-img {
    position: relative;
    z-index: 3;
    max-height: 550px;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.15));
    animation: floatBob 6s ease-in-out infinite;
    mask-image: linear-gradient(to top, transparent 2%, black 15%);
    -webkit-mask-image: linear-gradient(to top, transparent 2%, black 15%);
}

.wl-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wl-glass:hover {
    transform: translateY(-8px) scale(1.03) !important;
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-l);
}

.wl-fc-1 {
    position: absolute;
    bottom: 50px;
    left: -50px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px 12px 12px;
    border-radius: 100px;
    animation: floatBobSlow 5s ease-in-out infinite;
}

.wl-fc-1-av {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.wl-fc-1-info h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 2px;
}

.wl-fc-1-info p {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
}

.wl-fc-1-btn {
    background: #F8FAFC;
    color: var(--ink);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: var(--r-pill);
    border: 1.5px solid var(--rule);
    margin-top: 6px;
    display: inline-block;
}

.wl-fc-2 {
    position: absolute;
    top: 80px;
    right: -20px;
    z-index: 4;
    padding: 16px 20px;
    border-radius: 24px;
    animation: floatBobReverse 6s ease-in-out infinite;
}

.wl-fc-2-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
}

.wl-fc-2-row {
    display: flex;
    align-items: center;
}

.wl-fc-2-avs {
    display: flex;
}

.wl-fc-2-avs img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid #fff;
    margin-left: -12px;
    box-shadow: var(--shadow-xs);
}

.wl-fc-2-avs img:first-child {
    margin-left: 0;
}

.wl-fc-2-add {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--blue-l);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-left: -12px;
    border: 2.5px solid #fff;
    z-index: 5;
    font-size: 1rem;
}

.wl-fc-2-btn {
    background: #A8E6CF;
    color: #065F46;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 8px;
    border-radius: var(--r-pill);
    border: none;
    width: 100%;
    margin-top: 14px;
    cursor: pointer;
}

.wl-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
    padding-bottom: 80px;
}

.wl-bento-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wl-card {
    background: #fff;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(15, 25, 35, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wl-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(46, 154, 184, 0.1);
    border-color: var(--brand-l);
    z-index: 10;
}

.wl-c-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.wl-c-info {
    animation-delay: 0.6s;
}

.wl-c-info p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 24px;
}

.wl-c-info-btns {
    display: flex;
    gap: 12px;
}

.wl-c-info-btns button {
    border-radius: var(--r-pill);
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans';
    border: none;
    cursor: pointer;
}

.wl-btn-outline {
    background: transparent;
    border: 2px solid var(--rule) !important;
    color: var(--ink);
}

.wl-btn-green {
    background: #A8E6CF !important;
    color: #065F46;
}

.wl-c-stats {
    background: #F4F9F8;
    border: none;
    animation-delay: 0.7s;
}

.wl-stats-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.wl-stats-toggle {
    display: flex;
    background: #fff;
    border-radius: var(--r-pill);
    padding: 4px;
    gap: 4px;
    box-shadow: var(--shadow-xs);
}

.wl-t-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-weight: 800;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.wl-t-btn.active {
    background: var(--ink);
    color: #fff;
}

.wl-stats-row {
    display: flex;
    gap: 12px;
}

.wl-s-box {
    flex: 1;
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.wl-s-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wl-s-icon.g {
    background: #A8E6CF;
    color: #065F46;
}

.wl-s-icon.b {
    background: #E8F0FE;
    color: var(--blue);
}

.wl-s-val {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--ink);
    font-family: 'DM Mono', monospace;
}

.wl-s-lbl {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 700;
    margin-top: 2px;
}

.wl-c-form {
    animation-delay: 0.8s;
}

.wl-f-row {
    background: var(--canvas);
    border: 1.5px solid var(--rule);
    border-radius: var(--r-pill);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted);
}

.wl-f-row span {
    color: var(--ink);
}

.wl-f-btn {
    background: #A8E6CF;
    color: #065F46;
    width: 100%;
    border: none;
    border-radius: var(--r-pill);
    padding: 16px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-top: 14px;
    font-family: 'Plus Jakarta Sans';
    cursor: pointer;
}

.wl-f-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.wl-ff-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E8F0FE;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wl-ff-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.4;
}

.wl-c-list {
    background: #F4F9F8;
    border: none;
    animation-delay: 0.75s;
    padding: 24px;
}

.wl-l-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 24px;
    transition: background 0.2s;
    background: #fff;
    margin-bottom: 12px;
    border: 1.5px solid transparent;
}

.wl-l-item:last-child {
    margin-bottom: 0;
}

.wl-l-item:hover,
.wl-l-item.active {
    background: #fff;
    border-color: #A8E6CF;
    box-shadow: var(--shadow-sm);
}

.wl-l-av {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.wl-l-info {
    flex: 1;
}

.wl-l-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 2px;
}

.wl-l-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
}

.wl-l-radio {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--rule-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wl-l-item.active .wl-l-radio {
    border-color: #10B981;
}

.wl-l-item.active .wl-l-radio::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #10B981;
    border-radius: 50%;
}

.wl-c-image {
    animation-delay: 0.85s;
    display: flex;
    padding: 0;
    align-items: stretch;
}

.wl-ci-img {
    width: 40%;
    object-fit: cover;
    border-right: 1.5px solid var(--rule);
}

.wl-ci-content {
    width: 60%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wl-ci-title {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.wl-ci-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 24px;
}

.wl-ci-prof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.wl-ci-pav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.wl-ci-pinfo h5 {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--ink);
}

.wl-ci-pinfo span {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 600;
}

.wl-ci-btn {
    background: var(--brand);
    color: #fff;
    width: 100%;
    border: none;
    border-radius: var(--r-pill);
    padding: 16px;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans';
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(46, 154, 184, 0.3);
}

@media(max-width:1000px) {
    .wl-top-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        min-height: auto;
    }

    .wl-hero-desc {
        margin: 0 auto 40px;
    }

    .wl-hero-title::before {
        display: none;
    }

    .wl-visual-area {
        height: 400px;
    }

    .wl-bg-circle {
        width: 300px;
        height: 300px;
    }

    .wl-doc-img {
        max-height: 100%;
    }

    .wl-fc-1 {
        bottom: 10px;
        left: 0;
    }

    .wl-fc-2 {
        top: 10px;
        right: 0;
    }

    .wl-bento-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wl-c-image {
        flex-direction: column;
    }

    .wl-ci-img {
        width: 100%;
        height: 200px;
        border-right: none;
        border-bottom: 1.5px solid var(--rule);
    }

    .wl-ci-content {
        width: 100%;
    }
}


@media(max-width:600px) {
    #welcomeScreen {
        padding-bottom: 40px;
    }

    .wl-header {
        padding: 12px 16px !important;
    }

    .wl-logo {
        font-size: 1.2rem;
        gap: 8px;
    }

    .wl-logo-icon {
        width: 36px;
        height: 36px;
    }

    .wl-btn-nav {
        font-size: 0.78rem;
        padding: 10px 18px;
    }

    .wl-top-grid {
        padding: 10px 16px 0;
        gap: 28px;
        display: flex;
        flex-direction: column-reverse;
    }

    .wl-hero-text {
        background: #ffffff;
        border-radius: 24px;
        padding: 32px 24px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        text-align: left;
        margin-top: 20px;
    }

    .wl-hero-title {
        font-size: 1.9rem;
        letter-spacing: -1px;
        line-height: 1.15;
    }

    .wl-hero-desc {
        font-size: 0.92rem;
        margin: 0 0 28px;
        text-align: left;
    }

    .wl-hero-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .wl-visual-area {
        height: 280px;
        border-radius: 20px;
        background: linear-gradient(135deg, #E2F2ED 0%, #E6F0FA 100%);
        overflow: visible;
        position: relative;
    }

    .wl-bg-circle {
        width: 200px;
        height: 200px;
    }

    .wl-bg-grid-sm {
        width: 100px;
        height: 100px;
        top: 10px;
        right: 10px;
    }

    .wl-doc-img {
        max-height: 270px;
        position: relative;
        z-index: 3;
    }

    .wl-glass {
        display: flex;
    }

    .wl-fc-1 {
        bottom: -20px;
        left: -80px;
        padding: 8px 14px 8px 8px;
        border-radius: 50px;
        transform: scale(0.82);
        transform-origin: bottom left;
        z-index: 5;
    }

    .wl-fc-1-av {
        width: 36px;
        height: 36px;
    }

    .wl-fc-1-info h4 {
        font-size: 0.75rem;
    }

    .wl-fc-1-info p {
        font-size: 0.62rem;
    }

    .wl-fc-1-btn {
        font-size: 0.6rem;
        padding: 4px 10px;
    }

    .wl-fc-2 {
        display: flex;
        transform: none;
        top: 5%;
        right: -80px;
        padding: 10px 12px;
        border-radius: 16px;
        z-index: 5;
        max-width: 125px;
        flex-direction: column;
    }

    .wl-fc-2-title {
        font-size: 0.65rem;
        margin-bottom: 6px;
    }

    .wl-fc-2-avs img {
        width: 24px;
        height: 24px;
        margin-left: -8px;
    }

    .wl-fc-2-avs img:first-child {
        margin-left: 0;
    }

    .wl-fc-2-add {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
        margin-left: -8px;
    }

    .wl-fc-2-btn {
        font-size: 0.6rem;
        padding: 5px;
        margin-top: 6px;
    }

    .wl-bento-grid {
        padding: 0 16px;
        gap: 14px;
    }

    .wl-card {
        padding: 22px 20px;
        border-radius: 24px;
    }

    .wl-c-title {
        font-size: 1.05rem;
    }

    .wl-c-info p,
    .wl-ci-desc {
        font-size: 0.85rem;
    }

    .wl-c-info-btns {
        flex-wrap: wrap;
        gap: 8px;
    }

    .wl-l-item {
        padding: 12px 14px;
        gap: 12px;
        border-radius: 16px;
    }

    .wl-l-av {
        width: 40px;
        height: 40px;
    }

    .wl-l-name {
        font-size: 0.88rem;
    }

    .wl-l-sub {
        font-size: 0.72rem;
    }

    .wl-ci-img {
        height: 180px;
    }

    .wl-ci-content {
        padding: 24px 20px;
    }

    .wl-ci-title {
        font-size: 1.2rem;
    }

    .wl-s-val {
        font-size: 1.4rem;
    }

    .wl-f-row {
        padding: 10px 14px;
        font-size: 0.82rem;
    }

    .wl-footer {
        padding: 20px 16px;
    }

    .wl-footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media(max-width:400px) {
    .wl-hero-title {
        font-size: 1.6rem;
    }

    .wl-visual-area {
        height: 220px;
    }

    .wl-doc-img {
        max-height: 200px;
    }

    .wl-card {
        padding: 16px;
    }

    .wl-fc-1 {
        transform: scale(0.75);
    }

    .wl-fc-2 {
        transform: scale(0.7);
    }
}
