@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Syne:wght@500;600;700;800&display=swap');

:root {
    --background: #fafafa;
    --foreground: #16205b;
    --secondary: #16205b;
    --primary: #f05a28;
    --muted: #f3f4f6;
    --muted-foreground: #6b7280;
    --border: #e5e7eb;
    --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%;
}

h1, h2, h3, h4 {
    margin: 0;
    color: var(--secondary);
    font-family: var(--font-display);
    letter-spacing: 0;
}

    h1:focus {
        outline: none;
    }

p {
    margin: 0;
}

#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);
    }

.container {
    width: min(100% - 32px, 1200px);
    margin-inline: auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    padding: 18px 0;
    background: #16205b;
    border-bottom: 1px solid rgba(229, 231, 235, .82);
    backdrop-filter: blur(18px);
    box-shadow: 0 4px 18px rgba(15, 23, 42, .04);
}

.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);
        }

.nav-actions {
    gap: 18px;
}

.nav-dropdown-actions {
    display: none;
}

.nav-dropdown-menu {
    display: none;
}

.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;
    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;
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 136px 0 80px;
    overflow: hidden;
}

.hero-grid,
.split-grid,
.founder-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 48px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.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;
}

.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;
}

    .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;
    }

.hero h1 {
    max-width: 600px;
    margin-bottom: 24px;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 700;
}

    .hero h1 span,
    .orange-text,
    .mission h2 span,
    .careers h2 span {
        color: var(--primary);
    }

.hero-copy p {
    max-width: 576px;
    margin-bottom: 32px;
    color: var(--muted-foreground);
    font-size: 20px;
    line-height: 1.65;
}

.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: 590px;
    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: left 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 {
    padding: 80px 0;
    border-block: 1px solid var(--border);
    background: var(--background);
}

.center {
    text-align: center;
}

.eyebrow,
.brief-label {
    color: var(--muted-foreground);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.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;
    }

.product,
.features,
.intelligence,
.founder,
.contact-us {
    padding: 96px 0;
}

.product-image {
    position: relative;
}

    .product-image::before {
        content: "";
        position: absolute;
        inset: -18px;
        z-index: -1;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(240, 90, 40, .12), rgba(22, 32, 91, .12));
        filter: blur(42px);
    }

    .product-image img {
        border: 1px solid rgba(229, 231, 235, .65);
        border-radius: 18px;
        box-shadow: var(--shadow);
    }

.section-copy h2 {
    margin-bottom: 24px;
    font-size: clamp(36px, 4.6vw, 56px);
    line-height: 1.08;
    font-weight: 700;
}

    .section-copy h2 span {
        color: var(--muted-foreground);
    }

.section-copy p {
    color: var(--muted-foreground);
    font-size: 18px;
    line-height: 1.7;
}

.narrow {
    max-width: 760px;
    margin-bottom: 64px;
}

.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;
}

.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;
}

    .feature-card:hover {
        transform: translateY(-3px);
        border-color: rgba(240, 90, 40, .28);
        box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
    }

    .feature-card img {
        width: 48px;
        height: 48px;
        margin-bottom: 9px
    }

.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(--secondary);
    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-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;
    }

.brief-label {
    color: var(--primary);
}

.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: rgba(250, 250, 250, .78);
}

.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(--border);
    border-radius: 12px;
    color: var(--secondary);
    background: white;
    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 {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
    background: #16205b;
}

.footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 42px;
    margin-bottom: 64px;
}

.footer-brand p {
    max-width: 410px;
    margin: 24px 0;
    color: white;
    line-height: 1.6;
}

.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: 30px;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 14px;
}

.socials {
    display: flex;
    gap: 12px;
}

    .socials a {
        display: grid;
        place-items: center;
        width: 34px;
        height: 34px;
        border-radius: 999px;
        background: var(--muted);
        font-weight: 800;
    }

        .socials a:hover {
            color: white;
            background: var(--primary);
        }

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: opacity .72s cubic-bezier(.16, 1, .3, 1), transform .72s cubic-bezier(.16, 1, .3, 1);
    transition-delay: var(--delay, 0ms);
    will-change: opacity, transform;
}

.reveal {
    transform: translateY(24px);
}

.reveal-left {
    transform: translateX(-42px);
}

.reveal-right {
    transform: translateX(42px);
}

.reveal-scale {
    transform: scale(.96);
}

    .reveal.in-view,
    .reveal-left.in-view,
    .reveal-right.in-view,
    .reveal-scale.in-view {
        opacity: 1;
        transform: none;
    }

.stagger > * {
    transition-delay: calc(var(--i, 0) * 90ms);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .stagger > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

#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;
    }

@media (max-width: 960px) {
    .nav-links,
    .login,
    .nav-actions {
        display: none !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 {
        display: none;
    }

    .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;
    }
}

/* HTML: <div class="loader"></div> */
.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;
}

@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 (max-width: 640px) {
    .brand-panel {
        padding: 8px 12px;
    }

        .brand-panel img {
            height: 32px;
        }

    .nav-actions .btn {
        min-height: 38px;
        padding-inline: 13px;
    }

    .hero 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;
    }
}
