    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0
    }

    :root {
        --page-bg: #F7F8FC;
        --primary: #0B1437;
        /* Premium Deep Electric Navy */
        --accent: #0030DB;
        --accent-dark: #0025A8;
        --surface: #FFFFFF;
        --text-primary: #0A0F1E;
        --text-secondary: #4B5563;
        --border: #E2E6F0;
        --dark-bg: #0B1437;
        --success: #1E40AF;
        --tint: #F0F4FF;
        --dark: #1338BE;
        --dark-deep: #0B1437;

        --max-w: 1400px;
        --pad-x: 40px;
        --font-display: 'Ubuntu', sans-serif;
        --font-body: 'Ubuntu', sans-serif;
        --font-mono: 'Space Mono', monospace;
    }

    .text-blue {
        color: var(--accent);
        display: inline;
    }

    /* Visual mockups use Poppins */
    .dash-container,
    .dash-container *,
    .card-base,
    .card-base *,
    .po-card,
    .po-card *,
    .r-panel,
    .r-panel *,
    .vendor-card,
    .vendor-card *,
    .pay-card,
    .pay-card *,
    .report-card-wrap,
    .report-card-wrap * {
        font-family: 'Poppins', sans-serif !important;
    }

    html {
        scroll-behavior: smooth
    }

    body {
        font-family: var(--font-body);
        background: var(--page-bg);
        color: var(--text-primary);
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased
    }

    .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--pad-x)
    }

    section {
        width: 100%
    }

    .sec-pad {
        padding: 72px 0
    }

    .animate-in {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity .5s ease, transform .5s ease
    }

    .animate-in.visible {
        opacity: 1;
        transform: translateY(0)
    }

    /* Hero elements visibility (above the fold) */
    .hero2-left .animate-in,
    .h2-right .animate-in,
    .hero2 .animate-in {
        opacity: 1 !important;
        transform: translateY(0) !important;
        visibility: visible !important;
    }

    .btn-accent {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--accent);
        color: #fff;
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 15px;
        padding: 12px 28px;
        border-radius: 12px;
        border: none;
        cursor: pointer;
        text-decoration: none;
        transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
        box-shadow: 0 2px 12px rgba(37, 99, 235, .2)
    }

    .btn-accent:hover {
        background: var(--accent-dark);
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 8px 32px rgba(37, 99, 235, .4)
    }

    .btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: var(--primary);
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 15px;
        padding: 11px 26px;
        border-radius: 12px;
        border: 1.5px solid var(--primary);
        cursor: pointer;
        text-decoration: none;
        transition: all .25s ease
    }

    .btn-ghost:hover {
        background: var(--dark);
        color: #fff;
        border-color: #1338BE
    }

    .btn-ghost-cream {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: #F7F8FC;
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 15px;
        padding: 11px 26px;
        border-radius: 12px;
        border: 1.5px solid rgba(247, 248, 252, .5);
        cursor: pointer;
        text-decoration: none;
        transition: all .25s ease
    }

    .btn-ghost-cream:hover {
        background: rgba(247, 248, 252, .12)
    }

    .tag-chip {
        display: inline-block;
        font-family: var(--font-body);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: .06em;
        text-transform: uppercase;
        padding: 5px 14px;
        border-radius: 999px;
        background: var(--dark);
        color: #fff;
        margin-bottom: 20px
    }

    .tag-chip-accent {
        background: var(--accent);
        color: #fff
    }

    .tag-chip-outline {
        background: transparent;
        border: 1px solid var(--border);
        color: var(--text-secondary)
    }





    /* ORBS */
    .orb-wrap {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        pointer-events: none;
        z-index: 0
    }

    .orb {
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        filter: blur(120px);
        opacity: 0.08;
        animation: orbFlow 25s infinite alternate ease-in-out
    }

    .orb-1 {
        top: -10%;
        right: -10%;
        background: var(--accent)
    }

    .orb-2 {
        bottom: -10%;
        left: -10%;
        background: var(--dark);
        animation-delay: -5s
    }

    .orb-3 {
        top: 20%;
        left: 20%;
        background: var(--accent);
        width: 400px;
        height: 400px;
        opacity: 0.04;
        animation-duration: 18s
    }

    @keyframes orbFlow {
        0% {
            transform: translate(0, 0) scale(1)
        }

        50% {
            transform: translate(50px, 100px) scale(1.1)
        }

        100% {
            transform: translate(-50px, 50px) scale(0.9)
        }
    }

    /* REPORTS SECTION */
    .reports-sec {
        background: #fff;
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .reports-layout {
        display: grid;
        grid-template-columns: 1fr 1.2fr 1fr;
        gap: 40px;
        align-items: center;
        margin-top: 48px
    }

    .report-pills {
        display: flex;
        flex-direction: column;
        gap: 12px
    }

    .report-pill {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.8);
        border-radius: 16px;
        padding: 16px 24px;
        font-size: 14px;
        font-weight: 600;
        color: var(--text-primary);
        display: flex;
        align-items: center;
        gap: 12px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .report-pill:hover {
        border-color: var(--accent);
        background: #fff;
        transform: translateX(8px) scale(1.02);
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    }

    .report-pill .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 10px var(--accent);
        animation: pulseGlow 2s infinite;
    }

    @keyframes pulseGlow {
        0% {
            transform: scale(1);
            opacity: 1;
            box-shadow: 0 0 5px var(--accent);
        }

        50% {
            transform: scale(1.3);
            opacity: 0.7;
            box-shadow: 0 0 15px var(--accent);
        }

        100% {
            transform: scale(1);
            opacity: 1;
            box-shadow: 0 0 5px var(--accent);
        }
    }

    .report-card-wrap {
        background: #FFFFFF;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 20px;
        padding: 24px;
        box-shadow:
            0 4px 6px -1px rgba(0, 0, 0, 0.05),
            0 10px 15px -3px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .report-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .report-card-header .title-group {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .report-card-header h3 {
        font-size: 16px;
        font-weight: 700;
        color: var(--text-primary);
        letter-spacing: -0.01em;
    }

    .report-card-header .status-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #F0FDF4;
        color: #166534;
        font-size: 11.5px;
        font-weight: 600;
        padding: 5px 12px;
        border-radius: 99px;
        border: 1px solid rgba(22, 101, 52, 0.1);
    }

    .report-list {
        display: flex;
        flex-direction: column;
    }

    .report-row {
        display: grid;
        grid-template-columns: 44px 1fr auto;
        align-items: center;
        gap: 12px;
        padding: 10px 4px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        transition: background 0.2s, transform 0.2s;
    }

    .report-row:last-child {
        border-bottom: none;
    }

    .report-row:hover {
        background: #F8FAFF;
    }

    .report-row .file-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }

    .report-row .file-icon.pdf {
        background: #FEF2F2;
        color: #EF4444;
    }

    .report-row .file-icon.xlsx {
        background: #F0FDF4;
        color: #10B981;
    }

    .report-row .file-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .report-row .file-name {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-primary);
    }

    .report-row .file-meta {
        font-size: 11px;
        color: var(--text-secondary);
        font-weight: 500;
        opacity: 0.8;
    }

    .report-row .row-actions {
        display: flex;
        gap: 10px;
    }

    .btn-row-action {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.06);
        background: #fff;
        color: var(--text-secondary);
        cursor: pointer;
        transition: all 0.2s;
    }

    .btn-row-action:hover {
        background: var(--dark);
        color: #fff;
        border-color: var(--primary);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .report-center-footer {
        margin-top: 4px;
        padding: 10px;
        background: #F8FAFF;
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .report-center-footer .total-reconciled {
        font-size: 13px;
        color: var(--text-secondary);
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .report-center-footer strong {
        color: var(--text-primary);
        font-family: 'JetBrains Mono', monospace;
        font-weight: 700;
    }

    .report-center-footer .check-icon {
        color: #10B981;
        display: flex;
    }

    .report-export {
        margin-top: 32px;
        display: flex;
        gap: 12px
    }

    /* Removed btn-export styling */

    @media(max-width:1024px) {
        .reports-layout {
            grid-template-columns: 1fr;
            gap: 32px
        }

        .report-pills {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px
        }
    }

    @media(max-width:600px) {
        .report-pills {
            grid-template-columns: 1fr
        }
    }


    .hero2 {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 0;
        background: #fff;
        position: relative;
        overflow: hidden
    }

    .hero2::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(15, 23, 42, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, .03) 1px, transparent 1px);
        background-size: 64px 64px;
        pointer-events: none
    }

    .hero2-inner {
        display: grid;
        grid-template-columns: minmax(0, calc(50% - 30px)) minmax(0, calc(50% - 30px));
        align-items: center;
        gap: 60px;
        padding: 56px var(--pad-x);
        max-width: var(--max-w);
        margin: 0 auto;
        width: 100%
    }

    /* LEFT */
    .h2-eyebrow {
        font-family: var(--font-mono);
        display: inline-block;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .1em;
        text-transform: uppercase;
        background: var(--dark);
        color: #fff;
        padding: 6px 14px;
        border-radius: 6px;
        margin-bottom: 20px
    }

    .hero2 .h2-h1 {
        font-family: var(--font-display);
        font-weight: 800;
        font-size: clamp(46px, 4.8vw, 74px) !important;
        line-height: 1;
        color: #0F172A;
        margin-bottom: 24px;
        letter-spacing: -0.035em;
    }
    .hero2 .h2-h1 .text-blue {
        color: var(--accent);
        font-weight: 800;
    }

    .h2-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin: 0 0 28px;
        max-width: 560px;
    }
    .h2-chip {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 14px;
        background: rgba(0, 48, 219, 0.06);
        border: 1px solid rgba(0, 48, 219, 0.15);
        border-radius: 999px;
        font-family: var(--font-body);
        font-size: 13px;
        font-weight: 600;
        color: #0030DB;
        letter-spacing: -0.005em;
        transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
    }
    .h2-chip:hover {
        background: rgba(0, 48, 219, 0.1);
        border-color: rgba(0, 48, 219, 0.28);
        transform: translateY(-1px);
    }
    .h2-chip i {
        font-size: 12px;
        color: #0030DB;
    }

    .hero2 .h2-body {
        font-family: var(--font-body);
        font-size: 17px;
        color: var(--text-secondary);
        max-width: 580px;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .h2-form {
        display: flex;
        max-width: 480px;
        overflow: visible;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .08)
    }

    .h2-form input {
        flex: 1;
        padding: 12px 16px;
        border: 1px solid #CBD5E1;
        border-right: none;
        border-radius: 8px 0 0 8px;
        font-family: var(--font-body);
        font-size: 15px;
        outline: none;
        background: #fff;
        color: #0F172A;
        min-width: 0;
        transition: border-color .2s
    }

    .h2-form input:focus {
        border-color: #0030DB;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08)
    }

    .h2-form input::placeholder {
        color: #B3BBCF
    }

    .h2-form button {
        background: var(--accent);
        color: #FFFFFF;
        border: none;
        padding: 12px 22px;
        border-radius: 0 8px 8px 0;
        font-family: 'DM Sans', sans-serif;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        white-space: nowrap;
        transition: background .2s, box-shadow .2s, transform .2s;
        box-shadow: 0 2px 10px rgba(37, 99, 235, .25)
    }

    .h2-form button:hover {
        background: var(--accent-dark);
        box-shadow: 0 6px 24px rgba(37, 99, 235, .45);
        transform: translateY(-1px)
    }

    .h2-form button:disabled {
        opacity: .78;
        cursor: wait;
        box-shadow: none;
        transform: none;
    }

    /* === Email-locked state: after submit, email input shows its value, disabled.
       The existing .h2-form button transition on background (.2s) gives us a smooth
       blue → green swap; the check icon pops in on top of it. === */
    .h2-form.is-locked input[type="email"] {
        background: #F0FDF4;
        border-color: #BBF7D0;
        color: #166534;
        cursor: default;
        transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    }
    .h2-form.is-locked button {
        background: #10B981 !important;
        box-shadow: 0 2px 10px rgba(16, 185, 129, 0.22);
        cursor: default;
    }
    .h2-form.is-locked button:hover {
        background: #10B981 !important;
        transform: none;
        box-shadow: 0 2px 10px rgba(16, 185, 129, 0.22);
    }
    .h2-form.is-locked button i {
        display: inline-block;
        animation: heroCheckPop 0.42s cubic-bezier(0.18, 1.35, 0.4, 1) both;
    }
    @keyframes heroCheckPop {
        0%   { opacity: 0; transform: scale(0.3); }
        60%  { opacity: 1; transform: scale(1.18); }
        100% { opacity: 1; transform: scale(1); }
    }

    /* === Inline phone step — slides in below the email form after submit.
       Uses max-height:0 + overflow:hidden so the wrapper takes ZERO layout space
       before reveal. (grid-template-rows:0fr still leaves a tiny min-content gap
       between the hero form and the trust row.) The intl-tel-input dropdown is
       rendered at document.body, so overflow:hidden here doesn't clip it. === */
    .h2-phone-step {
        max-width: 520px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        margin-top: 0;
        margin-bottom: 0;
        transition:
            max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.32s ease 0.04s,
            margin 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .h2-phone-step.is-visible {
        max-height: 260px;
        opacity: 1;
        margin-top: 14px;
        margin-bottom: 20px;
    }
    .h2-phone-step-inner {
        padding: 16px 18px 16px;
        background: #FFFFFF;
        border: 1px solid #E6E8EC;
        border-radius: 14px;
        box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
        transform: translateY(-6px);
        transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .h2-phone-step.is-visible .h2-phone-step-inner {
        transform: translateY(0);
    }

    .h2-phone-step-label {
        font-family: var(--font-body);
        font-size: 13px;
        font-weight: 500;
        color: #334155;
        margin-bottom: 12px;
    }

    .h2-phone-step-row {
        display: flex;
        gap: 10px;
        align-items: stretch;
    }
    .h2-phone-step-input-wrap {
        position: relative;
        flex: 1;
        min-width: 0;
    }
    /* intl-tel-input inside the hero step */
    .h2-phone-step-input-wrap .iti { width: 100%; display: block; }
    .h2-phone-step-input-wrap .iti__tel-input {
        width: 100%;
        padding: 11px 40px 11px 14px;
        border: 1px solid #CBD5E1;
        border-radius: 10px;
        font-size: 14px;
        font-family: var(--font-body);
        color: #0F172A;
        background: #fff;
        transition: border-color 0.15s, box-shadow 0.15s;
    }
    .h2-phone-step-input-wrap .iti__tel-input:hover { border-color: #94A3B8; }
    .h2-phone-step-input-wrap .iti__tel-input:focus {
        outline: none;
        border-color: #0030DB;
        box-shadow: 0 0 0 3px rgba(0, 48, 219, 0.12);
    }
    .h2-phone-step-input-wrap .iti__tel-input.is-valid {
        border-color: #10B981;
        box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
    }
    .h2-phone-step-input-wrap .iti--separate-dial-code .iti__selected-flag {
        border-radius: 10px 0 0 10px;
        background: #F8FAFC;
        border-right: 1px solid #E6E8EC;
    }
    .h2-phone-step-input-wrap .iti--separate-dial-code .iti__selected-dial-code {
        color: #0F172A;
        font-size: 14px;
    }

    /* Live validity checkmark badge */
    .h2-phone-step-valid {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%) scale(0.7);
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #10B981;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.18s ease, transform 0.18s ease;
        z-index: 3;
    }
    .h2-phone-step-valid.is-visible {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    /* Scope strictly to the submit button — intl-tel-input renders its own <button>
       internally for the flag picker, which was accidentally inheriting this styling. */
    #heroPhoneSubmit {
        padding: 11px 22px;
        background: #0030DB;
        color: #fff;
        border: none;
        border-radius: 10px;
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.15s, transform 0.05s;
        white-space: nowrap;
    }
    #heroPhoneSubmit:hover { background: #0025B0; }
    #heroPhoneSubmit:active { transform: translateY(1px); }
    #heroPhoneSubmit:disabled {
        background: #CBD5E1;
        cursor: not-allowed;
    }
    #heroPhoneSubmit:disabled:hover { background: #CBD5E1; }

    /* Country dropdown — rendered at <body> level via intl-tel-input's dropdownContainer
       option. Scoping to .iti--container keeps these rules from leaking to other pages
       that use the library without body-level rendering (e.g. /signup). */
    .iti--container {
        z-index: 1060;
    }
    .iti--container .iti__dropdown-content {
        background: #FFFFFF;
        border: 1px solid #E6E8EC;
        border-radius: 10px;
        box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
        overflow: hidden;
    }
    .iti--container .iti__country-list {
        background: #FFFFFF;
        border: none;
        box-shadow: none;
        max-height: 260px;
        overflow-y: auto;
        margin: 0;
        padding: 4px 0;
    }
    .iti--container .iti__country {
        background: #FFFFFF;
        padding: 8px 12px;
    }
    .iti--container .iti__country:hover,
    .iti--container .iti__country.iti__highlight {
        background: #F1F5F9;
    }
    .iti--container .iti__search-input {
        background: #FFFFFF;
        border: 1px solid #E6E8EC;
        border-radius: 8px;
        padding: 9px 12px;
        margin: 8px;
        font-family: var(--font-body);
        font-size: 14px;
        width: calc(100% - 16px);
    }
    .iti--container .iti__search-input:focus {
        outline: none;
        border-color: #0030DB;
        box-shadow: 0 0 0 3px rgba(0, 48, 219, 0.12);
    }

    .h2-form-feedback {
        max-width: 480px;
        margin: -4px 0 16px;
        padding: 14px 16px;
        border-radius: 12px;
        font-family: var(--font-body);
        font-size: 14px;
        line-height: 1.55;
        display: none;
        align-items: flex-start;
        gap: 10px;
    }

    .h2-form-feedback.is-visible {
        display: flex;
        animation: heroFeedbackAppear 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
    }
    /* Card slides up + fades in over ~900ms */
    @keyframes heroFeedbackAppear {
        0%   { opacity: 0; transform: translateY(18px) scale(0.98); }
        60%  { opacity: 1; }
        100% { opacity: 1; transform: translateY(0) scale(1); }
    }
    /* Check/exclamation icon pops in after the card has settled */
    .h2-form-feedback.is-visible i {
        animation: heroFeedbackIconPop 0.5s cubic-bezier(0.18, 1.35, 0.4, 1) 0.35s both;
    }
    @keyframes heroFeedbackIconPop {
        0%   { opacity: 0; transform: scale(0.3); }
        60%  { opacity: 1; transform: scale(1.22); }
        100% { opacity: 1; transform: scale(1); }
    }

    .h2-form-feedback i {
        margin-top: 2px;
        flex-shrink: 0;
    }

    .h2-form-feedback.is-success {
        background: #ECFDF5;
        border: 1px solid #BBF7D0;
        color: #166534;
    }

    .h2-form-feedback.is-error {
        background: #FEF2F2;
        border: 1px solid #FECACA;
        color: #B91C1C;
    }

    .h2-trust {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 12px
    }

    .h2-trust span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-family: var(--font-body);
        font-size: 13px;
        color: #64748B;
        font-weight: 500;
    }
    .h2-trust span strong {
        color: #0F172A;
        font-weight: 700;
    }
    .h2-trust .h2-trust-sep {
        color: #CBD5E1;
        font-size: 14px;
        font-weight: 700;
    }

    .h2-trust .ck {
        color: #2563EB;
        font-size: 13px;
        font-weight: 700
    }

    /* RIGHT — DASHBOARD MOCKUP */
    .h2-right {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 0
    }

    .dash-main-card {
        background: #fff;
        border: 1px solid #CBD5E1;
        border-radius: 16px;
        padding: 20px;
        width: 280px;
        box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
        animation: dashFloat 4s ease-in-out infinite alternate;
        position: relative;
        z-index: 2
    }

    @keyframes dashFloat {
        from {
            transform: translateY(0)
        }

        to {
            transform: translateY(-6px)
        }
    }

    .dmc-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 14px
    }

    .dmc-title {
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #0F172A
    }

    .dmc-live {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-family: 'DM Sans', sans-serif;
        font-size: 11px;
        color: #16A34A;
        font-weight: 600
    }

    .dmc-live-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #16A34A;
        animation: pulse-ping 1.5s infinite
    }

    .dmc-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        margin-bottom: 14px
    }

    .dmc-stat {
        text-align: center;
        padding: 0 4px
    }

    .dmc-stat-val {
        font-family: 'JetBrains Mono', monospace;
        font-size: 16px;
        font-weight: 600;
        color: #0F172A;
        line-height: 1.2
    }

    .dmc-stat-lbl {
        font-family: 'DM Sans', sans-serif;
        font-size: 10px;
        color: var(--text-secondary);
        margin-top: 2px
    }

    .dmc-divider {
        height: 1px;
        background: #CBD5E1;
        margin-bottom: 12px
    }

    .dmc-rows {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 14px
    }

    .dmc-row {
        display: flex;
        align-items: center;
        gap: 10px;
        opacity: 0;
        transform: translateY(6px);
        transition: opacity .4s ease, transform .4s ease
    }

    .dmc-row.show {
        opacity: 1;
        transform: translateY(0)
    }

    .dmc-av {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'JetBrains Mono', monospace;
        font-size: 9px;
        font-weight: 600;
        color: #fff;
        flex-shrink: 0
    }

    .dmc-info {
        flex: 1;
        min-width: 0
    }

    .dmc-name {
        font-family: 'DM Sans', sans-serif;
        font-size: 11px;
        font-weight: 600;
        color: #0F172A;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .dmc-sub {
        font-family: 'DM Sans', sans-serif;
        font-size: 10px;
        color: var(--text-secondary)
    }

    .dmc-chip {
        font-family: 'DM Sans', sans-serif;
        font-size: 9px;
        font-weight: 600;
        padding: 2px 7px;
        border-radius: 99px;
        white-space: nowrap;
        flex-shrink: 0
    }

    .chip-blue {
        background: #EFF6FF;
        color: #2563EB
    }

    .chip-amber {
        background: #FFFBEB;
        color: #B45309;
        animation: chipPulse 2s infinite
    }

    @keyframes chipPulse {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .6
        }
    }

    .dmc-budget {
        margin-top: 2px
    }

    .dmc-budget-label {
        display: flex;
        justify-content: space-between;
        font-family: 'DM Sans', sans-serif;
        font-size: 10px;
        color: #5A6480;
        margin-bottom: 4px
    }

    .dmc-budget-label span:last-child {
        font-family: 'JetBrains Mono', monospace;
        font-size: 10px
    }

    .dmc-track {
        height: 4px;
        background: #CBD5E1;
        border-radius: 99px;
        overflow: hidden
    }

    .dmc-fill {
        height: 100%;
        background: #2563EB;
        border-radius: 99px;
        width: 0;
        transition: width 1.2s ease
    }

    /* FLOATING NOTIF CARD */
    .dash-notif {
        position: absolute;
        top: -20px;
        right: -60px;
        width: 220px;
        background: #fff;
        border: 1px solid #CBD5E1;
        border-radius: 12px;
        padding: 12px 14px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
        transform: translateX(60px);
        opacity: 0;
        transition: transform .6s cubic-bezier(.34, 1.56, .64, 1), opacity .4s ease;
        z-index: 3;
        animation: dashFloat 4s ease-in-out infinite alternate;
        animation-delay: .8s
    }

    .dash-notif.slide-in {
        transform: translateX(0);
        opacity: 1
    }

    .dn-title {
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #0F172A;
        margin-bottom: 3px
    }

    .dn-detail {
        font-family: 'JetBrains Mono', monospace;
        font-size: 11px;
        color: var(--text-secondary)
    }

    .dn-footer {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-top: 6px;
        font-family: 'DM Sans', sans-serif;
        font-size: 10px;
        color: var(--text-secondary)
    }

    .dn-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #16A34A
    }




    /* WAITLIST BADGE */
    .waitlist-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #EFF6FF;
        border: 1px solid #BFDBFE;
        border-radius: 10px;
        padding: 7px 14px;
        margin-top: 24px
    }

    /* LIVE DASHBOARD — PREMIUM THEME */
    .dash-outer-wrap {
        position: relative;
        width: 100%;
    }

    .dash-container {
        width: 100%;
        max-width: 680px;
        height: 540px;
        background: var(--tint);
        border: 1px solid rgba(148, 163, 184, 0.4);
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        font-family: 'Ubuntu', sans-serif;
        box-shadow:
            0 10px 20px rgba(15, 23, 42, 0.03),
            0 30px 60px rgba(15, 23, 42, 0.10),
            0 120px 240px rgba(15, 23, 42, 0.15);
        animation: dashFadeIn 0.9s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    }

    @keyframes dashFadeIn {
        0% {
            opacity: 0;
            transform: translateY(16px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* SIDEBAR */
    .dash-sidebar {
        width: 44px;
        background: var(--dark);
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 16px 0;
        gap: 22px;
        flex-shrink: 0;
        position: relative;
    }

    .dash-sidebar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: none;
        pointer-events: none;
    }

    .sidebar-logo {
        width: 26px;
        height: 26px;
        background: var(--accent);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        font-weight: 800;
        font-size: 14px;
        flex-shrink: 0;
        box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
        font-family: 'DM Sans', sans-serif;
    }

    .side-nav {
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .side-icon {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .side-icon:hover {
        color: rgba(255, 255, 255, 0.85);
        background: rgba(255, 255, 255, 0.06);
    }

    .side-icon.active {
        background: rgba(255, 255, 255, 0.1);
        color: #60A5FA;
        box-shadow: none;
    }

    .dash-sidebar::after {
        content: '';
        display: block;
        flex: 1;
    }

    /* MAIN AREA */
    .dash-main {
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        min-width: 0;
    }

    /* TOPBAR */
    .dash-topbar {
        height: 42px;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 14px;
        flex-shrink: 0;
        z-index: 10;
    }

    .dash-topbar .top-left {
        font-weight: 700;
        font-size: 12px;
        color: #172554;
    }

    .dash-topbar .top-right {
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .dash-topbar .top-pill {
        background: #F1F5F9;
        border: 1px solid #CBD5E1;
        border-radius: 5px;
        padding: 3px 7px;
        font-size: 10px;
        color: #64748B;
    }

    .dash-topbar .top-btn {
        width: 24px;
        height: 24px;
        background: #F1F5F9;
        border: 1px solid #CBD5E1;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        color: #64748B;
    }

    .dash-topbar .notif-dot {
        position: absolute;
        top: -2px;
        right: -2px;
        width: 6px;
        height: 6px;
        background: #2563EB;
        border: 1.5px solid #fff;
        border-radius: 50%;
    }

    .dash-topbar .top-av {
        width: 24px;
        height: 24px;
        background: var(--dark);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #60A5FA;
        font-weight: 700;
        font-size: 8px;
    }

    /* CONTENT */
    .dash-content {
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        flex: 1;
        overflow: hidden;
    }

    /* STATS ROW */
    .stat-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        flex-shrink: 0;
    }

    .stat-card {
        background: #fff;
        border: 1px solid rgba(148, 163, 184, 0.4);
        border-radius: 12px;
        padding: 12px 12px 14px;
        position: relative;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    }

    .stat-card::after {
        content: "";
        position: absolute;
        top: -100%;
        left: -100%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg,
                transparent 0%,
                rgba(255, 255, 255, 0) 45%,
                rgba(255, 255, 255, 0.4) 50%,
                rgba(255, 255, 255, 0) 55%,
                transparent 100%);
        transition: all 0.6s;
        pointer-events: none;
    }

    .stat-card:hover::after {
        top: 0;
        left: 0;
    }

    .stat-lbl {
        font-size: 9px;
        color: #64748B;
        margin-bottom: 3px;
    }

    .stat-val {
        font-size: 15px;
        font-weight: 700;
        color: #0F172A;
        margin-bottom: 1px;
    }

    .stat-sub {
        font-size: 8px;
        font-weight: 500;
    }

    .stat-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        border-radius: 0 2px 2px 0;
    }

    /* MAIN GRID */
    .main-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 8px;
        flex: 1;
        min-height: 0;
    }

    .grid-col {
        display: flex;
        flex-direction: column;
        gap: 8px;
        min-height: 0;
        overflow: hidden;
    }

    .card-base {
        background: #fff;
        border: 1px solid rgba(148, 163, 184, 0.4);
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 2px 4px rgba(15, 23, 42, 0.02), 0 1px 1px rgba(0, 0, 0, 0.01);
        transition: box-shadow 0.3s;
    }

    .card-base:hover {
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    }

    .card-h {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    .card-title {
        font-size: 10px;
        font-weight: 700;
        color: #0F172A;
    }

    /* TRANSACTIONS */
    .tx-row {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 5px 0;
        border-bottom: 1px solid #F1F5F9;
        opacity: 0;
        transform: translateX(-6px);
    }

    .tx-row:last-child {
        border-bottom: none;
    }

    .tx-av {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 8px;
        flex-shrink: 0;
    }

    .tx-info {
        flex: 1;
        min-width: 0;
    }

    .tx-name {
        font-size: 9px;
        font-weight: 600;
        color: #0F172A;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tx-type {
        font-size: 8px;
        color: #64748B;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tx-amt-wrap {
        text-align: right;
        flex-shrink: 0;
    }

    .tx-amt {
        font-size: 10px;
        font-weight: 700;
        color: #0F172A;
    }

    .chip {
        display: inline-block;
        padding: 2px 5px;
        border-radius: 3px;
        font-size: 7px;
        font-weight: 600;
        margin-top: 2px;
        white-space: nowrap;
    }

    .dash-pulse {
        width: 6px;
        height: 6px;
        background: #16A34A;
        border-radius: 50%;
        animation: dashPulse 2s infinite;
        flex-shrink: 0;
    }

    @keyframes dashPulse {
        0% {
            box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);
        }

        70% {
            box-shadow: 0 0 0 5px rgba(22, 163, 74, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(30, 64, 175, 0);
        }
    }

    /* APPROVAL STEPPER */
    .stepper {
        display: flex;
        flex-direction: column;
    }

    .step {
        display: flex;
        gap: 8px;
    }

    .step-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 20px;
        flex-shrink: 0;
    }

    .step-circle {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 9px;
        font-weight: 700;
        transition: all 0.4s;
        flex-shrink: 0;
    }

    .step-line {
        width: 2px;
        height: 12px;
        background: #CBD5E1;
        margin: 2px 0;
        transition: background 0.4s;
    }

    .step-line.filled {
        background: #16A34A;
    }

    .step-circle.done {
        background: #16A34A;
        color: #fff;
    }

    .step-circle.active {
        background: #F0FDF4;
        border: 2px solid #16A34A;
        color: #16A34A;
    }

    .step-circle.waiting {
        background: #F1F5F9;
        border: 1px solid #CBD5E1;
        color: #aaa;
    }

    .step-right {
        flex: 1;
        padding-bottom: 0;
    }

    .step-name {
        font-size: 9px;
        font-weight: 600;
        color: #0F172A;
    }

    .step-role {
        font-size: 8px;
        color: #64748B;
    }

    /* WALLET BARS */
    .wallet-bar {
        height: 5px;
        background: #E2E8F0;
        border-radius: 3px;
        margin-top: 3px;
    }

    .wallet-fill {
        height: 100%;
        border-radius: 3px;
        width: 0;
        transition: width 1s ease-out;
    }

    /* PAYMENT NOTIF CARD */
    .notif-card {
        border-top: 3px solid #16A34A;
        background: #fff;
    }

    /* ANIMATIONS */
    @keyframes fadeIn {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes slideIn {
        0% {
            opacity: 0;
            transform: translateX(-6px);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* h2-right override */
    .h2-right {
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 20px 0;
    }

    /* MOBILE */
    @media (max-width: 1024px) {
        .dash-container {
            max-width: 100%;
            height: auto;
        }

        .float-card {
            display: none !important;
        }

        .stat-row {
            grid-template-columns: repeat(2, 1fr);
        }

        .main-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .h2-right {
            padding: 12px 0;
        }

        .dash-container {
            height: auto;
            border-radius: 10px;
        }

        .dash-sidebar {
            display: none;
        }

        .dash-content {
            overflow: visible;
        }

        .main-grid {
            grid-template-columns: 1fr;
            height: auto;
        }

        .grid-col {
            overflow: visible;
        }
    }


    .rating-badge {
        display: flex;
        flex-direction: column;
        gap: 4px;
        width: fit-content;
        margin-top: 24px;
    }

    .rating-top {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .rating-stars {
        display: flex;
        gap: 2px;
    }

    .r-score {
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 700;
        color: var(--primary);
        letter-spacing: -0.01em;
    }

    .r-sub {
        font-family: var(--font-body);
        font-size: 12px;
        font-weight: 400;
        color: var(--text-secondary);
        opacity: 0.7;
        line-height: 1.4;
    }

    .r-line2 {
        font-family: 'DM Sans', sans-serif;
        font-size: 11px;
        font-weight: 500;
        color: var(--text-secondary);
        opacity: 0.8;
    }

    @keyframes urgencyPulse {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(239, 68, 68, .5);
            opacity: 1
        }

        50% {
            box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
            opacity: .8
        }
    }

    /* Pre-form label */
    .h2-form-label {
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 500;
        color: #1E40AF;
        margin-bottom: 8px;
        display: block
    }

    @keyframes pulse-ping {
        0% {
            box-shadow: 0 0 0 0 rgba(22, 163, 74, .5)
        }

        70% {
            box-shadow: 0 0 0 6px rgba(22, 163, 74, 0)
        }

        100% {
            box-shadow: 0 0 0 0 rgba(22, 163, 74, 0)
        }
    }






    .hero-featured {
        margin-top: 48px;
        padding-bottom: 56px;
        width: 100%;
        position: relative;
    }

    .hero-featured .feat-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }

    .hero-featured .feat-label {
        font-size: 10px;
        font-weight: 700;
        color: var(--accent);
        text-transform: uppercase;
        letter-spacing: 0.22em;
        opacity: 0.7;
    }

    .hero-featured .feat-logos {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 64px;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hero-featured .feat-logo-item {
        opacity: 0.35;
        filter: grayscale(1);
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        cursor: crosshair;
    }

    .hero-featured .feat-logo-item:hover {
        opacity: 1;
        filter: grayscale(0);
        transform: translateY(-2px) scale(1.02);
    }

    .hero-featured .feat-sep {
        width: 1px;
        height: 48px;
        background: var(--border);
        opacity: 1;
    }

    .hero-featured .logo-toi {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        font-weight: 900;
        color: var(--primary);
        letter-spacing: -0.01em;
        line-height: 1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-featured .logo-toi span {
        display: block;
        font-size: 8px;
        letter-spacing: 0.5em;
        margin-bottom: 2px;
        color: var(--text-secondary);
        opacity: 0.8;
        font-weight: 700;
    }

    .hero-featured .logo-nyw {
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1;
    }

    .hero-featured .logo-nyw .ny {
        font-family: 'Crimson Text', serif;
        font-size: 16px;
        font-style: italic;
        color: var(--text-secondary);
        margin-bottom: -2px;
    }

    .hero-featured .logo-nyw .weekly {
        font-family: 'Inter', sans-serif;
        font-size: 22px;
        font-weight: 800;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    @media (max-width: 768px) {
        .hero-featured {
            margin-top: 40px;
            padding-bottom: 40px;
        }

        .hero-featured .feat-logos {
            gap: 32px;
            flex-wrap: wrap;
        }

        .hero-featured .feat-sep {
            display: none;
        }
    }



    .showcase-sec {
        background: var(--page-bg);
        padding: 80px 0
    }

    .sec-intro {
        text-align: center;
        max-width: 1040px;
        margin: 0 auto 72px
    }

    .sec-tag {
        display: inline-block;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--text-secondary);
        padding: 5px 14px;
        border: 1px solid var(--border);
        border-radius: 999px;
        margin-bottom: 14px
    }

    .sec-h2 {
        font-family: var(--font-display);
        font-size: clamp(32px, 3.5vw, 46px);
        font-weight: 600;
        line-height: 1.15;
        color: var(--text-primary);
        margin-bottom: 14px
    }

    .sec-sub {
        font-size: 16px;
        color: var(--text-secondary);
        line-height: 1.65
    }

    .showcase-block {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        margin-bottom: 80px;
        padding: 48px;
        background: #fff;
        border-radius: 20px;
        border: 1px solid var(--border);
        box-shadow: 0 2px 24px rgba(0, 0, 0, .04);
        transition: box-shadow .3s, transform .3s
    }

    .showcase-block:hover {
        box-shadow: 0 8px 48px rgba(37, 99, 235, .08), 0 4px 16px rgba(0, 0, 0, .06);
        transform: translateY(-3px)
    }

    .showcase-block.rev {
        direction: rtl
    }

    .showcase-block.rev>* {
        direction: ltr
    }

    .block-text .block-h3 {
        font-family: var(--font-display);
        font-size: clamp(26px, 3.2vw, 34px);
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 6px;
        line-height: 1.15;
    }

    .block-text .block-h4 {
        font-family: var(--font-body);
        font-size: 16px;
        font-weight: 500;
        color: var(--text-secondary);
        margin-bottom: 20px;
        line-height: 1.5;
        max-width: 480px;
    }

    .block-text p {
        font-size: 15px;
        color: var(--text-secondary);
        line-height: 1.75;
        margin-bottom: 24px
    }

    .block-text ul {
        list-style: none;
        margin-bottom: 24px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .block-text li {
        font-size: 14px;
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        gap: 10px;
        line-height: 1.4;
    }

    .block-text li::before {
        content: "";
        width: 14px;
        height: 14px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        flex-shrink: 0;
    }

    .block-text .btn-showcase {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 13px 28px;
        background: var(--dark);
        border: none;
        color: #FFFFFF;
        border-radius: 12px;
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 4px 10px rgba(37, 99, 235, 0.1);
        margin-top: 14px;
    }

    .block-text .btn-showcase:hover {
        background: var(--dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(37, 99, 235, 0.2);
    }

    .block-text .btn-showcase svg {
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .block-text .btn-showcase:hover svg {
        transform: translateX(4px);
    }

    .block-anim {
        background: var(--tint);
        border-radius: 16px;
        padding: 28px;
        min-height: 280px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden
    }

    /* PIPELINE */
    .pipeline {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: center;
        width: 100%
    }

    .pip-node {
        display: flex;
        align-items: center;
        gap: 14px;
        width: 100%;
        max-width: 280px
    }

    .pip-icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all .5s cubic-bezier(0.16, 1, 0.3, 1)
    }

    .pip-icon.active {
        border-color: var(--success);
        background: #EFF6FF;
        box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
        animation: iconBreathe 2s infinite ease-in-out
    }

    .pip-icon svg {
        transition: stroke .4s
    }

    .pip-label {
        font-size: 13px;
        font-weight: 500;
        color: var(--text-secondary);
        transition: all .4s ease
    }

    .pip-label.active {
        color: var(--text-primary);
        font-weight: 700;
        transform: translateX(4px)
    }

    @keyframes iconBreathe {

        0%,
        100% {
            transform: scale(1)
        }

        50% {
            transform: scale(1.1);
            box-shadow: 0 0 25px rgba(37, 99, 235, 0.3)
        }
    }

    .pip-connector {
        width: 2px;
        height: 32px;
        background: var(--border);
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        margin-left: 21px;
        align-self: flex-start
    }

    .pip-connector-fill {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: var(--success);
        transition: height .6s ease;
        box-shadow: 0 0 8px rgba(37, 99, 235, 0.3)
    }

    .pip-connector-fill.filled {
        height: 100%
    }

    .pip-badge {
        margin-top: 16px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 8px 14px;
        font-family: var(--font-mono);
        font-size: 11px;
        color: var(--text-secondary)
    }

    /* PO ANIMATION */
    .po-card {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        width: 100%;
        max-width: 300px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .08)
    }

    .po-line-items {
        margin-bottom: 12px
    }

    .po-item {
        display: flex;
        justify-content: space-between;
        padding: 6px 0;
        border-bottom: 1px solid var(--border);
        font-size: 12px;
        opacity: 0;
        transition: opacity .4s
    }

    .po-item.show {
        opacity: 1
    }

    .po-item span:first-child {
        color: var(--text-secondary)
    }

    .po-item span:last-child {
        font-family: var(--font-mono);
        font-size: 11px;
        font-weight: 700;
        color: var(--text-primary)
    }

    .po-total {
        display: flex;
        justify-content: space-between;
        font-weight: 700;
        padding: 8px 0 10px;
        font-size: 13px
    }

    .po-total .amt {
        font-family: var(--font-mono);
        color: var(--dark)
    }

    .po-status {
        height: 5px;
        border-radius: 99px;
        background: var(--tint);
        overflow: hidden;
        margin-bottom: 8px
    }

    .po-status-fill {
        height: 100%;
        border-radius: 99px;
        background: var(--accent);
        width: 0;
        transition: width .8s ease
    }

    .po-badge {
        text-align: center;
        font-size: 11px;
        font-weight: 700;
        color: var(--success);
        opacity: 0;
        transition: opacity .4s;
        padding: 6px;
        background: #EFF6FF;
        border-radius: 6px
    }

    /* RECEIPT STEPS */
    .receipt-step {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 24px;
        opacity: 0;
        transition: opacity .5s ease
    }

    .receipt-step.active {
        opacity: 1;
        position: relative;
        inset: auto
    }

    .r-panel {
        background: #fff;
        border-radius: 12px;
        padding: 16px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, .08)
    }

    .r-title {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--text-secondary);
        margin-bottom: 8px;
        font-weight: 600
    }

    .r-row {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 6px 0;
        font-size: 12px
    }

    .r-row svg {
        flex-shrink: 0;
        color: var(--dark)
    }

    .typewriter {
        font-size: 12px;
        color: var(--text-primary);
        border-right: 2px solid var(--dark);
        white-space: nowrap;
        overflow: hidden;
        width: 0;
        transition: width 1s steps(28, end)
    }

    .typewriter.typed {
        width: auto;
        border-right: none
    }

    /* VENDOR CARD */
    .vendor-card {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        width: 100%;
        max-width: 300px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .08)
    }

    .v-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px
    }

    .v-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: var(--tint);
        display: flex;
        align-items: center;
        justify-content: center
    }

    .v-name {
        font-size: 13px;
        font-weight: 700;
        color: var(--text-primary);
        line-height: 1.3
    }

    .v-cat {
        display: inline-block;
        font-size: 10px;
        background: var(--tint);
        color: var(--primary);
        padding: 2px 8px;
        border-radius: 99px;
        margin-top: 2px
    }

    .v-bank {
        font-size: 11px;
        color: var(--text-secondary);
        padding: 8px 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        margin-bottom: 8px;
        font-family: var(--font-mono)
    }

    .v-po-count {
        font-size: 11px;
        color: var(--text-secondary);
        margin-bottom: 10px
    }

    .v-po-num {
        font-family: var(--font-mono);
        font-size: 18px;
        font-weight: 700;
        color: var(--dark)
    }

    .v-timeline {
        margin-bottom: 12px
    }

    .v-entry {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 0;
        font-size: 11px;
        opacity: 0;
        transform: translateX(-8px);
        transition: all .4s
    }

    .v-entry.show {
        opacity: 1;
        transform: translateX(0)
    }

    .v-entry .dt {
        color: var(--text-secondary)
    }

    .v-entry .amt {
        font-family: var(--font-mono);
        font-weight: 700;
        color: var(--success)
    }

    .v-entry .chk {
        font-size: 10px;
        color: var(--success)
    }

    .v-pay-btn {
        width: 100%;
        padding: 9px;
        background: var(--accent);
        color: #fff;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 12px;
        cursor: pointer;
        animation: softPulse 2s infinite
    }

    @keyframes softPulse {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(37, 99, 235, .4)
        }

        50% {
            box-shadow: 0 0 0 6px rgba(37, 99, 235, 0)
        }
    }






    /* ── PAY HERO SPLIT LAYOUT ───────────────────────────────── */
    .pay-hero {
        background: var(--dark);
        padding: 64px 0;
        overflow: hidden;
        position: relative;
    }

    /* Subtle noise/grain overlay */
    .pay-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: none;
        pointer-events: none;
        z-index: 0;
    }

    .pay-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    /* ── LEFT: CONTENT ───────────────────────────── */
    .pay-left .pay-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-mono);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .06em;
        color: rgba(255, 255, 255, .85);
        margin-bottom: 16px;
        background: rgba(255, 255, 255, .1);
        border: 1px solid rgba(255, 255, 255, .2);
        padding: 6px 14px 6px 10px;
        border-radius: 999px;
        backdrop-filter: blur(8px);
    }

    .pay-left .pay-eyebrow .ew-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #60A5FA;
        box-shadow: 0 0 0 2px rgba(96, 165, 250, .3);
        animation: eyebrowPulse 2s infinite;
        flex-shrink: 0;
    }

    @keyframes eyebrowPulse {

        0%,
        100% {
            box-shadow: 0 0 0 2px rgba(96, 165, 250, .3);
        }

        50% {
            box-shadow: 0 0 0 5px rgba(96, 165, 250, .0);
        }
    }

    .pay-left h2 {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: clamp(28px, 3vw, 42px);
        line-height: 1.15;
        color: #F7F8FC;
        margin-bottom: 16px;
    }

    .pay-left h2 .h2-line2 {
        display: block;
        color: #93C5FD;
        font-size: clamp(24px, 2.4vw, 34px);
        font-weight: 600;
        margin-top: 6px;
    }

    .pay-left .pay-desc {
        font-size: 16.5px;
        line-height: 1.85;
        color: rgba(247, 248, 252, .7);
        margin-bottom: 24px;
    }

    .pay-left .pay-desc strong {
        color: rgba(247, 248, 252, .9);
        font-weight: 600;
    }

    .pay-bullets {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 40px;
    }

    .pay-bullet {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        font-size: 15px;
        color: rgba(247, 248, 252, .8);
        line-height: 1.6;
    }

    .pay-bullet .bul-icon {
        flex-shrink: 0;
        width: 22px;
        height: 22px;
        border-radius: 6px;
        background: rgba(255, 255, 255, .1);
        border: 1px solid rgba(255, 255, 255, .2);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 1px;
    }

    .pay-bullet .bul-icon svg {
        display: block;
    }

    .pay-bullet strong {
        color: #F7F8FC;
        font-weight: 600;
    }

    .pay-left-actions {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .pay-banks-inline {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 24px;
    }

    .pay-bank-tag {
        background: rgba(255, 255, 255, .1);
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 999px;
        padding: 5px 14px;
        font-size: 11px;
        font-weight: 600;
        color: rgba(247, 248, 252, .7);
        letter-spacing: .02em;
    }

    .pay-bank-more {
        font-size: 11px;
        color: rgba(247, 248, 252, .45);
    }

    /* ── RIGHT: INFOGRAPHIC CARD ─────────────────── */
    .pay-right {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .pay-card {
        background: #FFFFFF;
        border: 1px solid var(--border);
        border-radius: 24px;
        overflow: hidden;
        box-shadow:
            0 2px 4px rgba(15, 23, 42, .04),
            0 24px 64px rgba(15, 23, 42, .12);
    }

    .pay-card-top {
        padding: 20px 24px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--border);
        background: #F8FAFF;
    }

    .pay-card-label {
        font-family: var(--font-mono);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: var(--text-secondary);
    }

    .pay-total-bar {
        font-family: var(--font-mono);
        font-size: 22px;
        font-weight: 700;
        color: var(--primary);
        letter-spacing: -.02em;
    }

    .pay-total-bar span {
        color: var(--text-secondary);
        font-weight: 500;
    }

    .pay-process-btn {
        background: var(--accent);
        border: 1px solid var(--accent);
        color: #FFFFFF;
        padding: 9px 24px;
        border-radius: 12px;
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 13px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        white-space: nowrap;
        box-shadow: 0 2px 8px rgba(37, 99, 235, .2);
    }

    .pay-process-btn:hover {
        background: var(--accent-dark);
        border-color: var(--accent-dark);
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(37, 99, 235, .32);
    }

    .pay-process-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        background: #E2E6F0;
        border-color: #E2E6F0;
        color: var(--text-secondary);
        box-shadow: none;
    }

    .pay-table {
        background: transparent;
        border: none;
        border-radius: 0;
        overflow: hidden;
        margin: 0;
        max-width: unset;
    }

    .pay-table-head {
        display: grid;
        grid-template-columns: 1fr 110px 140px 100px;
        padding: 10px 20px;
        background: #F0F4FF;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--text-secondary);
    }

    .pay-row {
        display: grid;
        grid-template-columns: 1fr 110px 140px 100px;
        padding: 13px 20px;
        border-top: 1px solid var(--border);
        align-items: center;
        transition: background .3s;
        background: #FFFFFF;
    }

    .pay-row:hover {
        background: #F7F8FC;
    }

    .pay-name {
        font-size: 13px;
        font-weight: 600;
        color: var(--primary);
    }

    .pay-sub {
        font-size: 11px;
        color: var(--text-secondary);
    }

    .pay-amt {
        font-family: var(--font-mono);
        font-size: 13px;
        font-weight: 700;
        color: var(--primary);
    }

    .pay-type {
        font-size: 11px;
        color: var(--text-secondary);
        background: #F1F5F9;
        padding: 4px 10px;
        border-radius: 99px;
        display: inline-block;
        font-weight: 600;
        border: 1px solid var(--border);
    }

    .pay-type-invoice {
        background: #EFF6FF;
        color: #1D4ED8;
        border-color: #BFDBFE;
    }

    .pay-type-reimb {
        background: #F5F3FF;
        color: #6D28D9;
        border-color: #DDD6FE;
    }

    .pay-type-po {
        background: #ECFDF5;
        color: #047857;
        border-color: #A7F3D0;
    }

    .pay-type-claim {
        background: #FFFBEB;
        color: #B45309;
        border-color: #FDE68A;
    }

    .pay-status {
        font-size: 12px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .pay-status.pending {
        color: var(--text-secondary);
    }

    .pay-status.paid {
        color: #047857;
    }



    .pay-success-banner {
        background: #ECFDF5;
        border-top: 1px solid #A7F3D0;
        padding: 13px 20px;
        font-size: 12px;
        color: #047857;
        font-weight: 600;
        opacity: 0;
        transition: opacity .5s;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .pay-success-banner.show {
        opacity: 1;
    }

    @media (max-width: 1024px) {
        .pay-split {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .pay-left .pay-desc {
            max-width: 100%;
        }
    }

    @media (max-width: 600px) {
        .pay-card-top {
            flex-wrap: wrap;
            gap: 12px;
        }
    }



    .int-sec {
        background: #f9fafc;
        padding: 80px 0;
        overflow: hidden
    }

    .int-inner {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
        align-items: center
    }

    .int-visual {
        position: relative;
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    /* Clean integration grid (replaces old spokes layout) */
    .int-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .int-card {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 18px;
        background: #FFFFFF;
        border: 1px solid #E5E5E5;
        border-radius: 12px;
        transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .int-card:hover {
        border-color: rgba(0, 48, 219, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0, 48, 219, 0.08);
    }

    .int-card-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(0, 48, 219, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .int-card-icon i {
        color: #0030DB;
        font-size: 16px;
    }

    .int-card-body {
        display: flex;
        flex-direction: column;
        gap: 3px;
        min-width: 0;
    }

    .int-card-body strong {
        font-size: 0.95rem;
        font-weight: 700;
        color: #0F172A;
        letter-spacing: -0.005em;
    }

    .int-card-body span {
        font-size: 0.82rem;
        line-height: 1.45;
        color: #64748B;
    }

    @media (max-width: 768px) {
        .int-grid {
            grid-template-columns: 1fr;
        }
    }

    .int-hub {
        width: 80px;
        height: 80px;
        background: var(--dark);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        box-shadow: 0 0 40px rgba(30, 64, 175, 0.2);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border: 2px solid rgba(255, 255, 255, 0.1)
    }

    .int-hub .j-mark {
        font-family: var(--font-display);
        font-size: 36px;
        font-weight: 700;
        color: #fff;
        line-height: 1
    }

    .int-node {
        position: absolute;
        width: 100px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(30, 64, 175, 0.1);
        border-radius: 99px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 600;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
        z-index: 5;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        color: var(--text-primary);
        letter-spacing: 0.02em;
        backdrop-filter: blur(8px);
        transform: translate(-50%, -50%)
    }

    .int-node:hover {
        transform: translate(-50%, -50%) scale(1.1);
        border-color: var(--dark);
        box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15)
    }

    .int-node.active {
        border-color: var(--dark);
        background: var(--tint)
    }

    /* Node positions - fine-tuned */
    .n1 {
        top: 12%;
        left: 22%
    }

    .n2 {
        top: 6%;
        left: 52%
    }

    .n3 {
        top: 18%;
        left: 82%
    }

    .n4 {
        top: 48%;
        left: 12%
    }

    .n5 {
        top: 48%;
        left: 92%
    }

    .n6 {
        top: 78%;
        left: 18%
    }

    .n7 {
        top: 88%;
        left: 48%
    }

    .n8 {
        top: 78%;
        left: 82%
    }

    .int-spokes-svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 2
    }

    .int-spoke-line {
        stroke: rgba(15, 23, 42, 0.08);
        stroke-width: 1.5;
        stroke-dasharray: 4, 4;
        fill: none
    }

    .int-spoke-pulse {
        stroke: var(--accent);
        stroke-width: 2.5;
        stroke-linecap: round;
        fill: none;
        stroke-dasharray: 12, 1000;
        animation: spokeFlow 3s linear infinite
    }

    @keyframes spokeFlow {
        0% {
            stroke-dashoffset: 0
        }

        100% {
            stroke-dashoffset: -1000
        }
    }

    @media(max-width:768px) {
        .int-sec {
            padding: 60px 0
        }

        .int-inner {
            grid-template-columns: 1fr;
            text-align: center
        }

        .int-content {
            display: flex;
            flex-direction: column;
            align-items: center
        }

        .int-visual {
            height: 320px;
            margin-top: 20px;
            width: 100%;
            max-width: 360px;
            margin-left: auto;
            margin-right: auto
        }

        .int-hub {
            width: 56px;
            height: 56px
        }

        .int-hub .j-mark {
            font-size: 24px
        }

        .int-node {
            width: 80px;
            height: 32px;
            font-size: 9px
        }

        /* mobile relative center positioning */
        .n1 {
            top: 12%;
            left: 22%
        }

        .n2 {
            top: 4%;
            left: 50%
        }

        .n3 {
            top: 12%;
            left: 78%
        }

        .n4 {
            top: 50%;
            left: 15%
        }

        .n5 {
            top: 50%;
            left: 85%
        }

        .n6 {
            top: 88%;
            left: 22%
        }

        .n7 {
            top: 96%;
            left: 50%
        }

        .n8 {
            top: 88%;
            left: 78%
        }
    }




    .stats-strip {
        background: #fff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06)
    }

    .stats-strip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: none;
        pointer-events: none
    }

    .stats-inner {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px
    }

    .stat-item {
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 12px;
        padding: 20px 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: all 0.3s;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02)
    }

    .stat-item:hover {
        transform: translateY(-3px);
        border-color: var(--accent);
        box-shadow: 0 8px 28px rgba(37, 99, 235, 0.12)
    }

    .stat-icon {
        width: 20px;
        height: 20px;
        color: var(--accent);
        margin-bottom: 8px
    }

    .stat-num {
        font-family: var(--font-display);
        font-size: 28px;
        font-weight: 700;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 4px;
        letter-spacing: -0.03em
    }

    .stat-label {
        font-family: var(--font-body);
        font-size: 10px;
        font-weight: 600;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.04em;
        line-height: 1.4
    }

    @media(max-width:1024px) {
        .stats-inner {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px
        }
    }

    @media(max-width:600px) {
        .stats-strip {
            padding: 32px 0
        }

        .stats-inner {
            grid-template-columns: 1fr
        }
    }





    .how-sec {
      background: var(--dark);
      padding: 80px 0;
      position: relative;
      overflow: hidden
    }

    .how-sec::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: none;
      pointer-events: none
    }

    .how-sec .sec-h2 {
      color: #fff
    }

    .how-sec .sec-sub {
      color: rgba(255, 255, 255, 0.7)
    }

    .how-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
      position: relative
    }

    .how-connector {
      position: absolute;
      top: 32px;
      left: calc(16.667% + 24px);
      right: calc(16.667% + 24px);
      height: 1px;
      z-index: 0
    }

    .how-connector svg {
      width: 100%;
      height: 1px;
      overflow: visible;
      opacity: 0.2
    }

    .how-card {
      background: #fff;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 32px 24px;
      text-align: center;
      position: relative;
      z-index: 1;
      transition: all 0.3s;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1)
    }

    .how-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(37, 99, 235, 0.1)
    }

    .how-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(37, 99, 235, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      color: var(--dark)
    }

    .how-step {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 6px
    }

    .how-card h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 10px;
      letter-spacing: -0.01em
    }

    .how-card p {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.6
    }










    .pricing-sec {
      background: #fff;
      padding: 80px 0
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 48px
    }

    .price-card {
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px;
      background: #fff;
      transition: transform .3s, box-shadow .3s;
      position: relative
    }

    .price-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 48px rgba(37, 99, 235, .1), 0 4px 16px rgba(0, 0, 0, .06)
    }

    .price-card.hero-plan {
      background: var(--dark);
      border-color: transparent;
      color: #F7F8FC
    }

    .price-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: var(--accent);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 999px;
      letter-spacing: .04em;
      text-transform: uppercase
    }

    .price-tier {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--text-secondary);
      margin-bottom: 12px
    }

    .price-card.hero-plan .price-tier {
      color: rgba(247, 248, 252, .6)
    }

    .price-amount {
      font-family: var(--font-mono);
      font-size: 36px;
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1;
      margin-bottom: 4px
    }

    .price-card.hero-plan .price-amount {
      color: #F7F8FC
    }

    .price-amount-inr {
      font-family: var(--font-mono);
      font-size: 16px;
      font-weight: 600;
      color: var(--text-secondary);
      line-height: 1;
      margin-top: 6px;
      margin-bottom: 6px;
    }

    .price-card.hero-plan .price-amount-inr {
      color: rgba(247, 248, 252, 0.7);
    }

    .price-period {
      font-size: 13px;
      color: var(--text-secondary);
      margin-bottom: 8px
    }

    .price-card.hero-plan .price-period {
      color: rgba(247, 248, 252, .6)
    }

    .price-desc {
      font-size: 13px;
      color: var(--text-secondary);
      margin-bottom: 24px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border)
    }

    .price-card.hero-plan .price-desc {
      color: rgba(247, 248, 252, .7);
      border-color: rgba(255, 255, 255, .15)
    }

    .price-features {
      list-style: none;
      margin-bottom: 28px
    }

    .price-features li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 13px;
      padding: 5px 0;
      color: var(--text-secondary)
    }

    .price-card.hero-plan .price-features li {
      color: rgba(247, 248, 252, .8)
    }

    .price-features li svg {
      flex-shrink: 0;
      margin-top: 1px;
      color: var(--success)
    }

    .price-card.hero-plan .price-features li svg {
      color: #4ADE80
    }

    .price-footer {
      font-size: 12px;
      color: var(--text-secondary);
      text-align: center;
      margin-top: 16px
    }

    .price-footer a {
      color: var(--text-secondary);
      text-decoration: underline
    }
  




















    .security-sec {
      background: var(--dark);
      padding: 80px 0;
      position: relative;
      z-index: 1;
      overflow: hidden
    }

    .security-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 48px
    }

    .sec-block {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 16px;
      padding: 32px;
      transition: background .3s, box-shadow .3s, transform .3s;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px)
    }

    .sec-block:hover {
      background: rgba(255, 255, 255, .12);
      box-shadow: 0 8px 32px rgba(37, 99, 235, .15);
      transform: translateY(-2px)
    }

    .sec-block-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px
    }

    .sec-block h3 {
      font-size: 17px;
      font-weight: 600;
      color: #F7F8FC;
      margin-bottom: 8px
    }

    .sec-block p {
      font-size: 14px;
      color: rgba(247, 248, 252, .65);
      line-height: 1.65
    }
    .security-sec .sec-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 6px 14px;
      border-radius: 999px;
      color: rgba(255, 255, 255, 0.8);
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 20px;
    }

    .sec-tag svg {
      flex-shrink: 0;
    }
  
















  
    .lead-sec {
      background: #f9fafb;
      padding: 96px 0;
      border-top: 1px solid rgba(0, 0, 0, 0.02)
    }

    .lead-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 80px;
      align-items: center;
    }

    .lead-content {
      max-width: 520px;
    }

    .lead-eyebrow {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      background: #EFF6FF;
      border: 1px solid #DBEAFE;
      padding: 6px 14px;
      border-radius: 999px;
      margin-bottom: 20px;
    }

    .lead-h2 {
      font-family: var(--font-display);
      font-size: clamp(28px, 2.6vw, 40px);
      font-weight: 700;
      color: var(--primary);
      text-align: left;
      line-height: 1.15;
      margin-bottom: 16px;
      letter-spacing: -0.02em
    }

    .lead-sub {
      font-size: 16px;
      color: var(--text-secondary);
      text-align: left;
      max-width: none;
      margin: 0 0 28px;
      line-height: 1.65
    }

    .lead-card {
      background: #fff;
      border-radius: 16px;
      padding: 36px;
      max-width: 520px;
      margin: 0;
      box-shadow: 0 2px 4px rgba(15, 23, 42, .04), 0 18px 48px rgba(15, 23, 42, .08);
      border: 1px solid var(--border);
      justify-self: end;
      width: 100%;
    }

    .lead-card label {
      font-size: 11px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 6px;
      display: block;
      text-transform: uppercase;
      letter-spacing: 0.04em
    }

    .lead-card input,
    .lead-card select {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--border);
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--text-primary);
      margin-bottom: 20px;
      transition: all .2s;
      outline: none;
      background: #fcfcfd
    }

    .lead-card input:focus,
    .lead-card select:focus {
      border-color: var(--accent);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1)
    }

    .lead-card select {
      color: var(--text-secondary)
    }

    .lead-submit {
      width: 100%;
      padding: 14px;
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      transition: all .2s;
      margin-top: 4px
    }

    .lead-submit:hover {
      background: var(--accent-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35)
    }

    .lead-assurance {
      text-align: left;
      margin-top: 8px;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .lead-assurance span {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--text-primary);
      font-weight: 500
    }

    .lead-assurance svg {
      flex-shrink: 0;
      color: var(--accent);
      background: #EFF6FF;
      border-radius: 999px;
      padding: 3px;
      box-sizing: content-box;
    }

    @media (max-width: 900px) {
      .lead-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .lead-content { max-width: none; }
      .lead-card { justify-self: stretch; max-width: none; }
    }

    /* TOAST */
    .toast {
      position: fixed;
      top: 80px;
      right: 24px;
      background: var(--success);
      color: #fff;
      padding: 14px 22px;
      border-radius: 12px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
      transform: translateX(120%);
      transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
      z-index: 9999;
      display: flex;
      align-items: center;
      gap: 10px
    }

    .toast.show {
      transform: translateX(0)
    }

    /* FAQ SECTION */
    .faq-sec {
      background: #fff;
      padding: 80px 0;
    }

    .faq-list {
      max-width: 1200px;
      margin: 60px auto 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: #F0F4FF;
      border: 1px solid rgba(15, 23, 42, 0.05);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      background: #E8EFFE;
    }

    .faq-item.active {
      background: #E8EFFE;
      border-color: rgba(15, 23, 42, 0.1);
    }

    .faq-header {
      padding: 24px 32px;
      display: flex;
      align-items: center; /* Vertical alignment */
      gap: 16px;
      cursor: pointer;
      user-select: none;
    }

    .faq-q {
      font-size: 17px;
      font-weight: 600;
      color: var(--text-primary);
      flex: 1;
    }

    .faq-icon-wrap {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--dark-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .faq-item.active .faq-icon-wrap {
      transform: rotate(180deg);
      background: var(--accent);
    }

    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    }

    .faq-item.active .faq-body {
      max-height: 1000px;
      transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
    }

    .faq-content {
      padding: 0 32px 32px 76px; /* Offset to align with text */
      font-size: 15px;
      line-height: 1.6;
      color: var(--text-secondary);
    }

    /* FINAL CTA SECTION */
    .final-cta-sec {
      background: var(--dark);
      padding: 72px 0;
      position: relative;
      overflow: hidden;
      color: #fff;
      border-top: 2px solid rgba(37, 99, 235, 0.25);
    }

    .cta-mesh {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: none;
      opacity: 0.9;
    }

    .cta-flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 60px;
    }

    .cta-left {
      flex: 1;
      text-align: left;
    }

    .cta-right {
      flex: 0 0 auto;
      text-align: right;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 24px;
    }

    .cta-buttons-wrap {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 16px;
    }


    .star-group {
      display: flex;
      gap: 2px;
      color: var(--accent);
    }

    .cta-h2 {
      font-size: 48px;
      line-height: 1.1;
      font-weight: 800;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .cta-p {
      font-size: 18px;
      line-height: 1.5;
      color: rgba(255,255,255,0.6);
      max-width: 500px;
    }

    .cta-btns {
      display: flex;
      gap: 16px;
    }

    .btn-signup-main {
      padding: 16px 36px;
      background: var(--accent);
      color: #FFFFFF;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
    }

    .btn-signup-main:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(37, 99, 235, 0.3);
    }

    .btn-signup-main::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -60%;
      width: 20%;
      height: 200%;
      background: rgba(255,255,255,0.3);
      transform: rotate(30deg);
      animation: shimmerBtn 4s infinite;
    }

    @keyframes shimmerBtn {
      0% { left: -60%; }
      15% { left: 140%; }
      100% { left: 140%; }
    }

    .btn-book-demo {
      padding: 16px 36px;
      background: rgba(255,255,255,0.03);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      display: flex;
      align-items: center;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .btn-book-demo:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.3);
      transform: translateY(-2px);
    }

    .cta-trust-items {
      display: flex;
      gap: 24px;
      opacity: 0.6;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 500;
    }

    .trust-item svg {
      color: var(--accent);
    }

    .faq-sec .sec-intro {
      max-width: none;
      margin-bottom: 48px;
    }

    @media (max-width: 991px) {
      .cta-flex { flex-direction: column; text-align: center; gap: 40px; }
      .cta-left, .cta-right { text-align: center; align-items: center; }
      .cta-p { margin: 0 auto; }
      .cta-right { align-items: center; }
      .cta-buttons-wrap { align-items: center; }
      .cta-h2 { font-size: 36px; }
    }
  


















    @media(max-width:1024px) {

      .hero-inner,
      .pain-inner,
      .security-grid,
      .how-grid {
        grid-template-columns: 1fr
      }

      .showcase-block,
      .showcase-block.rev {
        grid-template-columns: 1fr;
        direction: ltr
      }

      .stats-inner {
        grid-template-columns: repeat(2, 1fr)
      }

      .stat-item+.stat-item::before {
        display: none
      }

      .pay-table-head,
      .pay-row {
        grid-template-columns: 1fr 100px 100px 100px;
        font-size: 12px
      }

      .hub-wrap {
        height: 340px;
        max-width: 400px
      }
    }

    @media(max-width:768px) {
      :root {
        --pad-x: 16px
      }

      .sec-pad,
      .pain-sec,
      .showcase-sec,
      .pay-hero,
      .pricing-sec,
      .security-sec,
      .lead-sec {
        padding: 48px 0
      }

      .showcase-block {
        padding: 28px;
        margin-bottom: 24px
      }



      /* HERO — mobile stack */
      .hero2-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px var(--pad-x) 40px
      }

      .hero-inner {
        grid-template-columns: 1fr;
        padding: 48px var(--pad-x)
      }

      .hero-right {
        display: none
      }

      .hero2 .h2-h1 {
        font-size: 40px !important;
        line-height: 1.05;
      }

      .h2-body {
        font-size: 15px
      }

      /* Form: stacked on mobile */
      .h2-form {
        flex-direction: column;
        box-shadow: none;
        gap: 10px;
        max-width: 100%
      }

      .h2-form input {
        border-right: 1px solid #CBD5E1;
        border-radius: 8px;
        width: 100%
      }

      .h2-form button {
        border-radius: 8px;
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 13px 22px
      }

      /* Trust items: stack vertically centered */
      .h2-trust {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        text-align: center
      }

      /* Phone step: stack the phone input and submit on mobile */
      .h2-phone-step { max-width: 100%; }
      .h2-phone-step-row {
        flex-direction: column;
        gap: 10px;
      }
      #heroPhoneSubmit {
        width: 100%;
        padding: 13px 22px;
      }

      /* Dashboard card: stacked, centered, no floating notif */
      .h2-right {
        display: flex;
        padding: 0 0 40px
      }

      .dash-main-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        animation: none
      }

      .dash-notif {
        display: none
      }

      /* Waitlist badge & label centering */
      .h2-form-label {
        text-align: center
      }

      .waitlist-badge {
        margin: 24px auto 0;
        display: flex;
        max-width: max-content
      }

      .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
      }

      .pricing-grid {
        grid-template-columns: 1fr
      }

      .pay-table-head,
      .pay-row {
        grid-template-columns: 1fr 80px 80px
      }

      .pay-row>div:nth-child(3) {
        display: none
      }
    }

    @media(max-width:480px) {
      :root {
        --pad-x: 12px
      }

      .sec-h2 {
        font-size: 28px
      }

      .hero-h1 {
        font-size: 38px
      }

      .h2-h1 {
        font-size: 32px
      }

      .stats-inner {
        grid-template-columns: 1fr 1fr
      }
    }
/* ============================================
   Jesto Signup Page - Integrated Styles
   ============================================ */
.signup-main {
    --primary: var(--primary); /* Midnight Navy from Expense local style.css */
    --primary-hover: var(--dark-deep);
    --primary-light: rgba(37, 99, 235, 0.06);
    --secondary: #0F172A;
    --text-main: #1D1D1F;
    --text-muted: #6E6E73;
    --text-light: #94A3B8;
    --border: #E2E6F0;
    --bg-white: #FFFFFF;
    --bg-alt: #F7F8FC;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
    --header-height: 90px;
    --success: #1A6B4A;
    --error: #EF4444;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.signup-main .material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.signup-main {
    min-height: calc(100vh - var(--header-height));
    background: var(--bg-white);
    overflow: hidden;
}

.signup-container {
    display: flex;
    min-height: 100%;
    background: #FFFFFF;
}

.visual-section {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    overflow: visible;
    padding: 4rem;
    color: var(--text-main);
}

.visual-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: blobMove 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(37, 99, 235, 0.3);
    top: -150px;
    left: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(99, 102, 241, 0.2);
    bottom: -100px;
    right: -80px;
}

@keyframes blobMove {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(30px, 20px) scale(1.05); }
}

.visual-content {
    position: relative;
    z-index: 2;
    max-width: 480px;
    width: 100%;
}

.visual-content-inner {
    text-align: left;
}

.visual-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    letter-spacing: -0.03em;
}

.visual-title span {
    color: var(--primary);
}

.visual-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 420px;
}

.hero-trust {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    z-index: 2;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: var(--text-light);
}

.form-section {
    flex: 1;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem;
    overflow-y: auto;
}

.form-wrapper {
    width: 100%;
    max-width: 460px;
}

.premium-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.premium-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.steps-indicator {
    display: flex;
    background: var(--bg-alt);
    padding: 5px;
    border-radius: 10px;
    border: 1px solid var(--border);
    margin-bottom: 1.75rem;
    gap: 4px;
}

.step-item {
    flex: 1;
    padding: 10px 16px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: transparent;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.step-item.active {
    background: var(--bg-white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.step-item.completed {
    color: var(--success);
}

.step-number {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.glass-panel {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.25rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.info-header .material-symbols-outlined {
    font-size: 18px;
}

.form-group-grid {
    display: grid;
    gap: 1.25rem;
}

.premium-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
}

.premium-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--bg-white);
    color: var(--text-main);
    transition: var(--transition);
    outline: none;
}

.premium-input::placeholder {
    color: #C7C7CC;
}

.premium-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.premium-input.invalid {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.error-text {
    color: var(--error);
    font-size: 0.78rem;
    margin-top: 4px;
    display: block;
}

.submit-btn {
    width: 100%;
    background: var(--dark);
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.submit-btn:hover:not(:disabled) {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
}

.submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.submit-btn .material-symbols-outlined {
    font-size: 20px;
}

.secondary-btn {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text-main);
    margin-top: 0.75rem;
}

.secondary-btn:hover,
.submit-btn.secondary-btn:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: none;
}

.message-box {
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-top: 1rem;
    line-height: 1.5;
}

.message-error {
    background: #FEF2F2;
    border: 1px solid #FEE2E2;
    color: #991B1B;
}

.message-success {
    background: #F0FDF4;
    border: 1px solid #DCFCE7;
    color: #166534;
}

.footer-text {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.footer-link:hover {
    text-decoration: underline;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal .glass-panel {
    max-width: 460px;
    width: 90%;
    text-align: center;
    padding: 2.5rem;
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.modal h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.modal-text {
    margin: 1rem 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.modal-text strong {
    color: var(--primary);
    font-weight: 700;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-cancel {
    margin-top: 1.25rem;
    border: none;
    background: none;
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    font-family: inherit;
    transition: var(--transition);
}

.modal-cancel:hover {
    color: var(--primary);
}

.suggestions-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.suggestion-chip {
    padding: 10px 20px;
    border-radius: 100px;
    background: var(--bg-alt);
    border: 1.5px solid var(--border);
    color: var(--text-main);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.suggestion-chip:hover,
.suggestion-chip.selected {
    border-color: var(--primary);
    background: var(--dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.status-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.hidden {
    display: none !important;
}

.mt-1 { margin-top: 0.25rem; }
.mt-6 { margin-top: 1.5rem; }

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
    .signup-container {
        flex-direction: column;
        height: auto;
    }

    .signup-main {
        height: auto;
        overflow: auto;
    }

    .visual-section {
        min-height: 350px;
        padding: 3rem 2rem;
    }

    .form-section {
        padding: 2.5rem 1.5rem;
        border-left: none;
        border-top: 1px solid var(--border);
    }
}

@media (max-width: 640px) {
    .visual-section {
        min-height: 280px;
        padding: 2.5rem 1.5rem;
    }

    .visual-title {
        font-size: 2rem;
    }

    .form-section {
        padding: 2rem 1.25rem;
    }

    .glass-panel {
        padding: 1.5rem;
    }

    .hero-trust {
        display: none;
    }
}

/* ============================================
   FAQ Section (Project Management style)
   ============================================ */
.pm-faq {
    padding: 120px 0;
    background: #fff;
    border-top: 1px solid #E2E8F0;
}

.pm-faq .wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.pm-faq-grid {
    display: grid;
    grid-template-columns: 0.38fr 0.62fr;
    gap: 65px;
    align-items: start;
}

.pm-faq-info {
    position: sticky;
    top: 120px;
}

.pm-faq-heading {
    font-size: 60px;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 24px;
    letter-spacing: -2.5px;
    line-height: 1.05;
    font-family: 'Ubuntu', sans-serif;
}

.pm-faq-subtext {
    font-size: 18px;
    color: #64748B;
    line-height: 1.65;
    margin: 0 0 40px;
    font-family: 'Ubuntu', sans-serif;
}

.pm-faq-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pm-faq-cta .pm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #0030DB;
    color: #ffffff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Ubuntu', sans-serif;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.pm-faq-cta .pm-btn-primary:hover {
    background: #0025A8;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 48, 219, 0.22);
}

.pm-faq-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pm-faq .faq-item {
    background: #F8F9FA;
    border: 1px solid transparent;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.pm-faq .faq-item:hover {
    background: #fff;
    border-color: rgba(0, 48, 219, 0.12);
    box-shadow: 0 10px 32px rgba(0, 48, 219, 0.05);
    transform: translateY(-2px);
}

.pm-faq .faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    user-select: none;
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.pm-faq .faq-question i {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #0030DB;
    font-size: 13px;
    background: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.pm-faq .faq-answer {
    display: none;
}

.pm-faq .faq-answer p {
    padding: 0 28px 24px;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #64748B;
}

.pm-faq .faq-item.active {
    background: #fff;
    border-color: rgba(0, 48, 219, 0.2);
    box-shadow: 0 20px 48px rgba(0, 48, 219, 0.08);
}

.pm-faq .faq-item.active .faq-question {
    color: #0030DB;
}

.pm-faq .faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: #0030DB;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 48, 219, 0.25);
}

.pm-faq .faq-item.active .faq-answer {
    display: block;
}

@media (max-width: 1024px) {
    .pm-faq-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .pm-faq-info {
        position: static;
    }
    .pm-faq-heading {
        font-size: 44px;
        letter-spacing: -1.5px;
    }
}

@media (max-width: 640px) {
    .pm-faq {
        padding: 80px 0;
    }
    .pm-faq .wrap {
        padding: 0 20px;
    }
    .pm-faq-heading {
        font-size: 34px;
        letter-spacing: -1px;
    }
    .pm-faq-subtext {
        font-size: 16px;
    }
    .pm-faq .faq-question {
        padding: 18px 20px;
        font-size: 16px;
    }
    .pm-faq .faq-answer p {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}

/* ============================================================
   INTEGRATIONS MODAL
   ============================================================ */
.int-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: var(--font-body, 'Ubuntu', sans-serif);
}
.int-modal.is-open {
    display: flex;
}
body.int-modal-open {
    overflow: hidden;
}
.int-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 20, 55, 0.55);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    animation: intModalFade .22s ease both;
    cursor: pointer;
}
.int-modal-panel {
    position: relative;
    width: 100%;
    max-width: 960px;
    max-height: 86vh;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 48, 219, 0.22), 0 8px 24px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: intModalPop .3s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes intModalFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes intModalPop {
    from { opacity: 0; transform: translateY(16px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.int-modal-head {
    padding: 22px 28px 18px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    border-bottom: 1px solid #EEF2F7;
    background: linear-gradient(180deg, rgba(0, 48, 219, 0.025), transparent);
}
.int-modal-head-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.int-modal-head-text p {
    font-size: 13.5px;
    color: #64748B;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.int-count-chip {
    background: linear-gradient(135deg, #00BEFF, #0030DB, #9E5EE5);
    color: #fff;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.int-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #E5E5E5;
    background: #fff;
    color: #64748B;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: all .18s ease;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.int-modal-close:hover {
    border-color: #0030DB;
    color: #0030DB;
    background: rgba(0, 48, 219, 0.06);
    transform: rotate(90deg);
}
.int-modal-search {
    padding: 12px 24px;
    border-bottom: 1px solid #F1F5F9;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FAFBFC;
}
.int-modal-search i {
    color: #94A3B8;
    font-size: 14px;
}
.int-modal-search input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: inherit;
    background: transparent;
    color: #0F172A;
    padding: 6px 0;
}
.int-modal-search input::placeholder {
    color: #94A3B8;
}
.int-modal-body {
    padding: 22px 28px 26px;
    overflow-y: auto;
    flex: 1;
    scroll-behavior: smooth;
}
.int-modal-body::-webkit-scrollbar { width: 10px; }
.int-modal-body::-webkit-scrollbar-track { background: transparent; }
.int-modal-body::-webkit-scrollbar-thumb {
    background: #E2E8F0;
    border-radius: 10px;
    border: 2px solid #fff;
}
.int-modal-body::-webkit-scrollbar-thumb:hover { background: #CBD5E1; }
.int-cat {
    margin-bottom: 26px;
}
.int-cat:last-of-type {
    margin-bottom: 6px;
}
.int-cat h4 {
    font-size: 11px;
    font-weight: 700;
    color: #0030DB;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 12px;
}
.int-tile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.int-tile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    background: #fff;
    transition: all .18s ease;
    min-width: 0;
}
.int-tile:hover {
    border-color: rgba(0, 48, 219, 0.35);
    background: rgba(0, 48, 219, 0.025);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 48, 219, 0.08);
}
.int-mono {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(0, 48, 219, 0.08);
    color: #0030DB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: -0.3px;
    flex-shrink: 0;
    font-family: var(--font-body, 'Ubuntu', sans-serif);
}
.int-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #1D1D1F;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.int-empty {
    text-align: center;
    padding: 60px 20px;
    color: #94A3B8;
    font-size: 14px;
}
.int-modal-foot {
    padding: 14px 28px;
    border-top: 1px solid #EEF2F7;
    background: #FAFBFC;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: #64748B;
    flex-wrap: wrap;
}
.int-foot-cta {
    color: #0030DB;
    font-weight: 600;
    text-decoration: none;
    font-size: 13.5px;
    transition: color .15s ease;
}
.int-foot-cta:hover {
    color: #9E5EE5;
}

@media (max-width: 900px) {
    .int-tile-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 640px) {
    .int-modal {
        padding: 12px;
    }
    .int-modal-panel {
        max-height: 92vh;
        border-radius: 16px;
    }
    .int-modal-head {
        padding: 18px 20px 14px;
    }
    .int-modal-head-text h3 {
        font-size: 19px;
    }
    .int-modal-search {
        padding: 10px 20px;
    }
    .int-modal-body {
        padding: 18px 20px 22px;
    }
    .int-modal-foot {
        padding: 12px 20px;
        font-size: 12.5px;
    }
    .int-tile-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .int-tile {
        padding: 10px 12px;
        gap: 10px;
    }
    .int-mono {
        width: 30px;
        height: 30px;
        font-size: 11.5px;
    }
    .int-name {
        font-size: 12.5px;
    }
}

/* =========================================================
   LIFECYCLE V2 — interactive showcase
   ========================================================= */
.lc-v2 {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 60%, #FFFFFF 100%);
    overflow: hidden;
}
.lc-v2 .sec-intro {
    text-align: center;
    margin-bottom: 56px;
}
.lc-v2-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.lc-v2-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}
.lc-v2-orb-1 {
    width: 420px;
    height: 420px;
    top: 10%;
    left: -100px;
    background: radial-gradient(circle, #00BEFF 0%, transparent 70%);
}
.lc-v2-orb-2 {
    width: 480px;
    height: 480px;
    bottom: 0;
    right: -120px;
    background: radial-gradient(circle, #9E5EE5 0%, transparent 70%);
    opacity: 0.25;
}

.lc-stage {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 36px;
    border: 1px solid rgba(0, 48, 219, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 48, 219, 0.06), 0 4px 12px rgba(15, 23, 42, 0.04);
}

/* STEPPER */
.lc-stepper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 40px;
    padding: 0 12px;
}
.lc-step-track {
    position: absolute;
    top: 22px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: #E2E8F0;
    border-radius: 2px;
    overflow: hidden;
    z-index: 0;
}
.lc-step-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00BEFF, #0030DB, #9E5EE5);
    border-radius: 2px;
    transition: width .6s cubic-bezier(.22, 1, .36, 1);
}
.lc-step {
    position: relative;
    z-index: 1;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    transition: transform .18s ease;
}
.lc-step:hover { transform: translateY(-1px); }
.lc-step-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #E2E8F0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 16px;
    transition: all .3s cubic-bezier(.22, 1, .36, 1);
    flex-shrink: 0;
}
.lc-step.is-active .lc-step-dot,
.lc-step.is-done .lc-step-dot {
    background: linear-gradient(135deg, #00BEFF, #0030DB, #9E5EE5);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 48, 219, 0.25);
    transform: scale(1.08);
}
.lc-step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    text-align: center;
}
.lc-step-num {
    font-family: 'Space Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.1em;
    color: #94A3B8;
    font-weight: 600;
}
.lc-step-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748B;
    letter-spacing: -0.005em;
    transition: color .25s ease;
    white-space: nowrap;
}
.lc-step.is-active .lc-step-label { color: #0030DB; }
.lc-step.is-active .lc-step-num { color: #0030DB; }

/* PANELS */
.lc-panels {
    position: relative;
}
.lc-panel {
    display: none;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 48px;
    align-items: center;
    padding: 8px 4px 0;
    animation: lcPanelIn .55s cubic-bezier(.22, 1, .36, 1) both;
}
.lc-panel.is-active { display: grid; }
@keyframes lcPanelIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lc-eyebrow {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(0, 48, 219, 0.08);
    color: #0030DB;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.lc-text h3 {
    font-family: var(--font-display, 'Ubuntu', sans-serif);
    font-size: clamp(28px, 2.6vw, 40px);
    font-weight: 700;
    color: #0F172A;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}
.lc-text h3 em {
    font-family: 'Instrument Serif', 'Ubuntu', serif;
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, #00BEFF, #0030DB, #9E5EE5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lc-text > p {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 20px;
    max-width: 460px;
}
.lc-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lc-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}
.lc-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00BEFF, #0030DB);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    flex-shrink: 0;
    margin-top: 2px;
}
.lc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0030DB;
    text-decoration: none;
    transition: gap .18s ease, color .18s ease;
}
.lc-cta:hover { gap: 12px; color: #9E5EE5; }
.lc-cta i { font-size: 11px; }

.lc-visual {
    position: relative;
    width: 100%;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== PANEL 1: Approval chain ===== */
.ac-card {
    width: 100%;
    max-width: 520px;
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0, 48, 219, 0.1), 0 2px 8px rgba(15, 23, 42, 0.04);
}
.ac-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 18px;
    margin-bottom: 22px;
    border-bottom: 1px dashed #E2E8F0;
}
.ac-header-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #64748B;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.ac-header-amount {
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.02em;
}
.ac-header-chip {
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(245, 158, 11, 0.12);
    color: #B45309;
    letter-spacing: 0.02em;
    transition: all .3s ease;
}
.ac-header-chip.is-done {
    background: rgba(16, 185, 129, 0.14);
    color: #047857;
}
.ac-chain {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}
.ac-node {
    text-align: center;
    min-width: 0;
}
.ac-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F1F5F9;
    color: #64748B;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    font-weight: 700;
    margin: 0 auto 8px;
    transition: all .4s cubic-bezier(.22, 1, .36, 1);
    border: 2px solid transparent;
}
.ac-node.is-done .ac-avatar,
.ac-node.is-active .ac-avatar {
    background: linear-gradient(135deg, #00BEFF, #0030DB, #9E5EE5);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 48, 219, 0.3);
}
.ac-node.is-active .ac-avatar {
    animation: acPulse 1.4s ease-in-out infinite;
}
@keyframes acPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 6px 18px rgba(0, 48, 219, 0.3); }
    50%      { transform: scale(1.08); box-shadow: 0 8px 24px rgba(0, 48, 219, 0.45); }
}
.ac-node-label {
    font-size: 11.5px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.2;
}
.ac-node-role {
    font-size: 10px;
    color: #94A3B8;
    margin-top: 1px;
    letter-spacing: 0.02em;
}
.ac-node-status {
    display: inline-block;
    margin-top: 6px;
    padding: 3px 8px;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 999px;
    background: #F1F5F9;
    color: #64748B;
    transition: all .3s ease;
}
.ac-node.is-done .ac-node-status {
    background: rgba(16, 185, 129, 0.14);
    color: #047857;
}
.ac-node.is-active .ac-node-status {
    background: rgba(0, 48, 219, 0.1);
    color: #0030DB;
}
.ac-line {
    position: relative;
    width: 100%;
    height: 2px;
    background: #E2E8F0;
    border-radius: 2px;
    overflow: hidden;
    margin-top: -28px;
}
.ac-line-fill {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00BEFF, #0030DB, #9E5EE5);
    transition: width .7s cubic-bezier(.22, 1, .36, 1);
    border-radius: 2px;
}
.ac-line.is-done .ac-line-fill { width: 100%; }
.ac-foot {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px dashed #E2E8F0;
    font-size: 12px;
    color: #64748B;
}
.ac-foot i { color: #0030DB; margin-right: 6px; }
.ac-foot strong { color: #0F172A; margin-left: 4px; }

/* ===== PANEL 2: PR → PO transform ===== */
.pr-wrap {
    width: 100%;
    max-width: 540px;
}
.pr-stage {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}
.pr-card {
    position: relative;
    padding: 18px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    min-width: 0;
}
.pr-after {
    border-color: rgba(0, 48, 219, 0.2);
    box-shadow: 0 14px 36px rgba(0, 48, 219, 0.14);
}
.pr-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px dashed #E2E8F0;
}
.pr-id {
    font-family: 'Space Mono', monospace;
    font-size: 11.5px;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: 0.04em;
}
.pr-status {
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.pr-status-pending { background: rgba(245, 158, 11, 0.14); color: #B45309; }
.pr-status-approved { background: rgba(16, 185, 129, 0.14); color: #047857; }
.pr-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}
.pr-item {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: #475569;
}
.pr-item span:last-child { font-weight: 700; color: #0F172A; }
.pr-total {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #F1F5F9;
    font-size: 12px;
    color: #64748B;
}
.pr-total strong {
    font-size: 15px;
    color: #0F172A;
    letter-spacing: -0.01em;
}
.pr-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #0030DB;
    font-size: 22px;
}
.pr-arrow span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748B;
}
.pr-stamp {
    position: absolute;
    top: -14px;
    right: -10px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 6px;
    box-shadow: 0 8px 18px rgba(16, 185, 129, 0.35);
    transform: rotate(6deg) scale(0.8);
    opacity: 0;
    transition: all .5s cubic-bezier(.34, 1.56, .64, 1);
    z-index: 2;
}
.pr-stamp.is-shown {
    opacity: 1;
    transform: rotate(6deg) scale(1);
}
.pr-stamp i { margin-right: 4px; }
.pr-budget {
    padding: 14px 16px;
    background: rgba(0, 48, 219, 0.04);
    border: 1px solid rgba(0, 48, 219, 0.1);
    border-radius: 12px;
}
.pr-budget-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748B;
    margin-bottom: 8px;
}
.pr-budget-row strong {
    color: #0F172A;
    font-size: 13px;
}
.pr-budget-bar {
    height: 6px;
    background: #E2E8F0;
    border-radius: 3px;
    overflow: hidden;
}
.pr-budget-fill {
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, #00BEFF, #0030DB);
    border-radius: 3px;
    transition: width 1s cubic-bezier(.22, 1, .36, 1);
}

/* ===== PANEL 3: OCR ===== */
.ocr-wrap {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 20px;
    max-width: 560px;
    width: 100%;
    align-items: stretch;
}
.ocr-receipt {
    position: relative;
    padding: 18px;
    background: #FFFBEF;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(0,0,0,0.03) 18px, rgba(0,0,0,0.03) 19px);
    border: 1px solid #F1E8CC;
    border-radius: 12px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
    font-family: 'Space Mono', monospace;
    overflow: hidden;
}
.ocr-receipt-head {
    text-align: center;
    padding-bottom: 12px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #D4B88A;
}
.ocr-vendor {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #0F172A;
}
.ocr-meta {
    font-size: 10px;
    color: #8B6F3F;
    margin-top: 3px;
    letter-spacing: 0.04em;
}
.ocr-receipt-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ocr-line {
    display: flex;
    justify-content: space-between;
    font-size: 11.5px;
    color: #3F3524;
}
.ocr-line-total {
    padding-top: 8px;
    margin-top: 4px;
    border-top: 1px dashed #D4B88A;
    font-weight: 700;
    font-size: 13px;
    color: #0F172A;
}
.ocr-beam {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 190, 255, 0.6) 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(0, 190, 255, 0.8);
    transform: translateY(-40px);
    transition: none;
    opacity: 0;
    pointer-events: none;
}
.ocr-receipt.is-scanning .ocr-beam {
    opacity: 1;
    animation: ocrScan 1.8s cubic-bezier(.4, 0, .6, 1);
}
@keyframes ocrScan {
    0%   { transform: translateY(-40px); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

.ocr-output {
    padding: 16px 18px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 48, 219, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ocr-output-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    margin-bottom: 4px;
    border-bottom: 1px dashed #E2E8F0;
    font-size: 11px;
    color: #64748B;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.ocr-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00BEFF;
    box-shadow: 0 0 10px rgba(0, 190, 255, 0.8);
    animation: ocrDot 1.4s ease-in-out infinite;
}
@keyframes ocrDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}
.ocr-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: #64748B;
    opacity: 0;
    transform: translateY(6px);
    transition: all .35s cubic-bezier(.22, 1, .36, 1);
}
.ocr-field.is-shown {
    opacity: 1;
    transform: translateY(0);
}
.ocr-field strong {
    color: #0F172A;
    font-weight: 700;
    font-size: 13px;
}
.ocr-stamp {
    margin-top: 6px;
    padding: 8px 12px;
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(8px);
    transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
    align-self: flex-start;
}
.ocr-stamp.is-shown {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PANEL 4: Vendor hub ===== */
.vh-wrap {
    width: 100%;
    max-width: 560px;
}
.vh-orbit {
    position: relative;
    width: 100%;
    aspect-ratio: 400 / 340;
    margin-bottom: 20px;
}
.vh-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.vh-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    padding: 18px 14px;
    text-align: center;
    background: linear-gradient(135deg, #0030DB, #1a52ff);
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 48, 219, 0.4);
    z-index: 2;
}
.vh-hub-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    overflow: hidden;
}
.vh-hub-logo img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}
.vh-hub-label {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}
.vh-hub-sub {
    font-size: 10px;
    letter-spacing: 0.04em;
    opacity: 0.8;
}
.vh-hub-ring,
.vh-hub-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 2px solid rgba(0, 48, 219, 0.35);
    transform: translate(-50%, -50%);
    animation: vhPing 2.6s cubic-bezier(.4, 0, .6, 1) infinite;
    pointer-events: none;
}
.vh-hub-ring-2 {
    animation-delay: 1.3s;
}
@keyframes vhPing {
    0%   { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0;   transform: translate(-50%, -50%) scale(1.6); }
}

.vh-vendor {
    position: absolute;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    font-size: 11.5px;
    min-width: 130px;
    opacity: 0;
    transform: translateY(6px);
    transition: all .45s cubic-bezier(.22, 1, .36, 1);
    z-index: 3;
}
.vh-vendor.is-shown {
    opacity: 1;
    transform: translateY(0);
}
.vh-v-tl { top: 4%; left: 3%; }
.vh-v-tr { top: 4%; right: 3%; }
.vh-v-bl { bottom: 4%; left: 3%; }
.vh-v-br { bottom: 4%; right: 3%; }
.vh-v-name {
    font-weight: 700;
    color: #0F172A;
    font-size: 11.5px;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vh-v-amount {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: #475569;
    margin-bottom: 4px;
}
.vh-v-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #047857;
    padding: 2px 8px;
    background: rgba(16, 185, 129, 0.14);
    border-radius: 999px;
    text-transform: uppercase;
}
.vh-v-status i { font-size: 8px; }

.vh-pulse {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00BEFF, #9E5EE5);
    box-shadow: 0 0 16px rgba(0, 190, 255, 0.8);
    top: 50%;
    left: 50%;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}
.vh-orbit.is-animating .vh-pulse-tl { animation: vhPulseTL 1.4s cubic-bezier(.4, 0, .6, 1) forwards; animation-delay: 0.15s; }
.vh-orbit.is-animating .vh-pulse-tr { animation: vhPulseTR 1.4s cubic-bezier(.4, 0, .6, 1) forwards; animation-delay: 0.35s; }
.vh-orbit.is-animating .vh-pulse-bl { animation: vhPulseBL 1.4s cubic-bezier(.4, 0, .6, 1) forwards; animation-delay: 0.55s; }
.vh-orbit.is-animating .vh-pulse-br { animation: vhPulseBR 1.4s cubic-bezier(.4, 0, .6, 1) forwards; animation-delay: 0.75s; }
@keyframes vhPulseTL {
    0%   { opacity: 0; transform: translate(-50%, -50%) translate(0, 0); }
    15%  { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, -50%) translate(-140px, -120px); }
}
@keyframes vhPulseTR {
    0%   { opacity: 0; transform: translate(-50%, -50%) translate(0, 0); }
    15%  { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, -50%) translate(140px, -120px); }
}
@keyframes vhPulseBL {
    0%   { opacity: 0; transform: translate(-50%, -50%) translate(0, 0); }
    15%  { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, -50%) translate(-140px, 120px); }
}
@keyframes vhPulseBR {
    0%   { opacity: 0; transform: translate(-50%, -50%) translate(0, 0); }
    15%  { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, -50%) translate(140px, 120px); }
}

.vh-banks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 48, 219, 0.04);
    border: 1px solid rgba(0, 48, 219, 0.1);
    border-radius: 12px;
    font-size: 12px;
    color: #64748B;
    justify-content: center;
}
.vh-banks-label {
    font-weight: 600;
    color: #475569;
}
.vh-bank {
    padding: 3px 10px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 999px;
    font-weight: 700;
    color: #0F172A;
    font-size: 11.5px;
}
.vh-bank-more {
    font-size: 11px;
    color: #94A3B8;
}

/* Responsive */
@media (max-width: 960px) {
    .lc-v2 { padding: 80px 0; }
    .lc-stage { padding: 24px 20px; }
    .lc-panel {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .lc-visual { min-height: 300px; }
    .ocr-wrap { grid-template-columns: 1fr; }
    .lc-step-label { font-size: 11px; }
}
@media (max-width: 640px) {
    .lc-stepper {
        padding: 0;
        gap: 0;
    }
    .lc-step-dot { width: 36px; height: 36px; font-size: 14px; }
    .lc-step-track { top: 18px; left: 16%; right: 16%; }
    .lc-step-label { font-size: 10px; white-space: normal; }
    .lc-step-num { font-size: 9px; }
    .lc-text h3 { font-size: 26px; }
    .ac-chain {
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        gap: 2px;
    }
    .ac-avatar { width: 34px; height: 34px; font-size: 11px; }
    .ac-node-role { display: none; }
    .pr-stage {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .pr-arrow { transform: rotate(90deg); }
    .vh-vendor { font-size: 10px; min-width: 110px; padding: 8px 10px; }
    .vh-v-name { font-size: 10.5px; }
    .vh-hub { width: 100px; padding: 14px 10px; }
    .vh-hub-label { font-size: 13px; }
}


/* ====================================================================
   HERO V2 — layered modular composition
   Main Expenses app + floating Receipt + floating Approval cards
   ==================================================================== */

.hv2-stage {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 40px 40px 56px;
    font-family: 'Ubuntu', sans-serif;
}
.hv2-glow {
    position: absolute;
    inset: 10% -10% 10% -10%;
    background:
        radial-gradient(40% 50% at 30% 30%, rgba(0, 190, 255, 0.28), transparent 70%),
        radial-gradient(45% 55% at 80% 70%, rgba(158, 94, 229, 0.24), transparent 70%),
        radial-gradient(40% 40% at 50% 100%, rgba(0, 48, 219, 0.18), transparent 70%);
    filter: blur(30px);
    z-index: 0;
    pointer-events: none;
    animation: hv2GlowPulse 10s ease-in-out infinite alternate;
}
@keyframes hv2GlowPulse {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* ── MAIN APP FRAME ── */
.hv2-app {
    position: relative;
    z-index: 2;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 12px 30px rgba(15, 23, 42, 0.06),
        0 40px 80px rgba(15, 23, 42, 0.10),
        0 120px 160px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    transform: translateY(0);
    animation: hv2AppIn 0.9s cubic-bezier(0.19, 1, 0.22, 1) both;
}
@keyframes hv2AppIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hv2-app-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.9), rgba(255, 255, 255, 0.6));
}
.hv2-app-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.hv2-app-brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
    background: #fff;
    padding: 2px;
    box-shadow: 0 2px 6px rgba(0, 48, 219, 0.15), inset 0 0 0 1px rgba(15, 23, 42, 0.05);
    flex-shrink: 0;
}
.hv2-app-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}
.hv2-app-title {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 20px;
    font-weight: 400;
    color: #0F172A;
    letter-spacing: -0.01em;
}
.hv2-app-crumb {
    font-size: 10.5px;
    color: #64748B;
    font-weight: 500;
}
.hv2-app-top-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.hv2-app-search {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #F1F5F9;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 8px;
    font-size: 10.5px;
    color: #64748B;
    min-width: 160px;
}
.hv2-app-search i {
    font-size: 10px;
    color: #94A3B8;
}
.hv2-app-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 9px;
    background: rgba(22, 163, 74, 0.1);
    border-radius: 999px;
    font-size: 9.5px;
    font-weight: 700;
    color: #15803D;
    letter-spacing: 0.02em;
}
.hv2-app-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0030DB, #9E5EE5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 10px;
    box-shadow: 0 2px 6px rgba(0, 48, 219, 0.3);
}
.hv2-pulse {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #16A34A;
}
.hv2-pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: #16A34A;
    opacity: 0.4;
    animation: hv2Pulse 1.8s ease-out infinite;
}
.hv2-pulse-green { background: #16A34A; }
.hv2-pulse-green::after { background: #16A34A; }
@keyframes hv2Pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* ── FILTER PILLS ── */
.hv2-app-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}
.hv2-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 600;
    color: #475569;
    background: transparent;
    border: 1px solid transparent;
    cursor: default;
    transition: all 0.2s ease;
}
.hv2-filter span {
    font-size: 9.5px;
    font-weight: 700;
    color: #94A3B8;
    padding: 1px 5px;
    background: rgba(15, 23, 42, 0.06);
    border-radius: 999px;
}
.hv2-filter.is-active {
    background: #0F172A;
    color: #fff;
    border-color: #0F172A;
}
.hv2-filter.is-active span {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.hv2-filter-ghost {
    margin-left: auto;
    color: #64748B;
    font-size: 10.5px;
}
.hv2-filter-ghost i {
    font-size: 9px;
}

/* ── TABLE ── */
.hv2-app-table {
    padding: 4px 8px 4px;
}
.hv2-app-thead {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr) 62px 80px 90px;
    gap: 12px;
    padding: 8px 12px;
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94A3B8;
}
.hv2-row {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr) 62px 80px 90px;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    opacity: 0;
    animation: hv2RowIn 0.55s cubic-bezier(0.19, 1, 0.22, 1) var(--d, 0.4s) forwards;
    border-radius: 8px;
    transition: background 0.2s ease;
}
.hv2-row:hover { background: rgba(0, 48, 219, 0.03); }
.hv2-row-highlight {
    background: linear-gradient(90deg, rgba(0, 190, 255, 0.06), rgba(158, 94, 229, 0.04));
}
.hv2-row-highlight:hover {
    background: linear-gradient(90deg, rgba(0, 190, 255, 0.1), rgba(158, 94, 229, 0.07));
}
@keyframes hv2RowIn {
    0% { opacity: 0; transform: translateY(6px); }
    100% { opacity: 1; transform: translateY(0); }
}
.hv2-row-main {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.hv2-row-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 11px;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: -0.02em;
}
.hv2-ico-uber { background: #0F172A; }
.hv2-ico-aws { background: #FF9900; }
.hv2-ico-luft { background: #0F3377; }
.hv2-ico-airbnb { background: #FF385C; }
.hv2-ico-slack { background: #4A154B; }
.hv2-row-title {
    font-size: 12px;
    font-weight: 600;
    color: #0F172A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hv2-row-sub {
    font-size: 10px;
    color: #94A3B8;
    margin-top: 1px;
}
.hv2-row-cat {
    min-width: 0;
}
.hv2-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    background: #F1F5F9;
    color: #475569;
    white-space: nowrap;
}
.hv2-tag i { font-size: 9px; }
.hv2-tag-travel { background: #EFF6FF; color: #1D4ED8; }
.hv2-tag-tech { background: #F3E8FF; color: #7E22CE; }
.hv2-row-date {
    font-size: 11px;
    color: #64748B;
    font-family: 'Space Mono', monospace;
}
.hv2-row-amt {
    font-size: 12.5px;
    font-weight: 700;
    color: #0F172A;
    font-family: 'Space Mono', monospace;
    letter-spacing: -0.01em;
    text-align: right;
}
.hv2-row-stat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    justify-self: end;
    white-space: nowrap;
}
.hv2-row-stat i { font-size: 9px; }
.hv2-stat-approved {
    background: rgba(22, 163, 74, 0.1);
    color: #15803D;
}
.hv2-stat-review {
    background: rgba(245, 158, 11, 0.12);
    color: #B45309;
}

/* ── APP FOOTER ── */
.hv2-app-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(248, 250, 252, 0.95));
    font-size: 10.5px;
    color: #64748B;
}
.hv2-app-foot i { margin-right: 5px; color: #0030DB; }
.hv2-app-foot-total strong {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    color: #0F172A;
    margin-left: 6px;
}

/* ── FLOATING CARDS (shared) ── */
.hv2-float {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 10px 24px rgba(15, 23, 42, 0.08),
        0 28px 56px rgba(15, 23, 42, 0.16),
        0 60px 100px rgba(0, 48, 219, 0.08);
    padding: 14px 16px;
    opacity: 0;
    animation: hv2FloatIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) both;
    font-family: 'Ubuntu', sans-serif;
}
@keyframes hv2FloatIn {
    0% { opacity: 0; transform: translateY(14px) scale(0.96) rotate(var(--r, 0deg)); }
    100% { opacity: 1; transform: translateY(0) scale(1) rotate(var(--r, 0deg)); }
}

.hv2-float-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    margin-bottom: 10px;
}
.hv2-float-label {
    font-size: 10.5px;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: 0.01em;
}
.hv2-float-time {
    margin-left: auto;
    font-size: 9.5px;
    color: #94A3B8;
    font-family: 'Space Mono', monospace;
}

/* ── FLOAT 1: RECEIPT ── */
.hv2-float-receipt {
    top: -14px;
    right: -24px;
    width: 280px;
    --r: 2.5deg;
    transform: rotate(2.5deg);
    animation-delay: 0.7s;
}
.hv2-rc-body {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 12px;
    align-items: stretch;
}
.hv2-rc-thumb {
    position: relative;
    background: #FAFAFA;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    padding: 10px 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 110px;
}
.hv2-rc-thumb-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 9px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 2px;
}
.hv2-rc-thumb-head span:last-child {
    color: #94A3B8;
    font-weight: 500;
    font-size: 8px;
}
.hv2-rc-thumb-line {
    height: 3px;
    border-radius: 2px;
    background: rgba(15, 23, 42, 0.1);
}
.hv2-rc-thumb-line.short { width: 60%; }
.hv2-rc-thumb-total {
    margin-top: auto;
    font-size: 11px;
    font-weight: 800;
    color: #0F172A;
    font-family: 'Space Mono', monospace;
    padding-top: 4px;
    border-top: 1px dashed rgba(15, 23, 42, 0.15);
}
.hv2-rc-scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 28px;
    background: linear-gradient(180deg, transparent, rgba(0, 190, 255, 0.4), transparent);
    animation: hv2Scan 2.2s ease-in-out infinite;
    pointer-events: none;
}
@keyframes hv2Scan {
    0% { top: -28px; }
    100% { top: 100%; }
}
.hv2-rc-fields {
    display: flex;
    flex-direction: column;
    gap: 7px;
    justify-content: space-between;
}
.hv2-rc-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 10px;
}
.hv2-rc-field span {
    color: #94A3B8;
    font-weight: 500;
}
.hv2-rc-field strong {
    color: #0F172A;
    font-weight: 700;
    font-family: 'Space Mono', monospace;
    font-size: 10.5px;
    text-align: right;
}
.hv2-rc-foot {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    font-size: 10px;
    font-weight: 600;
    color: #0030DB;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hv2-rc-foot i { font-size: 11px; color: #9E5EE5; }

/* ── FLOAT 2: APPROVAL ── */
.hv2-float-approval {
    bottom: -20px;
    left: -28px;
    width: 310px;
    --r: -2deg;
    transform: rotate(-2deg);
    animation-delay: 1.0s;
    padding: 14px 16px 14px;
}
.hv2-ap-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    margin-bottom: 10px;
}
.hv2-ap-eyebrow {
    font-size: 9.5px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}
.hv2-ap-title {
    font-size: 13px;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.01em;
}
.hv2-ap-amt {
    font-family: 'Space Mono', monospace;
    font-size: 15px;
    font-weight: 700;
    color: #15803D;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-top: 4px;
}
.hv2-ap-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hv2-ap-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hv2-ap-av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 10px;
    flex-shrink: 0;
}
.hv2-ap-av-blue { background: #DBEAFE; color: #1D4ED8; }
.hv2-ap-av-purple { background: #EDE9FE; color: #6D28D9; }
.hv2-ap-name {
    flex: 1;
    min-width: 0;
}
.hv2-ap-name-main {
    font-size: 11.5px;
    font-weight: 600;
    color: #0F172A;
}
.hv2-ap-role {
    font-size: 9.5px;
    color: #94A3B8;
    margin-top: 1px;
}
.hv2-ap-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}
.hv2-ap-pill i { font-size: 8.5px; }
.hv2-ap-pill-approved {
    background: rgba(22, 163, 74, 0.1);
    color: #15803D;
}
.hv2-ap-foot {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10.5px;
    color: #64748B;
    font-weight: 500;
}
.hv2-ap-foot-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0030DB;
    font-size: 10px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .hv2-stage { padding: 30px 20px 40px; max-width: 560px; }
    .hv2-float-receipt { right: -10px; width: 260px; }
    .hv2-float-approval { left: -10px; width: 290px; }
}
@media (max-width: 768px) {
    .hv2-stage { padding: 24px 8px 80px; }
    .hv2-app-brand img { width: 26px; height: 26px; }
    .hv2-app-title { font-size: 17px; }
    .hv2-app-search { display: none; }
    .hv2-app-avatar { width: 24px; height: 24px; font-size: 9px; }
    .hv2-app-chip { font-size: 9px; padding: 3px 8px; }
    .hv2-app-filters { padding: 10px 12px 8px; gap: 5px; overflow-x: auto; }
    .hv2-filter-ghost { display: none; }
    .hv2-app-thead { display: none; }
    .hv2-row {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        gap: 4px 10px;
        padding: 10px 8px;
    }
    .hv2-row-cat { grid-column: 1 / 2; grid-row: 2; }
    .hv2-row-date { display: none; }
    .hv2-row-amt { grid-column: 2; grid-row: 1; align-self: center; }
    .hv2-row-stat { grid-column: 2; grid-row: 2; align-self: center; }
    .hv2-app-foot { padding: 10px 14px; font-size: 10px; flex-wrap: wrap; gap: 6px; }

    .hv2-float-receipt {
        width: 220px;
        top: -10px;
        right: -6px;
        padding: 10px 12px;
        --r: 3deg;
    }
    .hv2-rc-body { grid-template-columns: 60px 1fr; gap: 8px; }
    .hv2-rc-thumb { min-height: 90px; padding: 8px 6px; }
    .hv2-rc-field { font-size: 9px; }
    .hv2-rc-field strong { font-size: 9.5px; }
    .hv2-float-approval {
        width: 260px;
        bottom: -14px;
        left: -6px;
        padding: 12px;
        --r: -2deg;
    }
    .hv2-ap-title { font-size: 12px; }
    .hv2-ap-amt { font-size: 13px; }
    .hv2-ap-av { width: 24px; height: 24px; font-size: 9px; }
    .hv2-ap-name-main { font-size: 10.5px; }
    .hv2-ap-pill { font-size: 9px; padding: 3px 8px; }
}
@media (max-width: 480px) {
    .hv2-stage { padding: 16px 0 90px; }
    .hv2-float-receipt { width: 200px; right: -4px; top: -6px; }
    .hv2-float-approval { width: 240px; left: -4px; bottom: -8px; }
}
