:root {
    --bg: #05090d;
    --panel: #0b1118;
    --panel2: #111923;
    --red: #d32121;
    --red2: #ff3131;
    --orange: #ff7a18;
    --text: #f7f7f7;
    --muted: #b8c0ca;
    --line: rgba(255, 255, 255, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    background: var(--bg);
    color: var(--text)
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: min(1180px, 92%);
    margin: auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 9, 13, .88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line)
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center
}

.brand-mark {
    font-size: 34px
}

.brand b {
    display: block;
    font-size: 28px;
    letter-spacing: 1px
}

.brand small {
    display: block;
    font-size: 11px;
    color: var(--muted)
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase
}

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

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    color: white;
    font-size: 28px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--red), var(--orange));
    padding: 14px 22px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(211, 33, 33, .26)
}

.btn-small {
    padding: 11px 16px
}

.btn-outline {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .28);
    box-shadow: none
}

.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(211, 33, 33, .6)
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    opacity: .72
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns:1fr 320px;
    gap: 40px;
    align-items: center
}

.eyebrow {
    color: var(--red2);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px
}

.hero h1 {
    font-size: clamp(46px, 7vw, 86px);
    line-height: .96;
    margin: 8px 0 20px;
    text-transform: uppercase;
    letter-spacing: -2px
}

.hero h1 span {
    color: var(--red2)
}

.hero-text {
    max-width: 560px;
    color: #fff;
    font-size: 20px;
    line-height: 1.55
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px
}

.response-card {
    background: rgba(12, 17, 23, .78);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45)
}

.response-card small {
    text-transform: uppercase;
    font-weight: 900
}

.time {
    margin: 10px 0;
    color: white;
    font-size: 24px
}

.time span {
    font-size: 82px;
    color: var(--red2);
    font-weight: 900
}

.section {
    padding: 72px 0;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #06101a, #05090d)
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px
}

.section-title.left {
    text-align: left;
    margin-left: 0
}

.section h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
    margin: 0 0 18px;
    text-transform: uppercase
}

.challenge-grid, .product-grid {
    display: grid;
    grid-template-columns:repeat(5, 1fr);
    gap: 18px
}

.card, .product {
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    transition: .25s
}

.card:hover, .product:hover:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 49, 49, .55)
}

.card .icon {
    font-size: 38px;
    color: var(--red2)
}

.card h3, .product h3 {
    font-size: 21px;
    text-transform: uppercase
}

.card p, .product p p, .solution p {
    color: var(--muted);
    line-height: 1.6
}

.solution-grid {
    display: grid;
    grid-template-columns:1fr 1.35fr;
    gap: 50px;
    align-items: center
}

.check-list {
    padding: 0;
    list-style: none;
    margin: 24px 0
}

.check-list li {
    margin: 12px 0;
    color: #e9eef5
}

.check-list li:before {
    content: '✓';
    color: white;
    background: var(--red);
    border-radius: 50%;
    padding: 2px 6px;
    margin-right: 9px
}

.dashboard-mockup {
    min-height: 390px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: #101820;
    display: grid;
    grid-template-columns:170px 1fr;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .45)
}

.mock-sidebar {
    background: #0a0f15;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--muted)
}

.mock-sidebar b {
    font-size: 24px;
    color: white
}

.mock-main {
    padding: 20px
}

.stat-row {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 12px
}

.stat-row b {
    display: block;
    background: linear-gradient(135deg, var(--red), var(--orange));
    border-radius: 12px;
    padding: 16px;
    font-size: 30px
}

.stat-row small {
    font-size: 12px;
    color: white
}

.map-box {
    height: 170px;
    margin: 16px 0;
    border-radius: 14px;
    background: radial-gradient(circle at 40% 50%, rgba(255, 122, 24, .25), transparent 30%), #07111a;
    border: 1px solid var(--line);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 32px
}

.incident-list p {
    background: rgba(255, 255, 255, .06);
    padding: 12px;
    border-radius: 10px;
    margin: 8px 0
}

.incident-list em {
    float: right;
    color: var(--orange);
    font-style: normal
}

.product-grid {
    grid-template-columns:repeat(4, 1fr)
}

.product {
    min-height: 290px
}

.product ul {
    padding-left: 18px;
    color: #e5edf5;
    line-height: 1.9
}

.product.red {
    border-color: rgba(255, 49, 49, .45)
}

.product.orange {
    border-color: rgba(255, 122, 24, .45)
}

.product.blue {
    border-color: rgba(47, 126, 255, .45)
}

.feature-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 16px
}

.feature-grid div {
    padding: 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 24px
}

.feature-grid b {
    font-size: 16px
}

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

.price-card strong {
    display: block;
    font-size: 32px;
    color: var(--orange);
    margin: 16px 0
}

.price-card.featured {
    border-color: var(--orange);
    box-shadow: 0 0 50px rgba(255, 122, 24, .12)
}

.cta {
    padding: 70px 0;
    background: linear-gradient(135deg, rgba(211, 33, 33, .35), rgba(255, 122, 24, .18)), #080c11
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.footer {
    padding: 24px 0;
    background: #030506;
    color: var(--muted)
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px
}

.footer b {
    color: white
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block
    }

    .nav {
        position: absolute;
        top: 73px;
        left: 0;
        right: 0;
        background: #070b10;
        display: none;
        flex-direction: column;
        padding: 24px
    }

    .nav.open {
        display: flex
    }

    .hero-grid, .solution-grid {
        grid-template-columns:1fr
    }

    .response-card {
        max-width: 360px
    }

    .challenge-grid, .product-grid, .feature-grid {
        grid-template-columns:1fr 1fr
    }

    .dashboard-mockup {
        grid-template-columns:1fr
    }

    .mock-sidebar {
        display: none
    }

    .cta-inner, .footer-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .hero {
        min-height: auto;
        padding: 95px 0
    }

}

@media (max-width: 560px) {
    .challenge-grid, .product-grid, .feature-grid {
        grid-template-columns:1fr
    }

    .hero h1 {
        font-size: 48px
    }

    .brand b {
        font-size: 22px
    }

    .stat-row {
        grid-template-columns:1fr
    }

    .time span {
        font-size: 64px
    }

}


.journey-grid {
    display: grid;
    grid-template-columns:.9fr 1.1fr;
    gap: 36px;
    align-items: center
}

.flow-card {
    display: grid;
    gap: 14px
}

.flow-card div {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(255, 122, 24, .28);
    background: linear-gradient(90deg, rgba(211, 33, 33, .16), rgba(255, 122, 24, .06));
    border-radius: 16px
}

.flow-card b {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--orange));
    font-size: 18px
}

.flow-card span {
    font-size: 20px;
    font-weight: 800
}

.panel-visual {
    min-height: 340px;
    border-radius: 22px;
    border: 1px solid rgba(255, 49, 49, .35);
    background: radial-gradient(circle at 50% 40%, rgba(255, 49, 49, .34), transparent 38%), linear-gradient(135deg, rgba(211, 33, 33, .24), rgba(255, 122, 24, .08));
    display: grid;
    place-items: center;
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 0 14px 40px #000
}

.nav a[href="#firelink"], .nav a[href="#redkar"] {
    white-space: nowrap
}

@media (max-width: 900px) {
    .journey-grid {
        grid-template-columns:1fr
    }

    .panel-visual {
        min-height: 220px;
        font-size: 42px
    }

}

