
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    / font-family: 'Syne';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/syne-v24-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Syne';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/syne-v24-latin-500.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Syne';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/syne-v24-latin-600.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Syne';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/syne-v24-latin-700.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Syne';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/syne-v24-latin-800.woff2') format('woff2');
}



:root {
    --background: #fafafa;
    --background--secondary: #eff0f2;
    --background--beige: #f7f2ed;
    --foreground: #16205b;
    --secondary: #16205b;
    --tertiary: #141b33;
    --muted--tertiary: #242b41;
    --hightlighted--tertiary: #30374c;
    --primary: #f05a28;
    --muted: #f3f4f6;
    --muted-foreground: #6b7280;
    --border: #e5e7eb;
    --white: #ffffff;
    --card: #ffffff;
    --shadow: 0 20px 50px rgba(15, 23, 42, .10);
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-display: 'Syne', system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--foreground);
    background: var(--background);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

p {
    margin: 0;
}

/* ==========================================================================
   Typography & Universal Heading Standard
   ========================================================================== */

h1, h2, h3, h4 {
    margin: 0;
    color: var(--secondary);
    font-family: var(--font-display);
    letter-spacing: 0;
}

h1 {
    font-size: clamp(20px, 5vw, 50px);
}

h2 {
    font-size: clamp(15px, 5vw, 27px);
}

h1:focus {
    outline: none;
}

.h1, .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(20px, 5vw, 40px);
    line-height: 1.05;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 24px;
}

    .h1 span,
    .hero h1 span,
    .orange-text,
    .mission h2 span,
    .careers h2 span {
        color: var(--primary);
    }

.hero h2 {
    color: var(--primary);
}

/* ==========================================================================
   Layout Containers & Utilities
   ========================================================================== */

.container {
    width: min(100% - 32px, 1200px);
    margin-inline: auto;
}

.center {
    text-align: center;
}

.narrow {
    max-width: 760px;
    margin-bottom: 64px;
}

.eyebrow,
.brief-label {
    color: var(--muted-foreground);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.brief-label {
    color: var(--primary);
}


/* ==========================================================================
   Components: Toasts, Pills & Loaders
   ========================================================================== */

#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    min-width: 200px;
    max-width: 300px;
    background-color: #1F299C;
    color: white;
    padding: 12px 20px;
    margin-top: 10px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

    .toast.show {
        opacity: 1;
        transform: translateY(0);
    }

.pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 13px;
    margin-bottom: 24px;
    border: 1px solid rgba(22, 32, 91, .10);
    border-radius: 999px;
    color: var(--secondary);
    background: rgba(22, 32, 91, .05);
    font-size: 14px;
    font-weight: 700;
    width: fit-content;
}

    .pill span,
    .systems span {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: var(--primary);
    }

    .pill.orange {
        color: var(--primary);
        border-color: rgba(240, 90, 40, .20);
        background: rgba(240, 90, 40, .10);
        text-transform: uppercase;
        font-size: 12px;
    }

    .pill.dark {
        color: rgba(255, 255, 255, .82);
        border-color: rgba(255, 255, 255, .10);
        background: rgba(255, 255, 255, .05);
        text-transform: uppercase;
        font-size: 12px;
    }

.bottom-banner-pill {
    margin-top: 40px;
    padding: 12px 36px;
    background-color: #ffffff;
    border: 1.5px solid #ffedd5;
    border-radius: 50px;
    color: #f95721;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid #514b82;
    animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 9999px;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn-primary {
    color: white;
    background: var(--primary);
    box-shadow: 0 10px 24px rgba(240, 90, 40, .22);
}

    .btn-primary:hover {
        background: #df4d20;
    }

.btn-outline {
    color: var(--secondary);
    background: white;
    border-color: var(--border);
}

.btn-lg {
    min-height: 56px;
    padding-inline: 32px;
    font-size: 16px;
}

.btn-pill {
    border-radius: 999px;
    padding-inline: 24px;
}

.btn-block {
    width: 100%;
    display: flex;
}

.btn-demo-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

    .btn-demo-action i {
        font-size: 12px;
    }

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    padding: 18px 0;
    background: #16205b;
    backdrop-filter: blur(18px);
    box-shadow: 0 4px 18px rgba(15, 23, 42, .04);
    max-width: 100vw;
}

main {
    max-width: 100vw;
}

footer {
    max-width: 100vw;
}

.nav-shell,
.nav-links,
.nav-actions,
.button-row,
.proof-row {
    display: flex;
    align-items: center;
}

.nav-shell {
    justify-content: space-between;
    gap: 24px;
}

.brand-panel {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 14px;
    background: var(--secondary);
}

    .brand-panel img {
        height: 40px;
        width: auto;
    }

.nav-links {
    gap: 32px;
}

    .nav-links a,
    .login {
        color: white;
        font-size: 14px;
        font-weight: 600;
        transition: color .2s ease;
    }

        .nav-links a:hover,
        .login:hover {
            color: var(--primary);
        }

.login-link {
    color: var(--primary) !important;
    font-size: 14px;
    font-weight: 600;
}

.nav-actions {
    gap: 18px;
}

.nav-dropdown-actions,
.nav-dropdown-menu {
    display: none;
}

.nav-link-btn {
    background: none;
    border: none;
    color: white;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    transition: color 0.2s ease;
}

    .nav-link-btn:hover,
    .nav-dropdown-wrapper.open .nav-link-btn {
        color: var(--primary);
    }

.dropdown-arrow {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.nav-dropdown-wrapper.open .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-wrapper {
    position: relative;
}

/* Mega Menu Popup */
.mega-menu {
    position: absolute;
    top: calc(100% + 24px);
    left: 50%;
    transform: translateX(-50%);
    width: 580px;
    background: var(--card);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    z-index: 100;
}

.nav-dropdown-wrapper.open .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.mega-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    font-family: var(--font-display);
}

.all-modules-badge {
    font-size: 11px;
    font-weight: 800;
    color: var(--muted-foreground);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

    .all-modules-badge:hover {
        color: var(--primary);
        border-color: var(--primary);
    }

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
    color: var(--secondary) !important;
}

    .mega-menu-item:hover {
        background: var(--muted);
    }

    .mega-menu-item.active {
        background: rgba(240, 90, 40, 0.10);
        color: var(--primary);
    }

.menu-icon-box {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.icon-blue {
    background: #e0f2fe;
    color: #0284c7;
}

.icon-purple {
    background: #f3e8ff;
    color: #9333ea;
}

.icon-orange {
    background: rgba(240, 90, 40, 0.12);
    color: var(--primary);
}

.icon-green {
    background: #ecfdf5;
    color: #10b981;
}


/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 0vh;
    display: flex;
    align-items: center;
    padding: 40px 0 10px;
    overflow: hidden;
    flex-direction: column;
}

.hero-grid,
.split-grid,
.founder-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 48px;
}

.glow {
    position: absolute;
    z-index: 0;
    border-radius: 999px;
    filter: blur(120px);
    opacity: .65;
    pointer-events: none;
}

.glow-one {
    top: -16%;
    right: -20%;
    width: 70%;
    height: 70%;
    background: rgba(240, 90, 40, .09);
}

.glow-two {
    bottom: -18%;
    left: -18%;
    width: 60%;
    height: 60%;
    background: rgba(22, 32, 91, .08);
}

.hero-copy,
.hero-visual {
    position: relative;
    z-index: 1;
    min-width: 0;
}

p {
    line-height: 1.65;
}

.hero-copy p {
    max-width: 576px;
    margin-bottom: 32px;
}

.button-row {
    gap: 16px;
    flex-wrap: wrap;
}

.proof-row {
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
    color: var(--muted-foreground);
    font-size: 14px;
    font-weight: 700;
}

    .proof-row b {
        color: var(--primary);
    }

.hero-visual {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-frame {
    position: relative;
    width: 100%;
    height: 540px;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, .65);
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
}

    .dashboard-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

.phone-frame {
    position: absolute;
    left: -28px;
    bottom: -28px;
    width: 248px;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, .65);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
}

/* ==========================================================================
   Trust & Stats Sections
   ========================================================================== */

.trust {
    padding: 80px 0;
    border-block: 1px solid var(--border);
    background: var(--background);
}

    .trust .eyebrow {
        margin-bottom: 48px;
    }

.stats-grid,
.card-grid,
.footer-grid {
    display: grid;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    max-width: 920px;
    margin: auto;
}

.stat {
    text-align: center;
    flex: 1 1 180px;
    max-width: 220px;
}

    .stat strong {
        display: block;
        margin-bottom: 8px;
        color: var(--secondary);
        font-family: var(--font-display);
        font-size: clamp(36px, 5vw, 54px);
        line-height: 1;
    }

    .stat span {
        color: var(--muted-foreground);
        font-size: 14px;
        font-weight: 700;
    }

.trust-section {
    background: var(--tertiary);
    padding: 60px 0;
    width: 100%;
}

.trust-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.trust-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 440px;
}

.trust-eyebrow {
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-title {
    color: #ffffff !important;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.15;
    margin: 0;
    font-family: var(--font-display);
}

.trust-stats-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
}

.trust-stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    min-width: 180px;
}

    .trust-stat-item:last-child {
        border-right: none;
    }

.trust-stat-value {
    color: var(--primary);
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    font-family: var(--font-display);
}

.trust-stat-label {
    color: var(--muted-foreground);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* ==========================================================================
   Product, Features & Intelligence
   ========================================================================== */

.product,
.features,
.intelligence,
.founder,
.contact-us {
    padding: 30px 0;
}



.check-list {
    display: grid;
    gap: 18px;
    padding: 0;
    margin: 30px 0 0;
    list-style: none;
}

    .check-list li {
        position: relative;
        padding-left: 36px;
        color: var(--secondary);
        font-weight: 700;
    }

        .check-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 900;
        }

.features {
    background: rgba(243, 244, 246, .58);
}

.card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

    .card-grid > a {
        display: flex;
        flex-direction: column;
        height: 100%;
        text-decoration: none; /* Keeps links styled cleanly */
        color: inherit;
    }

.card-grid-2wide {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
}

.feature-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--card);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.feature-card-narrow {
    padding: 15px !important;
    background: var(--hightlighted--tertiary);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(240, 90, 40, .28);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

.icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(240, 90, 40, .10);
    font-weight: 900;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 21px;
}

.feature-card p,
.dark-card p {
    color: var(--muted-foreground);
    line-height: 1.65;
}

.intelligence {
    position: relative;
    overflow: hidden;
}

    .intelligence::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 760px;
        height: 760px;
        transform: translate(-50%, -50%);
        border-radius: 999px;
        background: radial-gradient(circle, rgba(240, 90, 40, .07), transparent 65%);
        pointer-events: none;
    }

    .intelligence .container {
        position: relative;
    }

.three {
    grid-template-columns: repeat(3, 1fr);
}

.clean {
    background: var(--background);
}

.briefing {
    display: flex;
    gap: 24px;
    max-width: 880px;
    margin: 64px auto 0;
    padding: 38px;
    border-radius: 22px;
    color: white;
    background: var(--tertiary);
    overflow: hidden;
}

.brief-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary);
    font-weight: 900;
}

.briefing p {
    margin: 8px 0 14px;
    color: white;
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.35;
}

.briefing span {
    color: rgba(255, 255, 255, .62);
}

/* ==========================================================================
   Dark Bands, Mission & Careers
   ========================================================================== */

.dark-band {
    position: relative;
    overflow: hidden;
    color: white;
    background: var(--secondary);
}

.pattern {
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 40px 40px;
}

.mission {
    padding: 128px 0;
}

.mission-inner {
    position: relative;
    max-width: 940px;
}

.mission h2,
.careers h2 {
    color: white;
    font-size: clamp(36px, 4.8vw, 60px);
    line-height: 1.12;
    font-weight: 700;
}

.mission p {
    max-width: 760px;
    margin: 32px auto 44px;
    color: rgba(255, 255, 255, .78);
    font-size: 22px;
    line-height: 1.6;
}

.founder-grid {
    grid-template-columns: 2fr 3fr;
    gap: 80px;
}

.founder-image {
    position: relative;
}

    .founder-image::before {
        content: "";
        position: absolute;
        inset: -12px;
        z-index: -1;
        border-radius: 24px;
        background: linear-gradient(135deg, rgba(240, 90, 40, .20), rgba(22, 32, 91, .20));
        filter: blur(24px);
    }

    .founder-image img {
        width: 100%;
        aspect-ratio: 3 / 4;
        object-fit: cover;
        border: 1px solid var(--border);
        border-radius: 22px;
        box-shadow: var(--shadow);
    }

.founder-badge {
    position: absolute;
    left: 24px;
    bottom: -18px;
    display: grid;
    gap: 3px;
    padding: 14px 20px;
    color: white;
    border-radius: 14px;
    background: var(--secondary);
    box-shadow: var(--shadow);
}

    .founder-badge span {
        color: rgba(255, 255, 255, .62);
        font-size: 12px;
    }

.quote-mark {
    margin: 16px 0;
    color: rgba(240, 90, 40, .28);
    font-family: Georgia, serif;
    font-size: 70px;
    line-height: .7;
}

blockquote {
    margin: 0;
    color: var(--secondary);
    font-family: var(--font-display);
    font-size: clamp(26px, 3.6vw, 40px);
    line-height: 1.25;
    font-weight: 500;
}

.founder-copy > p {
    margin-top: 32px;
    color: var(--muted-foreground);
    font-size: 18px;
    line-height: 1.75;
}

.signature {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 40px;
}

    .signature > span {
        flex: 1;
        height: 1px;
        background: var(--border);
    }

    .signature strong,
    .signature small {
        display: block;
    }

    .signature small {
        color: var(--muted-foreground);
    }

.careers {
    padding: 128px 0;
}

    .careers .container {
        position: relative;
    }

.careers-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 72px;
}

    .careers-head p {
        color: rgba(255, 255, 255, .72);
        font-size: 19px;
        line-height: 1.7;
    }

    .careers-head .muted-light {
        margin-top: 22px;
        color: rgba(255, 255, 255, .50);
    }

.dark-card {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 20px;
    background: rgba(255, 255, 255, .035);
}

    .dark-card h3 {
        margin-bottom: 12px;
        color: white;
        font-size: 21px;
    }

    .dark-card p {
        color: rgba(255, 255, 255, .62);
    }

.open-application {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 64px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .05), transparent);
}

    .open-application h3 {
        max-width: 650px;
        margin-top: 8px;
        color: white;
        font-size: 30px;
        line-height: 1.2;
    }

/* ==========================================================================
   Contact Form & Panel
   ========================================================================== */

.contact-us {
    position: relative;
    overflow: hidden;
}

    .contact-us > img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: .28;
    }

    .contact-us::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, var(--background), rgba(250, 250, 250, .84), rgba(250, 250, 250, .25));
    }

    .contact-us .container {
        position: relative;
        z-index: 1;
    }

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: stretch;
    max-width: 1120px;
    margin: auto;
    padding: clamp(32px, 7vw, 64px);
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--card);
    box-shadow: var(--shadow);
}

.contact-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

    .contact-copy h2 {
        margin-bottom: 22px;
        font-size: clamp(34px, 5vw, 56px);
        line-height: 1.05;
    }

    .contact-copy > p {
        max-width: 520px;
        color: var(--muted-foreground);
        font-size: 18px;
        line-height: 1.7;
    }

.contact-methods {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

    .contact-methods a {
        display: grid;
        gap: 5px;
        padding: 18px 20px;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: rgba(243, 244, 246, .62);
        transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

        .contact-methods a:hover {
            transform: translateY(-2px);
            border-color: rgba(240, 90, 40, .28);
            background: white;
        }

    .contact-methods strong {
        color: var(--secondary);
        font-family: var(--font-display);
        font-size: 18px;
    }

    .contact-methods span {
        color: var(--muted-foreground);
        font-size: 14px;
    }

.contact-form {
    display: grid;
    gap: 18px;
    padding: clamp(24px, 4vw, 34px);
    border: 1px solid rgba(229, 231, 235, .82);
    border-radius: 22px;
    background: var(--white);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    min-width: 0;
}

    .contact-form label span {
        color: var(--secondary);
        font-size: 13px;
        font-weight: 800;
    }

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--background--secondary);
    border-radius: 12px;
    color: var(--secondary);
    background: var(--muted);
    font: inherit;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input,
.contact-form select {
    height: 50px;
    padding: 0 15px;
}

.contact-form textarea {
    min-height: 138px;
    resize: vertical;
    padding: 14px 15px;
}

    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
        border-color: rgba(240, 90, 40, .55);
        box-shadow: 0 0 0 4px rgba(240, 90, 40, .10);
    }

.contact-form button {
    width: 100%;
}

.form-note {
    color: var(--muted-foreground);
    font-size: 13px;
    line-height: 1.55;
}

/* ==========================================================================
   Footer & Social Links
   ========================================================================== */

.footer {
    padding: 80px 0 40px;
    background: #141b33;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 40px;
    margin-top: 40px;
    margin-bottom: 64px;
}

.footer-brand p {
    max-width: 410px;
    margin: 24px 0;
    line-height: 1.9;
}

.systems {
    display: flex;
    align-items: center;
    gap: 9px;
    color: white;
    font-size: 14px;
}

    .systems span {
        background: #22c55e;
    }

.footer h4 {
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--primary) !important;
}

.footer ul {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer li a {
    color: white;
    font-size: 14px;
}

    .footer li a:hover {
        color: var(--primary);
    }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--muted-foreground);
    font-size: 14px;
}

.footer-border-top {
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .socials a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: transparent;
        color: rgba(255, 255, 255, 0.7);
        font-size: 13px;
        transition: all 0.2s ease;
    }

        .socials a:hover {
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.05);
        }

.footer-company-tag {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
}

/* ==========================================================================
   Blazor Error Handling
   ========================================================================== */

#blazor-error-ui {
    display: none;
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1000;
    padding: .8rem 1.25rem;
    color: white;
    background: #b32121;
}

    #blazor-error-ui .reload {
        color: white;
        font-weight: 800;
        margin-left: 1rem;
    }

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 1rem;
    }

/* ==========================================================================
   Mobile Drawer Extensions
   ========================================================================== */

.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

.mobile-drawer {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #fafafa;
    z-index: 200;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

    .mobile-drawer.active {
        transform: translateX(0);
    }

.mobile-drawer-header {
    background: var(--secondary);
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-drawer-body {
    padding: 24px 20px;
    overflow-y: auto;
    flex: 1;
}

.mobile-link {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    padding: 12px 0;
}

    .mobile-link.highlight {
        color: var(--secondary);
    }

.mobile-accordion-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    background: none;
    border: none;
    padding: 12px 0;
    cursor: pointer;
}

.mobile-accordion.open .mobile-accordion-btn {
    color: var(--primary);
}

.accordion-arrow {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.mobile-accordion.open .accordion-arrow {
    transform: rotate(180deg);
}

.mobile-accordion-content {
    display: none;
    padding: 4px 0 12px 4px;
}

.mobile-accordion.open .mobile-accordion-content {
    display: block;
}

.mobile-tree-line {
    border-left: 2px solid var(--primary);
    margin-left: 4px;
    padding-left: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-sublink {
    color: var(--secondary);
    font-size: 15px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 10px;
    display: block;
}

    .mobile-sublink.active {
        background: rgba(240, 90, 40, 0.10);
        color: var(--primary);
    }

.mobile-drawer-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 16px 0;
}

.mobile-cta-box {
    margin-top: 12px;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes l20-1 {
    0% {
        clip-path: polygon(50% 50%,0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%)
    }

    12.5% {
        clip-path: polygon(50% 50%,0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%)
    }

    25% {
        clip-path: polygon(50% 50%,0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%)
    }

    50% {
        clip-path: polygon(50% 50%,0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }

    62.5% {
        clip-path: polygon(50% 50%,100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }

    75% {
        clip-path: polygon(50% 50%,100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%)
    }

    100% {
        clip-path: polygon(50% 50%,50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%)
    }
}

@keyframes l20-2 {
    0% {
        transform: scaleY(1) rotate(0deg)
    }

    49.99% {
        transform: scaleY(1) rotate(135deg)
    }

    50% {
        transform: scaleY(-1) rotate(0deg)
    }

    100% {
        transform: scaleY(-1) rotate(-135deg)
    }
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media (max-width: 960px) {
    .nav-links,
    .login,
    .nav-actions,
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .nav-dropdown-actions {
        display: block;
        color: white;
        font-size: 28px;
        cursor: pointer;
        z-index: 101;
        position: relative;
    }

    .nav-dropdown-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        background: #16205b;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transition: opacity .35s ease, visibility .35s ease;
    }

        .nav-dropdown-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .nav-dropdown-menu a {
            color: white;
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
            transition: color .2s ease;
        }

            .nav-dropdown-menu a:hover {
                color: var(--primary);
            }

    .founder-image {
        margin-left: 12%;
        margin-right: 12%;
    }

    .hero-grid,
    .split-grid,
    .founder-grid,
    .careers-head,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 126px;
    }

    .hero-visual {
        min-height: auto;
    }

    .dashboard-frame,
    .phone-frame {
        display: none;
    }

    .card-grid,
    .three,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .open-application {
        align-items: flex-start;
        flex-direction: column;
    }

    .trust-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-stats-card {
        width: 100%;
        flex-direction: column;
    }

    .trust-stat-item {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

        .trust-stat-item:last-child {
            border-bottom: none;
        }
}

@media (max-width: 640px) {
    .brand-panel {
        padding: 8px 12px;
    }

        .brand-panel img {
            height: 32px;
        }

    .nav-actions .btn {
        min-height: 38px;
        padding-inline: 13px;
    }

    .hero h1, .h1 {
        font-size: 48px;
    }

    .hero-copy p,
    .section-copy p,
    .mission p,
    .careers-head p {
        font-size: 16px;
    }

    .btn-lg {
        width: 100%;
    }

    .proof-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .stats-grid {
        gap: 28px;
    }

    .briefing {
        flex-direction: column;
        padding: 28px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-panel {
        padding: 28px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

.section-list-item {
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    gap: 16px;
}

    .section-list-item::before {
        content: "";
        display: inline-block;
        width: 28px;
        height: 28px;
        min-width: 28px;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><circle cx="16" cy="16" r="16" fill="%23f05a24"/><path d="M10 16.5 L14 20.5 L22 11.5" stroke="white" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" fill="none"/></svg>');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

.connect-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.connect-section-dark {
    background: var(--tertiary) !important;
}

.connect-section-white {
    background: #ffffff !important;
}

.connect-section-offwhite {
    background: var(--muted) !important;
}

.connect-section-beige {
    background: var(--background--beige) !important;
}

.background-muted-tertiary {
    background: var(--muted--tertiary) !important;
}

.background-primary {
    background: var(--primary) !important;
}

.background-white {
    background: var(--white) !important;
}

.text-small {
    font-size: small;
}

.text-white {
    color: var(--white) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-dark {
    color: var(--tertiary) !important;
}

.text-muted {
    color: var(--muted-foreground) !important;
}

.text-grey {
    color: #6b7280;
}


/* Container Box */
.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    border-radius: 16px;
}

/* Individual Card */
.accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: var(--muted--tertiary);
}

    .accordion-item[open] {
        border: 1px solid var(--primary);
    }

.accordion-item-staggered:nth-child(odd) {
    margin-right: 20px;
}

.accordion-item-staggered:nth-child(even) {
    margin-left: 20px;
}

/* Header/Summary styling */
.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    list-style: none; /* Removes default browser arrow */
}

    .accordion-header::-webkit-details-marker {
        display: none; /* Removes default browser arrow for WebKit */
    }

.accordion-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.badge-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: bold;
    background: var(--primary);
    color: var(--white);
}

/* Accordion Expandable Content */
.accordion-body {
    padding: 25px 20px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Chevron CSS toggle indicator */
.chevron-icon::after {
    content: "❯";
    display: inline-block;
    transform: rotate(90deg);
    transition: transform 0.2s ease;
}

details[open] .chevron-icon::after {
    transform: rotate(-90deg);
}



@media (max-width: 768px) {
    h1 {
        font-size: 2.1rem !important;
        line-height: 1.25 !important;
    }

    h2 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }

    /* Stack split-grids and card grids on mobile screens */
    .split-grid,
    .card-grid,
    .card-grid-2wide,
    .hero-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }

    .accordion-body p {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-top: 12px;
    }

    .feature-card-narrow {
        width: 100% !important;
        box-sizing: border-box;
    }
}

.accordion-toggle {
    display: none;
}

.accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: var(--muted--tertiary);
    transition: border-color 0.35s ease;
}

    /* Highlight border when active */
    .accordion-item:has(.accordion-toggle:checked) {
        border-color: var(--primary);
    }

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    width: 100%;
    user-select: none;
    margin: 0;
}

/* Pure CSS Grid transition from 0 to full height */
.accordion-collapse {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-toggle:checked ~ .accordion-collapse {
    grid-template-rows: 1fr;
}

/* Clips inner body padding and border during transitions */
.accordion-body-wrapper {
    overflow: hidden;
}

/* Chevron rotation */
.chevron-icon::after {
    content: "❯";
    display: inline-block;
    transform: rotate(90deg);
    transition: transform 0.35s ease;
}

.accordion-toggle:checked ~ .accordion-header .chevron-icon::after {
    transform: rotate(-90deg);
}

#components-reconnect-modal {
    display: none !important;
}

.hover-effect {
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease !important;
}

.hover-effect-orange:hover {
    transform: translateY(-3px) !important;
    border-color: #f05a28 !important;
    border-width: 1px !important;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .08) !important;
}


.faq-section-decor {
    position: relative;
    overflow: hidden;
}

    .faq-section-decor::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(150px circle at 2% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 100%), radial-gradient(200px circle at 98% 80%, rgba(224, 83, 40, 0.22) 0%, transparent 100%);
        pointer-events: none;
        z-index: 0;
    }


    .faq-section-decor::after {
        content: "?";
        position: absolute;
        top: 40px;
        right: 10%;
        font-size: 15rem;
        font-weight: 800;
        line-height: 1;
        color: rgba(255, 255, 255, 0.03);
        pointer-events: none;
        user-select: none;
        font-family: inherit;
    }


    .faq-section-decor > .container {
        position: relative;
        z-index: 1;
    }

[class*="glow-spotlight"] {
    position: relative;
    overflow: hidden;
}

    [class*="glow-spotlight"]::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 0;
    }

    [class*="glow-spotlight"] > * {
        position: relative;
        z-index: 1;
    }

.glow-spotlight-orange-tr::before {
    background-image: radial-gradient(200px circle at 98% 2%, rgba(224, 83, 40, 0.22) 0%, transparent 100%);
}

.glow-spotlight-orange-tl::before {
    background-image: radial-gradient(200px circle at 2% 2%, rgba(224, 83, 40, 0.22) 0%, transparent 100%);
}

.glow-spotlight-orange-br::before {
    background-image: radial-gradient(200px circle at 98% 98%, rgba(224, 83, 40, 0.22) 0%, transparent 100%);
}

.glow-spotlight-white-tl-orange-br::before {
    background-image: radial-gradient(150px circle at 2% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 100%), radial-gradient(200px circle at 98% 80%, rgba(224, 83, 40, 0.22) 0%, transparent 100%);
}

.glow-spotlight-orange-tl-white-br::before {
    background-image: radial-gradient(200px circle at 2% 20%, rgba(224, 83, 40, 0.22) 0%, transparent 100%), radial-gradient(150px circle at 98% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 100%);
}

.glow-spotlight-orange-tr-white-bl::before {
    background-image: radial-gradient(200px circle at 98% 20%, rgba(224, 83, 40, 0.22) 0%, transparent 100%), radial-gradient(150px circle at 2% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 100%);
}

.pricing-banner-layout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

@media (min-width: 768px) {
    .pricing-banner-layout {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}