@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap");

:root {
    --bg: #071423;
    --bg-soft: #0c1f33;
    --surface: rgba(10, 24, 41, 0.86);
    --surface-strong: rgba(8, 18, 31, 0.96);
    --border: rgba(136, 181, 228, 0.18);
    --text: #eff6ff;
    --muted: #a9bfd6;
    --blue: #4da4ff;
    --blue-strong: #2277f2;
    --cyan: #8ad9ff;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Manrope", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(77, 164, 255, 0.18), transparent 34%),
        radial-gradient(circle at top right, rgba(138, 217, 255, 0.12), transparent 26%),
        linear-gradient(180deg, #071423 0%, #081728 34%, #06111d 100%);
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%),
        radial-gradient(circle at 50% 38%, rgba(77, 164, 255, 0.1), transparent 32%);
    pointer-events: none;
}

.page-shell {
    position: relative;
    z-index: 1;
    width: min(1320px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 24px 0 80px;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0 28px;
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.brand-mark {
    width: 124px;
    height: auto;
}

.eyebrow,
.section-eyebrow,
.card-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    color: var(--cyan);
    font-weight: 700;
}

.brand-name {
    margin-top: 6px;
    font-size: 1.08rem;
    font-weight: 700;
}

.brand-content {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.brand-contact {
    display: grid;
    gap: 2px;
    font-size: 0.84rem;
    line-height: 1.45;
    color: #627b96;
}

.brand-contact a {
    color: inherit;
    text-decoration: none;
}

.brand-contact a:hover {
    text-decoration: underline;
}

.header-cta,
.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid rgba(131, 188, 255, 0.3);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--blue-strong));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 18px 34px rgba(34, 119, 242, 0.24);
    cursor: pointer;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 420px);
    gap: 28px;
    align-items: start;
}

.hero-copy,
.lead-card,
.section-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, var(--surface), var(--surface-strong));
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.hero-copy {
    padding: 34px;
    min-width: 0;
}

.lead-card {
    position: sticky;
    top: 20px;
    padding: 28px;
    min-width: 0;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(77, 164, 255, 0.12);
    border: 1px solid rgba(77, 164, 255, 0.16);
    color: #dff0ff;
    font-size: 0.86rem;
    font-weight: 600;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1,
h2,
h3,
.brand-name,
.customer-logo-label,
.customer-copy-badge {
    font-family: var(--font-display);
}

h1 {
    max-width: 13ch;
    font-size: clamp(2.35rem, 4.4vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.hero-text {
    max-width: 60ch;
    margin-top: 18px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted);
}

.hero-bullets {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.hero-visual-strip {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 16px;
    margin-top: 24px;
}

.hero-visual-card {
    min-height: 168px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(132, 169, 214, 0.14);
    background: rgba(8, 18, 31, 0.7);
    box-shadow: 0 14px 30px rgba(5, 12, 24, 0.18);
}

.hero-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

img {
    max-width: 100%;
}

.hero-visual-card-5g img {
    object-fit: contain;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.hero-visual-card-tower img {
    object-position: center center;
}

.hero-bullet {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(10, 27, 46, 0.7);
    border: 1px solid rgba(132, 169, 214, 0.14);
    color: #d7e8f9;
    line-height: 1.55;
}

.hero-stats,
.use-case-grid,
.process-grid,
.section-grid {
    display: grid;
    gap: 18px;
}

.hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 26px;
}

.stat-card {
    padding: 18px;
    border-radius: 20px;
    background: rgba(5, 16, 28, 0.56);
    border: 1px solid rgba(132, 169, 214, 0.14);
}

.stat-value {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.95rem;
}

.card-header h2 {
    font-size: 1.8rem;
    line-height: 1.08;
    margin-top: 8px;
}

.card-header p {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.6;
}

.lead-form {
    margin-top: 22px;
}

.field-grid {
    display: grid;
    gap: 14px;
}

.field-grid.two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lead-form label,
.full-width {
    display: grid;
    gap: 8px;
    font-size: 0.92rem;
    color: #dceafb;
    font-weight: 600;
}

.full-width {
    margin-top: 16px;
}

input,
select,
textarea {
    width: 100%;
    min-height: 52px;
    padding: 14px 15px;
    border-radius: 16px;
    border: 1px solid rgba(139, 180, 226, 0.18);
    background: rgba(7, 15, 26, 0.96);
    color: var(--text);
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

input::placeholder,
textarea::placeholder {
    color: #7e96af;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(77, 164, 255, 0.7);
    box-shadow: 0 0 0 3px rgba(77, 164, 255, 0.15);
    transform: translateY(-1px);
}

textarea {
    min-height: 128px;
    resize: vertical;
}

select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #8cbaf5 50%),
        linear-gradient(135deg, #8cbaf5 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.chip-group {
    margin: 18px 0 0;
    padding: 0;
    border: 0;
}

.chip-group legend {
    margin-bottom: 10px;
    color: #dceafb;
    font-weight: 700;
}

.chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip-option {
    position: relative;
}

.chip-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.chip-option span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(139, 180, 226, 0.18);
    background: rgba(8, 18, 31, 0.92);
    color: var(--muted);
    cursor: pointer;
    transition: all 0.18s ease;
}

.chip-option input:checked + span {
    background: rgba(77, 164, 255, 0.16);
    border-color: rgba(77, 164, 255, 0.55);
    color: #eaf5ff;
    box-shadow: inset 0 0 0 1px rgba(77, 164, 255, 0.3);
}

.form-note {
    margin-top: 14px;
    color: #8ea8c1;
    font-size: 0.88rem;
    line-height: 1.55;
}

.form-result {
    margin-top: 14px;
    min-height: 24px;
    color: #d9ebfb;
    font-weight: 600;
}

.form-result.error {
    color: #ff9fa8;
}

.form-result.success {
    color: #8be0bf;
}

.section-grid {
    grid-template-columns: 1.15fr 0.85fr;
    margin-top: 28px;
}

.section-card {
    padding: 30px;
    margin-top: 28px;
}

.section-card h2 {
    margin-top: 10px;
    font-size: clamp(1.9rem, 2vw, 2.5rem);
    line-height: 1.08;
}

.stack-list {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.stack-item {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(8, 18, 31, 0.58);
    border: 1px solid rgba(139, 180, 226, 0.14);
}

.stack-item h3,
.use-case-card h3,
.process-step h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
}

.stack-item p,
.use-case-card p,
.process-step p {
    color: var(--muted);
    line-height: 1.6;
}

.illustration-card {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.network-scene {
    position: relative;
    width: min(100%, 460px);
    height: 430px;
}

.tower,
.shield,
.screen,
.phone,
.signal {
    position: absolute;
}

.tower {
    left: 30px;
    bottom: 54px;
    width: 84px;
    height: 230px;
    border: 4px solid rgba(112, 166, 224, 0.85);
    border-top-width: 10px;
    clip-path: polygon(48% 0, 62% 12%, 80% 100%, 20% 100%, 38% 12%);
    opacity: 0.9;
}

.tower::before,
.tower::after {
    content: "";
    position: absolute;
    inset: 22px 18px;
    border-top: 3px solid rgba(112, 166, 224, 0.6);
    transform: skewY(30deg);
}

.tower::after {
    transform: skewY(-30deg);
}

.shield {
    right: 48px;
    top: 56px;
    width: 138px;
    height: 156px;
    border-radius: 36px 36px 48px 48px;
    background: linear-gradient(180deg, rgba(77, 164, 255, 0.95), rgba(26, 96, 188, 0.94));
    clip-path: polygon(50% 0, 96% 15%, 88% 76%, 50% 100%, 12% 76%, 4% 15%);
    box-shadow: 0 24px 42px rgba(34, 119, 242, 0.26);
}

.shield::before {
    content: "";
    position: absolute;
    inset: 24px 33px 30px;
    border: 8px solid rgba(255, 255, 255, 0.9);
    border-bottom-width: 12px;
    border-radius: 18px;
}

.shield::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 48%;
    width: 22px;
    height: 22px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
}

.screen {
    left: 130px;
    bottom: 34px;
    width: 220px;
    height: 148px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(191, 224, 255, 0.95), rgba(136, 189, 240, 0.96));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
}

.screen::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 40%),
        linear-gradient(135deg, rgba(120, 183, 233, 0.78), rgba(55, 97, 156, 0.85));
}

.screen::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -38px;
    width: 90px;
    height: 50px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(29, 63, 111, 0.95), rgba(10, 20, 36, 0.96));
    clip-path: polygon(44% 0, 56% 0, 80% 100%, 20% 100%);
}

.phone {
    right: 6px;
    bottom: 28px;
    width: 90px;
    height: 180px;
    border-radius: 26px;
    border: 6px solid rgba(29, 63, 111, 0.9);
    background: linear-gradient(180deg, rgba(191, 224, 255, 0.94), rgba(141, 190, 238, 0.96));
}

.phone::before {
    content: "";
    position: absolute;
    inset: 20px 12px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(210, 236, 255, 0.9), rgba(104, 170, 224, 0.85));
}

.phone::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 14px;
    width: 32px;
    height: 5px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(29, 63, 111, 0.55);
}

.signal {
    border-radius: 50%;
    border: 2px dashed rgba(135, 187, 243, 0.55);
}

.signal-one {
    left: 6px;
    top: 36px;
    width: 178px;
    height: 178px;
}

.signal-two {
    left: 20px;
    top: 50px;
    width: 150px;
    height: 150px;
}

.signal-three {
    left: 34px;
    top: 64px;
    width: 122px;
    height: 122px;
}

.use-case-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 24px;
}

.use-case-card,
.process-step {
    padding: 20px;
    border-radius: 22px;
    background: rgba(8, 18, 31, 0.58);
    border: 1px solid rgba(139, 180, 226, 0.14);
}

.process-card {
    margin-bottom: 0;
}

.process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.process-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-bottom: 14px;
    background: rgba(77, 164, 255, 0.16);
    color: #dbedff;
    font-size: 0.92rem;
    font-weight: 800;
}

@media (max-width: 1180px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .lead-card {
        position: static;
    }

    .hero-stats,
    .section-grid,
    .use-case-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .page-shell {
        width: min(100vw - 28px, 100%);
        padding-top: 18px;
        padding-bottom: 44px;
    }

    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-mark {
        width: 108px;
    }

    .hero-copy,
    .lead-card,
    .section-card {
        padding: 22px 18px;
        border-radius: 24px;
    }

    h1 {
        max-width: none;
        font-size: 2.55rem;
    }

    .field-grid.two-up,
    .hero-stats,
    .section-grid,
    .use-case-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .network-scene {
        height: 320px;
    }
}

/* 2026-04 redesign overrides */

body {
    color: #16344d;
    background: linear-gradient(180deg, #f8fbfe 0%, #eef5fb 100%);
}

body::before {
    background:
        radial-gradient(circle at 18% 10%, rgba(53, 136, 239, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 30%);
}

.page-shell {
    width: min(1320px, calc(100vw - 40px));
}

.site-header {
    margin-bottom: 24px;
    padding: 0;
}

.header-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.header-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(53, 136, 239, 0.16);
    background: rgba(255, 255, 255, 0.9);
    color: #16344d;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
}

.eyebrow,
.section-label {
    color: #3a7fd3;
}

.brand-name {
    color: #16344d;
}

.hero-copy {
    background:
        radial-gradient(circle at left top, rgba(53, 136, 239, 0.16), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.98));
    box-shadow: 0 22px 44px rgba(16, 39, 64, 0.08);
}

.lead-card {
    background: linear-gradient(180deg, rgba(11, 28, 45, 0.98), rgba(9, 22, 36, 0.98));
    color: #eff7ff;
}

.pill {
    background: rgba(53, 136, 239, 0.08);
    border-color: rgba(53, 136, 239, 0.12);
    color: #2d6ec4;
}

h1 {
    color: #0d2235;
}

.hero-text {
    color: #627b96;
}

.hero-highlight {
    display: grid;
    gap: 6px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(53, 136, 239, 0.1);
    color: #16344d;
}

.hero-highlight strong {
    color: #0d2235;
}

.hero-highlight span {
    color: #627b96;
}

.hero-stats {
    display: none;
}

.card-header p,
.form-note,
.chip-group legend,
.lead-form label,
.full-width {
    color: #ddedfb;
}

.benefits-strip,
.light-section,
.closing-cta {
    margin-top: 28px;
    padding: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 44px rgba(16, 39, 64, 0.08);
}

.section-intro {
    max-width: 780px;
}

.section-intro.centered {
    text-align: center;
    margin: 0 auto 24px;
}

.section-intro h2,
.dark-copy h2,
.closing-cta h2 {
    margin-top: 10px;
    font-size: clamp(1.85rem, 2.6vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #0d2235;
}

.section-intro p,
.closing-cta p {
    margin-top: 12px;
    color: #627b96;
    line-height: 1.7;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.benefit-card {
    padding: 8px 18px 0;
    border-left: 1px solid #c8ddf4;
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-bottom: 14px;
    background: rgba(53, 136, 239, 0.08);
    color: #3588ef;
    font-size: 1rem;
    font-weight: 800;
}

.benefit-card h3,
.sector-copy h3,
.trust-card h3 {
    font-size: 1.2rem;
    line-height: 1.2;
    color: #0d2235;
}

.benefit-card p,
.sector-copy p,
.trust-card p {
    margin-top: 10px;
    color: #627b96;
    line-height: 1.65;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.capability-section {
    margin-top: 28px;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.capability-card {
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, #f7fbff 0%, #eef6fd 100%);
    border: 1px solid rgba(53, 136, 239, 0.14);
    box-shadow: 0 16px 34px rgba(16, 39, 64, 0.08);
}

.capability-art {
    min-height: 190px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #edf6ff 100%);
    border: 1px solid rgba(53, 136, 239, 0.12);
}

.capability-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.capability-art-dark {
    background: linear-gradient(180deg, #0c1f33 0%, #091423 100%);
}

.capability-card h3 {
    color: #16344d;
    font-size: 1.18rem;
}

.capability-card p {
    color: #587189;
    line-height: 1.65;
}

.sector-card {
    overflow: hidden;
    border-radius: 24px;
    background: #f5f9fd;
    border: 1px solid rgba(53, 136, 239, 0.12);
}

.sector-visual {
    position: relative;
    height: 270px;
    background: linear-gradient(180deg, #dff0ff 0%, #f5f9fd 100%);
    overflow: hidden;
    display: grid;
    place-items: center;
}

.sector-asset {
    width: min(82%, 270px);
    max-height: 210px;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(16, 39, 64, 0.12));
    animation: sectorFloat 6s ease-in-out infinite;
}

.sector-asset-school {
    width: min(86%, 286px);
}

.sector-asset-safety {
    width: min(78%, 240px);
}

.sector-copy {
    padding: 20px;
}

.public-works::before,
.school-transport::before,
.public-safety::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 72px;
    background: linear-gradient(180deg, rgba(71, 123, 179, 0.06), rgba(71, 123, 179, 0.12));
}

.bucket-truck {
    position: absolute;
    left: 30px;
    bottom: 48px;
    width: 220px;
    height: 92px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #d9e8f4);
    box-shadow: 0 18px 24px rgba(21, 51, 79, 0.1);
}

.bucket-truck::before,
.bucket-truck::after,
.school-bus::before,
.school-bus::after,
.mini::before,
.mini::after,
.police-car::after,
.police-car::before,
.ambulance::after,
.ambulance::before {
    content: "";
}

.bucket-truck::before,
.bucket-truck::after {
    position: absolute;
    bottom: -14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #18344f;
}

.bucket-truck::before { left: 24px; }
.bucket-truck::after { right: 28px; }

.utility-worker {
    position: absolute;
    bottom: 56px;
    width: 52px;
    height: 118px;
    border-radius: 30px;
    background: linear-gradient(180deg, #f5d786 0 28%, #c6ed5f 28% 72%, #33506d 72% 100%);
    box-shadow: 0 8px 20px rgba(27, 53, 81, 0.08);
}

.utility-worker::before {
    position: absolute;
    top: -24px;
    left: 11px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #efc58b;
    box-shadow: 0 -8px 0 2px #ffcf4d;
}

.worker-a { left: 54px; transform: rotate(-4deg); }
.worker-b { left: 118px; height: 124px; transform: rotate(5deg); }

.school-bus {
    position: absolute;
    bottom: 48px;
    width: 188px;
    height: 82px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffdc43, #efb613);
    box-shadow: 0 18px 24px rgba(21, 51, 79, 0.1);
}

.school-bus::before,
.school-bus::after {
    position: absolute;
    bottom: -14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #18344f;
}

.school-bus::before { left: 24px; }
.school-bus::after { right: 24px; }

.bus-one { left: -18px; transform: scale(0.86); opacity: 0.82; }
.bus-two { left: 72px; }
.bus-three { left: 168px; transform: scale(0.92); opacity: 0.92; }

.road {
    position: absolute;
    inset: auto 0 40px;
    height: 84px;
    background: linear-gradient(180deg, #455f79, #2a3d51);
}

.police-car,
.ambulance {
    position: absolute;
    bottom: 72px;
    height: 58px;
    border-radius: 18px;
    box-shadow: 0 16px 24px rgba(21, 51, 79, 0.12);
    animation: vehicleFloat 5.5s ease-in-out infinite;
}

.police-car {
    left: 42px;
    width: 126px;
    background: linear-gradient(180deg, #f7fbff, #dce8f6);
}

.police-car::before {
    position: absolute;
    left: 52px;
    top: -8px;
    width: 30px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1f7bed 0 50%, #ef5058 50% 100%);
}

.ambulance {
    left: 180px;
    width: 138px;
    background: linear-gradient(180deg, #ffffff, #ebf0f5);
    animation-delay: 0.8s;
}

.ambulance::before {
    position: absolute;
    left: 58px;
    top: 11px;
    color: #ef5058;
    content: "+";
    font-size: 1.6rem;
    font-weight: 800;
}

@keyframes vehicleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes sectorFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.dark-feature {
    margin-top: 28px;
    padding: 38px;
    border-radius: 30px;
    background: linear-gradient(180deg, #0b1d2f 0%, #0a1726 100%);
    color: #f0f7ff;
    box-shadow: 0 26px 60px rgba(16, 39, 64, 0.18);
}

.dark-copy h2 {
    color: #f0f7ff;
}

.dark-copy p {
    color: #adc4db;
    max-width: 60ch;
}

.mission-board {
    position: relative;
    margin-top: 28px;
    min-height: 430px;
    border-radius: 24px;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(54, 108, 222, 0.92), rgba(17, 50, 112, 0.94));
    display: grid;
    place-items: center;
}

.mission-graphic {
    width: min(98%, 1120px);
    max-height: 390px;
    object-fit: contain;
    filter: drop-shadow(0 24px 34px rgba(5, 12, 24, 0.3));
    animation: missionPulse 7s ease-in-out infinite;
}

@keyframes missionPulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.01); }
}

.mission-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-items: center;
}

.camera-array {
    display: grid;
    grid-template-columns: repeat(2, 52px);
    gap: 14px;
}

.camera-array span {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 2px solid rgba(195, 220, 255, 0.4);
    box-shadow: inset 0 0 0 8px rgba(195, 220, 255, 0.08);
}

.lte-core {
    width: 126px;
    height: 98px;
    border-radius: 18px;
    border: 3px solid rgba(195, 220, 255, 0.38);
    position: relative;
}

.lte-core::before {
    content: "Superior Access Solutions";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(224, 239, 255, 0.72);
    font-weight: 700;
    font-size: 0.74rem;
    text-align: center;
    padding: 0 10px;
}

.monitor-panel {
    width: 138px;
    height: 92px;
    border-radius: 14px;
    border: 3px solid rgba(195, 220, 255, 0.38);
}

.mission-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #edf6ff;
    font-size: 0.8rem;
    font-weight: 700;
}

.tag-lte { left: 50%; top: 56px; transform: translateX(-50%); }

.mission-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(197, 220, 255, 0.64), rgba(255,255,255,0));
}

.line-one {
    left: 240px;
    top: 202px;
    width: 190px;
}

.line-two {
    left: 435px;
    top: 202px;
    width: 200px;
}

.line-three {
    left: 50%;
    bottom: 114px;
    width: 2px;
    height: 112px;
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(197,220,255,0.64), rgba(255,255,255,0));
}

.vehicle-row {
    position: absolute;
    left: 50%;
    bottom: 28px;
    display: flex;
    gap: 16px;
    transform: translateX(-50%);
}

.mini {
    width: 78px;
    height: 36px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    position: relative;
    animation: vehiclePulse 4.5s ease-in-out infinite;
}

.mini::before,
.mini::after {
    position: absolute;
    bottom: -10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(11, 23, 38, 0.8);
}

.mini::before { left: 12px; }
.mini::after { right: 12px; }
.ambulance-mini { animation-delay: 0.4s; }
.bus-mini { background: rgba(255, 215, 60, 0.92); animation-delay: 0.8s; }

@keyframes vehiclePulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.trust-card {
    padding: 22px;
    border-radius: 22px;
    background: #f6fafe;
    border: 1px solid rgba(53, 136, 239, 0.12);
}

.customer-strip {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #c8ddf4;
}

.customer-strip-title {
    color: #627b96;
    font-weight: 700;
}

.customer-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 18px;
}

.customer-logo-card {
    display: grid;
    gap: 16px;
    justify-items: center;
    align-content: start;
    min-height: 258px;
    padding: 22px 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 254, 0.96));
    border: 1px solid rgba(53, 136, 239, 0.14);
    box-shadow: 0 14px 30px rgba(16, 39, 64, 0.06);
    text-align: center;
}

.customer-logo {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.image-logo {
    width: min(100%, 248px);
    min-height: 150px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(53, 136, 239, 0.12);
    box-shadow: 0 12px 26px rgba(16, 39, 64, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.image-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: contrast(1.04);
}

.image-logo-seal img {
    max-width: 138px;
    max-height: 138px;
}

.image-logo-wide img {
    max-width: 172px;
    max-height: 92px;
}

.customer-logo-card-copy {
    align-content: center;
}

.customer-copy-badge {
    display: grid;
    place-items: center;
    width: min(100%, 248px);
    min-height: 150px;
    border-radius: 22px;
    background: linear-gradient(135deg, #1b5f98 0%, #104b7f 100%);
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-align: center;
    box-shadow: 0 12px 26px rgba(16, 39, 64, 0.12);
}

.seal-logo {
    width: 138px;
    height: 138px;
    border-radius: 50%;
    border: 5px solid #d6a62a;
    box-shadow:
        inset 0 0 0 8px rgba(255, 255, 255, 0.1),
        0 12px 26px rgba(16, 39, 64, 0.12);
}

.seal-logo::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.seal-logo span,
.panel-logo span {
    position: relative;
    z-index: 1;
}

.panel-logo {
    width: 164px;
    height: 108px;
    border-radius: 16px;
    box-shadow: 0 12px 26px rgba(16, 39, 64, 0.12);
}

.state-logo {
    background: radial-gradient(circle at center, #335f8f 0%, #244569 58%, #16314e 100%);
}

.sec-logo {
    background: radial-gradient(circle at center, #244b73 0%, #183655 60%, #10253d 100%);
}

.cdc-logo {
    background:
        repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.14) 0 10px, rgba(255, 255, 255, 0.02) 10px 20px),
        linear-gradient(135deg, #2973bd 0%, #175089 100%);
}

.cdc-logo span {
    font-size: 2.6rem;
}

.nasa-logo {
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.26) 0 2px, transparent 3px),
        radial-gradient(circle at 62% 42%, rgba(255, 255, 255, 0.22) 0 2px, transparent 3px),
        radial-gradient(circle at 55% 60%, rgba(255, 255, 255, 0.18) 0 2px, transparent 3px),
        radial-gradient(circle at center, #1d4d9a 0%, #153d7a 58%, #102f60 100%);
}

.nasa-logo::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 4px;
    background: #f35d5d;
    transform: rotate(-28deg);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.navy-logo {
    background: radial-gradient(circle at center, #fffdf7 0%, #d9dfe7 48%, #194d8e 49%, #194d8e 100%);
    color: #16344d;
}

.army-logo {
    background: radial-gradient(circle at center, #31522e 0%, #20391f 58%, #121f12 100%);
}

.va-logo {
    background: radial-gradient(circle at center, #2e4f9f 0%, #203778 58%, #18285a 100%);
}

.gsa-logo {
    background: linear-gradient(135deg, #1b5f98 0%, #104b7f 100%);
}

.customer-logo-label {
    color: #16344d;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.4;
}

.solutions-section {
    margin-top: 28px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.solution-card {
    display: grid;
    gap: 14px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #f7fbff 0%, #eef6fd 100%);
    border: 1px solid rgba(53, 136, 239, 0.14);
    box-shadow: 0 16px 34px rgba(16, 39, 64, 0.08);
}

.solution-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(53, 136, 239, 0.1);
    color: #1b5f98;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.solution-card h3 {
    color: #16344d;
    font-size: 1.18rem;
    line-height: 1.25;
}

.solution-card p {
    color: #587189;
    line-height: 1.65;
}

.solution-list {
    margin: 0;
    padding-left: 18px;
    color: #294760;
    line-height: 1.65;
}

.solution-list li + li {
    margin-top: 6px;
}

.resources-section {
    margin-top: 28px;
}

.resource-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 20px;
}

.resource-actions-note {
    max-width: 720px;
    color: #587189;
    line-height: 1.68;
}

.faq-section {
    margin-top: 28px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.faq-card {
    display: grid;
    gap: 12px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, #f7fbff 0%, #eef6fd 100%);
    border: 1px solid rgba(53, 136, 239, 0.14);
    box-shadow: 0 16px 34px rgba(16, 39, 64, 0.08);
}

.faq-card h3 {
    color: #16344d;
    font-size: 1.12rem;
    line-height: 1.3;
}

.faq-card p {
    color: #587189;
    line-height: 1.68;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.resource-card {
    display: grid;
    gap: 14px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #0f2237 0%, #0b1a2a 100%);
    color: #f0f7ff;
    box-shadow: 0 18px 40px rgba(16, 39, 64, 0.18);
}

.resource-type {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(77, 164, 255, 0.16);
    color: #dff1ff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.resource-card h3 {
    font-size: 1.2rem;
    line-height: 1.28;
}

.resource-card p {
    color: #b8cde2;
    line-height: 1.65;
}

.resource-link {
    color: #88d5ff;
    font-weight: 700;
    text-decoration: none;
}

.resource-link:hover {
    text-decoration: underline;
}

body.article-page {
    background:
        radial-gradient(circle at top left, rgba(77, 164, 255, 0.14), transparent 30%),
        linear-gradient(180deg, #f7fbff 0%, #eef5fc 100%);
    color: #16344d;
}

body.article-page::before {
    display: none;
}

.article-shell {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 24px 0 80px;
}

.article-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 28px;
}

.article-back {
    color: #1b5f98;
    text-decoration: none;
    font-weight: 700;
}

.article-hero,
.article-section,
.article-cta {
    border: 1px solid rgba(53, 136, 239, 0.14);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(243,248,254,.98));
    box-shadow: 0 18px 40px rgba(16, 39, 64, 0.08);
}

.article-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
    padding: 32px;
}

.article-hero h1 {
    max-width: none;
    color: #16344d;
    font-size: clamp(2.15rem, 4.4vw, 3.6rem);
}

.article-hero p,
.article-section p,
.article-section li {
    color: #587189;
    line-height: 1.75;
}

.article-hero-art {
    min-height: 260px;
    border-radius: 22px;
    overflow: hidden;
    background: #0f2237;
}

.article-hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-meta {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(53, 136, 239, 0.1);
    color: #1b5f98;
    font-size: 0.86rem;
    font-weight: 700;
}

.article-section {
    margin-top: 24px;
    padding: 28px;
}

.article-section h2 {
    color: #16344d;
    font-size: 1.9rem;
    margin-bottom: 14px;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.article-card {
    padding: 20px;
    border-radius: 22px;
    background: #f7fbff;
    border: 1px solid rgba(53, 136, 239, 0.14);
}

.article-card h3 {
    color: #16344d;
    margin-bottom: 10px;
}

.article-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
    padding: 28px;
}

.article-cta h2 {
    color: #16344d;
}

.article-cta p {
    color: #587189;
}

.closing-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background: linear-gradient(180deg, #0d2235 0%, #0a1726 100%);
    color: #f0f7ff;
    box-shadow: 0 26px 60px rgba(16, 39, 64, 0.18);
}

.closing-cta h2 {
    color: #f0f7ff;
}

.closing-cta p {
    color: #adc4db;
}

@media (max-width: 1180px) {
    .hero,
    .capability-grid,
    .benefit-grid,
    .sector-grid,
    .trust-grid,
    .customer-logo-grid,
    .solutions-grid,
    .faq-grid,
    .resource-grid,
    .article-hero,
    .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .lead-card {
        position: static;
    }
}

@media (max-width: 820px) {
    .site-header,
    .closing-cta,
    .article-header,
    .article-cta,
    .resource-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .header-actions {
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .brand-contact {
        font-size: 0.8rem;
    }

    .header-link {
        flex: 1 1 calc(50% - 6px);
        min-width: 160px;
    }

    .hero-visual-strip,
    .capability-grid,
    .benefit-grid,
    .sector-grid,
    .trust-grid,
    .customer-logo-grid,
    .solutions-grid,
    .faq-grid,
    .resource-grid,
    .article-hero,
    .article-grid {
        grid-template-columns: 1fr;
    }

    .image-logo,
    .customer-copy-badge {
        width: 100%;
        max-width: 280px;
    }

    .mission-graphic {
        width: calc(100% - 12px);
        max-height: 300px;
    }

    .article-shell {
        width: min(100vw - 28px, 100%);
    }
}

@media (max-width: 640px) {
    .page-shell,
    .article-shell {
        width: calc(100vw - 24px);
    }

    .hero-copy,
    .lead-card,
    .section-card,
    .benefits-strip,
    .light-section,
    .closing-cta,
    .dark-feature,
    .article-hero,
    .article-section,
    .article-cta {
        padding: 22px 18px;
        border-radius: 24px;
    }

    h1,
    .article-hero h1 {
        font-size: clamp(2rem, 11vw, 2.75rem);
        line-height: 1.02;
    }

    .card-header h2,
    .section-intro h2,
    .dark-copy h2,
    .closing-cta h2,
    .article-section h2 {
        font-size: clamp(1.55rem, 8vw, 2rem);
    }

    .hero-text,
    .section-intro p,
    .article-hero p,
    .article-section p,
    .article-section li,
    .resource-actions-note,
    .closing-cta p {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .hero-highlight,
    .resource-card,
    .faq-card,
    .solution-card,
    .trust-card,
    .capability-card,
    .sector-copy,
    .customer-logo-card {
        padding: 18px;
    }

    .field-grid.two-up,
    .article-grid {
        grid-template-columns: 1fr;
    }

    .chip-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .chip-option span {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 10px 12px;
    }

    .submit-button,
    .header-cta {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header-link {
        flex-basis: 100%;
        width: 100%;
    }

    .chip-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual-card {
        min-height: 144px;
    }

    .mission-board {
        min-height: 280px;
    }

    .mission-graphic {
        max-height: 220px;
    }
}
