:root {
    --ink: #081426;
    --muted: #607086;
    --line: #dde5ed;
    --surface: #f5f8fb;
    --white: #ffffff;
    --navy: #07111f;
    --navy-soft: #0d1c30;
    --teal: #16b99f;
    --teal-bright: #5de2cb;
    --blue: #5f8ff5;
    --shadow: 0 30px 80px rgba(7, 17, 31, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

button,
input {
    font: inherit;
}

.shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(7, 17, 31, .9);
    color: var(--white);
    backdrop-filter: blur(20px);
}

.nav-shell {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 13px;
    background: linear-gradient(145deg, rgba(93, 226, 203, .22), rgba(95, 143, 245, .12));
    box-shadow: inset 0 1px rgba(255, 255, 255, .12);
}

.brand-mark svg {
    width: 28px;
    fill: none;
    stroke: var(--teal-bright);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    letter-spacing: -.02em;
}

.brand-copy small {
    margin-top: 4px;
    color: #8fa1b9;
    font-size: 11px;
}

.desktop-nav,
.nav-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav a,
.text-link {
    color: #b8c4d4;
    font-size: 14px;
    font-weight: 600;
    transition: color .2s ease;
}

.desktop-nav a:hover,
.text-link:hover {
    color: var(--white);
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.button-small {
    min-height: 42px;
    padding-inline: 17px;
}

.button-light {
    background: var(--white);
    color: var(--ink);
}

.button-primary {
    background: var(--teal-bright);
    color: #05241f;
    box-shadow: 0 15px 35px rgba(37, 203, 175, .2);
}

.button-primary:hover {
    background: #75ead6;
}

.button-ghost {
    border-color: rgba(255, 255, 255, .17);
    background: rgba(255, 255, 255, .05);
    color: var(--white);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .09);
}

.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .2;
    background-image: linear-gradient(rgba(137, 160, 190, .16) 1px, transparent 1px), linear-gradient(90deg, rgba(137, 160, 190, .16) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.hero-glow-one {
    width: 620px;
    height: 620px;
    top: -340px;
    left: 40%;
    background: radial-gradient(circle, rgba(28, 185, 159, .22), transparent 68%);
}

.hero-glow-two {
    width: 700px;
    height: 700px;
    right: -430px;
    bottom: -420px;
    background: radial-gradient(circle, rgba(79, 120, 231, .22), transparent 68%);
}

.hero-layout {
    position: relative;
    z-index: 2;
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(540px, 1.12fr);
    align-items: center;
    gap: 70px;
    padding-block: 92px 110px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #118a77;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eyebrow-dark {
    color: var(--teal-bright);
}

.eyebrow-light {
    color: #5fdec8;
}

.eyebrow-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-bright);
    box-shadow: 0 0 0 6px rgba(93, 226, 203, .12);
}

.hero h1,
.section-heading h2,
.operations-copy h2,
.tracking-copy h2,
.final-card h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    line-height: 1.06;
    letter-spacing: -.055em;
}

.hero h1 {
    max-width: 610px;
    margin-top: 24px;
    font-size: clamp(52px, 5.7vw, 79px);
    font-weight: 800;
}

.hero h1 span {
    color: var(--teal-bright);
}

.hero-lead {
    max-width: 590px;
    margin: 26px 0 0;
    color: #aab8ca;
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
    color: #9aaabd;
    font-size: 13px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-proof i {
    color: var(--teal-bright);
    font-style: normal;
}

.command-stage {
    position: relative;
    width: 100%;
}

.command-window {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 20px;
    background: rgba(14, 29, 49, .93);
    box-shadow: 0 45px 120px rgba(0, 0, 0, .42), inset 0 1px rgba(255, 255, 255, .06);
    transform: perspective(1300px) rotateY(-4deg) rotateX(1.5deg);
    transform-origin: center left;
}

.command-topbar {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.command-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
}

.window-dots {
    display: flex;
    gap: 5px;
}

.window-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4a5b71;
}

.window-dots i:first-child {
    background: #ef6b6b;
}

.window-dots i:nth-child(2) {
    background: #f4c563;
}

.window-dots i:nth-child(3) {
    background: #55d2a4;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 9px;
    border: 1px solid rgba(93, 226, 203, .2);
    border-radius: 999px;
    background: rgba(93, 226, 203, .08);
    color: #85ead9;
    font-size: 10px;
    font-weight: 700;
}

.live-pill i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-bright);
    box-shadow: 0 0 0 4px rgba(93, 226, 203, .1);
}

.command-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 14px;
}

.command-kpis article {
    min-width: 0;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    background: rgba(255, 255, 255, .035);
}

.command-kpis span,
.command-kpis small {
    display: block;
    color: #8192a9;
    font-size: 9px;
}

.command-kpis strong {
    display: block;
    margin: 4px 0 2px;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    letter-spacing: -.04em;
}

.command-kpis .positive {
    color: #65d9bd;
}

.command-body {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(175px, .8fr);
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.network-map {
    position: relative;
    min-height: 292px;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, .07);
    background: radial-gradient(circle at 45% 45%, rgba(44, 118, 135, .17), transparent 52%);
}

.map-label {
    position: absolute;
    z-index: 2;
    top: 17px;
    left: 18px;
    display: grid;
    line-height: 1.3;
}

.map-label span {
    color: #8292a7;
    font-size: 9px;
    text-transform: uppercase;
}

.map-label strong {
    margin-top: 3px;
    font-size: 11px;
}

.network-map svg {
    position: absolute;
    width: 100%;
    inset: 34px 0 0;
}

.map-land {
    fill: rgba(51, 80, 108, .15);
    stroke: rgba(128, 159, 189, .11);
}

.route-line {
    fill: none;
    stroke: url(#route-gradient);
    stroke-dasharray: 5 5;
    stroke-linecap: round;
    stroke-width: 2;
}

.route-line-muted {
    stroke: rgba(120, 151, 184, .23);
    stroke-width: 1.4;
}

.map-node circle:first-child {
    fill: rgba(93, 226, 203, .12);
    stroke: rgba(93, 226, 203, .42);
}

.map-node circle:last-child,
.moving-point {
    fill: var(--teal-bright);
}

.moving-point {
    filter: drop-shadow(0 0 7px rgba(93, 226, 203, .85));
}

.route-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 8px;
    background: rgba(7, 17, 31, .82);
    color: #a8b7c9;
    font-size: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
}

.route-chip i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal-bright);
}

.route-chip-one {
    top: 128px;
    left: 36%;
}

.route-chip-two {
    right: 7%;
    bottom: 37px;
}

.activity-rail {
    padding: 15px 13px;
}

.rail-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #8d9db1;
    font-size: 9px;
    text-transform: uppercase;
}

.rail-head b {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, .06);
    color: #d9e2ed;
}

.activity-rail article {
    display: grid;
    grid-template-columns: 26px 1fr auto;
    align-items: start;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.activity-icon {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
}

.activity-warning {
    background: rgba(244, 183, 64, .12);
    color: #efc567;
}

.activity-success {
    background: rgba(93, 226, 203, .1);
    color: var(--teal-bright);
}

.activity-info {
    background: rgba(95, 143, 245, .12);
    color: #8eb0fa;
}

.activity-rail article div {
    min-width: 0;
    display: grid;
    line-height: 1.35;
}

.activity-rail strong {
    color: #dce4ee;
    font-size: 9px;
}

.activity-rail span,
.activity-rail time {
    color: #71839b;
    font-size: 8px;
}

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 12px;
    background: rgba(15, 31, 51, .94);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .3);
}

.floating-card-left {
    left: -38px;
    bottom: -27px;
}

.floating-card-right {
    right: -24px;
    top: 90px;
    display: grid;
    gap: 1px;
}

.floating-card strong {
    display: block;
    font-size: 11px;
}

.floating-card small {
    display: block;
    color: #8495aa;
    font-size: 8px;
}

.floating-card-right strong {
    color: var(--teal-bright);
    font-size: 13px;
}

.floating-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(93, 226, 203, .13);
    color: var(--teal-bright);
    font-weight: 800;
}

.signal-bar {
    position: relative;
    z-index: 5;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

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

.signal-grid div {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 28px;
    border-right: 1px solid var(--line);
}

.signal-grid div:first-child {
    border-left: 1px solid var(--line);
}

.signal-grid strong {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
}

.signal-grid span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.section {
    padding-block: 118px;
}

.product-section {
    background: var(--surface);
}

.section-heading {
    max-width: 790px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.operations-copy h2,
.tracking-copy h2 {
    margin-top: 17px;
    font-size: clamp(38px, 4.5vw, 56px);
    font-weight: 800;
}

.section-heading p,
.operations-copy > p,
.tracking-copy > p {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 58px;
}

.product-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card:hover {
    border-color: #b9cbd9;
    box-shadow: 0 22px 50px rgba(24, 45, 70, .08);
    transform: translateY(-5px);
}

.product-card-featured {
    border-color: #8cdbcb;
    background: linear-gradient(145deg, #ffffff, #effbf8);
}

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

.product-top small {
    color: #8492a4;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #dff8f3;
    color: #0b846f;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.icon-violet {
    background: #eee8ff;
    color: #7452cc;
}

.icon-orange {
    background: #fff0de;
    color: #bf6f1e;
}

.icon-blue {
    background: #e5edff;
    color: #456cc5;
}

.icon-cyan {
    background: #e2f6fa;
    color: #237d91;
    font-size: 12px;
}

.icon-pink {
    background: #ffe8f1;
    color: #b24c72;
    font-size: 12px;
}

.product-card h3 {
    margin: 24px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    letter-spacing: -.035em;
}

.product-card p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.product-card ul {
    display: grid;
    gap: 7px;
    margin: 17px 0 0;
    padding: 0;
    color: #45566c;
    font-size: 12px;
    list-style: none;
}

.product-card li::before {
    margin-right: 7px;
    color: #13a58e;
    content: "✓";
}

.product-card > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 22px;
    color: #087d6b;
    font-size: 13px;
    font-weight: 800;
}

.operations-section {
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}

.operations-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(490px, 1.1fr);
    align-items: center;
    gap: 100px;
}

.operations-copy > p {
    color: #9dafc3;
}

.feature-list {
    display: grid;
    gap: 25px;
    margin-top: 38px;
}

.feature-list article {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 17px;
}

.feature-list article > span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(93, 226, 203, .24);
    border-radius: 10px;
    background: rgba(93, 226, 203, .08);
    color: var(--teal-bright);
    font-size: 10px;
    font-weight: 800;
}

.feature-list strong {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
}

.feature-list p {
    margin: 4px 0 0;
    color: #8fa1b7;
    font-size: 13px;
}

.workflow-card {
    position: relative;
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(19, 39, 64, .92), rgba(10, 25, 43, .96));
    box-shadow: 0 40px 90px rgba(0, 0, 0, .3);
}

.workflow-card::before {
    position: absolute;
    z-index: 0;
    width: 320px;
    height: 320px;
    right: -160px;
    bottom: -170px;
    border-radius: 50%;
    background: rgba(41, 190, 165, .08);
    content: "";
}

.workflow-head,
.workflow-route,
.workflow-events {
    position: relative;
    z-index: 1;
}

.workflow-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.workflow-head div {
    display: grid;
}

.workflow-head small {
    color: #8092aa;
    font-size: 10px;
    text-transform: uppercase;
}

.workflow-head strong {
    margin-top: 4px;
    font-family: "Manrope", sans-serif;
    font-size: 17px;
}

.workflow-head > span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(93, 226, 203, .1);
    color: var(--teal-bright);
    font-size: 10px;
    font-weight: 800;
}

.workflow-route {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    font-size: 12px;
    font-weight: 700;
}

.workflow-route i {
    position: relative;
    height: 2px;
    background: rgba(255, 255, 255, .1);
}

.workflow-route i::before,
.workflow-route i::after {
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal-bright);
    content: "";
    transform: translateY(-50%);
}

.workflow-route i::after {
    right: 0;
}

.workflow-route b {
    position: absolute;
    top: 50%;
    left: 62%;
    width: 11px;
    height: 11px;
    border: 3px solid #16344e;
    border-radius: 50%;
    background: var(--teal-bright);
    box-shadow: 0 0 0 5px rgba(93, 226, 203, .1);
    transform: translate(-50%, -50%);
}

.workflow-events {
    margin-top: 24px;
}

.workflow-events article {
    position: relative;
    display: grid;
    grid-template-columns: 30px 1fr auto;
    align-items: center;
    gap: 13px;
    min-height: 66px;
}

.workflow-events article:not(:last-child)::after {
    position: absolute;
    width: 1px;
    height: 25px;
    bottom: -1px;
    left: 14px;
    background: rgba(255, 255, 255, .11);
    content: "";
}

.workflow-events i {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 9px;
    background: #11263e;
    color: #708299;
    font-size: 10px;
    font-style: normal;
}

.workflow-events .complete i {
    border-color: rgba(93, 226, 203, .2);
    background: rgba(93, 226, 203, .09);
    color: var(--teal-bright);
}

.workflow-events .active i::after {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal-bright);
    box-shadow: 0 0 0 5px rgba(93, 226, 203, .1);
    content: "";
}

.workflow-events div {
    display: grid;
}

.workflow-events strong {
    font-size: 12px;
}

.workflow-events span,
.workflow-events time {
    color: #7f91a8;
    font-size: 9px;
}

.tracking-section {
    background: #eef6f4;
}

.tracking-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
    align-items: center;
    gap: 100px;
}

.tracking-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.tracking-benefits span {
    padding: 7px 11px;
    border: 1px solid #cde2dc;
    border-radius: 999px;
    background: rgba(255, 255, 255, .65);
    color: #45665f;
    font-size: 11px;
    font-weight: 700;
}

.tracking-form {
    padding: 38px;
    border: 1px solid #d6e5e1;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 30px 70px rgba(27, 72, 61, .1);
}

.tracking-form label {
    display: block;
    margin-bottom: 14px;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.tracking-input-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.tracking-input-row input {
    min-width: 0;
    height: 57px;
    padding: 0 17px;
    border: 1px solid #d4dee4;
    border-radius: 11px;
    outline: none;
    color: var(--ink);
}

.tracking-input-row input:focus {
    border-color: #1ca98f;
    box-shadow: 0 0 0 4px rgba(28, 169, 143, .1);
}

.tracking-input-row button {
    height: 57px;
    padding: 0 21px;
    border: 0;
    border-radius: 11px;
    background: var(--ink);
    color: var(--white);
    cursor: pointer;
    font-weight: 800;
}

.tracking-input-row button span {
    margin-left: 8px;
}

.tracking-form > small {
    display: block;
    margin-top: 12px;
    color: #7c8999;
    font-size: 11px;
}

.final-section {
    padding-block: 80px;
    background: var(--white);
}

.final-card {
    min-height: 285px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 58px 64px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow);
}

.final-card > div:first-child {
    max-width: 680px;
}

.final-card h2 {
    margin-top: 15px;
    font-size: clamp(34px, 4vw, 50px);
}

.final-actions {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    gap: 10px;
}

.site-footer {
    padding-block: 46px;
    border-top: 1px solid var(--line);
    background: #f8fafc;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 45px;
}

.footer-brand .brand-mark {
    border-color: #dbe4ea;
    background: var(--white);
}

.footer-brand .brand-copy small {
    color: #738196;
}

.footer-layout nav {
    display: flex;
    gap: 22px;
    color: #647287;
    font-size: 12px;
    font-weight: 700;
}

.footer-layout p {
    margin: 0;
    color: #8793a3;
    font-size: 11px;
}

:focus-visible {
    outline: 3px solid rgba(93, 226, 203, .55);
    outline-offset: 3px;
}

@media (max-width: 1100px) {
    .desktop-nav {
        display: none;
    }

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

    .hero-copy {
        max-width: 760px;
    }

    .command-stage {
        max-width: 780px;
        margin-inline: auto;
    }

    .command-window {
        transform: none;
    }

    .operations-layout,
    .tracking-layout {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .operations-copy,
    .tracking-copy {
        max-width: 760px;
    }

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

    .final-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .final-actions {
        flex-flow: row wrap;
    }
}

@media (max-width: 760px) {
    .shell {
        width: min(100% - 32px, 1180px);
    }

    .site-header {
        position: relative;
    }

    .nav-shell {
        min-height: 70px;
    }

    .brand-copy small,
    .text-link {
        display: none;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .nav-actions {
        gap: 10px;
    }

    .button-small {
        min-height: 39px;
        padding-inline: 13px;
        font-size: 12px;
    }

    .hero {
        min-height: auto;
    }

    .hero-layout {
        min-height: auto;
        padding-block: 72px 90px;
    }

    .hero h1 {
        font-size: clamp(44px, 14vw, 64px);
    }

    .hero-lead {
        font-size: 16px;
    }

    .command-kpis {
        grid-template-columns: 1fr;
    }

    .command-kpis article:not(:first-child) {
        display: none;
    }

    .command-body {
        grid-template-columns: 1fr;
    }

    .network-map {
        min-height: 260px;
        border-right: 0;
    }

    .activity-rail,
    .floating-card {
        display: none;
    }

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

    .signal-grid div,
    .signal-grid div:first-child {
        min-height: 98px;
        padding: 18px;
        border: 1px solid var(--line);
        border-width: 0 1px 1px 0;
    }

    .section {
        padding-block: 82px;
    }

    .section-heading h2,
    .operations-copy h2,
    .tracking-copy h2 {
        font-size: 38px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        margin-top: 42px;
    }

    .product-card {
        min-height: 300px;
    }

    .workflow-card,
    .tracking-form {
        padding: 22px;
    }

    .tracking-input-row {
        grid-template-columns: 1fr;
    }

    .final-section {
        padding-block: 30px 60px;
    }

    .final-card {
        min-height: auto;
        padding: 42px 28px;
        border-radius: 18px;
    }

    .final-actions {
        width: 100%;
        flex-direction: column;
    }

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

    .footer-layout nav {
        flex-wrap: wrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
