:root {
    --bg: #07111f;
    --bg-light: #0b1728;
    --panel: rgba(15, 31, 53, 0.88);

    --text: #f4f8fc;
    --muted: #9aabc1;

    --blue: #1797ff;
    --cyan: #21d4fd;
    --green: #36e79c;

    --border: rgba(255,255,255,.09);

    --radius: 22px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

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

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(7,17,31,.82);
    backdrop-filter: blur(20px);

    border-bottom: 1px solid var(--border);
}

.header-inner {
    height: 84px;

    display: flex;
    align-items: center;
    gap: 34px;
}

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

    margin-right: auto;
}

.brand-mark {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;

    background:
        linear-gradient(
            135deg,
            var(--cyan),
            var(--blue)
        );

    box-shadow:
        0 8px 35px rgba(23,151,255,.35);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    line-height: 1.2;
    font-size: 18px;
}

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

.main-nav ul {
    margin: 0;
    padding: 0;

    display: flex;
    gap: 27px;

    list-style: none;
}

.main-nav a {
    font-size: 14px;
    color: #c7d4e4;

    transition: .2s;
}

.main-nav a:hover {
    color: white;
}

.header-login {
    padding: 11px 18px;

    border-radius: 12px;

    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);

    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;

    background: none;
    color: white;
    border: 0;

    font-size: 28px;
}

/* HERO */

.hero {
    position: relative;

    overflow: hidden;

    padding:
        105px 0
        125px;
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        1fr
        1fr;

    align-items: center;
    gap: 80px;
}

.eyebrow,
.section-kicker,
.section-heading span,
.cta-box span {
    color: var(--cyan);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.hero h1 {
    margin:
        20px 0
        24px;

    font-size:
        clamp(46px, 6vw, 78px);

    line-height: .98;

    letter-spacing: -3px;
}

.hero h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    max-width: 630px;

    font-size: 18px;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    gap: 14px;

    margin-top: 35px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 13px;

    font-weight: 700;

    transition: .2s;
}

.btn-primary {
    background:
        linear-gradient(
            135deg,
            var(--blue),
            #0976dd
        );

    box-shadow:
        0 15px 45px rgba(23,151,255,.27);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
}

.hero-features {
    margin-top: 31px;

    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    color: #9eb1c8;

    font-size: 13px;
}

/* DASHBOARD */

.hero-dashboard {
    position: relative;
}

.dashboard-card {
    padding: 20px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(17,39,67,.93),
            rgba(8,21,39,.96)
        );

    border: 1px solid rgba(255,255,255,.12);

    box-shadow:
        0 50px 100px rgba(0,0,0,.45);
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 17px;
}

.dashboard-top div {
    display: flex;
    flex-direction: column;
}

.dashboard-top small {
    color: var(--muted);
}

.status-online {
    color: var(--green);
    font-size: 12px;
}

.fake-map {
    position: relative;

    height: 330px;

    overflow: hidden;

    border-radius: 19px;

    background:
        radial-gradient(
            circle at center,
            #183150,
            #0b1828
        );
}

.road {
    position: absolute;

    background: rgba(255,255,255,.055);

    height: 16px;

    border-radius: 10px;

    transform: rotate(-15deg);
}

.road-one {
    width: 130%;
    left: -10%;
    top: 35%;
}

.road-two {
    width: 110%;
    left: -20%;
    top: 70%;

    transform: rotate(23deg);
}

.road-three {
    width: 90%;
    left: 20%;
    top: 15%;

    transform: rotate(62deg);
}

.vehicle {
    position: absolute;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #07111f;

    border: 2px solid var(--blue);

    box-shadow:
        0 0 25px rgba(23,151,255,.5);
}

.vehicle-one {
    left: 18%;
    top: 25%;
}

.vehicle-two {
    left: 62%;
    top: 44%;
}

.vehicle-three {
    left: 40%;
    top: 70%;
}

.map-pin {
    position: absolute;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: var(--cyan);

    box-shadow:
        0 0 15px var(--cyan);
}

.pin-one {
    top: 18%;
    right: 20%;
}

.pin-two {
    bottom: 21%;
    right: 13%;
}

.dashboard-stats {
    margin-top: 17px;

    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;
}

.dashboard-stats div {
    padding: 15px;

    border-radius: 14px;

    background: rgba(255,255,255,.035);

    border: 1px solid var(--border);
}

.dashboard-stats small {
    display: block;

    color: var(--muted);

    font-size: 11px;
}

.dashboard-stats strong {
    font-size: 24px;
}

.hero-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    filter: blur(130px);

    opacity: .14;
}

.hero-glow-one {
    background: var(--blue);

    top: -180px;
    right: -150px;
}

.hero-glow-two {
    background: var(--cyan);

    bottom: -300px;
    left: -250px;
}

/* FEATURES */

.features-section {
    padding: 110px 0;

    background: #091526;
}

.section-heading {
    max-width: 650px;
    margin-bottom: 50px;
}

.section-heading h2 {
    margin: 12px 0 0;

    font-size: 42px;
    line-height: 1.1;
}

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

    gap: 18px;
}

.feature-card {
    padding: 31px;

    border-radius: var(--radius);

    background: rgba(255,255,255,.025);

    border: 1px solid var(--border);

    transition: .25s;
}

.feature-card:hover {
    transform: translateY(-5px);

    border-color: rgba(23,151,255,.4);
}

.feature-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 24px;

    border-radius: 13px;

    background: rgba(23,151,255,.13);

    color: var(--cyan);

    font-size: 25px;
}

.feature-card h3 {
    margin: 0 0 10px;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
}

/* PLATFORM */

.platform-section {
    padding: 125px 0;
}

.platform-grid {
    display: grid;

    grid-template-columns:
        .85fr
        1.15fr;

    align-items: center;

    gap: 80px;
}

.platform-section h2 {
    margin: 15px 0 20px;

    font-size: 48px;
    line-height: 1.08;
}

.platform-section p {
    color: var(--muted);
}

.check-list {
    margin: 27px 0 0;
    padding: 0;

    list-style: none;
}

.check-list li {
    margin: 11px 0;

    color: #c6d3e2;
}

.check-list li::before {
    content: "✓";

    margin-right: 10px;

    color: var(--green);
}

.preview-window {
    overflow: hidden;

    border-radius: 25px;

    background: #10223a;

    border: 1px solid var(--border);

    box-shadow:
        0 40px 80px rgba(0,0,0,.35);
}

.preview-bar {
    height: 47px;

    display: flex;
    align-items: center;
    gap: 7px;

    padding: 0 18px;

    background: rgba(255,255,255,.035);
}

.preview-bar i {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: rgba(255,255,255,.25);
}

.preview-map {
    position: relative;

    height: 420px;

    background:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        radial-gradient(
            circle at 35% 40%,
            #18385d,
            #0b1727 70%
        );

    background-size:
        35px 35px,
        35px 35px,
        auto;
}

.preview-marker {
    position: absolute;

    color: var(--cyan);

    font-size: 28px;

    text-shadow:
        0 0 20px var(--cyan);
}

.marker-a {
    top: 24%;
    left: 20%;
}

.marker-b {
    top: 58%;
    left: 62%;
}

.marker-c {
    top: 37%;
    left: 75%;
}

/* CTA */

.cta-section {
    padding:
        40px 0
        120px;
}

.cta-box {
    padding: 55px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    border-radius: 28px;

    background:
        linear-gradient(
            130deg,
            rgba(16,52,87,.88),
            rgba(9,29,51,.92)
        );

    border: 1px solid rgba(255,255,255,.12);
}

.cta-box h2 {
    margin:
        8px 0
        8px;

    font-size: 37px;
}

.cta-box p {
    margin: 0;
    color: var(--muted);
}

/* FOOTER */

.site-footer {
    border-top: 1px solid var(--border);

    background: #050c16;
}

.footer-grid {
    padding: 70px 0;

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr;

    gap: 70px;
}

.footer-grid h3,
.footer-grid h4 {
    margin-top: 0;
}

.footer-grid p {
    max-width: 450px;
    color: var(--muted);
}

.footer-grid a {
    display: block;

    margin: 9px 0;

    color: var(--muted);
}

.footer-bottom {
    padding: 22px 20px;

    text-align: center;

    border-top: 1px solid var(--border);

    color: #70839b;

    font-size: 13px;
}

/* PAGE */

.page-content {
    min-height: 70vh;

    padding: 90px 0;
}

.page-content h1 {
    font-size: 50px;
}

/* MOBILE */

@media (max-width: 900px) {

    .main-nav,
    .header-login {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding:
            75px 0
            90px;
    }

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

    .hero-grid {
        gap: 55px;
    }

    .feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .cta-box {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media (max-width: 600px) {

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

    .header-inner {
        height: 72px;
    }

    .brand-text small {
        display: none;
    }

    .hero h1 {
        font-size: 46px;
        letter-spacing: -2px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
        gap: 7px;
    }

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

    .platform-section h2,
    .section-heading h2 {
        font-size: 36px;
    }

    .fake-map {
        height: 260px;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 32px 25px;
    }

    .cta-box h2 {
        font-size: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}
/* =========================================================
   INNER PAGES
========================================================= */

.subhero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 115px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(23,151,255,.14),
            transparent 35%
        );
}

.subhero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.subhero h1 {
    margin: 16px 0 25px;

    font-size: clamp(46px, 5vw, 68px);
    line-height: 1.03;
    letter-spacing: -2.5px;
}

.subhero h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subhero-content > p {
    max-width: 650px;
    color: var(--muted);
    font-size: 18px;
}


/* TRACKING VISUAL */

.tracking-map {
    position: relative;

    height: 430px;

    overflow: hidden;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 40% 40%,
            #18385e,
            #091624 70%
        );

    border: 1px solid rgba(255,255,255,.12);

    box-shadow:
        0 45px 90px rgba(0,0,0,.4);
}

.map-grid {
    position: absolute;
    inset: 0;

    opacity: .6;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 34px 34px;
}

.track-line {
    position: absolute;

    height: 5px;

    border-radius: 30px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cyan),
            var(--blue)
        );

    box-shadow:
        0 0 18px rgba(33,212,253,.4);
}

.track-line-one {
    width: 70%;
    left: 8%;
    top: 42%;
    transform: rotate(-19deg);
}

.track-line-two {
    width: 56%;
    right: 5%;
    bottom: 27%;
    transform: rotate(28deg);
}

.tracking-point {
    position: absolute;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #07111f;

    border: 2px solid var(--cyan);

    box-shadow:
        0 0 25px rgba(33,212,253,.5);

    z-index: 3;
}

.point-one {
    left: 15%;
    top: 32%;
}

.point-two {
    left: 51%;
    top: 46%;
}

.point-three {
    right: 12%;
    bottom: 17%;
}

.tracking-info {
    position: absolute;
    top: 28px;
    right: 28px;

    min-width: 180px;

    padding: 17px 18px;

    border-radius: 16px;

    background: rgba(5,15,27,.88);

    border: 1px solid rgba(255,255,255,.1);

    backdrop-filter: blur(12px);
}

.tracking-info small,
.tracking-info strong,
.tracking-info span {
    display: block;
}

.tracking-info small {
    color: var(--muted);
    font-size: 11px;
}

.tracking-info strong {
    margin: 2px 0;
}

.tracking-info span {
    color: var(--green);
    font-size: 12px;
}


/* GENERIC CONTENT */

.content-section {
    padding: 110px 0;
}

.center-heading {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.center-heading p {
    color: var(--muted);
}

.tracking-features {
    margin-top: 45px;
}


/* SPLIT CONTENT */

.split-section {
    padding: 115px 0;

    background: #091526;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 90px;
    align-items: center;
}

.split-section h2 {
    margin: 13px 0 20px;

    font-size: 46px;
    line-height: 1.1;
}

.split-section p {
    color: var(--muted);
}


/* DATA PANEL */

.data-panel {
    padding: 22px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(16,36,61,.95),
            rgba(8,20,36,.97)
        );

    border: 1px solid var(--border);

    box-shadow:
        0 35px 70px rgba(0,0,0,.3);
}

.data-panel-header {
    display: flex;
    justify-content: space-between;

    padding: 4px 3px 17px;

    color: #d9e5f1;
}

.data-panel-header small {
    color: var(--muted);
}

.trip-row {
    display: grid;
    grid-template-columns:
        1fr
        auto
        1fr
        auto;

    align-items: center;

    gap: 18px;

    padding: 19px;

    margin-top: 9px;

    border-radius: 15px;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.06);
}

.trip-row div {
    display: flex;
    flex-direction: column;
}

.trip-row small {
    color: var(--muted);
    font-size: 11px;
}

.trip-row > span {
    color: var(--cyan);
}

.trip-row b {
    color: var(--green);
    font-size: 13px;
}


/* THREE COLUMN INFO */

.darker-section {
    background: #07111f;
}

.three-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.info-block {
    padding: 35px;

    border-top: 1px solid rgba(255,255,255,.12);
}

.info-block > strong {
    display: block;

    margin-bottom: 25px;

    color: var(--cyan);

    font-size: 12px;
    letter-spacing: 2px;
}

.info-block h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.info-block p {
    color: var(--muted);
}


/* RESPONSIVE INNER PAGES */

@media (max-width: 900px) {

    .subhero-grid,
    .split-grid {
        grid-template-columns: 1fr;
    }

    .subhero-grid {
        gap: 55px;
    }

    .three-column-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .subhero {
        padding: 70px 0 80px;
    }

    .subhero h1 {
        font-size: 43px;
    }

    .tracking-map {
        height: 340px;
    }

    .tracking-info {
        top: 18px;
        right: 18px;
    }

    .split-section h2 {
        font-size: 35px;
    }

    .trip-row {
        grid-template-columns:
            1fr
            auto
            1fr;

        gap: 10px;
    }

    .trip-row b {
        grid-column: 1 / -1;
    }

}
/* =========================================================
   FLEET PAGE
========================================================= */

.fleet-dashboard {
    display: grid;
    gap: 18px;
}

.fleet-card {
    padding: 25px;
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(17,39,67,.93),
            rgba(8,21,39,.96)
        );

    border: 1px solid var(--border);

    box-shadow:
        0 30px 70px rgba(0,0,0,.25);
}

.fleet-card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fleet-card-title small,
.fleet-card small,
.fleet-card span {
    color: var(--muted);
}

.fleet-number {
    margin: 28px 0;
}

.fleet-number strong {
    font-size: 62px;
    line-height: 1;
}

.fleet-number span {
    margin-left: 8px;
}

.fleet-progress {
    margin-top: 20px;
}

.fleet-progress > div:first-child {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7px;
}

.progress-bar {
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
}

.progress-bar i {
    display: block;
    height: 100%;
    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );
}

.fleet-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.fleet-mini-grid strong {
    display: block;
    margin: 7px 0 2px;
    font-size: 28px;
}

.metric-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px 3px;

    border-bottom: 1px solid var(--border);
}

.metric-row:last-child {
    border-bottom: 0;
}

.metric-row span {
    color: var(--muted);
}

.metric-row strong {
    font-size: 17px;
}

@media (max-width: 600px) {

    .fleet-mini-grid {
        grid-template-columns: 1fr;
    }

    .metric-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

}
