*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --primary: #1a2b3d;
    --primary-90: rgba(26, 43, 61, 0.9);
    --primary-10: rgba(26, 43, 61, 0.1);
    --primary-05: rgba(26, 43, 61, 0.05);
    --primary-20: rgba(26, 43, 61, 0.2);

    --bg-light: #f6f7f7;
    --bg-dark: #15191d;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #4a5568;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    --green-100: #d1fae5;
    --green-500: #22c55e;
    --green-700: #047857;
    --blue-500: #3b82f6;
    --red-50: #fef2f2;
    --red-100: #fee2e2;
    --red-700: #b91c1c;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-700: #1d4ed8;
    --amber-100: #fef3c7;
    --amber-700: #b45309;
    --emerald-50: #ecfdf5;
    --emerald-300: #6ee7b7;
    --emerald-500: #10b981;
    --orange-100: #ffedd5;
    --orange-500: #f97316;
    --rose-50: #fff1f2;
    --rose-300: #fda4af;
    --rose-700: #be123c;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --red-200: #fecaca;
    --amber-600: #d97706;
    --amber-400: #fbbf24;
    --blue-600: #2563eb;
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;
    --red-900: #7f1d1d;

    --font: 'Inter', sans-serif;

    --rounded-sm: 0.125rem;
    --rounded: 0.25rem;
    --rounded-md: 0.375rem;
    --rounded-lg: 0.5rem;
    --rounded-xl: 0.75rem;
    --rounded-2xl: 1rem;
    --rounded-3xl: 1.5rem;
    --rounded-full: 9999px;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, .05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, .25);
    --shadow-primary: 0 8px 20px -4px rgba(26, 43, 61, .25);
}

/* ============================================================
   BASE
   ============================================================ */
body {
    font-family: var(--font);
    background-color: var(--bg-light);
    color: var(--slate-900);
    line-height: 1.5;
}



a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Material Icons fix */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
    line-height: 1;
    font-size: inherit;
}

/* ============================================================
   PAGE BODY LAYOUT
   ============================================================ */
.page-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-body>main {
    flex: 1 1 auto;
}

/* ============================================================
   LANDING PAGE — HEADER
   ============================================================ */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
}



.lp-header-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 640px) {
    .lp-header-inner {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .lp-header-inner {
        padding: 0 2rem;
    }
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.025em;
}



.lp-logo-icon {
    background-color: var(--primary);
    padding: 0.375rem;
    border-radius: var(--rounded-lg);
    color: white;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
}

.lp-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .lp-nav {
        display: flex;
    }
}

.lp-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    transition: color 0.15s;
}



.lp-nav a:hover {
    color: var(--primary);
}



.lp-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--rounded-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-600);
    transition: background-color 0.15s;
    font-size: 1.25rem;
}

.btn-icon:hover {
    background-color: var(--slate-100);
}





.btn-login {
    display: none;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    border-radius: var(--rounded-lg);
    transition: background-color 0.15s;
}

.btn-login:hover {
    background-color: var(--slate-100);
}



@media (min-width: 640px) {
    .btn-login {
        display: block;
    }
}

.btn-primary {
    padding: 0.5rem 1.25rem;
    background-color: var(--primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--rounded-lg);
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.btn-primary:hover {
    box-shadow: 0 8px 16px -4px rgba(26, 43, 61, 0.3);
    transform: translateY(-1px);
}

/* ============================================================
   LANDING PAGE — HERO
   ============================================================ */
.lp-hero {
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
}

.lp-section-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .lp-section-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .lp-section-container {
        padding: 0 2rem;
    }
}

.lp-hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .lp-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--rounded-full);
    background-color: var(--primary-10);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

.lp-hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.025em;
    color: var(--slate-900);
}



@media (min-width: 1024px) {
    .lp-hero-title {
        font-size: 3.75rem;
    }
}

.lp-hero-title span {
    color: rgba(26, 43, 61, 0.75);
}



.lp-hero-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--slate-600);
    max-width: 32rem;
}



.lp-hero-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .lp-hero-btns {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.btn-hero-primary {
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    border-radius: var(--rounded-lg);
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    box-shadow: var(--shadow-primary);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -4px rgba(26, 43, 61, 0.35);
}

.btn-hero-secondary {
    padding: 1rem 2rem;
    border: 2px solid var(--slate-200);
    font-weight: 700;
    border-radius: var(--rounded-lg);
    font-size: 1.125rem;
    transition: all 0.2s;
    color: var(--slate-700);
}

.btn-hero-secondary:hover {
    background-color: var(--slate-100);
}





.lp-hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--slate-500);
}

.lp-avatars {
    display: flex;
}

.lp-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
    margin-left: -0.5rem;
}

.lp-avatar:first-child {
    margin-left: 0;
}

.lp-avatar-1 {
    background-color: var(--slate-200);
}

.lp-avatar-2 {
    background-color: var(--primary);
    color: white;
}

.lp-avatar-3 {
    background-color: var(--slate-300);
}

.lp-hero-image-wrap {
    position: relative;
}

.lp-hero-image-box {
    aspect-ratio: 1 / 1;
    background: linear-gradient(to bottom right, var(--primary-05), var(--primary-20));
    border-radius: var(--rounded-3xl);
    overflow: hidden;
    position: relative;
}

.lp-hero-image-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.lp-transaction-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    padding: 1.25rem;
    border-radius: var(--rounded-xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
}



.lp-transaction-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.lp-tx-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--slate-500);
}

.lp-tx-status {
    padding: 0.125rem 0.5rem;
    border-radius: var(--rounded);
    background-color: var(--green-100);
    color: var(--green-700);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
}

.lp-tx-details {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lp-tx-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    font-size: 1.25rem;
}

.lp-tx-amount {
    font-size: 0.875rem;
    font-weight: 700;
}

.lp-tx-asset {
    font-size: 0.75rem;
    color: var(--slate-500);
}

/* ============================================================
   LANDING PAGE — STATS BANNER
   ============================================================ */
.lp-stats {
    background-color: var(--primary);
    color: white;
    padding: 3rem 0;
}

.lp-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .lp-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lp-stat-value {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.lp-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   LANDING PAGE — HOW IT WORKS
   ============================================================ */
.lp-section-light {
    background-color: white;
    padding: 5rem 0;
}



.lp-section-muted {
    background-color: var(--bg-light);
    padding: 5rem 0;
}



.lp-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.lp-section-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}



.lp-section-desc {
    font-size: 1rem;
    color: var(--slate-500);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.7;
}

.lp-steps-grid {
    display: grid;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .lp-steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .lp-steps-connector {
        display: block;
        position: absolute;
        top: 3rem;
        left: 10%;
        right: 10%;
        height: 1px;
        background-color: var(--slate-200);
        z-index: 0;
    }

    
}

.lp-steps-connector {
    display: none;
}

.lp-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.lp-step-icon {
    width: 5rem;
    height: 5rem;
    background-color: white;
    border-radius: var(--rounded-2xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--slate-100);
    flex-shrink: 0;
    color: var(--primary);
    font-size: 2rem;
    transition: border-color 0.2s;
}



.lp-step:hover .lp-step-icon {
    border-color: var(--primary);
}

.lp-step-title {
    font-size: 1.125rem;
    font-weight: 700;
}

.lp-step-desc {
    font-size: 0.875rem;
    color: var(--slate-500);
    line-height: 1.6;
}

/* ============================================================
   LANDING PAGE — PROXY SERVICES
   ============================================================ */
.lp-proxy-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .lp-proxy-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.lp-proxy-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.lp-proxy-card {
    background-color: white;
    border: 1px solid var(--slate-100);
    border-radius: var(--rounded-2xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
}



.lp-proxy-card:hover {
    box-shadow: var(--shadow-md);
}

.lp-proxy-card-offset {
    margin-top: 2rem;
}

.lp-proxy-icon {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: block;
}

.lp-proxy-card h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lp-proxy-card p {
    font-size: 0.75rem;
    color: var(--slate-500);
    line-height: 1.6;
}

.lp-proxy-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lp-proxy-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.025em;
}



.lp-proxy-desc {
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.7;
}



.lp-proxy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp-proxy-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.lp-proxy-list li .check-icon {
    color: var(--green-500);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ============================================================
   LANDING PAGE — SECURITY
   ============================================================ */
.lp-security-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .lp-security-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lp-security-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp-security-icon-box {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-05);
    border-radius: var(--rounded-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.lp-security-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.lp-security-item p {
    color: var(--slate-500);
    line-height: 1.7;
}

/* ============================================================
   LANDING PAGE — CTA
   ============================================================ */
.lp-cta-section {
    padding: 4rem 0;
}

.lp-cta-box {
    background-color: var(--primary);
    border-radius: 2rem;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

@media (min-width: 1024px) {
    .lp-cta-box {
        padding: 5rem;
    }
}

.lp-cta-deco-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.lp-cta-deco-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.lp-cta-content {
    position: relative;
    z-index: 1;
    max-width: 48rem;
    margin: 0 auto;
}

.lp-cta-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    letter-spacing: -0.025em;
}

@media (min-width: 1024px) {
    .lp-cta-title {
        font-size: 3rem;
    }
}

.lp-cta-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.lp-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-cta-white {
    padding: 1rem 2.5rem;
    background-color: white;
    color: var(--primary);
    font-weight: 900;
    border-radius: var(--rounded-xl);
    font-size: 1.125rem;
    transition: transform 0.2s;
    display: inline-block;
}

.btn-cta-white:hover {
    transform: scale(1.05);
}

.btn-cta-outline {
    padding: 1rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 900;
    border-radius: var(--rounded-xl);
    font-size: 1.125rem;
    transition: background-color 0.2s;
    display: inline-block;
}

.btn-cta-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   LANDING PAGE — FOOTER
   ============================================================ */
.lp-footer {
    background-color: var(--bg-light);
    border-top: 1px solid var(--slate-200);
    padding: 4rem 0 2rem;
}



.lp-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .lp-footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.lp-footer-brand {
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .lp-footer-brand {
        grid-column: auto;
    }
}

.lp-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}



.lp-footer-brand p {
    font-size: 0.875rem;
    color: var(--slate-500);
    max-width: 18rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.lp-footer-social {
    display: flex;
    gap: 0.75rem;
}

.lp-social-icon {
    width: 2.25rem;
    height: 2.25rem;
    background-color: var(--slate-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-600);
    font-size: 1rem;
    transition: all 0.15s;
}



.lp-social-icon:hover {
    color: var(--primary);
    background-color: var(--primary-10);
}

.lp-footer-col h5 {
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1.25rem;
}



.lp-footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-footer-col li a {
    font-size: 0.875rem;
    color: var(--slate-500);
    transition: color 0.15s;
}

.lp-footer-col li a:hover {
    color: var(--primary);
}

.lp-footer-bottom {
    border-top: 1px solid var(--slate-200);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .lp-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.lp-footer-bottom p {
    font-size: 0.75rem;
    color: var(--slate-500);
}



/* ============================================================
   AUTH PAGES — SHARED
   ============================================================ */
.auth-header {
    background-color: white;
    border-bottom: 1px solid var(--slate-200);
    padding: 1rem 1.5rem;
    flex-shrink: 0;
}



.auth-header-inner {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.auth-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--primary);
}



.auth-logo-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--primary);
    border-radius: var(--rounded-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
}



.auth-logo h1 {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.auth-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.auth-header-text {
    display: none;
    font-size: 0.875rem;
    color: var(--slate-600);
}

@media (min-width: 640px) {
    .auth-header-text {
        display: block;
    }
}



.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

@media (min-width: 768px) {
    .auth-main {
        padding: 3rem 2rem;
    }
}

.auth-card {
    width: 100%;
    max-width: 68rem;
    display: grid;
    background-color: white;
    border-radius: var(--rounded-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 1px solid var(--slate-200);
}



@media (min-width: 1024px) {
    .auth-card {
        grid-template-columns: 1fr 1fr;
    }
}

/* Auth Card — Branding Panel */
.auth-brand-panel {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
    background-color: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .auth-brand-panel {
        display: flex;
    }
}

.auth-brand-panel .deco-circle-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 24rem;
    height: 24rem;
    background-color: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    filter: blur(100px);
}

.auth-brand-panel .deco-circle-2 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 20rem;
    height: 20rem;
    background-color: rgba(148, 163, 184, 0.15);
    border-radius: 50%;
    filter: blur(80px);
}

.auth-brand-title {
    font-size: 1.875rem;
    font-weight: 900;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

.auth-brand-desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-top: 1.25rem;
    position: relative;
    z-index: 1;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.auth-feature h4 {
    font-size: 0.875rem;
    font-weight: 700;
}

.auth-feature p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.125rem;
}

/* Auth Card — Form Panel */
.auth-form-panel {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 1024px) {
    .auth-form-panel {
        padding: 4rem;
    }
}

.auth-form-header {
    margin-bottom: 2rem;
}

.auth-form-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--slate-900);
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
}



.auth-form-subtitle {
    color: var(--slate-500);
    font-size: 0.9375rem;
}



/* Form fields */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
}



.form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-400);
    pointer-events: none;
    font-size: 1.125rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    background-color: white;
    border: 1px solid var(--slate-200);
    border-radius: var(--rounded-lg);
    font-size: 0.9375rem;
    color: var(--slate-900);
    font-family: var(--font);
    outline: none;
    transition: all 0.15s;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 43, 61, 0.1);
}







.input-pw-toggle {
    position: absolute;
    right: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-400);
    cursor: pointer;
    font-size: 1.125rem;
    transition: color 0.15s;
    background: none;
}

.input-pw-toggle:hover {
    color: var(--slate-700);
}



/* Submit button */
.btn-submit {
    width: 100%;
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    padding: 0.9375rem;
    border-radius: var(--rounded-lg);
    cursor: pointer;
    transition: all 0.15s;
    box-shadow: var(--shadow-primary);
    font-size: 1rem;
    font-family: var(--font);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background-color: var(--primary-90);
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: scale(0.98);
}

/* Divider */
.form-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0;
}

.form-divider-line {
    flex: 1;
    height: 1px;
    background-color: var(--slate-200);
}



.form-divider-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
}

/* Social / alternative auth buttons */
.social-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 2.75rem;
    border: 1px solid var(--slate-200);
    border-radius: var(--rounded-lg);
    background-color: white;
    color: var(--slate-700);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.15s;
}

.btn-social:hover {
    background-color: var(--slate-50);
}





/* Remember + forgot row */
.form-remember-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox {
    width: 1rem;
    height: 1rem;
    border-radius: var(--rounded);
    border: 1px solid var(--slate-300);
    cursor: pointer;
    accent-color: var(--primary);
}

.form-check-label {
    font-size: 0.875rem;
    color: var(--slate-600);
    cursor: pointer;
}



.form-forgot {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.form-forgot:hover {
    text-decoration: underline;
}



/* Password strength bar */
.pw-strength {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.pw-strength-bar {
    flex: 1;
    height: 0.25rem;
    background-color: var(--slate-200);
    border-radius: var(--rounded-full);
    overflow: hidden;
}



.pw-strength-fill {
    height: 100%;
    width: 33.33%;
    background-color: var(--primary);
    border-radius: var(--rounded-full);
}

.pw-strength-label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Form footer */
.auth-form-footer {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--slate-100);
    text-align: center;
}



.auth-form-footer p {
    font-size: 0.875rem;
    color: var(--slate-500);
}



.auth-form-footer a {
    color: var(--primary);
    font-weight: 700;
}



.auth-form-footer a:hover {
    text-decoration: underline;
}

/* Trust badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
    opacity: 0.5;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.trust-badge .material-symbols-outlined {
    font-size: 0.875rem;
}

/* Terms checkbox */
.form-terms {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-terms-label {
    font-size: 0.75rem;
    color: var(--slate-500);
    line-height: 1.6;
}



.form-terms-label a {
    color: var(--primary);
    font-weight: 600;
}



/* Auth footer */
.auth-footer {
    padding: 1.75rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--slate-400);
    border-top: 1px solid var(--slate-200);
    flex-shrink: 0;
}



.auth-footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.auth-footer-links a {
    color: var(--slate-400);
    transition: color 0.15s;
}

.auth-footer-links a:hover {
    color: var(--slate-600);
}

.sys-status {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.sys-status .material-symbols-outlined {
    color: var(--green-500);
    font-size: 0.875rem;
}

/* ============================================================
   FORGOT PASSWORD — CENTERED CARD
   ============================================================ */
.auth-center-card {
    width: 100%;
    max-width: 28rem;
    background-color: white;
    border-radius: var(--rounded-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--slate-200);
    overflow: hidden;
}



.auth-center-card-body {
    padding: 2.5rem;
}

.auth-icon-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--primary-10);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.15s;
}



.back-link:hover {
    text-decoration: underline;
}

/* ============================================================
   VERIFY EMAIL
   ============================================================ */
.verify-card {
    width: 100%;
    max-width: 30rem;
    background-color: white;
    border-radius: var(--rounded-xl);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-xl);
}



.verify-card-body {
    padding: 2.5rem;
}

.otp-group {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
}

@media (min-width: 400px) {
    .otp-group {
        gap: 0.875rem;
    }
}

.otp-input {
    flex: 1;
    max-width: 3.25rem;
    height: 3.5rem;
    text-align: center;
    font-size: 1.375rem;
    font-weight: 700;
    background-color: var(--slate-100);
    border: 2px solid var(--slate-200);
    border-radius: var(--rounded-lg);
    outline: none;
    transition: all 0.2s;
    color: var(--slate-900);
    caret-color: var(--primary);
    font-family: var(--font);
}

.otp-input:focus {
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(26, 43, 61, 0.12);
}

.otp-input.filled {
    border-color: var(--primary);
    background-color: rgba(26, 43, 61, 0.04);
}





/* ============================================================
   FLASH MESSAGES
   ============================================================ */
.flash-msg {
    padding: 0.875rem 1rem;
    border-radius: var(--rounded-lg);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid transparent;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.flash-msg p {
    margin: 0;
}

.flash-error {
    background-color: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

.flash-success {
    background-color: #f0fdf4;
    color: #166534;
    border-color: #bbf7d0;
}

.flash-info {
    background-color: #eff6ff;
    color: #1d4ed8;
    border-color: #bfdbfe;
}







/* ============================================================
   DASHBOARD / INTERIOR PAGES (kept from previous CSS)
   ============================================================ */
/* Keep all original dashboard CSS that was already working by
   prepending it after this file. We do NOT remove those
   existing rules — this file replaces only the landing/auth CSS. */

/* ============================================================
   DASHBOARD LAYOUT
   ============================================================ */
.db-container {
    display: flex;
    min-height: 100vh;
    background-color: var(--bg-light);
}



.db-sidebar {
    width: 260px;
    background: #fff;
    border-right: 1px solid var(--primary-10);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 50;
    transition: all 0.3s ease;
}



.db-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.db-header {
    height: 70px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--primary-10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 40;
}



.db-content {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Sidebar Logo */
.db-logo {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.db-logo-icon {
    background: var(--primary);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--rounded-lg);
}

.db-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.025em;
}



/* Sidebar Nav */
.db-nav {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.db-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--rounded-xl);
    color: var(--slate-600);
    font-weight: 500;
    transition: all 0.2s ease;
}



.db-nav-link:hover {
    background: var(--primary-05);
    color: var(--primary);
}



.db-nav-link.active {
    background: var(--primary);
    color: #fff;
}

/* Content Header */
.db-header-search {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.db-search-input {
    width: 100%;
    background: var(--slate-100);
    border: 1px solid transparent;
    border-radius: var(--rounded-lg);
    padding: 0.625rem 1rem 0.625rem 2.75rem;
    font-size: 0.875rem;
    color: var(--slate-900);
    transition: all 0.2s ease;
}



.db-search-input:focus {
    outline: none;
    background: #fff;
    border-color: var(--primary-20);
    box-shadow: 0 0 0 4px var(--primary-05);
}



.db-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-400);
}

/* User Profile */
.db-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.db-user-info {
    text-align: right;
}

.db-user-name {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--slate-900);
}



.db-user-role {
    font-size: 0.75rem;
    color: var(--slate-500);
}

.db-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--rounded-full);
    border: 2px solid var(--primary-10);
    object-fit: cover;
}

/* Action Button */
.db-sidebar-action {
    padding: 1.5rem;
    border-top: 1px solid var(--primary-10);
}

.btn-new-escrow {
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 0.875rem;
    border-radius: var(--rounded-xl);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
}

.btn-new-escrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -6px rgba(26, 43, 61, 0.4);
}

/* Dashboard Cards */
.db-card {
    background: #fff;
    border-radius: var(--rounded-2xl);
    border: 1px solid var(--primary-10);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}



/* Stat Card */
.stat-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-500);
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}



.stat-badge {
    padding: 0.25rem 0.5rem;
    border-radius: var(--rounded-full);
    font-size: 0.75rem;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .db-sidebar {
        width: 80px;
    }

    .db-logo-text,
    .db-nav-link span,
    .btn-new-escrow span,
    .db-user-info {
        display: none;
    }

    .db-sidebar-action {
        padding: 1rem;
    }
}

/* Group sections */
.db-section {
    margin-bottom: 2rem;
}

.db-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.db-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.025em;
}



.db-section-subtitle {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin-top: 0.25rem;
}

/* Dashboard Grid */
.db-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.db-grid-2-1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .db-grid-2-1 {
        grid-template-columns: 1fr;
    }
}

/* Charts & Stats */
.chart-container {
    height: 300px;
    width: 100%;
    margin-top: 2rem;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 200px;
    gap: 0.5rem;
}

.bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.bar-fill {
    width: 100%;
    background: var(--primary-10);
    border-radius: var(--rounded-lg) var(--rounded-lg) 0 0;
    transition: all 0.3s ease;
    min-height: 4px;
}

.bar-fill:hover {
    background: var(--primary-20);
}

.bar-fill.active {
    background: var(--primary);
}

.bar-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--slate-400);
    text-transform: uppercase;
}

/* Circular Chart */
.circle-chart {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 12px solid var(--slate-100);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 1.5rem auto;
}



.circle-fill {
    position: absolute;
    inset: -12px;
    border: 12px solid var(--primary);
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
    transform: rotate(45deg);
}

.circle-value {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary);
}



/* Activity Table */
.db-table-container {
    background: #fff;
    border-radius: var(--rounded-2xl);
    border: 1px solid var(--primary-10);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}



.db-table {
    width: 100%;
    border-collapse: collapse;
}

.db-table th {
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-500);
    border-bottom: 1px solid var(--primary-10);
}



.db-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--primary-05);
}



.db-table tr:last-child td {
    border-bottom: none;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-icon.received {
    background: #ecfdf5;
    color: #059669;
}

.activity-icon.pending {
    background: #fffbeb;
    color: #d97706;
}

.activity-icon.dispute {
    background: #fef2f2;
    color: #dc2626;
}

.activity-icon.payout {
    background: var(--slate-100);
    color: var(--slate-600);
}

.activity-title {
    font-weight: 700;
    color: var(--slate-900);
    font-size: 0.9375rem;
}



.activity-desc {
    font-size: 0.75rem;
    color: var(--slate-500);
}

.status-badge {
    padding: 0.25rem 0.625rem;
    border-radius: var(--rounded-full);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.status-badge.completed {
    background: #ecfdf5;
    color: #065f46;
}

.status-badge.pending {
    background: #fffbeb;
    color: #92400e;
}

.status-badge.review {
    background: #fef2f2;
    color: #991b1b;
    background: var(--slate-100);
    border-radius: var(--rounded-lg);
    margin-right: 1rem;
    z-index: 100;
}



@media (max-width: 1024px) {
    .db-menu-toggle {
        display: flex;
    }

    .db-sidebar {
        position: fixed;
        left: -280px;
        width: 280px;
        box-shadow: var(--shadow-2xl);
    }

    .db-sidebar.open {
        left: 0;
    }

    .db-logo-text,
    .db-nav-link span,
    .btn-new-escrow span,
    .db-user-info {
        display: block !important;
    }

    .db-header {
        padding: 0 1rem;
    }

    .db-header-search {
        display: none;
        /* Hide search on mobile to save space */
    }

    .db-content {
        padding: 1rem;
    }
}

/* Sidebar Overlay */
.db-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 45;
}

.db-sidebar-overlay.active {
    display: block;
}

/* Grid adjustments for mobile */
@media (max-width: 768px) {
    .db-grid {
        grid-template-columns: 1fr;
    }

    .db-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .db-user-name {
        display: none;
    }
}

