* {
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background: #050B18;
    color: #E8F0FF;
    margin: 0;
}

/* ── NAVBAR ── */
.site-nav {
    /*    position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;*/
    /*background: rgba(5,11,24,0.85);*/
    position: relative;
    z-index: 9;
    backdrop-filter: blur(14px);
    /*border-bottom: 1px solid rgba(255,255,255,0.07);*/
    padding: 0;
    background: rgba(240, 245, 255, 0.92);
    border-bottom-color: #D4E0F5;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg,#1E6FFF,#00C8FF);
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-brand-icon i {
    font-size: 18px;
    color: #fff;
}
.nav-brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.nav-brand-sub {
    font-size: 9.5px;
    color: #6B85C5;
    font-weight: 400;
    letter-spacing: 0.05em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: end;
}
.nav-link-item {
    color: #1a4489;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 7px;
    transition: all .15s;
}
.nav-link-item:hover {
    color: #1a4489;
    background: rgba(255,255,255,0.07);
}
.nav-cta {
    background: #1E6FFF;
    color: #fff !important;
    border-radius: 8px;
    padding: 8px 18px !important;
    font-weight: 600 !important;
    transition: background .15s !important;
}
.nav-cta:hover {
    background: #1558D0 !important;
}

/* ── HERO ── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Animated canvas bg */
#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Gradient orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30,111,255,0.25) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}
.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,200,255,0.18) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
}
.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30,111,255,0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.hero-content {
    position: relative;
    z-index: 2;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30,111,255,0.12);
    border: 1px solid rgba(30,111,255,0.35);
    border-radius: 20px;
    padding: 6px 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #60A5FA;
    margin-bottom: 28px;
}
.hero-tag .tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00C8FF;
    animation: tagPulse 2s ease-in-out infinite;
}
@keyframes tagPulse {
    0%,100%{
        opacity:1;
        transform:scale(1)
    }
    50%{
        opacity:.4;
        transform:scale(.7)
    }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 20px;
}
.hero-title .accent {
    background: linear-gradient(90deg, #1E6FFF, #00C8FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    color: #8FA8D8;
    line-height: 1.65;
    max-width: 520px;
    margin-bottom: 36px;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1E6FFF;
    color: #fff;
    border: none;
    border-radius: 11px;
    padding: 14px 26px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .15s;
    text-decoration: none;
}
.btn-primary-hero:hover {
    background: #1558D0;
    transform: translateY(-1px);
    color: #fff;
}
.btn-ghost-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #C8D8F8;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 11px;
    padding: 14px 26px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s;
    text-decoration: none;
}
.btn-ghost-hero:hover {
    border-color: rgba(30,111,255,0.6);
    color: #fff;
    background: rgba(30,111,255,0.08);
}

/* Hero stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 52px;
    flex-wrap: wrap;
}
.h-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.h-stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.h-stat-lbl {
    font-size: 11.5px;
    color: #6B85C5;
    font-weight: 500;
}
.stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
}

/* Hero code preview */
.hero-code-card {
    background: rgba(12,20,40,0.9);
    border: 1px solid rgba(30,111,255,0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 64px -24px rgba(0,0,0,0.6), 0 0 0 1px rgba(30,111,255,0.1);
}
.code-bar {
    background: rgba(30,111,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.code-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #4B6CB7;
    margin-left: 6px;
}
.code-body {
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    line-height: 1.7;
}
.c-key {
    color: #60A5FA;
}
.c-str {
    color: #34D399;
}
.c-num {
    color: #FBBF24;
}
.c-pun {
    color: #6B85C5;
}
.c-com {
    color: #4B6CB7;
}
.section-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1E6FFF;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.section-eyebrow::before {
    content: '//';
    color: #00C8FF;
}
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 14px;
}
.section-sub {
    font-size: 16px;
    color: #7A96C8;
    line-height: 1.65;
    max-width: 540px;
    font-weight: 400;
}
.services-section {
    padding: 100px 0;
    background: #070E1C;
}
.api-card {
    background: #0C1628;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: border-color .2s, transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.api-card:hover {
    border-color: rgba(30,111,255,0.4);
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -16px rgba(30,111,255,0.2);
}

.api-card-head {
    padding: 1.75rem 1.75rem 0;
}
.api-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.api-icon i {
    font-size: 26px;
}
.api-icon.flight {
    background: rgba(30,111,255,0.15);
}
.api-icon.flight i {
    color: #60A5FA;
}
.api-icon.bus {
    background: rgba(16,185,129,0.12);
}
.api-icon.bus i {
    color: #34D399;
}
.api-icon.hotel {
    background: rgba(251,191,36,0.12);
}
.api-icon.hotel i {
    color: #FBBF24;
}

.api-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.api-desc {
    font-size: 14px;
    color: #6B85C5;
    line-height: 1.65;
    margin-bottom: 20px;
}

/* Feature list */
.api-features {
    padding: 0 1.75rem;
    flex: 1;
}
.api-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 13.5px;
    color: #C0CFEC;
}
.api-feat:last-child {
    border-bottom: none;
}
.api-feat-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}
.flight .api-feat-dot, .api-card:nth-child(1) .api-feat-dot {
    background: #1E6FFF;
}

/* Per-card accent colors for feature dots */
.dot-blue {
    background: #1E6FFF;
}
.dot-green {
    background: #34D399;
}
.dot-amber {
    background: #FBBF24;
}

/* Card footer endpoint badge */
.api-card-foot {
    padding: 1.25rem 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 20px;
}
.endpoint-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(30,111,255,0.08);
    border: 1px solid rgba(30,111,255,0.18);
    border-radius: 7px;
    padding: 6px 12px;
}
.method-pill {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    background: #1E6FFF;
    color: #fff;
    border-radius: 4px;
    padding: 2px 7px;
}
.method-pill.get {
    background: #059669;
}
.method-pill.post {
    background: #1E6FFF;
}
.endpoint-path {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    color: #7A96C8;
}

/* ── HOW IT WORKS ── */
.how-section {
    padding: 100px 0;
    background: #050B18;
}
.step-line {
    position: relative;
}
.step-line::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 28px);
    right: -50%;
    height: 1px;
    background: linear-gradient(90deg, rgba(30,111,255,0.4), transparent);
}
.step-line:last-child::before {
    display: none;
}

.step-card {
    text-align: center;
    position: relative;
}
.step-num {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin: 0 auto 18px;
    background: rgba(30,111,255,0.1);
    border: 1px solid rgba(30,111,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #1E6FFF;
}
.step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.step-desc {
    font-size: 13.5px;
    color: #6B85C5;
    line-height: 1.6;
}

/* ── CTA BAND ── */
.cta-section {
    padding: 80px 0;
    background: #070E1C;
}
.cta-card {
    background: linear-gradient(135deg, #0D2060 0%, #0A1A4A 50%, #071338 100%);
    border: 1px solid rgba(30,111,255,0.25);
    border-radius: 24px;
    padding: 60px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(30,111,255,0.2) 0%, transparent 70%);
    pointer-events: none;
}
.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px,4vw,48px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
}
.cta-sub {
    font-size: 16px;
    color: #7A96C8;
    margin-bottom: 32px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.cta-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.cta-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: #6B85C5;
}
.cta-badge i {
    font-size: 16px;
    color: #1E6FFF;
}

/* ── FOOTER ── */
.site-footer {
    background: #E8F0FF;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0 0;
}
.footer-brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.footer-brand-desc {
    font-size: 13px;
    color: #4B6CB7;
    line-height: 1.6;
    max-width: 240px;
}
.footer-col-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4B6CB7;
    margin-bottom: 16px;
}
.footer-link {
    display: block;
    font-size: 13.5px;
    color: #6B85C5;
    text-decoration: none;
    margin-bottom: 9px;
    transition: color .14s;
}
.footer-link:hover {
    color: #A8BFEC;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy {
    font-size: 12.5px;
    color: #384D72;
}
.footer-legal {
    display: flex;
    gap: 20px;
}
.footer-legal a {
    font-size: 12.5px;
    color: #384D72;
    text-decoration: none;
    transition: color .14s;
}
.footer-legal a:hover {
    color: #6B85C5;
}

/* Responsive nav */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-code-card {
        display: none;
    }
    .step-line::before {
        display: none;
    }
    .cta-card {
        padding: 40px 24px;
    }
}

/* ══════════════════════════════════
   THEME SWITCHER TOGGLE
══════════════════════════════════ */
.theme-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 5px 5px 5px 12px;
    cursor: pointer;
    transition: all .2s;
    user-select: none;
    font-size: 12px;
    font-weight: 600;
    color: #1a4489;
}
.theme-toggle:hover {
    background: rgba(255,255,255,0.11);
    border-color: rgba(30,111,255,0.4);
    color: #1a4489;
}
.theme-toggle-label {
    white-space: nowrap;
    transition: all .2s;
}
.theme-toggle-pill {
    width: 36px;
    height: 22px;
    border-radius: 11px;
    background: #1E3A6E;
    border: 1px solid rgba(30,111,255,0.3);
    position: relative;
    transition: all .25s;
    flex-shrink: 0;
}
.theme-toggle-pill::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #6B85C5;
    transition: all .25s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.theme-toggle-icon {
    font-size: 14px;
    transition: all .2s;
}

/* ══════════════════════════════════
   LIGHT THEME OVERRIDES
   Applied when body has class="light"
══════════════════════════════════ */
body.light {
    background: #F0F5FF;
    color: #0F172A;
}

/* Nav light */
body.light .site-nav {
    background: rgba(240,245,255,0.92);
    border-bottom-color: #D4E0F5;
}
body.light .nav-brand-name {
    color: #0F172A;
}
body.light .nav-brand-sub {
    color: #5A78B0;
}
body.light .nav-link-item {
    color: #3D5A8A;
}
body.light .nav-link-item:hover {
    background: rgba(30,111,255,0.07);
    color: #0F172A;
}
body.light .theme-toggle {
    background: rgba(0,0,0,0.05);
    border-color: #C8D8F0;
    color: #3D5A8A;
}
body.light .theme-toggle:hover {
    background: rgba(30,111,255,0.07);
    color: #0F172A;
}
body.light .theme-toggle-pill {
    background: #BFDBFE;
    border-color: #93C5FD;
}
body.light .theme-toggle-pill::after {
    background: #1E6FFF;
    transform: translateX(14px);
}
body.light .theme-toggle-label {
    color: #3D5A8A;
}

/* Hero light */
body.light .hero-section {
    background: linear-gradient(160deg, #EEF4FF 0%, #F8FAFF 60%, #F0F7FF 100%);
}
body.light .hero-orb-1 {
    background: radial-gradient(circle, rgba(30,111,255,0.12) 0%, transparent 70%);
}
body.light .hero-orb-2 {
    background: radial-gradient(circle, rgba(0,200,255,0.08) 0%, transparent 70%);
}
body.light .hero-orb-3 {
    background: radial-gradient(circle, rgba(30,111,255,0.06) 0%, transparent 70%);
}
body.light .hero-tag {
    background: rgba(30,111,255,0.08);
    border-color: rgba(30,111,255,0.25);
    color: #1D4ED8;
}
body.light .hero-title {
    color: #0F172A;
}
body.light .hero-sub {
    color: #4A6490;
}
body.light .h-stat-num {
    color: #0F172A;
}
body.light .h-stat-lbl {
    color: #5A78B0;
}
body.light .stat-sep {
    background: #C8D8F0;
}
body.light .btn-ghost-hero {
    color: #1E40AF;
    border-color: rgba(30,111,255,0.3);
}
body.light .btn-ghost-hero:hover {
    background: rgba(30,111,255,0.07);
    color: #0F172A;
}

/* Code card light */
body.light .hero-code-card {
    background: #FFFFFF;
    border-color: rgba(30,111,255,0.15);
    box-shadow: 0 20px 48px -16px rgba(30,111,255,0.12);
}
body.light .code-bar {
    background: #F0F5FF;
    border-bottom-color: #E0EBFF;
}
body.light .code-title {
    color: #6B85C5;
}
body.light .c-pun {
    color: #5A78B0;
}
body.light .c-com {
    color: #9BAEDB;
}

/* Services section light */
body.light .services-section {
    background: #F8FAFF;
}
body.light .section-title {
    color: #0F172A;
}
body.light .section-sub {
    color: #4A6490;
}
body.light .api-card {
    background: #FFFFFF;
    border-color: #DDE8F8;
}
body.light .api-card:hover {
    border-color: rgba(30,111,255,0.35);
    box-shadow: 0 20px 40px -16px rgba(30,111,255,0.12);
}
body.light .api-name {
    color: #0F172A;
}
body.light .api-desc {
    color: #5A78B0;
}
body.light .api-feat {
    color: #2D4A7A;
    border-bottom-color: #EEF4FF;
}
body.light .api-card-foot {
    border-top-color: #EEF4FF;
}
body.light .endpoint-badge {
    background: rgba(30,111,255,0.06);
    border-color: rgba(30,111,255,0.15);
}
body.light .endpoint-path {
    color: #5A78B0;
}

/* How it works light */
body.light .how-section {
    background: #F0F5FF;
}
body.light .step-title {
    color: #0F172A;
}
body.light .step-desc {
    color: #4A6490;
}
body.light .step-num {
    background: rgba(30,111,255,0.08);
    border-color: rgba(30,111,255,0.2);
}
body.light .step-line::before {
    background: linear-gradient(90deg, rgba(30,111,255,0.25), transparent);
}

/* CTA light */
body.light .cta-section {
    background: #F8FAFF;
}
body.light .cta-card {
    background: linear-gradient(135deg, #EEF4FF 0%, #E4EEFF 50%, #EBF2FF 100%);
    border-color: rgba(30,111,255,0.18);
}
body.light .cta-title {
    color: #0F172A;
}
body.light .cta-sub {
    color: #4A6490;
}
body.light .cta-badge {
    color: #4A6490;
}

/* Footer light */
body.light .site-footer {
    background: #E8F0FF;
    border-top-color: #C8D8F0;
}
body.light .footer-brand-name {
    color: #0F172A;
}
body.light .footer-brand-desc {
    color: #5A78B0;
}
body.light .footer-col-title {
    color: #5A78B0;
}
body.light .footer-link {
    color: #3D5A8A;
}
body.light .footer-link:hover {
    color: #0F172A;
}
body.light .footer-bottom {
    border-top-color: #C8D8F0;
}
body.light .footer-copy {
    color: #7A96C8;
}
body.light .footer-legal a {
    color: #7A96C8;
}
body.light .footer-legal a:hover {
    color: #3D5A8A;
}

/* Smooth transition on theme switch */
body, body * {
    transition: background-color .25s ease, color .2s ease, border-color .2s ease !important;
}
/* But don't animate transforms/shadows (breaks hover cards) */
.api-card, .btn-primary-hero, .btn-ghost-hero {
    transition: background-color .25s, color .2s, border-color .2s, transform .2s, box-shadow .2s !important;
}
@media (max-width:992px) {
    .navbar-collapse {
        padding:10px 0px;
    }
    .navbar-nav {
        gap:10px;
    }
    .navbar-brand img {
        width:120px!important;
    }
}
.fs-8  {
    font-size: 8px !important;
}
.fs-9  {
    font-size: 9px !important;
}
.fs-10 {
    font-size: 10px !important;
}
.fs-11 {
    font-size: 11px !important;
}
.fs-12 {
    font-size: 12px !important;
}
.fs-13 {
    font-size: 13px !important;
}
.fs-14 {
    font-size: 14px !important;
}
.fs-15 {
    font-size: 15px !important;
}
.fs-16 {
    font-size: 16px !important;
}
.fs-17 {
    font-size: 17px !important;
}
.fs-18 {
    font-size: 18px !important;
}
.fs-19 {
    font-size: 19px !important;
}
.fs-20 {
    font-size: 20px !important;
}
.fs-21 {
    font-size: 21px !important;
}
.fs-22 {
    font-size: 22px !important;
}
.fs-23 {
    font-size: 23px !important;
}
.fs-24 {
    font-size: 24px !important;
}
.fs-25 {
    font-size: 25px !important;
}
.fs-26 {
    font-size: 26px !important;
}
.fs-27 {
    font-size: 27px !important;
}
.fs-28 {
    font-size: 28px !important;
}
.fs-29 {
    font-size: 29px !important;
}
.fs-30 {
    font-size: 30px !important;
}
.content {
    background:#F0F5FF
}
.page-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 14px;
}
.filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.page-title-block .pt-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1E6FFF;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.page-title-block .pt-eyebrow::before {
    content: '//';
    color: #00C8FF;
}
.page-title-block h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.02em;
}
.date-range-input {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 11px;
    padding: 11px 16px;
    min-width: 240px;
}
.btn-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1D4ED8;
    color: #fff;
    border: none;
    border-radius: 11px;
    padding: 11px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s;
}
.date-range-input input {
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: #0F172A;
    width: 100%;
    background: transparent;
}
.date-range-input i {
    font-size: 16px;
    color: #1E6FFF;
}
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}
.stat-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    transition: border-color .15s, transform .15s, box-shadow .15s;
}
.stat-card-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stat-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #64748B;
}
.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 3px;
}
.stat-trend.flat {
    color: #94A3B8;
}
.stat-trend {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    font-weight: 600;
    margin-top: 2px;
}
.stat-card:hover {
    border-color: #BFDBFE;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -16px rgba(30,111,255,0.16);
}
@media (min-width:992px) {
    .offcanvas-start {
        position: initial;
        transform: translate(0%)!important;
        visibility: visible;
    }
}
.sidebar {
    width: 100%;
    flex-shrink: 0;
    background: #0A1426;
    color: #fff;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}
.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 24px 22px 22px;
}
.sidebar-brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg,#1E6FFF,#00C8FF);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sidebar-brand-icon i {
    font-size: 17px;
    color: #fff;
}
.sidebar-brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.sidebar-brand-sub {
    font-size: 10px;
    color: #4B6CB7;
    font-weight: 500;
    letter-spacing: 0.04em;
}
.sidebar-section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2D4577;
    padding: 18px 22px 8px;
}
.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 0 12px;
    gap: 2px;
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 9px;
    color: #9BAEDB;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all .15s;
    position: relative;
}
.sidebar-link i {
    font-size: 18px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.sidebar-link:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}
.sidebar-link.active {
    background: rgba(30,111,255,0.15);
    color: #fff;
}
.sidebar-link.active::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: #1E6FFF;
}
.sidebar-link.active i {
    color: #60A5FA;
}
.sidebar-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 14px 22px;
}
.sidebar-bottom {
    margin-top: auto;
    padding: 12px;
}
.sidebar-link.logout {
    color: #F87171;
}
.sidebar-link.logout:hover {
    background: rgba(248,113,113,0.1);
    color: #F87171;
}
.sidebar-link.logout i {
    color: #F87171;
}