:root {
    --bg: #050816;
    --panel: #0b1220;
    --panel2: #101827;
    --text: #eaf2ff;
    --muted: #9fb0c7;
    --line: rgba(255,255,255,.12);
    --cyan: #67e8f9;
    --blue: #2563eb;
    --violet: #7c3aed;
    --steel: #c2ccda;
    --danger: #fb7185;
    --success: #34d399
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: radial-gradient(circle at 20% 0%,rgba(103,232,249,.16),transparent 32rem),radial-gradient(circle at 80% 12%,rgba(124,58,237,.12),transparent 30rem),var(--bg);
    color: var(--text);
    font-family: Arial,system-ui,sans-serif;
    line-height: 1.5
}

.site-shell {
    min-height: 100vh;
    overflow: hidden
}

.container {
    width: min(1180px,calc(100% - 40px));
    margin: 0 auto
}

.nav-wrap {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(5,8,22,.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line)
}

.nav {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand {
    text-decoration: none;
    color: var(--text);
    display: flex;
    align-items: center;
    transform: scale(.58);
    transform-origin: left center;
    width: 290px
}

    .brand .brand-sub {
        font-size: 16px
    }

    .brand .iis {
        min-width: 112px;
        height: 70px;
        font-size: 59px
    }

.nav-links {
    display: flex;
    gap: 18px;
    align-items: center
}

    .nav-links a {
        color: var(--muted);
        text-decoration: none;
        font-weight: 700;
        font-size: 14px
    }

        .nav-links a:hover {
            color: var(--cyan)
        }

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: 999px;
    padding: 10px 14px
}

.brand-lockup {
    display: inline-block
}

.word {
    display: flex;
    align-items: center;
    line-height: 1;
    white-space: nowrap
}

.chevrons {
    display: inline-flex;
    align-items: center;
    height: 70px;
    gap: 0;
    margin-right: 2px
}

.chevron {
    position: relative;
    height: 70px;
    width: var(--w);
    opacity: var(--o);
    flex: 0 0 auto
}

    .chevron:before, .chevron:after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 36px;
        background: linear-gradient(135deg,var(--cyan),var(--blue));
        border-radius: 0
    }

    .chevron:before {
        top: 0;
        clip-path: polygon(0 0,42% 0,100% 100%,58% 100%)
    }

    .chevron:after {
        bottom: 0;
        clip-path: polygon(58% 0,100% 0,42% 100%,0 100%)
    }

    .chevron:nth-child(1) {
        --w: 13px;
        --o: .34
    }

    .chevron:nth-child(2) {
        --w: 15px;
        --o: .60
    }

    .chevron:nth-child(3) {
        --w: 18px;
        --o: .86
    }

.iis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex: 0 0 auto;
    color: var(--bg);
    background: linear-gradient(135deg,var(--cyan),var(--blue));
    font-family: "Arial Black",Impact,system-ui,sans-serif;
    font-weight: 950;
    letter-spacing: -.065em;
    width: auto;
    min-width: 112px;
    height: 70px;
    padding: 0 5px 3px 5px;
    font-size: 59px;
    clip-path: polygon(0 0,93% 0,100% 50%,93% 100%,0 100%,7% 50%)
}

.group {
    margin-left: 4px;
    color: #f1f7ff;
    font-family: Arial,system-ui,sans-serif;
    font-size: 53px;
    font-weight: 410;
    letter-spacing: -.075em;
    line-height: 1
}

.brand-sub {
    margin-top: 7px;
    color: var(--steel);
    font-size: 16px;
    font-weight: 380;
    letter-spacing: .005em;
    white-space: nowrap;
    word-spacing: 0;
    display: block
}

    .brand-sub .cap {
        color: var(--cyan);
        font-size: 1.12em;
        font-weight: 380;
        margin-right: 0
    }

.hero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 42px;
    align-items: center;
    min-height: 720px;
    padding: 90px 0
}

.eyebrow {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin: 0 0 16px
}

.hero h1, .page-hero h1 {
    font-size: clamp(52px,7vw,94px);
    line-height: .93;
    letter-spacing: -.07em;
    margin: 0 0 24px
}

.hero-lead, .page-lead, .section-heading p {
    color: var(--muted);
    font-size: 20px;
    max-width: 820px;
    margin: 0 0 28px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center
}

    .hero-actions.center {
        justify-content: center
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 20px;
    text-decoration: none;
    font-weight: 900;
    border: 1px solid var(--line);
    cursor: pointer
}

.btn-primary {
    background: linear-gradient(135deg,var(--cyan),var(--blue));
    color: #04101d;
    border: 0
}

.btn-secondary {
    background: rgba(255,255,255,.06);
    color: var(--text)
}

.btn:hover {
    transform: translateY(-1px)
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-top: 34px
}

    .hero-stats div, .card, .process-card, .form-card, .notice {
        background: linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.04));
        border: 1px solid var(--line);
        border-radius: 24px;
        padding: 22px
    }

    .hero-stats strong {
        display: block;
        font-size: 26px
    }

    .hero-stats span {
        color: var(--muted);
        font-size: 13px
    }

.hero-card {
    background: linear-gradient(180deg,rgba(255,255,255,.1),rgba(255,255,255,.05));
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,.28)
}

    .hero-card h2, .section-heading h2, .contact-card h2, .tech-panel h2 {
        font-size: clamp(36px,5vw,66px);
        line-height: .95;
        letter-spacing: -.06em;
        margin: 0 0 20px
    }

    .hero-card p, .card p, .proof-item p, .contact-card p {
        color: var(--muted)
    }

.status-pill {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--muted);
    font-weight: 800;
    font-size: 13px
}

    .status-pill span {
        width: 8px;
        height: 8px;
        background: var(--success);
        border-radius: 50%
    }

.signal-grid, .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px
}

    .signal-grid span, .tag-cloud span {
        border: 1px solid var(--line);
        background: rgba(255,255,255,.06);
        border-radius: 999px;
        padding: 9px 12px;
        color: #d9e7ff;
        font-size: 13px;
        font-weight: 800
    }

.section {
    padding: 86px 0
}

.narrow {
    max-width: 860px
}

.page-hero {
    padding: 105px 0 45px
}

.section-heading {
    max-width: 850px;
    margin-bottom: 34px
}

.cards {
    display: grid;
    gap: 18px
}

    .cards.three {
        grid-template-columns: repeat(3,1fr)
    }

    .cards.two {
        grid-template-columns: repeat(2,1fr)
    }

.card h3, .process-card h3 {
    font-size: 24px;
    margin: 0 0 10px
}

.card ul {
    color: var(--muted);
    padding-left: 20px
}

.link-card {
    text-decoration: none;
    color: var(--text);
    transition: transform .15s ease,border-color .15s ease
}

    .link-card:hover {
        transform: translateY(-3px);
        border-color: rgba(103,232,249,.45)
    }

.proof-section {
    padding: 86px 0;
    background: rgba(255,255,255,.03);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 44px
}

.proof-list {
    display: grid;
    gap: 16px
}

.proof-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: start;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px
}

    .proof-item span, .num {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: rgba(103,232,249,.13);
        color: var(--cyan);
        font-weight: 950
    }

.tech-panel, .contact-card {
    background: linear-gradient(135deg,rgba(103,232,249,.1),rgba(124,58,237,.08));
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: 34px
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 14px
}

.quote-panel {
    background: linear-gradient(135deg,rgba(103,232,249,.12),rgba(37,99,235,.12));
    border: 1px solid rgba(103,232,249,.25);
    border-radius: 24px;
    padding: 28px;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -.04em
}

.contact-section {
    padding: 70px 0 100px;
    text-align: center
}

.form-card {
    display: grid;
    gap: 18px
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

label {
    display: block;
    gap: 8px;
    color: #dce9fa;
    font-weight: 800
}

input, select, textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(2,6,23,.9);
    color: var(--text);
    border-radius: 16px;
    padding: 13px 14px;
    font: inherit
}

textarea {
    resize: vertical
}

.hp {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.validation-summary {
    color: var(--danger);
    font-weight: 800
}

.notice.success {
    border-color: rgba(52,211,153,.4)
}

.notice h2 {
    margin-top: 0
}

.footer-wrap {
    border-top: 1px solid var(--line);
    background: #040712
}

.footer {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    padding: 54px 0
}

.footer-brand {
    transform: scale(.62);
    transform-origin: left top;
    width: 430px
}

    .footer-brand p {
        color: var(--muted);
        font-size: 22px;
        max-width: 620px
    }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 26px
}

    .footer-grid h2 {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: .16em;
        color: var(--cyan)
    }

    .footer-grid a {
        display: block;
        color: var(--muted);
        text-decoration: none;
        margin: 9px 0;
        font-weight: 700
    }

        .footer-grid a:hover {
            color: var(--cyan)
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid var(--line);
    padding: 18px 0;
    color: var(--muted);
    font-size: 14px
}

    .footer-bottom a {
        color: var(--cyan);
        text-decoration: none
    }

@media(max-width:980px) {
    .hero, .split, .footer {
        grid-template-columns: 1fr
    }

    .cards.three, .cards.two, .process-grid {
        grid-template-columns: 1fr
    }

    .hero-stats {
        grid-template-columns: 1fr
    }

    .nav {
        height: auto;
        padding: 18px 0;
        align-items: flex-start
    }

    .nav-toggle {
        display: inline-flex
    }

    .nav-links {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 86px;
        flex-direction: column;
        align-items: flex-start;
        background: #071021;
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 18px
    }

        .nav-links.open {
            display: flex
        }

    .brand {
        transform: scale(.48);
        width: 240px
    }

    .footer-brand {
        transform: scale(.52);
        width: 360px
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .hero {
        padding-top: 60px;
        min-height: auto
    }

        .hero h1, .page-hero h1 {
            font-size: 48px
        }

    .container {
        width: min(100% - 28px,1180px)
    }
}

/* Form validation and required-field treatment */
.form-note {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700
}

.required {
    color: var(--cyan);
    font-weight: 950
}

.field {
    position: relative
}

    .field input[required], .field select[required], .field textarea[required] {
        border-color: rgba(103,232,249,.32);
        box-shadow: 0 0 0 1px rgba(103,232,249,.08)
    }

        .field input[required]:focus, .field select[required]:focus, .field textarea[required]:focus {
            outline: none;
            border-color: var(--cyan);
            box-shadow: 0 0 0 4px rgba(103,232,249,.12)
        }

.form-card.was-validated input:invalid, .form-card.was-validated select:invalid, .form-card.was-validated textarea:invalid, input.input-validation-error, select.input-validation-error, textarea.input-validation-error, input.is-invalid, select.is-invalid, textarea.is-invalid {
    border-color: var(--danger) !important;
    background: rgba(251,113,133,.08) !important;
    box-shadow: 0 0 0 4px rgba(251,113,133,.13) !important
}

.form-card.was-validated input:valid, .form-card.was-validated select:valid, .form-card.was-validated textarea:valid, input.is-valid, select.is-valid, textarea.is-valid {
    border-color: rgba(52,211,153,.55);
    box-shadow: 0 0 0 3px rgba(52,211,153,.1)
}

.field-validation, .field-validation-valid {
    min-height: 18px;
    color: var(--danger);
    font-size: 13px;
    font-weight: 800
}

.field-validation-error {
    display: block;
    color: var(--danger)
}

.validation-summary ul {
    margin: 0;
    padding-left: 20px
}

.validation-summary-errors {
    border: 1px solid rgba(251,113,133,.35);
    background: rgba(251,113,133,.08);
    border-radius: 16px;
    padding: 14px 16px;
    color: #fecdd3
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.footer-tagline {
    margin: 0;
    color: #dbeafe;
    font-weight: 380
}

.footer-bottom p {
    margin: 0
}

/* Persistent CTA treatment */
.nav-links .nav-cta {
    color: #04101d;
    background: linear-gradient(135deg,var(--cyan),var(--blue));
    border-radius: 999px;
    padding: 10px 15px;
    font-weight: 950
}

    .nav-links .nav-cta:hover {
        color: #04101d;
        filter: brightness(1.06)
    }

.page-cta {
    padding: 24px 0 90px
}

.page-cta-card {
    text-align: center;
    background: linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.045));
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 44px 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,.22)
}

    .page-cta-card h2 {
        font-size: clamp(34px,5vw,58px);
        line-height: .98;
        letter-spacing: -.055em;
        margin: 0 0 16px
    }

    .page-cta-card p:not(.eyebrow) {
        max-width: 820px;
        margin: 0 auto 24px;
        color: var(--muted);
        font-size: 18px
    }

.hero-actions.center {
    justify-content: center
}

@media(max-width:980px) {
    .nav-links .nav-cta {
        width: 100%;
        justify-content: center;
        text-align: center
    }

    .page-cta {
        padding: 10px 0 64px
    }

    .page-cta-card h2 {
        font-size: 38px
    }
}
