:root {
    --bg: #eef4fb;
    --surface: #ffffff;
    --surface-alt: #edf3fb;
    --surface-strong: #d7e4f4;
    --text: #10233f;
    --muted: #4b617d;
    --primary: #0d4a92;
    --primary-dark: #082c58;
    --accent: #17b9d6;
    --accent-soft: #7ee8ff;
    --border: #ccd9ea;
    --border-strong: rgba(119, 179, 255, 0.24);
    --hero-bg: #061325;
    --hero-surface: rgba(10, 26, 50, 0.78);
    --hero-surface-soft: rgba(17, 40, 72, 0.54);
    --hero-text: #edf6ff;
    --hero-muted: #bfd0e7;
    --shadow: 0 24px 48px rgba(8, 27, 51, 0.08);
    --shadow-hero: 0 35px 80px rgba(2, 14, 32, 0.55);
    --radius-lg: 1.6rem;
    --radius-md: 1.15rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top, rgba(92, 160, 255, 0.12), transparent 32%),
        linear-gradient(180deg, #e6eef8 0%, #edf3fb 18%, #f4f8fd 42%, #f2f7fc 68%, #ebf1f8 100%);
    line-height: 1.7;
}

::selection {
    background: #c8dbf7;
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    display: block;
}

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

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    background: #fff;
    padding: 0.5rem 0.75rem;
    border-radius: 0.4rem;
    z-index: 1000;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    overflow: clip;
    isolation: isolate;
    backdrop-filter: blur(16px);
    background: rgba(239, 245, 252, 0.8);
    border-bottom: 1px solid rgba(182, 202, 228, 0.52);
    box-shadow: 0 10px 24px rgba(8, 27, 51, 0.045);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0 -12%;
    background: linear-gradient(100deg, transparent 22%, rgba(118, 177, 245, 0.06) 48%, transparent 74%);
    transform: translate3d(-8%, 0, 0);
    opacity: 0.48;
    pointer-events: none;
    animation: headerSweep 18s ease-in-out infinite;
}

.header-inner {
    min-height: 94px;
    padding: 0.48rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.15rem;
    position: relative;
    z-index: 1;
}

.brand {
    display: inline-grid;
    gap: 0.38rem;
    font-weight: 700;
    align-items: center;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
}

.brand-logo {
    width: auto;
    height: 56px;
    object-fit: contain;
    display: block;
}

.brand-copy {
    display: grid;
    gap: 0;
    padding-left: 0.22rem;
    margin-top: -0.08rem;
}

.brand-text {
    font-size: 1.08rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.brand-copy small {
    color: #38516e;
    font-size: 0.81rem;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.28;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.mobile-nav {
    display: none;
}

.mobile-nav-layer,
.mobile-nav-toggle {
    display: none;
}

.mobile-nav-toggle {
    list-style: none;
}

.mobile-nav-toggle::-webkit-details-marker {
    display: none;
}

.main-nav {
    display: flex;
    gap: 1.65rem;
    font-size: 1rem;
    color: #48617e;
    font-weight: 600;
}

.main-nav a {
    position: relative;
    padding: 0.2rem 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.3rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.main-nav a:hover {
    color: var(--primary);
}

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

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.86rem 1.38rem;
    border-radius: 999px;
    border: 1px solid rgba(91, 149, 219, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 244, 252, 0.92));
    color: var(--primary-dark);
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 14px 26px rgba(8, 27, 51, 0.06);
}

.header-cta-mobile {
    width: 100%;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 8.4rem 0 6.9rem;
    background:
        radial-gradient(circle at 18% 20%, rgba(52, 160, 255, 0.18), transparent 26%),
        radial-gradient(circle at 78% 30%, rgba(40, 225, 255, 0.14), transparent 22%),
        radial-gradient(circle at 50% 100%, rgba(69, 112, 255, 0.12), transparent 38%),
        linear-gradient(135deg, #061325 0%, #08182d 34%, #0b2242 72%, #08172b 100%);
    color: var(--hero-text);
}

.hero-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(1220px, 94%);
    height: 104px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent 0%, rgba(118, 177, 245, 0.038) 100%);
    pointer-events: none;
}

.hero-background,
.hero-background span {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-background {
    overflow: hidden;
}

.hero-glow {
    filter: blur(22px);
    opacity: 0.8;
}

.hero-glow-one {
    inset: auto auto -12% -8%;
    width: 34rem;
    height: 34rem;
    background: radial-gradient(circle, rgba(54, 169, 255, 0.34) 0%, rgba(54, 169, 255, 0.08) 42%, transparent 68%);
    animation: pulseGlow 12s ease-in-out infinite;
}

.hero-glow-two {
    inset: -8% -10% auto auto;
    width: 28rem;
    height: 28rem;
    background: radial-gradient(circle, rgba(27, 237, 255, 0.3) 0%, rgba(27, 237, 255, 0.07) 42%, transparent 72%);
    animation: pulseGlow 15s ease-in-out infinite reverse;
}

.hero-gridlines {
    background-image:
        linear-gradient(rgba(139, 199, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 199, 255, 0.08) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 92%);
    opacity: 0.6;
}

.hero-gridlines::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 15%, rgba(124, 218, 255, 0.12) 50%, transparent 85%);
    transform: translateX(-55%);
    animation: sweepGrid 16s linear infinite;
}

.hero-trace {
    width: 165%;
    height: 165%;
    border-radius: 50%;
    border-top: 1px solid rgba(137, 214, 255, 0.12);
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-bottom: 0;
    opacity: 0.52;
    filter: blur(0.2px);
}

.hero-trace-one {
    --trace-rotate: -9deg;
    top: -106%;
    left: -36%;
    transform: rotate(-9deg);
    animation: traceDrift 20s ease-in-out infinite alternate;
}

.hero-trace-two {
    --trace-rotate: 7deg;
    top: -112%;
    left: -18%;
    width: 146%;
    height: 146%;
    border-top-color: rgba(105, 194, 255, 0.08);
    transform: rotate(7deg);
    animation: traceDrift 24s ease-in-out infinite alternate-reverse;
}

.hero-particles {
    background-image:
        radial-gradient(circle at 12% 20%, rgba(165, 224, 255, 0.9) 0 2px, transparent 3px),
        radial-gradient(circle at 32% 70%, rgba(91, 216, 255, 0.8) 0 1.5px, transparent 3px),
        radial-gradient(circle at 62% 18%, rgba(91, 216, 255, 0.7) 0 2px, transparent 3px),
        radial-gradient(circle at 84% 46%, rgba(165, 224, 255, 0.85) 0 1.5px, transparent 3px),
        radial-gradient(circle at 76% 84%, rgba(91, 216, 255, 0.75) 0 2px, transparent 3px);
    animation: particleDrift 20s ease-in-out infinite alternate;
    opacity: 0.54;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(450px, 1.04fr);
    gap: 3.95rem;
    align-items: center;
}

.hero-grid::before {
    content: "";
    position: absolute;
    inset: 2rem 0 0;
    border-radius: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    border: 1px solid rgba(124, 181, 242, 0.08);
    pointer-events: none;
}

.hero-copy {
    display: grid;
    max-width: 41rem;
    gap: 0;
}

.hero-mobile-stack {
    display: none;
}

.hero-intro-card {
    position: relative;
    padding: 2.15rem 2.15rem 2.05rem;
    border: 1px solid rgba(128, 190, 255, 0.18);
    border-radius: 1.5rem;
    background:
        linear-gradient(180deg, rgba(16, 35, 63, 0.18), rgba(10, 26, 50, 0.32)),
        rgba(8, 18, 34, 0.2);
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 68px rgba(2, 14, 32, 0.4);
}

.hero-intro-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(130deg, rgba(138, 216, 255, 0.52), transparent 38%, transparent 62%, rgba(138, 216, 255, 0.22));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-kicker {
    display: block;
    margin-top: 0;
    font-size: 0.93rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9fdcff;
    opacity: 0.94;
}

h1 {
    margin: 0.88rem 0 0;
    line-height: 1.03;
    font-size: clamp(2.52rem, 4.42vw, 4.22rem);
    max-width: 12.4ch;
    text-wrap: balance;
    letter-spacing: -0.038em;
}

.lead {
    color: #dde9f6;
    max-width: 54ch;
    margin: 1.08rem 0 0;
    font-size: 1.15rem;
    line-height: 1.74;
}

.hero-highlights {
    margin: 1.2rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.58rem;
    max-width: 28rem;
}

.hero-highlights li {
    position: relative;
    padding-left: 1.25rem;
    font-weight: 600;
    color: #edf4ff;
    line-height: 1.48;
    font-size: 1.01rem;
}

.hero-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: radial-gradient(circle, #82ecff 0%, #1ca6ff 72%);
    box-shadow: 0 0 14px rgba(90, 219, 255, 0.82);
}

.hero-cta-group {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.36rem;
}

.stat-card {
    position: relative;
    overflow: hidden;
    padding: 0.9rem 0.9rem 0.82rem;
    border: 1px solid rgba(117, 188, 255, 0.18);
    border-radius: 1rem;
    background:
        linear-gradient(180deg, rgba(17, 37, 64, 0.9), rgba(9, 24, 45, 0.72));
    box-shadow: 0 18px 36px rgba(0, 12, 28, 0.24);
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(147, 220, 255, 0.18), transparent 40%, transparent 68%, rgba(147, 220, 255, 0.15));
    opacity: 0.85;
}

.stat-card strong,
.stat-card span {
    position: relative;
    z-index: 1;
}

.stat-card strong {
    display: block;
    font-size: 1.52rem;
    line-height: 1;
    color: #ffffff;
}

.stat-card span {
    display: block;
    margin-top: 0.4rem;
    color: var(--hero-muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

.btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    padding: 0.88rem 1.28rem;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, #0da2d9, #1d74f2);
    color: #fff;
    box-shadow: 0 18px 36px rgba(22, 110, 224, 0.38);
}

.btn-primary:hover {
    box-shadow: 0 18px 36px rgba(22, 110, 224, 0.44);
}

.btn-outline {
    border-color: rgba(130, 203, 255, 0.34);
    color: #dbf5ff;
    background: rgba(8, 28, 54, 0.45);
}

.btn-light {
    background: rgba(225, 243, 255, 0.12);
    color: #f7fbff;
    border-color: rgba(146, 214, 255, 0.18);
}

.hero-visual {
    display: block;
}

.hero-monolith-stage {
    position: relative;
    min-height: 430px;
}

.hero-orbital-card,
.hero-panel {
    position: relative;
    border: 1px solid var(--border-strong);
    border-radius: 1.5rem;
    background:
        linear-gradient(180deg, rgba(9, 25, 46, 0.78), rgba(7, 18, 34, 0.58)),
        rgba(9, 22, 41, 0.6);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-hero);
}

.hero-orbital-card {
    min-height: 640px;
    padding: 1.6rem;
    overflow: hidden;
    border-color: rgba(138, 191, 249, 0.2);
}

.hero-monolith {
    position: absolute;
    inset: 35.8% auto auto 50%;
    width: 388px;
    height: 484px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.hero-monolith-aura {
    position: absolute;
    inset: 8% 10%;
    border-radius: 42%;
    background: radial-gradient(circle, rgba(97, 221, 255, 0.2) 0%, rgba(75, 126, 255, 0.08) 48%, transparent 76%);
    filter: blur(24px);
    animation: pulseGlow 14s ease-in-out infinite;
}

.hero-monolith-cap,
.hero-monolith-shell,
.hero-monolith-stream,
.hero-monolith-floor {
    position: absolute;
}

.hero-monolith-cap {
    left: 50%;
    width: 168px;
    height: 24px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(210, 240, 255, 0.16), rgba(20, 45, 80, 0.92));
    border: 1px solid rgba(123, 214, 255, 0.16);
    box-shadow: 0 8px 22px rgba(0, 11, 26, 0.24);
}

.hero-monolith-cap-top {
    top: 4%;
}

.hero-monolith-cap-bottom {
    bottom: 6%;
}

.hero-monolith-shell {
    left: 50%;
    top: 8%;
    width: 188px;
    height: 78%;
    transform: translateX(-50%);
    border-radius: 98px;
    border: 1px solid rgba(160, 230, 255, 0.15);
    background: linear-gradient(180deg, rgba(198, 238, 255, 0.08), rgba(21, 60, 108, 0.1) 30%, rgba(6, 19, 38, 0.44) 100%);
    box-shadow: inset 0 0 24px rgba(167, 236, 255, 0.06), 0 0 44px rgba(51, 189, 255, 0.12);
}

.hero-monolith-shell-inner {
    top: 11%;
    width: 150px;
    height: 72%;
    border-color: rgba(185, 239, 255, 0.12);
    background: linear-gradient(180deg, rgba(225, 248, 255, 0.05), rgba(18, 83, 142, 0.08) 36%, rgba(8, 23, 43, 0.16) 100%);
}

.hero-monolith-scan {
    position: absolute;
    left: 50%;
    top: 18%;
    width: 184px;
    height: 62%;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(180deg, transparent 0%, rgba(132, 232, 255, 0.05) 18%, rgba(132, 232, 255, 0.14) 22%, transparent 32%, transparent 100%);
    mix-blend-mode: screen;
    animation: scanSweep 9s ease-in-out infinite;
}

.hero-monolith-stream {
    left: 50%;
    top: 14%;
    width: 60px;
    height: 66%;
    transform: translateX(-50%);
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 4%, rgba(219, 249, 255, 0.86) 0, rgba(219, 249, 255, 0.24) 10%, transparent 18%),
        linear-gradient(180deg, rgba(103, 220, 255, 0.04) 0%, rgba(144, 231, 255, 0.82) 10%, rgba(102, 177, 255, 0.74) 34%, rgba(177, 118, 255, 0.48) 60%, rgba(57, 153, 255, 0.68) 82%, rgba(91, 232, 255, 0.04) 100%);
    filter: blur(1.4px);
    mask-image: radial-gradient(circle at 50% 0%, transparent 0, black 16%, black 80%, transparent 100%);
    opacity: 0.82;
    animation: energyColumn 14s ease-in-out infinite;
}

.hero-monolith-floor {
    left: 50%;
    bottom: 9%;
    width: 132px;
    height: 20px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(140, 241, 255, 0.58) 0%, rgba(63, 160, 255, 0.2) 38%, rgba(6, 19, 38, 0.05) 78%, transparent 82%);
    box-shadow: 0 0 18px rgba(78, 201, 255, 0.22);
}

.hero-monolith-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 226px;
    height: 226px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(135, 217, 255, 0.12);
    box-shadow: 0 0 18px rgba(85, 204, 255, 0.06);
    animation: rotateOrbit 24s linear infinite;
}

.hero-monolith-badge {
    position: absolute;
    left: 50%;
    top: 47.5%;
    width: 176px;
    height: 176px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    background: radial-gradient(circle at 50% 30%, rgba(221, 250, 255, 0.12), rgba(20, 69, 120, 0.08) 50%, rgba(8, 21, 42, 0.66) 100%);
    border: 1px solid rgba(177, 236, 255, 0.22);
    box-shadow: 0 0 44px rgba(38, 193, 255, 0.2), inset 0 0 22px rgba(133, 227, 255, 0.08);
}

.hero-monolith-badge::before,
.hero-monolith-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
}

.hero-monolith-badge::before {
    border: 5px solid rgba(200, 245, 255, 0.88);
    box-shadow: 0 0 20px rgba(101, 226, 255, 0.18);
}

.hero-monolith-badge::after {
    inset: 18px;
    border: 1px solid rgba(194, 241, 255, 0.14);
}

.hero-monolith-logo {
    position: relative;
    z-index: 1;
    width: 116px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(151, 235, 255, 0.18));
}

.hero-orbital-card::before,
.hero-orbital-card::after {
    content: "";
    position: absolute;
    inset: 1.2rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(126, 208, 255, 0.08);
    pointer-events: none;
}

.hero-orbital-card::after {
    inset: auto 1.25rem 1.25rem auto;
    width: 38%;
    height: 24%;
    border-radius: 999px;
    filter: blur(22px);
    background: radial-gradient(circle, rgba(30, 196, 255, 0.12), transparent 72%);
    border: 0;
}



.hero-panel {
    position: absolute;
    left: 1.7rem;
    right: 1.7rem;
    bottom: 1.35rem;
    z-index: 1;
    padding: 1.26rem 1.34rem 1.24rem;
    border-color: rgba(145, 215, 255, 0.16);
    background:
        linear-gradient(180deg, rgba(10, 25, 45, 0.82), rgba(7, 18, 34, 0.74)),
        rgba(9, 22, 41, 0.66);
    box-shadow: 0 20px 38px rgba(2, 14, 32, 0.21);
}

.hero-panel-heading {
    display: grid;
    gap: 0.32rem;
}

.hero-panel-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-soft);
}

.hero-panel h2 {
    margin: 0;
    font-size: 1.16rem;
    color: #f2f8ff;
}

.hero-panel p {
    margin: 0.78rem 0 0;
    color: #d6e5f3;
    line-height: 1.62;
    font-size: 0.99rem;
}

.hero-panel-list {
    margin: 0.86rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.62rem;
}

.hero-panel-list li {
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(137, 212, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #dcecff;
    line-height: 1.4;
    font-size: 0.86rem;
    font-weight: 600;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.78rem;
}

.hero-stats-compact {
    margin-top: 0.92rem;
}

.section {
    position: relative;
    padding: 6.6rem 0;
}

.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1160px, 92%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(107, 151, 207, 0.24), transparent);
}

.section-contact::before {
    display: none;
}

#projects::before {
    display: none;
}

.section-about {
    scroll-margin-top: 7rem;
}

.section-about::before {
    display: none;
}

.section-services {
    scroll-margin-top: 7rem;
}

.section-services::before {
    display: none;
}

.section-light {
    background:
        linear-gradient(180deg, rgba(238, 245, 252, 0.98), rgba(230, 239, 249, 0.98));
}

.section-light-alt {
    background:
        linear-gradient(180deg, rgba(227, 236, 247, 0.96), rgba(236, 243, 251, 0.98));
}

.section-dark {
    background:
        radial-gradient(circle at top right, rgba(49, 149, 255, 0.14), transparent 26%),
        linear-gradient(145deg, #081d39, #0a2648);
    color: #e9f0fb;
}

.section-contact {
    padding-top: 6rem;
    padding-bottom: 5.7rem;
    background:
        linear-gradient(180deg, rgba(222, 232, 245, 0.98), rgba(238, 245, 252, 0.99));
}

.section-narrow {
    width: min(840px, 100%);
}

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

.section-eyebrow {
    display: inline-flex;
    margin-bottom: 0.7rem;
    padding: 0.42rem 0.74rem;
    border-radius: 999px;
    border: 1px solid rgba(122, 168, 220, 0.24);
    background: rgba(255, 255, 255, 0.5);
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2.4rem, 3.9vw, 3.45rem);
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.section-heading p {
    margin-top: 0.95rem;
    color: var(--muted);
    line-height: 1.74;
    max-width: 62ch;
    font-size: 1.16rem;
}

.section-dark .section-heading p {
    color: #bfd2ef;
}

.section-text {
    margin-top: 1.4rem;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1.16rem;
}

.section-frame {
    margin-bottom: 0.55rem;
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cards-grid {
    margin-top: 2.9rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.service-cards-grid {
    margin-top: 1.85rem;
    gap: 1.45rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: start;
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
        linear-gradient(135deg, rgba(116, 213, 255, 0.05), transparent 42%);
    border: 1px solid rgba(199, 219, 245, 0.14);
    border-radius: 1.28rem;
    padding: 1.55rem 1.48rem 1.4rem;
    box-shadow: 0 22px 42px rgba(0, 10, 28, 0.15);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(111, 224, 255, 0.85), rgba(55, 137, 255, 0.14));
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 1.2rem 1.2rem auto auto;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106, 206, 255, 0.12), rgba(106, 206, 255, 0));
    opacity: 0.5;
    pointer-events: none;
}

.service-card-kicker {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #97dfff;
    font-weight: 800;
}

.service-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.service-card-index {
    color: rgba(210, 231, 255, 0.34);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.service-card h3 {
    position: relative;
    z-index: 1;
    margin: 0.82rem 0 0;
    font-size: 1.34rem;
    line-height: 1.22;
    color: #f3f8ff;
    max-width: 15ch;
    letter-spacing: -0.02em;
}

.service-card p {
    position: relative;
    z-index: 1;
    margin: 0.72rem 0 0;
    font-size: 0.98rem;
    line-height: 1.64;
    color: #d9e6f7;
    max-width: 30ch;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(142, 214, 255, 0.28);
    box-shadow: 0 28px 48px rgba(0, 12, 30, 0.2);
}

.chip-list,
.check-list {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.chip-list-compact {
    margin-top: 1.15rem;
}

.chip-list li {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(192, 210, 233, 0.9);
    border-radius: 999px;
    padding: 0.66rem 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    box-shadow: 0 14px 24px rgba(8, 27, 51, 0.05);
    font-size: 0.97rem;
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2.7rem;
    align-items: center;
}

.about-shell {
    position: relative;
    padding: 2.85rem;
    border: 1px solid rgba(178, 200, 227, 0.76);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(249, 252, 255, 0.86), rgba(238, 245, 252, 0.98));
    box-shadow: 0 30px 56px rgba(8, 27, 51, 0.08);
}

.about-intro {
    padding-right: 0.65rem;
}

.section-about .section-heading {
    max-width: 34rem;
}

.section-about .section-heading h2 {
    max-width: 11.5ch;
    font-size: clamp(2.16rem, 3.5vw, 3.08rem);
    line-height: 1.03;
    text-wrap: balance;
}

.section-about .section-heading p {
    color: #445a76;
    max-width: 54ch;
}

.about-panel,
.industries-shell,
.why-shell,
.projects-shell,
.contact-shell {
    position: relative;
    border: 1px solid rgba(178, 200, 227, 0.76);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(242, 248, 254, 0.95));
    box-shadow: 0 28px 54px rgba(8, 27, 51, 0.08);
}

.about-panel {
    padding: 1rem;
    border-color: rgba(187, 208, 232, 0.88);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(243, 248, 254, 0.92));
    box-shadow: 0 22px 44px rgba(8, 27, 51, 0.06);
}

.about-visual-card {
    position: relative;
    overflow: hidden;
    min-height: 460px;
    border-radius: 1.25rem;
    border: 1px solid rgba(182, 205, 232, 0.92);
    box-shadow: 0 22px 42px rgba(8, 27, 51, 0.08);
    background: #102a4a;
}

.about-visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 26, 49, 0.18), rgba(12, 67, 119, 0.08) 42%, rgba(5, 16, 29, 0.38) 100%);
}

.about-image {
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: 54% 48%;
    transform: scale(1.03);
}

.about-support {
    margin-top: 1.12rem;
    max-width: 56ch;
    color: #4b627d;
    line-height: 1.76;
    font-size: 1.1rem;
}

.industries-shell,
.why-shell,
.contact-shell {
    padding: 2.3rem;
}

.why-shell {
    padding-top: 2.45rem;
}

.contact-shell {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
}

.industries-grid,
.why-grid {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.industries-grid {
    margin-top: 1.9rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

.industry-card {
    position: relative;
    overflow: hidden;
    padding: 1.42rem 1.28rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(172, 199, 232, 0.7);
    background:
        linear-gradient(180deg, rgba(11, 29, 52, 0.16), rgba(6, 17, 31, 0.1)),
        #0f2747;
    min-height: 228px;
    display: flex;
    align-items: flex-end;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f4f9ff;
    box-shadow: 0 20px 34px rgba(8, 27, 51, 0.08);
}

.industry-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 22, 40, 0.1), rgba(8, 19, 35, 0.18) 38%, rgba(5, 13, 25, 0.78) 100%);
}

.industry-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(5, 13, 25, 0), rgba(5, 13, 25, 0.72));
    z-index: 0;
}

.industry-image {
    position: absolute;
    inset: 0;
    object-fit: cover;
    transform: scale(1.08);
    filter: saturate(0.92) contrast(1.02) brightness(0.9);
}

.industry-card-title {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 2.6rem;
    max-width: 12ch;
    line-height: 1.25;
    font-size: 1.16rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    text-shadow: 0 4px 14px rgba(3, 12, 26, 0.45);
}

.why-grid {
    margin-top: 2.15rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.18rem;
}

.why-card {
    position: relative;
    padding: 1.55rem 1.5rem 1.46rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(186, 206, 231, 0.82);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 254, 0.98));
    box-shadow: 0 22px 36px rgba(8, 27, 51, 0.055);
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(104, 198, 255, 0.92), rgba(104, 198, 255, 0.08));
}

.why-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.88rem;
}

.why-card-index {
    display: inline-flex;
    color: rgba(13, 74, 146, 0.52);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.why-card-accent {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    border: 1px solid rgba(123, 182, 240, 0.28);
    background:
        radial-gradient(circle, rgba(109, 203, 255, 0.22), rgba(109, 203, 255, 0.02) 68%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.why-card h3 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 1.22rem;
    line-height: 1.32;
    letter-spacing: -0.018em;
    max-width: 18ch;
}

.why-card p {
    margin: 0.82rem 0 0;
    color: #546a88;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 34ch;
}

.projects-shell {
    position: relative;
    padding: 2.55rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(164, 188, 218, 0.52);
    background:
        linear-gradient(180deg, rgba(249, 252, 255, 0.82), rgba(236, 244, 252, 0.98));
    box-shadow: 0 30px 56px rgba(8, 27, 51, 0.08);
}

.projects-note {
    margin: 1rem 0 0;
    max-width: 56ch;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.72;
}

.projects-grid {
    margin-top: 2.2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.14rem;
}

.project-item {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 254, 0.92));
    border: 1px solid rgba(191, 209, 232, 0.88);
    border-radius: 1.05rem;
    padding: 1.45rem 1.42rem;
    min-height: 156px;
    display: grid;
    align-content: space-between;
    box-shadow: 0 18px 32px rgba(8, 27, 51, 0.05);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    color: var(--primary-dark);
    overflow: hidden;
}

.project-item::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(104, 198, 255, 0.72), rgba(104, 198, 255, 0.08));
}

.project-item-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.project-item-label {
    display: inline-flex;
    color: #4c84bf;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-item-index {
    color: rgba(78, 111, 149, 0.58);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-item strong {
    font-size: 1.14rem;
    line-height: 1.48;
    letter-spacing: -0.016em;
    max-width: 18ch;
}

.project-item:hover {
    transform: translateY(-4px);
    border-color: rgba(119, 183, 245, 0.34);
    box-shadow: 0 24px 42px rgba(8, 27, 51, 0.08);
}

.contact-copy {
    display: grid;
    gap: 1.05rem;
}

.contact-note {
    margin: 0;
    max-width: 48ch;
    color: #5d718e;
    font-size: 1.08rem;
    line-height: 1.74;
}

.contact-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(245, 249, 255, 0.92));
    border: 1px solid rgba(182, 204, 233, 0.9);
    border-radius: 1.2rem;
    padding: 1.95rem;
    box-shadow: 0 26px 50px rgba(8, 27, 51, 0.08);
}

.contact-actions-card {
    display: grid;
    gap: 1rem;
}

.contact-action {
    position: relative;
    display: grid;
    gap: 0.22rem;
    padding: 1.12rem 1.2rem;
    border-radius: 1rem;
    border: 1px solid rgba(188, 207, 232, 0.92);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 255, 0.9));
    box-shadow: 0 18px 32px rgba(8, 27, 51, 0.05);
    color: var(--primary-dark);
    text-decoration: none;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-action:hover {
    transform: translateY(-3px);
    border-color: rgba(124, 188, 248, 0.38);
    box-shadow: 0 24px 40px rgba(8, 27, 51, 0.08);
}

.contact-action-label {
    font-size: 0.76rem;
    color: #5b7190;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-action strong {
    font-size: 1.18rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.contact-action-primary {
    border-color: rgba(87, 181, 117, 0.24);
    background:
        linear-gradient(180deg, rgba(21, 128, 61, 0.08), rgba(255, 255, 255, 0.96)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.9));
}

.contact-action-primary .contact-action-label {
    color: #1f8b4c;
}

.alert-success {
    margin-top: 0;
    margin-bottom: 1rem;
    padding: 0.7rem 0.8rem;
    background: #eaf9f4;
    border: 1px solid #bfe7d9;
    color: #145944;
    border-radius: 0.6rem;
}

.alert-error {
    margin-top: 0;
    margin-bottom: 1rem;
    padding: 0.7rem 0.8rem;
    background: #fff1f1;
    border: 1px solid #f2c6c6;
    color: #8e1d1d;
    border-radius: 0.6rem;
}

.site-footer {
    position: relative;
    padding: 2.9rem 0 2.3rem;
    background:
        radial-gradient(circle at top right, rgba(52, 151, 255, 0.14), transparent 24%),
        linear-gradient(180deg, #08172d, #061221);
    color: #c4d7f5;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1200px, 92%);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(129, 176, 232, 0.38), transparent);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 2.2rem;
    flex-wrap: wrap;
    align-items: flex-start;
    font-size: 0.95rem;
}

.footer-brand-block,
.footer-contact-block,
.footer-links-block {
    display: grid;
    gap: 0.42rem;
}

.footer-brand {
    display: grid;
    gap: 0.6rem;
    width: fit-content;
}

.footer-brand-logo {
    width: auto;
    height: 54px;
    object-fit: contain;
}

.footer-brand-block p,
.footer-brand-block small,
.footer-contact-block span,
.footer-contact-block a,
.footer-links-block a {
    margin: 0;
}

.footer-brand-block small,
.footer-contact-block span {
    color: #abc1df;
    line-height: 1.6;
}

.footer-brand-block small {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #90aed2;
}

.footer-contact-block a,
.footer-links-block a {
    color: #dceeff;
}

.footer-contact-block a:hover,
.footer-links-block a:hover {
    color: #8fd8ff;
}

.footer-heading {
    color: #8eb7e0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@keyframes pulseGlow {
    0%,
    100% {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 0.76;
    }

    50% {
        transform: scale(1.08) translate3d(0, -8px, 0);
        opacity: 1;
    }
}

@keyframes headerSweep {
    0%,
    100% {
        transform: translate3d(-8%, 0, 0);
        opacity: 0.24;
    }

    50% {
        transform: translate3d(8%, 0, 0);
        opacity: 0.44;
    }
}

@keyframes sweepGrid {
    from {
        transform: translateX(-55%);
    }

    to {
        transform: translateX(55%);
    }
}

@keyframes beamFloat {
    from {
        transform: translateX(0) rotate(-10deg);
    }

    to {
        transform: translateX(30%) rotate(-10deg);
    }
}

@keyframes particleDrift {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(0, -18px, 0) scale(1.03);
    }
}

@keyframes traceDrift {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(var(--trace-rotate, 0deg));
        opacity: 0.32;
    }

    50% {
        transform: translate3d(3%, 1.5%, 0) rotate(var(--trace-rotate, 0deg));
        opacity: 0.56;
    }
}

@keyframes scanSweep {
    0%,
    100% {
        transform: translateX(-50%) translateY(-10%);
        opacity: 0.45;
    }

    50% {
        transform: translateX(-50%) translateY(26%);
        opacity: 0.95;
    }
}

@keyframes energyColumn {
    0%,
    100% {
        transform: translateX(-50%) scaleY(1);
        opacity: 0.88;
        filter: blur(1px);
    }

    50% {
        transform: translateX(-50%) scaleY(1.06);
        opacity: 1;
        filter: blur(1.8px);
    }
}

@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .cards-grid,
    .projects-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

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

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

    .about-shell {
        padding: 2.2rem;
    }

    .about-intro {
        padding-right: 0;
    }

    .about-visual-card {
        min-height: 380px;
    }

    .header-inner {
        min-height: 84px;
    }

    .main-nav {
        gap: 1.1rem;
    }

    .hero-orbital-card {
        min-height: 560px;
    }

    .hero-monolith-stage {
        min-height: 402px;
    }

    .hero-monolith {
        width: 340px;
        height: 424px;
        inset: 34.8% auto auto 50%;
    }

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

@media (max-width: 760px) {
    html {
        scroll-behavior: auto;
    }

    .site-header {
        position: static;
        overflow: visible;
    }

    .header-inner {
        min-height: auto;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.9rem 0;
    }

    .header-actions {
        width: auto;
        margin-left: auto;
        justify-content: flex-end;
        gap: 0.85rem;
    }

    .brand-mark {
        width: fit-content;
    }

    .brand-logo {
        height: 42px;
    }

    .brand-copy {
        display: none;
    }

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

    .mobile-nav-toggle {
        display: inline-flex;
        align-items: center;
        gap: 0.72rem;
        min-height: 46px;
        padding: 0.72rem 0.95rem;
        border-radius: 999px;
        border: 1px solid rgba(117, 164, 220, 0.16);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 244, 252, 0.92));
        color: var(--primary-dark);
        font-size: 0.88rem;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 10px 20px rgba(8, 27, 51, 0.05);
    }

    .mobile-nav-toggle[aria-expanded="true"] {
        background: linear-gradient(180deg, rgba(233, 241, 251, 0.98), rgba(225, 235, 247, 0.94));
    }

    .mobile-nav-icon {
        position: relative;
        width: 1.05rem;
        height: 0.72rem;
    }

    .mobile-nav-icon::before,
    .mobile-nav-icon::after,
    .mobile-nav-icon {
        border-top: 2px solid var(--primary-dark);
    }

    .mobile-nav-icon::before,
    .mobile-nav-icon::after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
    }

    .mobile-nav-icon::before {
        top: 0.24rem;
    }

    .mobile-nav-icon::after {
        top: 0.5rem;
    }

    .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-icon {
        border-top-color: transparent;
    }

    .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-icon::before {
        top: 0.34rem;
        transform: rotate(45deg);
    }

    .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-icon::after {
        top: 0.34rem;
        transform: rotate(-45deg);
    }

    .mobile-nav-layer {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 220;
    }

    .mobile-nav-layer[hidden] {
        display: none;
    }

    .mobile-nav-backdrop {
        position: absolute;
        inset: 0;
        border: 0;
        background: rgba(4, 16, 30, 0.22);
        backdrop-filter: blur(4px);
    }

    .mobile-nav-panel {
        position: absolute;
        top: 5.15rem;
        right: 1rem;
        width: min(18rem, calc(100vw - 2rem));
        z-index: 221;
        padding: 1rem;
        border-radius: 1rem;
        border: 1px solid rgba(182, 202, 228, 0.76);
        background: rgba(245, 249, 254, 0.985);
        box-shadow: 0 22px 40px rgba(8, 27, 51, 0.12);
        backdrop-filter: blur(14px);
    }

    .mobile-nav-links {
        display: grid;
        gap: 0.2rem;
        margin-bottom: 0.8rem;
    }

    .mobile-nav-links a {
        padding: 0.72rem 0.2rem;
        font-size: 0.98rem;
        font-weight: 600;
        color: var(--primary-dark);
        border-bottom: 1px solid rgba(198, 213, 232, 0.72);
    }

    .mobile-nav-links a:last-child {
        border-bottom: 0;
    }

    body.mobile-nav-open {
        overflow: hidden;
    }

    .hero-section {
        padding: 1.15rem 0 3.2rem;
    }

    .hero-section::after {
        height: 72px;
    }

    .hero-background {
        display: none;
    }

    .hero-intro-card,
    .hero-panel,
    .hero-orbital-card {
        border-radius: 1.2rem;
    }

    .hero-grid {
        gap: 1.25rem;
        align-items: start;
    }

    .hero-grid::before {
        display: none;
    }

    .hero-copy {
        max-width: none;
        align-content: start;
    }

    .hero-visual-desktop {
        display: none;
    }

    .hero-mobile-stack {
        display: grid;
        gap: 1rem;
        margin-top: 1.32rem;
    }

    .hero-intro-card {
        padding: 1.5rem 1.25rem 1.4rem;
        background:
            linear-gradient(180deg, rgba(13, 30, 55, 0.62), rgba(8, 21, 40, 0.72)),
            rgba(8, 18, 34, 0.36);
        backdrop-filter: none;
        box-shadow: 0 18px 38px rgba(2, 14, 32, 0.24);
    }

    .hero-kicker {
        font-size: 0.81rem;
        letter-spacing: 0.1em;
    }

    h1 {
        margin-top: 0.72rem;
        max-width: 100%;
        font-size: clamp(2.1rem, 10vw, 2.95rem);
        line-height: 1.06;
        text-wrap: initial;
    }

    .lead {
        margin-top: 0.9rem;
        font-size: 1rem;
        line-height: 1.68;
    }

    .hero-highlights {
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .hero-highlights li {
        font-size: 0.97rem;
        line-height: 1.46;
    }

    .hero-cta-group {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.72rem;
        margin-top: 1.15rem;
    }

    .hero-cta-group .btn {
        width: 100%;
        min-height: 50px;
    }

    .hero-highlights,
    .cards-grid,
    .projects-grid,
    .hero-stats,
    .industries-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-mobile-monolith-card {
        min-height: auto;
        padding: 1.15rem 1rem 1rem;
        overflow: hidden;
        position: relative;
        border: 1px solid rgba(138, 191, 249, 0.2);
        border-radius: 1.2rem;
        background:
            linear-gradient(180deg, rgba(9, 25, 46, 0.92), rgba(7, 18, 34, 0.82)),
            rgba(9, 22, 41, 0.72);
        backdrop-filter: none;
        box-shadow: 0 20px 40px rgba(2, 14, 32, 0.28);
    }

    .hero-monolith-stage {
        min-height: auto;
        display: grid;
        place-items: center;
        padding: 0.35rem 0 0.15rem;
    }

    .hero-monolith {
        position: relative;
        width: 250px;
        height: 320px;
        inset: auto;
        transform: none;
        margin: 0 auto;
    }

    .hero-monolith-aura,
    .hero-monolith-orbit,
    .hero-monolith-scan {
        display: none;
    }

    .hero-monolith-badge {
        top: 46%;
        width: 132px;
        height: 132px;
    }

    .hero-monolith-logo {
        width: 92px;
    }

    .hero-monolith-shell {
        width: 132px;
        box-shadow: inset 0 0 14px rgba(167, 236, 255, 0.04), 0 0 18px rgba(51, 189, 255, 0.08);
    }

    .hero-monolith-shell-inner {
        width: 106px;
    }

    .hero-monolith-cap {
        width: 124px;
        box-shadow: 0 4px 12px rgba(0, 11, 26, 0.18);
    }

    .hero-monolith-stream {
        filter: none;
        opacity: 0.74;
        animation: none;
    }

    .hero-monolith-floor {
        box-shadow: 0 0 10px rgba(78, 201, 255, 0.14);
    }

    .hero-panel-mobile {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 0;
        padding: 1.12rem 1rem 1.04rem;
        background:
            linear-gradient(180deg, rgba(10, 25, 45, 0.94), rgba(7, 18, 34, 0.9)),
            rgba(9, 22, 41, 0.78);
        backdrop-filter: none;
        box-shadow: 0 18px 34px rgba(2, 14, 32, 0.22);
    }

    .hero-panel-mobile .hero-panel-heading {
        gap: 0.28rem;
    }

    .hero-panel-mobile p {
        margin-top: 0.72rem;
        font-size: 0.97rem;
        line-height: 1.6;
    }

    .hero-panel-mobile .hero-panel-list {
        margin-top: 0.8rem;
        gap: 0.46rem 0.56rem;
    }

    .hero-panel-mobile .hero-panel-list li {
        padding: 0.36rem 0.66rem;
        font-size: 0.84rem;
    }

    .hero-panel-mobile .hero-stats-compact {
        margin-top: 0.86rem;
    }

    .hero-panel-mobile .stat-card {
        padding: 0.84rem 0.82rem 0.76rem;
        box-shadow: 0 10px 20px rgba(0, 12, 28, 0.16);
    }

    .hero-panel-mobile .stat-card::before {
        opacity: 0.45;
    }

    .hero-panel-mobile .stat-card strong {
        font-size: 1.4rem;
    }

    .hero-panel-mobile .stat-card span {
        margin-top: 0.36rem;
        font-size: 0.84rem;
        line-height: 1.42;
    }

    .section {
        padding: 4.4rem 0;
    }

    .about-shell {
        padding: 1.35rem;
    }

    .about-grid {
        gap: 1.15rem;
        align-items: start;
    }

    .section-about .section-heading,
    .section-about .section-heading h2,
    .section-about .section-heading p,
    .about-support {
        max-width: 100%;
    }

    .section-about .section-heading h2 {
        text-wrap: initial;
        font-size: clamp(1.96rem, 8vw, 2.38rem);
        line-height: 1.04;
    }

    .section-about .section-heading p {
        margin-top: 0.74rem;
        font-size: 0.98rem;
        line-height: 1.64;
    }

    .about-support {
        margin-top: 0.82rem;
        font-size: 0.96rem;
        line-height: 1.64;
    }

    .about-intro {
        order: 1;
    }

    .about-panel {
        order: 2;
        padding: 0.72rem;
    }

    .about-visual-card {
        min-height: 248px;
    }

    .about-image {
        object-position: 56% 44%;
        transform: scale(1.01);
    }
}

@media (max-width: 420px) {
    .brand-logo {
        height: 38px;
    }

    .mobile-nav-toggle {
        padding: 0.68rem 0.88rem;
    }

    .hero-monolith {
        width: 228px;
        height: 298px;
    }

    .hero-monolith-badge {
        width: 122px;
        height: 122px;
    }

    .hero-monolith-logo {
        width: 84px;
    }

    .section-about .section-heading h2 {
        font-size: 1.92rem;
    }

    .about-shell {
        padding: 1.22rem;
    }

    .about-grid {
        gap: 0.92rem;
    }

    .about-visual-card {
        min-height: 228px;
    }
}

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

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