:root {
    --navy: #03172f;
    --navy-deep: #020d1e;
    --blue: #087cf0;
    --blue-light: #37a8ff;
    --orange: #ff6413;
    --orange-soft: #ff9a61;
    --ink: #09172d;
    --muted: #667286;
    --line: #e8edf4;
    --paper: #f8fafc;
    --white: #fff;
    --shadow: 0 18px 50px rgba(5, 24, 48, .12);
    --font-display: "Bahnschrift", "Aptos Display", "Arial Narrow", "Segoe UI", sans-serif;
    --font-body: "Aptos", "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, #f7fbff 0%, #f2f7fc 48%, #f8fafc 100%);
    font-family: var(--font-body);
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    position: fixed;
    z-index: 0;
    inset: 0;
    content: "";
    background-image:
        linear-gradient(rgba(8, 124, 240, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 124, 240, .035) 1px, transparent 1px),
        radial-gradient(circle at 16% 30%, rgba(55, 168, 255, .1), transparent 24%),
        radial-gradient(circle at 88% 70%, rgba(255, 100, 19, .08), transparent 22%);
    background-size: 46px 46px, 46px 46px, auto, auto;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 8%, #000 28%, #000 86%, transparent);
}

button,
a {
    font: inherit;
}

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

svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

sub {
    font-size: .7em;
}

.ambient-canvas {
    position: fixed;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

main,
.site-footer {
    position: relative;
    z-index: 1;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid rgba(3, 23, 47, .07);
    backdrop-filter: blur(14px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 34px;
    width: min(1280px, calc(100% - 48px));
    min-height: 94px;
    margin: 0 auto;
}

.brand,
.footer-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand strong,
.footer-brand strong {
    position: relative;
    color: var(--navy);
    font-family: "Arial Black", "Bahnschrift Condensed", "Aptos Display", sans-serif;
    font-size: 2.55rem;
    font-weight: 900;
    line-height: .92;
    letter-spacing: -3px;
    font-style: normal;
    font-stretch: condensed;
    transform: skewX(-7deg);
}

.brand strong {
    color: transparent;
    background: linear-gradient(125deg, #03172f 12%, #087cf0 58%, #03172f 92%);
    background-clip: text;
    -webkit-background-clip: text;
    filter: drop-shadow(0 5px 10px rgba(8, 124, 240, .16));
}

.brand strong::after,
.footer-brand strong::after {
    position: absolute;
    right: 1px;
    bottom: -6px;
    left: 5px;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--orange), var(--blue));
    border-radius: 999px;
    transform: scaleX(.58);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}

.brand:hover strong::after,
.footer-brand:hover strong::after {
    transform: scaleX(1);
}

.brand span,
.footer-brand span {
    margin-left: 13px;
    padding-left: 13px;
    color: #3e495b;
    border-left: 1px solid #d5dbe3;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.3;
}

.main-nav {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 32px;
    height: 94px;
    margin-left: auto;
}

.main-nav a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: #3e4653;
    font-size: .93rem;
    font-weight: 750;
    letter-spacing: .01em;
    white-space: nowrap;
    isolation: isolate;
    transition: color .25s ease, transform .25s ease;
}

.main-nav a::before {
    position: absolute;
    z-index: -1;
    inset: 24px 0;
    content: "";
    background: linear-gradient(135deg, rgba(8, 124, 240, .1), rgba(55, 168, 255, .04));
    border: 1px solid rgba(8, 124, 240, .1);
    border-radius: 999px;
    opacity: 0;
    transform: scale(.75);
    transition: opacity .25s ease, transform .3s cubic-bezier(.2, .8, .2, 1);
}

.main-nav a::after {
    position: absolute;
    right: 10px;
    bottom: 0;
    left: 10px;
    height: 3px;
    content: "";
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--navy);
}

.main-nav a:hover {
    transform: translateY(-2px);
}

.main-nav a:hover::before,
.main-nav a.active::before {
    opacity: 1;
    transform: scale(1);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.private-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 13px 20px;
    color: var(--white);
    background: var(--navy);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(3, 23, 47, .2);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .02em;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.private-button:hover {
    background: #09264c;
    box-shadow: 0 13px 28px rgba(3, 23, 47, .28);
    transform: translateY(-2px);
}

.private-button svg {
    width: 14px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    margin-left: auto;
    background: transparent;
    border: 0;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--navy);
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 780px;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-deep);
}

.hero-slider,
.hero-slide,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slider {
    overflow: hidden;
}

.hero-slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: saturate(1.02) contrast(1.03);
    opacity: 0;
    transform: scale(1.055);
    transition: opacity 1s ease, transform 7s ease;
}

.hero-slide.active {
    z-index: 1;
    opacity: 1;
    transform: scale(1.01);
}

.hero-slide-cnc,
.banner-cnc {
    background-image: url("../images/hero/banner-cnc.jpg");
}

.hero-slide-laser,
.banner-laser {
    background-image: url("../images/hero/banner-laser.jpg");
}

.hero-slide-print,
.banner-print {
    background-image: url("../images/hero/banner-3d.jpg");
}

.hero-overlay {
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(1, 8, 20, .2), rgba(1, 8, 20, .46)),
        radial-gradient(circle at 69% 42%, rgba(0, 128, 255, .22), transparent 30%),
        linear-gradient(90deg, rgba(2, 13, 30, .99) 0%, rgba(2, 20, 43, .96) 37%, rgba(2, 18, 39, .6) 64%, rgba(2, 13, 30, .16) 100%);
}

.hero-fluid {
    position: absolute;
    z-index: 2;
    width: 38vw;
    height: 38vw;
    min-width: 360px;
    min-height: 360px;
    border-radius: 42% 58% 63% 37% / 42% 42% 58% 58%;
    filter: blur(45px);
    opacity: .22;
    pointer-events: none;
    transform: translate3d(var(--pointer-x, 0), var(--pointer-y, 0), 0);
    transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.hero-fluid-blue {
    top: -24%;
    right: 8%;
    background: radial-gradient(circle at 32% 35%, #1eb7ff, #006dff 46%, transparent 70%);
    animation: fluid-blue 14s ease-in-out infinite alternate;
}

.hero-fluid-orange {
    right: -13%;
    bottom: -45%;
    background: radial-gradient(circle at 42% 38%, #ff9b56, #ff6413 42%, transparent 71%);
    animation: fluid-orange 18s ease-in-out infinite alternate;
}

@keyframes fluid-blue {
    from { border-radius: 42% 58% 63% 37% / 42% 42% 58% 58%; rotate: -7deg; scale: .94; }
    to { border-radius: 61% 39% 35% 65% / 57% 33% 67% 43%; rotate: 12deg; scale: 1.08; }
}

@keyframes fluid-orange {
    from { border-radius: 58% 42% 38% 62% / 46% 60% 40% 54%; translate: 0 0; }
    to { border-radius: 38% 62% 59% 41% / 64% 38% 62% 36%; translate: -7% -8%; }
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 15px;
    color: rgba(255, 255, 255, .64);
    font-size: .84rem;
    font-weight: 900;
    letter-spacing: .22em;
}

.eyebrow-orange {
    color: var(--orange);
}

.hero h1 {
    max-width: 690px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(4.8rem, 7.4vw, 7.7rem);
    font-weight: 900;
    line-height: .9;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.hero h1 span {
    display: inline-block;
    color: var(--blue);
    text-shadow: 0 0 42px rgba(0, 128, 255, .32);
}

.hero-copy {
    max-width: 570px;
    margin: 29px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-top: 34px;
}

.button {
    --magnetic-x: 0px;
    --magnetic-y: 0px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-height: 58px;
    padding: 0 31px;
    border-radius: 999px;
    overflow: hidden;
    font-size: .94rem;
    font-weight: 850;
    letter-spacing: .015em;
    transition: transform .25s cubic-bezier(.2, .8, .2, 1), box-shadow .25s ease;
}

.button::after {
    position: absolute;
    top: -40%;
    bottom: -40%;
    left: -45%;
    width: 30%;
    content: "";
    background: rgba(255, 255, 255, .28);
    filter: blur(5px);
    transform: skewX(-24deg);
    transition: left .55s ease;
}

.button:hover {
    box-shadow: 0 18px 36px rgba(3, 23, 47, .24);
    transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) - 3px), 0) scale(1.025);
}

.button:hover::after {
    left: 120%;
}

.button-orange {
    color: var(--white);
    background: linear-gradient(135deg, #ff4e00, #ff8a00);
    box-shadow: 0 12px 28px rgba(255, 93, 12, .3);
}

.button-blue {
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 12px 28px rgba(3, 23, 47, .2);
}

.play-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 800;
}

.play-icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    padding-left: 3px;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 50%;
    font-size: .68rem;
    transition: color .25s ease, background .25s ease, transform .25s ease;
}

.play-link:hover .play-icon {
    color: var(--navy);
    background: var(--white);
    transform: scale(1.08);
}

.hero-data {
    display: flex;
    gap: 30px;
    margin-top: 46px;
    color: rgba(255, 255, 255, .68);
}

.hero-data span {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .12em;
}

.hero-data strong {
    color: var(--orange-soft);
    font-size: .67rem;
    letter-spacing: .08em;
}

.hero-pagination {
    position: absolute;
    z-index: 4;
    right: max(24px, calc((100% - 1280px) / 2));
    bottom: 38px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.hero-pagination button {
    position: relative;
    width: 64px;
    height: 34px;
    padding: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, .55);
    background: rgba(1, 10, 24, .48);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    cursor: pointer;
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .12em;
    backdrop-filter: blur(10px);
    transition: width .3s ease, color .3s ease, border-color .3s ease, background .3s ease;
}

.hero-pagination button::after {
    position: absolute;
    right: 7px;
    bottom: 4px;
    left: 7px;
    height: 2px;
    content: "";
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
}

.hero-pagination button.active {
    width: 83px;
    color: var(--white);
    background: rgba(6, 34, 69, .8);
    border-color: rgba(55, 168, 255, .48);
}

.hero-pagination button.active::after {
    animation: slide-progress 6.5s linear;
}

@keyframes slide-progress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.scroll-hint {
    position: absolute;
    z-index: 3;
    bottom: 20px;
    left: 50%;
    width: 26px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
}

.scroll-hint span {
    position: absolute;
    top: 8px;
    left: 10px;
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 4px;
    animation: scroll 1.7s infinite;
}

@keyframes scroll {
    0% { opacity: 0; transform: translateY(0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translateY(14px); }
}

.section {
    padding: 112px max(24px, calc((100% - 1280px) / 2));
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
    align-items: end;
    gap: 72px;
    max-width: none;
    margin: 0 0 58px;
    text-align: left;
}

.section-heading h2,
.contact h2 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4.8vw, 4.35rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.045em;
    text-wrap: balance;
}

.section-heading > p:last-child,
.contact > p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    font-weight: 550;
    line-height: 1.75;
}

.services {
    position: relative;
    z-index: 5;
    background: rgba(248, 250, 252, .84);
    backdrop-filter: blur(9px);
}

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

.service-card {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --glow-x: 50%;
    --glow-y: 50%;
    position: relative;
    min-height: 360px;
    padding: 44px 34px 35px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(5, 30, 61, .06);
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(7, 28, 54, .07);
    text-align: center;
    transform-style: preserve-3d;
    transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, border-color .35s ease;
}

.service-card::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    content: "";
    background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(55, 168, 255, .16), transparent 34%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

.service-card::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 56px;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--orange), #ffc099);
    transform: translateX(-50%);
}

.service-card:hover {
    box-shadow: var(--shadow);
    border-color: rgba(8, 124, 240, .18);
}

.js-enabled .service-card.reveal.is-visible:hover {
    transform: perspective(900px) translateY(-10px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.service-card:hover::before {
    opacity: 1;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    display: grid;
    width: 76px;
    height: 76px;
    margin: 0 auto 19px;
    place-items: center;
    color: #07589d;
    background: #edf7ff;
    border-radius: 18px;
    transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .4s ease;
}

.service-card:hover .service-icon {
    box-shadow: 0 14px 28px rgba(8, 124, 240, .18);
    transform: translateY(-5px) rotate(-4deg) scale(1.08);
}

.service-icon.orange {
    color: var(--orange);
    background: #fff3ec;
}

.service-icon svg {
    width: 49px;
    stroke-width: 1.7;
}

.service-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 850;
    letter-spacing: -.02em;
}

.service-card p {
    min-height: 88px;
    margin: 15px 0 22px;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
}

.service-card a {
    color: var(--navy);
    font-size: .9rem;
    font-weight: 800;
}

.service-card a span {
    margin-left: 5px;
    color: var(--orange);
    display: inline-block;
    transition: transform .25s ease;
}

.service-card a:hover span {
    transform: translateX(6px);
}

.project-showcase {
    overflow: hidden;
    background:
        radial-gradient(circle at 50% -10%, rgba(0, 121, 255, .2), transparent 32%),
        var(--navy-deep);
}

.section-heading.light h2 {
    color: var(--white);
}

.section-heading.light > p:last-child {
    color: rgba(255, 255, 255, .72);
}

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

.showcase-card {
    --image-x: 0px;
    --image-y: 0px;
    overflow: hidden;
    color: var(--white);
    background: #061d3d;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .25);
    transition: transform .4s cubic-bezier(.2, .8, .2, 1), border-color .4s ease, box-shadow .4s ease;
}

.showcase-card:hover {
    border-color: rgba(55, 168, 255, .4);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .34), 0 0 35px rgba(8, 124, 240, .1);
}

.js-enabled .showcase-card.reveal.is-visible:hover {
    transform: translateY(-9px);
}

.banner-crop {
    height: 235px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: transform .65s ease, filter .65s ease;
}

.showcase-card:hover .banner-crop {
    filter: saturate(1.15);
    transform: translate3d(var(--image-x), var(--image-y), 0) scale(1.1);
}

.showcase-card > div:last-child {
    position: relative;
    padding: 30px 31px 34px;
}

.showcase-card span {
    position: absolute;
    top: 20px;
    right: 25px;
    color: rgba(255, 255, 255, .12);
    font-size: 2.3rem;
    font-weight: 800;
}

.showcase-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.48rem;
    font-weight: 850;
}

.showcase-card p {
    margin: 9px 0 0;
    color: rgba(255, 255, 255, .6);
    font-size: 1rem;
    line-height: 1.65;
}

.server-section {
    background: rgba(248, 250, 252, .86);
    backdrop-filter: blur(9px);
}

.server-card {
    display: grid;
    grid-template-columns: 1.25fr 1fr .85fr;
    align-items: center;
    min-height: 300px;
    padding: 52px 58px;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 50%, rgba(0, 125, 255, .22), transparent 25%),
        linear-gradient(120deg, #06254c, #020d1f 68%);
    border: 1px solid rgba(55, 168, 255, .18);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 22px 55px rgba(3, 23, 47, .18);
}

.server-intro {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.lock-badge {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--orange-soft);
    border: 1px solid rgba(255, 120, 47, .5);
    border-radius: 50%;
}

.lock-badge svg {
    width: 25px;
}

.server-intro h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 2.65rem;
    font-weight: 900;
    letter-spacing: -.035em;
}

.server-intro .server-subtitle {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .06em;
}

.server-intro p:last-child {
    max-width: 350px;
    margin: 11px 0 0;
    color: rgba(255, 255, 255, .6);
    font-size: 1rem;
    line-height: 1.65;
}

.server-features {
    display: grid;
    gap: 18px;
    padding: 0 35px;
    margin: 0;
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-left: 1px solid rgba(255, 255, 255, .1);
    list-style: none;
}

.server-features li {
    display: grid;
    grid-template-columns: 26px 1fr;
    column-gap: 10px;
    font-size: .93rem;
}

.server-features li > span {
    grid-row: 1 / 3;
    color: var(--blue-light);
    font-size: 1.05rem;
}

.server-features small {
    margin-top: 2px;
    color: rgba(255, 255, 255, .62);
    font-size: .84rem;
}

.server-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 23px;
}

.server-action > svg {
    width: 72px;
    color: var(--orange-soft);
    filter: drop-shadow(0 0 14px rgba(255, 99, 19, .25));
}

.server-action .button {
    min-height: 52px;
    padding: 0 24px;
    font-size: .82rem;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 145px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(255, 98, 19, .08), transparent 15% 85%, rgba(255, 98, 19, .08)),
        #041a37;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0 0 24px 24px;
    box-shadow: 0 22px 55px rgba(3, 23, 47, .18);
}

.stats-bar div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stats-bar div:not(:last-child)::after {
    position: absolute;
    top: 29px;
    right: 0;
    bottom: 29px;
    width: 1px;
    content: "";
    background: rgba(255, 255, 255, .1);
}

.stats-bar strong {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
}

.stats-bar sup {
    color: var(--blue-light);
    font-size: .55em;
}

.stats-bar span {
    margin-top: 7px;
    color: rgba(255, 255, 255, .57);
    font-size: .86rem;
    font-weight: 600;
}

.contact {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(10px);
    text-align: center;
}

.contact h2 {
    max-width: 900px;
    margin-inline: auto;
}

.contact > p:not(.eyebrow) {
    max-width: 690px;
    margin: 20px auto 0;
}

.contact .button {
    margin-top: 29px;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 45px;
    min-height: 138px;
    padding: 34px max(24px, calc((100% - 1280px) / 2));
    color: var(--white);
    background: var(--navy);
}

.footer-brand strong {
    color: var(--white);
}

.footer-brand span {
    color: rgba(255, 255, 255, .75);
    border-color: rgba(255, 255, 255, .2);
}

.footer-brand small {
    color: rgba(255, 255, 255, .4);
}

.site-footer nav {
    display: flex;
    gap: 25px;
    color: rgba(255, 255, 255, .65);
    font-size: .86rem;
    font-weight: 650;
}

.site-footer nav a:hover {
    color: var(--white);
}

.site-footer > p {
    margin: 0;
    color: rgba(255, 255, 255, .45);
    font-size: .78rem;
    line-height: 1.7;
    text-align: right;
}

.js-enabled .reveal {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(32px) scale(.985);
    transition:
        opacity .7s ease var(--reveal-delay, 0ms),
        filter .7s ease var(--reveal-delay, 0ms),
        transform .8s cubic-bezier(.2, .75, .25, 1) var(--reveal-delay, 0ms);
}

.js-enabled .reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

@media (max-width: 1080px) {
    .nav-wrap {
        gap: 20px;
    }

    .main-nav {
        gap: 18px;
    }

    .main-nav a {
        font-size: .82rem;
    }

    .private-button {
        padding: 11px 14px;
    }

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

    .server-card {
        grid-template-columns: 1fr 1fr;
    }

    .server-action {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
        padding-top: 30px;
    }

    .site-footer {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer nav {
        display: none;
    }
}

@media (max-width: 820px) {
    .nav-wrap {
        gap: 12px;
        min-height: 74px;
    }

    .brand strong {
        font-size: 2.15rem;
    }

    .menu-toggle {
        display: block;
        flex: 0 0 auto;
    }

    .main-nav {
        position: absolute;
        top: 74px;
        right: 0;
        left: 0;
        display: none;
        height: auto;
        padding: 12px 20px 22px;
        background: var(--white);
        border-top: 1px solid var(--line);
        box-shadow: 0 20px 35px rgba(3, 23, 47, .12);
    }

    .main-nav.open {
        display: grid;
    }

    .main-nav a {
        min-height: 42px;
        padding: 0 14px;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a::before {
        inset: 3px 0;
        border-radius: 12px;
    }

    .main-nav a:hover {
        transform: translateX(5px);
    }

    .private-button {
        justify-content: center;
        padding: 10px;
        font-size: 0;
        line-height: 1;
    }

    .private-button svg {
        width: 17px;
    }

    .hero {
        min-height: 690px;
    }

    .hero-slide {
        background-position: 58% top;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(2, 15, 34, .98), rgba(2, 18, 39, .68));
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .section-heading > p:last-child {
        max-width: 680px;
    }

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

    .banner-crop {
        height: 230px;
    }

    .server-card {
        grid-template-columns: 1fr;
        padding: 40px 32px;
    }

    .server-features {
        padding: 28px 0;
        margin-top: 28px;
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, .1);
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .server-action {
        grid-column: auto;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 15px;
    }

    .stats-bar div {
        min-height: 105px;
    }

    .stats-bar div:nth-child(2)::after {
        display: none;
    }

    .site-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .site-footer > p {
        text-align: center;
    }
}

@media (max-width: 560px) {
    body {
        overflow-x: hidden;
    }

    .hero .eyebrow {
        color: rgba(255, 255, 255, .74);
    }

    .hero-data {
        color: rgba(255, 255, 255, .76);
    }

    .section-heading > p:last-child,
    .contact > p:not(.eyebrow),
    .service-card p {
        color: #56657a;
    }

    .section-heading.light > p:last-child,
    .showcase-card p {
        color: rgba(255, 255, 255, .72);
    }

    .server-intro .server-subtitle {
        color: rgba(255, 255, 255, .8);
    }

    .server-intro p:last-child,
    .server-features small {
        color: rgba(255, 255, 255, .72);
    }

    .stats-bar span {
        color: rgba(255, 255, 255, .68);
    }

    .footer-brand span {
        color: rgba(255, 255, 255, .82);
    }

    .footer-brand small,
    .site-footer > p {
        color: rgba(255, 255, 255, .6);
    }

    .brand span {
        display: none;
    }

    .hero {
        min-height: 700px;
    }

    .hero h1 {
        font-size: clamp(3.15rem, 15vw, 4.15rem);
    }

    .hero-copy {
        max-width: 100%;
        font-size: 1.08rem;
        overflow-wrap: anywhere;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-data {
        display: grid;
        grid-template-columns: repeat(3, auto);
        justify-content: start;
        gap: 10px 16px;
        margin-top: 32px;
    }

    .hero-data span {
        gap: 5px;
        font-size: .6rem;
        letter-spacing: .08em;
    }

    .hero-pagination {
        right: 16px;
        bottom: 24px;
        gap: 6px;
    }

    .hero-pagination button {
        width: 34px;
    }

    .hero-pagination button.active {
        width: 48px;
    }

    .hero-pagination button span {
        font-size: 0;
    }

    .section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .section-heading h2,
    .contact h2 {
        font-size: clamp(2.35rem, 11vw, 3.4rem);
    }

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

    .service-card {
        min-height: 330px;
    }

    .banner-crop {
        height: 180px;
    }

    .server-intro {
        flex-direction: column;
    }

    .server-action {
        flex-direction: column;
    }

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

    .stats-bar div:not(:last-child)::after {
        top: auto;
        right: 20px;
        bottom: 0;
        left: 20px;
        width: auto;
        height: 1px;
    }
}

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

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

    .hero-slide {
        transform: none !important;
    }

    .ambient-canvas,
    .hero-fluid {
        display: none;
    }

    body::before {
        background-image: none;
    }
}
