: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;
    --header-offset: 94px;
}

* {
    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;
}

body.internal-page {
    background:
        radial-gradient(circle at top, rgba(92, 160, 255, 0.08), transparent 30%),
        linear-gradient(180deg, #e7eef8 0%, #eff4fb 24%, #f5f8fc 58%, #edf3fa 100%);
}

::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: 180;
    overflow: clip;
    isolation: isolate;
    backdrop-filter: blur(13px);
    background: rgba(239, 245, 252, 0.82);
    border-bottom: 1px solid rgba(182, 202, 228, 0.48);
    box-shadow: 0 9px 20px rgba(8, 27, 51, 0.036);
    transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, backdrop-filter 0.22s ease;
}

.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;
}

.site-header.is-scrolled {
    background: rgba(242, 247, 253, 0.94);
    border-bottom-color: rgba(176, 199, 228, 0.62);
    box-shadow: 0 11px 24px rgba(8, 27, 51, 0.052);
}

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

.brand {
    display: inline-grid;
    gap: 0.34rem;
    font-weight: 700;
    align-items: center;
    flex: 0 0 auto;
}

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

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

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

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

.brand-copy small {
    color: #3d5877;
    font-size: 0.77rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
}

.header-actions {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 1.3rem;
    min-width: 0;
}

.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.38rem;
    font-size: 1.04rem;
    color: #314d6b;
    font-weight: 750;
}

.main-nav a {
    position: relative;
    padding: 0.24rem 0;
    line-height: 1.2;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.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.is-active {
    color: var(--primary-dark);
}

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

.main-nav a:active {
    opacity: 0.82;
}

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

.main-nav a:focus-visible,
.header-cta:focus-visible,
.btn:focus-visible,
.contact-action:focus-visible,
.mobile-nav-toggle:focus-visible,
.mobile-nav-links a:focus-visible,
.mobile-nav-backdrop:focus-visible,
.footer-contact-block a:focus-visible,
.footer-links-block a:focus-visible,
.footer-brand:focus-visible {
    outline: 2px solid rgba(88, 163, 245, 0.48);
    outline-offset: 3px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 51px;
    padding: 0.84rem 1.38rem;
    border-radius: 999px;
    border: 1px solid rgba(86, 142, 211, 0.28);
    background: linear-gradient(180deg, rgba(247, 251, 255, 0.98), rgba(231, 240, 251, 0.96));
    color: var(--primary-dark);
    font-size: 0.97rem;
    font-weight: 800;
    box-shadow: 0 13px 22px rgba(8, 27, 51, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-1px);
    border-color: rgba(86, 142, 211, 0.38);
    box-shadow: 0 16px 28px rgba(8, 27, 51, 0.082);
}

.mobile-nav-links a.is-active {
    color: var(--primary-dark);
    background: rgba(18, 76, 146, 0.08);
    border-color: rgba(18, 76, 146, 0.12);
}

.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, 1.08fr) minmax(400px, 0.92fr);
    gap: 2.7rem;
    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: 43rem;
    gap: 0;
}

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

.hero-intro-card {
    position: relative;
    padding: 2.7rem 2.55rem 2.5rem;
    border: 1px solid rgba(128, 190, 255, 0.18);
    border-radius: 1.5rem;
    background:
        linear-gradient(180deg, rgba(16, 35, 63, 0.16), rgba(10, 26, 50, 0.28)),
        rgba(8, 18, 34, 0.16);
    backdrop-filter: blur(14px);
    box-shadow: 0 26px 54px rgba(2, 14, 32, 0.31);
}

.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.84rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9fdcff;
    opacity: 0.88;
}

h1 {
    margin: 1rem 0 0;
    line-height: 1.02;
    font-size: clamp(3rem, 4.9vw, 4.8rem);
    max-width: 13.2ch;
    text-wrap: balance;
    letter-spacing: -0.041em;
}

.lead {
    color: #dde9f6;
    max-width: 58ch;
    margin: 1.28rem 0 0;
    font-size: 1.12rem;
    line-height: 1.74;
}

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

.hero-highlights li {
    position: relative;
    padding-left: 1.2rem;
    font-weight: 600;
    color: #e6f1fb;
    line-height: 1.48;
    font-size: 0.99rem;
}

.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.84rem;
    margin-top: 1.54rem;
}

.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;
    min-height: 51px;
    padding: 0.9rem 1.32rem;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    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-secondary {
    border-color: rgba(130, 203, 255, 0.24);
    color: #edf6ff;
    background: rgba(8, 28, 54, 0.42);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
    border-color: rgba(150, 214, 255, 0.36);
    background: rgba(10, 34, 64, 0.58);
}

.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-visual-card {
    position: relative;
    min-height: 648px;
}

.hero-panel {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(145, 215, 255, 0.15);
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at 84% 24%, rgba(116, 215, 255, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(10, 25, 45, 0.86), rgba(7, 18, 34, 0.8)),
        rgba(9, 22, 41, 0.68);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 48px rgba(2, 14, 32, 0.2);
}

.hero-monolith {
    position: absolute;
    inset: 35.2% auto auto 50%;
    width: 348px;
    height: 442px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.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: 44.8%;
    width: 168px;
    height: 168px;
    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: 108px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(151, 235, 255, 0.18));
}

.hero-panel-desktop {
    min-height: 648px;
    padding: 1.78rem 1.78rem 1.62rem;
}

.hero-panel-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.74fr);
    gap: 1.28rem;
    align-items: stretch;
}

.hero-panel-content {
    display: grid;
    align-content: start;
    gap: 0;
}

.hero-panel-visual {
    position: relative;
    min-height: 412px;
    border-radius: 1.2rem;
    background:
        radial-gradient(circle at 50% 26%, rgba(116, 215, 255, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(12, 30, 53, 0.72), rgba(6, 17, 32, 0.38));
    border: 1px solid rgba(137, 203, 255, 0.1);
    overflow: hidden;
}

.hero-panel-visual::after {
    content: "";
    position: absolute;
    inset: auto 12% 10% 12%;
    height: 22%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(38, 193, 255, 0.1), transparent 72%);
    filter: blur(14px);
    pointer-events: none;
}

.hero-panel-visual .hero-monolith-stage {
    min-height: 100%;
}

.hero-panel-visual .hero-monolith {
    position: absolute;
    inset: 51% auto auto 50%;
    width: 308px;
    height: 392px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

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

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

.hero-panel h2 {
    margin: 0;
    font-size: 1.45rem;
    color: #f2f8ff;
    line-height: 1.2;
}

.hero-panel p {
    margin: 0;
    color: #dae7f5;
    line-height: 1.68;
    font-size: 1.01rem;
}

.hero-panel-list {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.hero-panel-list li {
    position: relative;
    padding-left: 1.12rem;
    color: #dcecff;
    line-height: 1.42;
    font-size: 0.93rem;
    font-weight: 600;
}

.hero-panel-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: radial-gradient(circle, #8de7ff 0%, #2aa9ff 72%);
    box-shadow: 0 0 10px rgba(90, 219, 255, 0.42);
}

.hero-panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem 0.46rem;
    margin-top: 1.08rem;
}

.hero-panel-tags span {
    padding: 0.34rem 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(137, 212, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #dcecff;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.35;
}

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

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

.hero-panel .stat-card {
    padding: 0.84rem 0.82rem 0.78rem;
    box-shadow: 0 14px 28px rgba(0, 12, 28, 0.18);
}

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

.hero-panel .stat-card span {
    margin-top: 0.34rem;
    font-size: 0.84rem;
    line-height: 1.4;
}

.section {
    position: relative;
    padding: 6.35rem 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-services .section-heading {
    max-width: 44rem;
}

.section-services .section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2.22rem, 3.5vw, 3.08rem);
}

.section-services .section-heading p {
    max-width: 58ch;
    color: rgba(228, 238, 250, 0.9);
    font-size: 1.06rem;
    line-height: 1.74;
}

.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: 5.85rem;
    padding-bottom: 5.45rem;
    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.44rem 0.76rem;
    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.77rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    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.72;
    max-width: 62ch;
    font-size: 1.14rem;
}

.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.95rem;
}

.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: 2.25rem;
    gap: 1.36rem;
}

.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.26rem;
    padding: 1.82rem 1.68rem 1.62rem;
    box-shadow: 0 22px 42px rgba(0, 10, 28, 0.16);
    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: 2px;
    background: linear-gradient(90deg, rgba(111, 224, 255, 0.92), rgba(55, 137, 255, 0.18));
}

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

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

.service-card-topline {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.7rem;
}

.service-card h3 {
    position: relative;
    z-index: 1;
    margin: 0.98rem 0 0;
    font-size: 1.46rem;
    line-height: 1.18;
    color: #f3f8ff;
    max-width: 16ch;
    letter-spacing: -0.024em;
}

.service-card p {
    position: relative;
    z-index: 1;
    margin: 0.86rem 0 0;
    font-size: 1.02rem;
    line-height: 1.72;
    color: #e2ebf9;
    max-width: 32ch;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(142, 214, 255, 0.32);
    box-shadow: 0 26px 46px 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.98fr) minmax(0, 1.02fr);
    gap: 2.45rem;
    align-items: center;
}

.about-shell {
    position: relative;
    padding: 3.1rem;
    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: 1.05rem;
}

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

.section-about .section-heading h2 {
    max-width: 14.2ch;
    font-size: clamp(2.28rem, 3.5vw, 3.14rem);
    line-height: 1.06;
    text-wrap: balance;
}

.section-about .section-heading p {
    color: #405773;
    max-width: 58ch;
    font-size: 1.1rem;
    line-height: 1.78;
}

.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 24px 48px rgba(8, 27, 51, 0.07);
}

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

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

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

.about-support {
    margin-top: 1.1rem;
    max-width: 58ch;
    color: #3f5670;
    line-height: 1.76;
    font-size: 1.1rem;
}

.about-delivery {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 0.64rem;
    margin-top: 1.34rem;
    max-width: 35rem;
}

.about-delivery span {
    display: inline-flex;
    align-items: center;
    min-height: 2.38rem;
    padding: 0.54rem 0.88rem;
    border-radius: 999px;
    border: 1px solid rgba(176, 199, 227, 0.82);
    background: rgba(255, 255, 255, 0.8);
    color: #274261;
    font-size: 0.93rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 10px 18px rgba(8, 27, 51, 0.04);
}

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

.why-shell {
    padding: 2.65rem;
    border: 1px solid rgba(177, 199, 227, 0.82);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(248, 252, 255, 0.92), rgba(237, 244, 252, 0.98));
    box-shadow: 0 28px 52px rgba(8, 27, 51, 0.075);
}

.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.55rem 1.4rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(172, 199, 232, 0.7);
    background:
        linear-gradient(180deg, rgba(11, 29, 52, 0.18), rgba(6, 17, 31, 0.12)),
        #0f2747;
    min-height: 284px;
    display: flex;
    align-items: flex-end;
    color: #f4f9ff;
    box-shadow: 0 20px 34px rgba(8, 27, 51, 0.075);
}

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

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

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

.industry-card-content {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: end;
    gap: 0.46rem;
}

.industry-card-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 1.76rem;
    padding: 0.32rem 0.56rem;
    border-radius: 999px;
    border: 1px solid rgba(168, 221, 255, 0.16);
    background: rgba(8, 24, 44, 0.36);
    color: rgba(222, 243, 255, 0.9);
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.industry-card-title {
    margin: 0;
    max-width: 13ch;
    line-height: 1.16;
    font-size: 1.14rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    text-shadow: 0 4px 14px rgba(3, 12, 26, 0.45);
}

.industry-card-description {
    margin: 0;
    max-width: 30ch;
    color: rgba(228, 240, 251, 0.92);
    font-size: 0.91rem;
    line-height: 1.53;
    text-shadow: 0 4px 12px rgba(3, 12, 26, 0.32);
}

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

.why-card {
    position: relative;
    padding: 1.86rem 1.74rem 1.7rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(164, 190, 223, 0.94);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(239, 246, 253, 1));
    box-shadow: 0 18px 30px rgba(8, 27, 51, 0.075);
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(72, 184, 255, 0.98), rgba(72, 184, 255, 0.2));
}

.why-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(107, 191, 255, 0.04), transparent 34%);
    pointer-events: none;
}

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

.why-card-index {
    display: inline-flex;
    color: rgba(13, 74, 146, 0.74);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.why-card-accent {
    width: 1.58rem;
    height: 1.58rem;
    border-radius: 999px;
    border: 1px solid rgba(123, 182, 240, 0.18);
    background:
        radial-gradient(circle, rgba(109, 203, 255, 0.22), rgba(109, 203, 255, 0.03) 70%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.why-card h3 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 1.4rem;
    line-height: 1.24;
    letter-spacing: -0.022em;
    max-width: 19ch;
}

.why-card p {
    margin: 0.96rem 0 0;
    color: #3d5671;
    font-size: 1.05rem;
    line-height: 1.74;
    max-width: 36ch;
}

.section-light-alt .section-heading {
    max-width: 45rem;
}

.section-light-alt .section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2.24rem, 3.45vw, 3.06rem);
}

.section-light-alt .section-heading p {
    max-width: 60ch;
    color: #48617c;
    font-size: 1.08rem;
    line-height: 1.76;
}

.projects-shell {
    position: relative;
    padding: 2.95rem;
    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: 1.12rem 0 0;
    max-width: 60ch;
    color: #455c77;
    font-size: 1.08rem;
    line-height: 1.76;
}

.projects-grid {
    margin-top: 2.56rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.28rem;
}

.project-item {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 254, 0.96));
    border: 1px solid rgba(183, 203, 229, 0.9);
    border-radius: 1.18rem;
    padding: 1.92rem 1.82rem 1.74rem;
    min-height: 236px;
    display: grid;
    align-content: start;
    gap: 0;
    box-shadow: 0 24px 42px rgba(8, 27, 51, 0.07);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    color: var(--primary-dark);
    overflow: hidden;
}

.project-item:nth-child(-n+2) {
    min-height: 248px;
    border-color: rgba(171, 196, 226, 0.94);
    box-shadow: 0 26px 46px rgba(8, 27, 51, 0.078);
}

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

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

.project-item-label {
    display: inline-flex;
    align-items: center;
    min-height: 1.88rem;
    padding: 0.36rem 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(170, 197, 228, 0.9);
    background: rgba(244, 249, 255, 0.86);
    color: #3d78b6;
    font-size: 0.71rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.project-item-index {
    color: rgba(78, 111, 149, 0.44);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.project-item strong {
    font-size: 1.42rem;
    line-height: 1.32;
    letter-spacing: -0.022em;
    max-width: 20ch;
}

.project-item p {
    margin: 0.92rem 0 0;
    max-width: 35ch;
    color: #49617c;
    font-size: 1rem;
    line-height: 1.68;
}

.project-item:hover {
    transform: translateY(-3px);
    border-color: rgba(119, 183, 245, 0.34);
    box-shadow: 0 26px 44px rgba(8, 27, 51, 0.085);
}

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

.contact-note {
    margin: 0;
    max-width: 50ch;
    color: #526987;
    font-size: 1.1rem;
    line-height: 1.76;
}

.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: 2.08rem;
    box-shadow: 0 28px 52px rgba(8, 27, 51, 0.085);
}

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

.contact-action {
    position: relative;
    display: grid;
    gap: 0.26rem;
    padding: 1.22rem 1.28rem;
    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 30px rgba(8, 27, 51, 0.052);
    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(-2px);
    border-color: rgba(124, 188, 248, 0.38);
    box-shadow: 0 22px 38px rgba(8, 27, 51, 0.075);
}

.contact-action-label {
    font-size: 0.74rem;
    color: #526987;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-action strong {
    font-size: 1.24rem;
    line-height: 1.32;
    letter-spacing: -0.022em;
}

.contact-action-primary {
    border-color: rgba(87, 181, 117, 0.26);
    background:
        linear-gradient(180deg, rgba(21, 128, 61, 0.1), 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: 3.15rem 0 2.55rem;
    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.55rem;
    flex-wrap: wrap;
    align-items: flex-start;
    font-size: 0.97rem;
}

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

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

.footer-brand-logo {
    width: auto;
    height: 56px;
    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: #b3c7e2;
    line-height: 1.62;
}

.footer-brand-block small {
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #9bb8da;
}

.footer-contact-block a,
.footer-links-block a {
    color: #e3f0ff;
    line-height: 1.55;
    transition: color 0.2s ease, opacity 0.2s ease;
}

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

.footer-heading {
    color: #94bee7;
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-bottom: 0.12rem;
}

@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 {
        grid-template-columns: 1fr;
    }

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

    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.08rem;
    }

    .project-item {
        min-height: 210px;
        padding: 1.58rem 1.42rem 1.46rem;
    }

    .project-item:nth-child(-n+2) {
        min-height: 220px;
    }

    .project-item strong {
        font-size: 1.28rem;
        max-width: 100%;
    }

    .project-item p {
        font-size: 0.96rem;
        line-height: 1.64;
        max-width: 100%;
    }

    .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: 392px;
    }

    .footer-inner {
        gap: 1.8rem 2rem;
    }

    .industries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.1rem;
    }

    .industry-card {
        min-height: 268px;
    }

    .industry-card-description {
        max-width: 34ch;
    }

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

    .main-nav {
        gap: 1rem;
        font-size: 1rem;
    }

    .header-actions {
        gap: 1.05rem;
    }

    .hero-grid {
        gap: 2.15rem;
    }

    .hero-copy {
        max-width: none;
    }

    .hero-intro-card {
        padding: 2.2rem 2rem 2rem;
    }

    .hero-highlights {
        max-width: 100%;
        grid-template-columns: 1fr;
    }

    .hero-visual-card {
        min-height: 0;
    }

    .hero-panel-desktop {
        min-height: 0;
        padding: 1.46rem;
    }

    .hero-panel-shell {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.92rem;
    }

    .hero-panel-visual {
        min-height: 360px;
        order: -1;
    }

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

    .hero-panel-visual .hero-monolith {
        width: 320px;
        height: 404px;
        inset: 50% auto auto 50%;
    }

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

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

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

    .why-shell {
        padding: 2.28rem;
    }
}

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

    .site-header {
        position: sticky;
        top: 0;
        overflow: visible;
        backdrop-filter: blur(12px);
    }

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

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

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

    .brand-logo {
        height: 44px;
    }

    .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.92rem;
        border-radius: 999px;
        border: 1px solid rgba(117, 164, 220, 0.14);
        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 8px 18px rgba(8, 27, 51, 0.045);
    }

    .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: fixed;
        top: calc(var(--header-offset) + 0.55rem);
        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 24px 44px rgba(8, 27, 51, 0.12);
        backdrop-filter: blur(12px);
    }

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

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

    .header-cta-mobile {
        margin-top: 0.2rem;
    }

    .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-visual-card,
    .hero-mobile-monolith-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: 0.88rem;
        margin-top: 1.32rem;
    }

    .hero-intro-card {
        padding: 1.5rem 1.25rem 1.35rem;
        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.15rem, 9.2vw, 3.02rem);
        line-height: 1.04;
        text-wrap: initial;
    }

    .lead {
        margin-top: 0.9rem;
        font-size: 0.98rem;
        line-height: 1.66;
    }

    .hero-highlights {
        margin-top: 1.04rem;
        gap: 0.54rem;
    }

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

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

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

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

    .section-light-alt .section-heading p {
        font-size: 1rem;
        line-height: 1.68;
    }

    .why-grid {
        gap: 1rem;
    }

    .why-card {
        padding: 1.54rem 1.3rem 1.38rem;
    }

    .why-card-topline {
        margin-bottom: 0.92rem;
    }

    .why-card h3 {
        font-size: 1.24rem;
        line-height: 1.24;
        max-width: 100%;
    }

    .why-card p {
        margin-top: 0.82rem;
        font-size: 1rem;
        line-height: 1.68;
        max-width: 34ch;
    }

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

    .projects-note {
        font-size: 1.02rem;
        line-height: 1.7;
    }

    .project-item {
        padding: 1.42rem 1.24rem 1.3rem;
        min-height: 176px;
    }

    .project-item-topline {
        margin-bottom: 0.96rem;
    }

    .project-item-label {
        min-height: 1.72rem;
        padding: 0.3rem 0.52rem;
        font-size: 0.66rem;
    }

    .project-item strong {
        font-size: 1.2rem;
        line-height: 1.4;
        max-width: 100%;
    }

    .project-item p {
        margin-top: 0.8rem;
        font-size: 0.94rem;
        line-height: 1.6;
        max-width: 100%;
    }

    .contact-note {
        font-size: 1rem;
        line-height: 1.68;
    }

    .contact-card {
        padding: 1.48rem;
    }

    .contact-actions-card {
        gap: 0.9rem;
    }

    .contact-action {
        padding: 1.08rem 1.08rem 1rem;
    }

    .contact-action strong {
        font-size: 1.16rem;
    }

    .site-footer {
        padding: 2.45rem 0 2.05rem;
    }

    .footer-inner {
        display: grid;
        gap: 1.45rem;
    }

    .footer-brand {
        gap: 0.56rem;
    }

    .footer-brand-logo {
        height: 50px;
    }

    .footer-heading {
        margin-bottom: 0.04rem;
    }

    .section-services .section-heading p {
        font-size: 1rem;
        line-height: 1.68;
    }

    .service-card {
        padding: 1.48rem 1.24rem 1.34rem;
    }

    .service-card h3 {
        margin-top: 0.84rem;
        font-size: 1.3rem;
    }

    .service-card p {
        margin-top: 0.72rem;
        font-size: 0.98rem;
        line-height: 1.64;
        max-width: 34ch;
    }

    .hero-mobile-monolith-card {
        min-height: auto;
        padding: 1.05rem 0.95rem 0.96rem;
        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.08rem 1rem 1rem;
        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.94rem;
        line-height: 1.58;
    }

    .hero-panel-mobile .hero-panel-list {
        margin-top: 0.82rem;
        gap: 0.48rem;
    }

    .hero-panel-mobile .hero-panel-list li {
        padding-left: 1.02rem;
        font-size: 0.83rem;
    }

    .hero-panel-mobile .hero-panel-list li::before {
        top: 0.46rem;
    }

    .hero-panel-mobile .hero-panel-tags {
        margin-top: 0.88rem;
        gap: 0.42rem;
    }

    .hero-panel-mobile .hero-panel-tags span {
        font-size: 0.75rem;
    }

    .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.2rem 0;
    }

    .about-shell {
        padding: 1.42rem;
    }

    .about-grid {
        gap: 1.08rem;
        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(2rem, 7.8vw, 2.42rem);
        line-height: 1.06;
    }

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

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

    .about-delivery {
        gap: 0.48rem 0.5rem;
        margin-top: 1rem;
    }

    .about-delivery span {
        min-height: 2.12rem;
        padding: 0.48rem 0.78rem;
        font-size: 0.84rem;
    }

    .about-intro {
        order: 1;
    }

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

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 0.92rem;
    }

    .industry-card {
        min-height: 238px;
        padding: 1.24rem 1.12rem;
    }

    .industry-card-content {
        gap: 0.4rem;
    }

    .industry-card-label {
        min-height: 1.68rem;
        padding: 0.3rem 0.52rem;
        font-size: 0.68rem;
    }

    .industry-card-title {
        max-width: 100%;
        font-size: 1.08rem;
    }

    .industry-card-description {
        max-width: 34ch;
        font-size: 0.89rem;
        line-height: 1.52;
    }

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

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

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

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

    .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;
    }

    .about-delivery span {
        font-size: 0.8rem;
    }
}

@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;
    }
}

.page-hero {
    position: relative;
    padding: calc(var(--header-offset) + 2.8rem) 0 3.4rem;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(23, 185, 214, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(8, 24, 48, 0.88) 0%, rgba(8, 27, 51, 0.84) 52%, rgba(9, 31, 61, 0.78) 100%);
    z-index: 0;
}

.page-hero .container,
.page-hero-shell,
.page-hero-grid {
    position: relative;
    z-index: 1;
}

.page-hero-shell {
    padding: 2rem 0 0;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr);
    gap: 1.8rem;
    align-items: start;
}

.page-hero-grid.page-hero-grid-panel {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.84fr);
}

.page-hero-copy {
    color: var(--hero-text);
    max-width: 48rem;
}

.page-eyebrow,
.page-hero-panel-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(196, 222, 255, 0.86);
}

.page-hero-copy h1 {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.page-hero-intro {
    margin: 1.4rem 0 0;
    max-width: 40rem;
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(219, 232, 246, 0.9);
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.75rem;
}

.page-hero-points {
    list-style: none;
    margin: 1.6rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.78rem;
}

.page-hero-points li {
    position: relative;
    padding-left: 1.25rem;
    color: rgba(219, 232, 246, 0.84);
    font-size: 0.97rem;
    line-height: 1.65;
}

.page-hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 0.28rem rgba(23, 185, 214, 0.14);
}

.page-hero-panel {
    padding: 1.5rem;
    border-radius: calc(var(--radius-lg) + 0.15rem);
    background: linear-gradient(180deg, rgba(12, 31, 58, 0.94) 0%, rgba(10, 24, 46, 0.9) 100%);
    border: 1px solid rgba(149, 189, 241, 0.15);
    box-shadow: 0 26px 58px rgba(2, 14, 32, 0.22);
    color: rgba(232, 241, 250, 0.96);
}

.page-hero-panel h2 {
    margin: 0;
    font-size: 1.62rem;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.page-hero-panel p {
    margin: 0.85rem 0 0;
    color: rgba(199, 216, 235, 0.84);
    font-size: 0.98rem;
    line-height: 1.72;
}

.page-hero-panel-list,
.info-list {
    list-style: none;
    margin: 1.2rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.page-hero-panel-list li,
.info-list li {
    position: relative;
    padding-left: 1.15rem;
    color: rgba(230, 239, 248, 0.92);
    font-size: 0.95rem;
    line-height: 1.64;
}

.page-hero-panel-list li::before,
.info-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    background: var(--accent-soft);
}

.service-detail-page .info-card .info-list li {
    color: #425973;
    font-size: 0.97rem;
    line-height: 1.7;
}

.service-detail-page .info-card .info-list li::before {
    background: var(--primary);
}

.service-detail-page .page-hero {
    padding-bottom: 4.1rem;
}

.service-detail-page .page-hero-grid.page-hero-grid-panel {
    grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.92fr);
    gap: 2rem;
}

.service-detail-page .page-hero-copy {
    max-width: 52rem;
}

.service-detail-page .page-hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(3.15rem, 4.6vw, 4.55rem);
}

.service-detail-page .page-hero-intro {
    margin-top: 1.2rem;
    max-width: 44rem;
    font-size: 1.12rem;
    line-height: 1.82;
    color: rgba(224, 235, 247, 0.92);
}

.service-detail-page .page-hero-actions {
    margin-top: 1.55rem;
    gap: 1rem;
}

.service-detail-page .page-hero-points {
    margin-top: 1.5rem;
    max-width: 42rem;
    gap: 0.85rem;
}

.service-detail-page .page-hero-points li {
    font-size: 1rem;
    line-height: 1.68;
    color: rgba(222, 234, 246, 0.88);
}

.service-detail-page .page-hero-panel {
    padding: 1.75rem 1.65rem;
    border-color: rgba(157, 196, 245, 0.2);
    box-shadow: 0 30px 64px rgba(2, 14, 32, 0.26);
}

.service-detail-page .page-hero-panel h2 {
    font-size: 1.74rem;
    line-height: 1.16;
}

.service-detail-page .page-hero-panel p {
    margin-top: 0.95rem;
    font-size: 1.02rem;
    line-height: 1.76;
    color: rgba(211, 225, 241, 0.9);
}

.service-detail-page .page-hero-panel-list {
    margin-top: 1.25rem;
    gap: 0.95rem;
}

.service-detail-page .page-hero-panel-list li {
    font-size: 1rem;
    line-height: 1.68;
}

.service-detail-page .page-hero-panel-chips {
    margin-top: 1.35rem;
    gap: 0.7rem;
}

.service-detail-page .page-hero-panel-chips span {
    padding: 0.6rem 0.88rem;
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(166, 197, 237, 0.18);
    color: rgba(234, 242, 250, 0.96);
}

.page-hero-panel-chips,
.contact-page-points,
.industry-page-tags,
.detail-reference-meta,
.delivery-strip-steps,
.summary-panel-list,
.about-delivery {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.page-hero-panel-chips span,
.contact-page-points span,
.industry-page-tags span,
.detail-reference-meta span,
.delivery-strip-steps span,
.summary-panel-list span,
.about-delivery span {
    border-radius: 999px;
    border: 1px solid rgba(122, 166, 221, 0.2);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.62rem 0.92rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.internal-section {
    padding: 5.4rem 0;
}

.internal-split {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.internal-split-about,
.internal-split-contact {
    grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.92fr);
}

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

.internal-copy-stack {
    display: grid;
    gap: 1.4rem;
}

.info-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.info-card {
    border-radius: calc(var(--radius-md) + 0.1rem);
    padding: 1.4rem;
    border: 1px solid rgba(170, 192, 220, 0.44);
    box-shadow: 0 20px 42px rgba(12, 28, 52, 0.06);
}

.info-card-light,
.internal-visual-card,
.industry-page-card,
.reference-card-page,
.contact-form-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 249, 253, 0.96) 100%);
}

.info-card-kicker,
.compact-sector-label,
.process-step-index,
.reference-card-sector,
.reference-card-detail,
.contact-form-kicker,
.industry-page-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.info-card-kicker,
.compact-sector-label,
.reference-card-sector,
.contact-form-kicker,
.industry-page-label {
    color: var(--primary);
}

.info-card h3,
.compact-sector-card h3,
.industry-page-card h3,
.reference-card-page h3,
.contact-form-card h2 {
    margin: 0.72rem 0 0;
    font-size: 1.34rem;
    line-height: 1.24;
    letter-spacing: -0.03em;
    color: var(--primary-dark);
}

.info-card p,
.compact-sector-card p,
.industry-page-card p,
.reference-card-page p,
.contact-form-card p,
.section-text {
    color: #455e7a;
    font-size: 1.01rem;
    line-height: 1.82;
}

.contact-page-helper,
.contact-page-urgency,
.contact-form-helper,
.contact-form-urgency {
    margin: 0;
    color: #586f88;
    font-size: 0.92rem;
    line-height: 1.66;
}

.contact-page-helper {
    margin-top: -0.3rem;
}

.contact-page-urgency {
    margin-top: 0.15rem;
}

.contact-form-helper {
    margin-top: -0.35rem;
}

.contact-form-urgency {
    margin-top: -0.05rem;
}

.internal-visual-card {
    border-radius: calc(var(--radius-lg) + 0.1rem);
    padding: 1rem;
    border: 1px solid rgba(170, 192, 220, 0.4);
    box-shadow: 0 24px 56px rgba(12, 28, 52, 0.07);
}

.process-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.process-step {
    border-radius: calc(var(--radius-md) + 0.1rem);
    padding: 1.35rem 1.2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(145, 179, 221, 0.18);
    color: var(--hero-text);
    min-height: 100%;
}

.process-step strong {
    display: block;
    margin-top: 0.65rem;
    font-size: 1.02rem;
    line-height: 1.52;
}

.process-step-index,
.reference-card-detail {
    color: rgba(194, 216, 241, 0.7);
}

.delivery-summary {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.25rem;
    align-items: start;
    padding: 1.55rem;
    border-radius: calc(var(--radius-lg) + 0.1rem);
    border: 1px solid rgba(145, 179, 221, 0.18);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(20, 44, 76, 0.24) 100%);
}

.summary-panel-kicker {
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(189, 212, 239, 0.8);
}

.delivery-summary-copy {
    max-width: 34rem;
}

.delivery-summary-copy h3 {
    margin: 0.75rem 0 0;
    max-width: 22ch;
    font-size: 1.52rem;
    line-height: 1.2;
    color: var(--hero-text);
}

.delivery-summary-copy p {
    margin: 0.8rem 0 0;
    max-width: 36rem;
    color: rgba(206, 221, 238, 0.88);
    font-size: 0.99rem;
    line-height: 1.76;
}

.delivery-summary-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.delivery-summary-point {
    min-height: 100%;
    border-radius: calc(var(--radius-md) + 0.05rem);
    padding: 1.05rem 1.05rem 1rem;
    border: 1px solid rgba(145, 179, 221, 0.16);
    background: rgba(255, 255, 255, 0.045);
}

.delivery-summary-point h4 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
    color: var(--hero-text);
    letter-spacing: -0.02em;
}

.delivery-summary-point p {
    margin: 0.5rem 0 0;
    color: rgba(199, 216, 235, 0.82);
    font-size: 0.92rem;
    line-height: 1.66;
}

.compact-sector-grid,
.industry-page-grid,
.reference-grid-page {
    display: grid;
    gap: 1.1rem;
}

.compact-sector-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-sector-card {
    display: grid;
    gap: 0;
    border-radius: calc(var(--radius-md) + 0.1rem);
    padding: 1.2rem;
    border: 1px solid rgba(170, 192, 220, 0.38);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 40px rgba(12, 28, 52, 0.05);
}

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

.industry-page-card,
.reference-card-page,
.contact-form-card {
    border-radius: calc(var(--radius-lg) + 0.1rem);
    padding: 1.45rem;
    border: 1px solid rgba(170, 192, 220, 0.4);
    box-shadow: 0 22px 48px rgba(12, 28, 52, 0.06);
}

.industry-page-tags {
    margin-top: 1rem;
}

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

.reference-card-link {
    display: inline-flex;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary);
}

.reference-card-page {
    display: flex;
    flex-direction: column;
}

.reference-card-page h3 {
    margin: 0.9rem 0 0;
}

.reference-card-page p {
    margin: 0.75rem 0 0;
    color: #506883;
    line-height: 1.72;
}

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

.reference-card-sector {
    padding: 0.48rem 0.72rem;
    border-radius: 999px;
    background: rgba(13, 74, 146, 0.08);
    border: 1px solid rgba(13, 74, 146, 0.12);
}

.delivery-strip-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 1.5rem;
    align-items: center;
    padding: 2rem 2rem;
    border-radius: calc(var(--radius-lg) + 0.1rem);
    border: 1px solid rgba(170, 192, 220, 0.42);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 250, 254, 0.96) 100%);
    box-shadow: 0 24px 54px rgba(12, 28, 52, 0.07);
}

.delivery-strip-copy {
    max-width: 34rem;
}

.delivery-strip-copy h2 {
    margin: 0.7rem 0 0;
    max-width: 24ch;
    font-size: 1.68rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.delivery-strip-copy p {
    margin: 0.75rem 0 0;
    max-width: 34rem;
    color: #506883;
    font-size: 0.99rem;
    line-height: 1.72;
}

.delivery-strip-steps {
    justify-content: flex-end;
    gap: 0.75rem;
}

.delivery-strip-steps span {
    padding: 0.72rem 0.98rem;
    background: rgba(13, 74, 146, 0.06);
    border-color: rgba(13, 74, 146, 0.14);
    color: var(--primary-dark);
}

.internal-service-grid .service-card-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.service-card-linktext {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: rgba(189, 216, 246, 0.92);
}

.detail-reference-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.4rem;
    align-items: center;
    padding: 1.75rem 1.9rem;
    border-radius: calc(var(--radius-lg) + 0.1rem);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(11, 32, 60, 0.3) 100%);
    border: 1px solid rgba(145, 179, 221, 0.18);
}

.detail-reference-copy h2 {
    margin: 0.7rem 0 0;
    font-size: 1.7rem;
    line-height: 1.18;
    color: var(--hero-text);
}

.detail-reference-copy p {
    margin: 0.75rem 0 0;
    max-width: 38rem;
    color: rgba(199, 216, 235, 0.86);
}

.service-detail-content-section .section-frame {
    margin-bottom: 1.6rem;
}

.service-detail-frame .section-eyebrow,
.service-reference-frame .section-eyebrow,
.service-detail-page .page-cta-copy .section-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
}

.service-detail-frame .section-heading h2,
.service-reference-frame .section-heading h2 {
    font-size: clamp(2.2rem, 2.8vw, 3rem);
    line-height: 1.1;
}

.service-detail-frame .section-heading p,
.service-reference-frame .section-heading p {
    font-size: 1.02rem;
    line-height: 1.8;
}

.service-detail-architecture-shell {
    padding: 2rem;
    border-radius: calc(var(--radius-lg) + 0.12rem);
    border: 1px solid rgba(160, 185, 215, 0.48);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 254, 0.98) 100%);
    box-shadow: 0 30px 60px rgba(12, 28, 52, 0.075);
}

.service-detail-summary-row {
    display: grid;
    gap: 1rem;
    padding: 0 0 1.45rem;
    margin-bottom: 1.4rem;
    border-bottom: 1px solid rgba(170, 192, 220, 0.28);
}

.service-detail-summary-copy {
    max-width: 44rem;
}

.service-detail-summary-copy h2 {
    margin: 0;
    max-width: 22ch;
    font-size: clamp(2.05rem, 2.5vw, 2.55rem);
    line-height: 1.12;
    letter-spacing: -0.032em;
    color: var(--primary-dark);
}

.service-detail-summary-copy p {
    margin: 0.85rem 0 0;
    max-width: 41rem;
    color: #48607b;
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-detail-summary-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.7rem;
    max-width: none;
}

.service-detail-summary-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.62rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(162, 187, 216, 0.46);
    background: rgba(246, 250, 254, 0.95);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.service-detail-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
}

.service-detail-card {
    padding: 1.75rem 1.65rem;
    border-color: rgba(156, 182, 212, 0.6);
    box-shadow: 0 26px 52px rgba(12, 28, 52, 0.075);
}

.service-detail-card h3 {
    margin-top: 0.78rem;
    font-size: 1.5rem;
    line-height: 1.18;
}

.service-detail-card .info-card-kicker {
    font-size: 0.79rem;
    letter-spacing: 0.13em;
}

.service-detail-page .info-card .info-list {
    margin-top: 1.05rem;
    gap: 0.88rem;
}

.service-detail-delivery-shell {
    margin-top: 1.25rem;
    display: grid;
    gap: 1rem;
    padding: 1.75rem;
    border-radius: calc(var(--radius-lg) + 0.1rem);
    border: 1px solid rgba(160, 186, 216, 0.46);
    background: linear-gradient(180deg, rgba(240, 246, 252, 0.96) 0%, rgba(232, 240, 249, 0.96) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 18px 42px rgba(12, 28, 52, 0.04);
    grid-column: 1 / -1;
}

.service-detail-delivery-shell .section-eyebrow {
    color: var(--primary);
    font-size: 0.79rem;
    letter-spacing: 0.13em;
}

.service-detail-delivery-shell h2 {
    margin: 0.7rem 0 0;
    max-width: 19ch;
    font-size: 1.92rem;
    line-height: 1.16;
    letter-spacing: -0.03em;
    color: var(--primary-dark);
}

.service-detail-delivery-shell > p {
    margin: 0.88rem 0 0;
    max-width: 40rem;
    color: #49617d;
    font-size: 1.03rem;
    line-height: 1.8;
}

.service-delivery-grid-service-page {
    gap: 1rem;
}

.service-detail-page .service-delivery-point {
    padding: 1.08rem 1.08rem 1rem;
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(157, 183, 213, 0.54);
    box-shadow: 0 18px 40px rgba(12, 28, 52, 0.055);
}

.service-detail-page .service-delivery-point p {
    color: #3f5872;
    font-size: 0.99rem;
    line-height: 1.7;
}

.service-detail-page .service-delivery-copy h3 {
    margin: 0 0 0.48rem;
    font-size: 1.04rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--primary-dark);
}

.service-reference-frame {
    margin-bottom: 1.55rem;
}

.service-reference-frame .section-heading {
    max-width: 40rem;
}

.service-reference-frame .section-heading h2 {
    color: var(--hero-text);
}

.service-reference-frame .section-heading p {
    color: rgba(199, 216, 235, 0.82);
}

.detail-reference-shell {
    display: grid;
    gap: 1rem;
    align-items: start;
    padding: 1.8rem;
    border-radius: calc(var(--radius-lg) + 0.08rem);
    border: 1px solid rgba(153, 188, 234, 0.18);
    background: linear-gradient(180deg, rgba(12, 31, 58, 0.9) 0%, rgba(10, 24, 46, 0.88) 100%);
    box-shadow: 0 26px 56px rgba(2, 14, 32, 0.2);
}

.detail-reference-copy h2 {
    margin: 0.72rem 0 0;
    font-size: clamp(2.15rem, 2.6vw, 2.9rem);
    line-height: 1.06;
    color: var(--hero-text);
}

.detail-reference-copy p {
    margin: 0.95rem 0 0;
    max-width: 38rem;
    color: rgba(211, 225, 241, 0.9);
    font-size: 1.04rem;
    line-height: 1.82;
}

.detail-reference-relevance {
    color: rgba(224, 236, 248, 0.94);
    font-size: 0.98rem;
    line-height: 1.72;
}

.detail-reference-copy .detail-reference-meta {
    margin-top: 1rem;
}

.service-detail-page .detail-reference-meta span {
    border-color: rgba(166, 197, 237, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(232, 241, 250, 0.92);
}

.service-detail-page .page-cta-section {
    padding-top: 5.1rem;
}

.service-detail-page .page-cta-shell {
    display: grid;
    gap: 1.4rem;
    align-items: center;
    padding: 1.85rem;
    border-radius: calc(var(--radius-lg) + 0.08rem);
    border: 1px solid rgba(152, 188, 235, 0.14);
    background: linear-gradient(180deg, rgba(12, 31, 58, 0.9) 0%, rgba(10, 24, 46, 0.86) 100%);
    box-shadow: 0 26px 58px rgba(2, 14, 32, 0.18);
}

.service-detail-page .page-cta-copy h2 {
    max-width: 18ch;
    font-size: clamp(2.15rem, 2.5vw, 2.75rem);
    line-height: 1.08;
}

.service-detail-page .page-cta-copy p {
    max-width: 39rem;
    font-size: 1.04rem;
    line-height: 1.8;
    color: rgba(211, 225, 241, 0.9);
}

.service-detail-cta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.05rem;
}

.service-detail-cta-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.52rem 0.88rem;
    border-radius: 999px;
    border: 1px solid rgba(160, 189, 226, 0.24);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(236, 244, 252, 0.88);
    font-size: 0.84rem;
    letter-spacing: 0.03em;
}

.service-detail-cta-actions {
    min-width: 15rem;
    gap: 0.95rem;
}

.project-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 1.5rem;
    align-items: start;
}

.project-hero-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.55rem;
}

.project-hero-meta-item,
.project-snapshot-card {
    border-radius: calc(var(--radius-md) + 0.05rem);
    padding: 0.95rem 1rem;
    border: 1px solid rgba(149, 189, 241, 0.16);
    background: rgba(255, 255, 255, 0.05);
}

.project-hero-meta-item span,
.project-snapshot-label,
.project-gallery-label {
    display: inline-flex;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-hero-meta-item span {
    color: rgba(188, 210, 236, 0.76);
}

.project-hero-meta-item strong {
    display: block;
    margin-top: 0.45rem;
    color: var(--hero-text);
    font-size: 0.98rem;
    line-height: 1.5;
}

.project-cover-slot {
    padding: 1rem;
    border-radius: calc(var(--radius-lg) + 0.1rem);
    border: 1px solid rgba(149, 189, 241, 0.16);
    background: linear-gradient(180deg, rgba(12, 31, 58, 0.92) 0%, rgba(10, 24, 46, 0.88) 100%);
    box-shadow: 0 26px 58px rgba(2, 14, 32, 0.24);
}

.project-cover-slot-label {
    display: inline-flex;
    margin-bottom: 0.8rem;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(188, 210, 236, 0.74);
}

.project-cover-slot-frame,
.project-gallery-frame {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: calc(var(--radius-md) + 0.05rem);
    border: 1px dashed rgba(172, 201, 236, 0.24);
    background: linear-gradient(135deg, rgba(18, 50, 92, 0.9) 0%, rgba(9, 28, 54, 0.92) 100%);
}

.project-cover-slot-frame {
    min-height: 28rem;
}

.project-cover-slot-frame::before,
.project-gallery-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(153, 191, 242, 0.08) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(153, 191, 242, 0.08) 50%, transparent 100%);
    background-size: 100% 1px, 1px 100%;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.project-cover-slot-frame span,
.project-gallery-frame span {
    position: relative;
    z-index: 1;
    padding: 0.6rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(172, 201, 236, 0.18);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(224, 236, 249, 0.86);
    font-size: 0.84rem;
    font-weight: 700;
}

.project-snapshot-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.project-snapshot-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 249, 253, 0.96) 100%);
    border-color: rgba(170, 192, 220, 0.4);
    box-shadow: 0 20px 44px rgba(12, 28, 52, 0.05);
}

.project-snapshot-label {
    color: var(--primary);
}

.project-snapshot-card strong {
    display: block;
    margin-top: 0.48rem;
    color: var(--primary-dark);
    font-size: 1rem;
    line-height: 1.55;
}

.project-overview-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
}

.project-tag-panel {
    padding: 1.35rem;
    border-radius: calc(var(--radius-lg) + 0.05rem);
    border: 1px solid rgba(170, 192, 220, 0.38);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 249, 253, 0.96) 100%);
    box-shadow: 0 20px 44px rgba(12, 28, 52, 0.05);
}

.project-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.95rem;
}

.project-related-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 1.4rem;
    align-items: start;
}

.project-proof-shell {
    padding: 1.35rem;
    border-radius: calc(var(--radius-lg) + 0.05rem);
    border: 1px solid rgba(170, 192, 220, 0.38);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 249, 253, 0.96) 100%);
    box-shadow: 0 20px 44px rgba(12, 28, 52, 0.05);
}

.project-proof-shell h3 {
    margin: 0.72rem 0 0;
    color: var(--primary-dark);
    font-size: 1.35rem;
    line-height: 1.25;
}

.project-proof-shell p {
    margin: 0.78rem 0 0;
    color: #4f6781;
    line-height: 1.72;
}

.project-tag-list span,
.project-system-card,
.project-gallery-label {
    border-radius: 999px;
    border: 1px solid rgba(170, 192, 220, 0.38);
    background: rgba(255, 255, 255, 0.86);
}

.project-tag-list span {
    padding: 0.62rem 0.9rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.project-scope-grid,
.project-system-grid {
    display: grid;
    gap: 1rem;
}

.project-scope-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-scope-card {
    min-height: 100%;
    border-radius: calc(var(--radius-md) + 0.05rem);
    padding: 1.15rem;
    border: 1px solid rgba(149, 189, 241, 0.16);
    background: rgba(255, 255, 255, 0.05);
}

.project-scope-index {
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(188, 210, 236, 0.76);
}

.project-scope-card p {
    margin: 0.58rem 0 0;
    color: rgba(222, 235, 248, 0.88);
    font-size: 0.95rem;
    line-height: 1.68;
}

.project-system-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-system-card {
    display: grid;
    gap: 0.34rem;
    align-content: center;
    min-height: 6.6rem;
    padding: 1rem 1.05rem;
    box-shadow: 0 20px 42px rgba(12, 28, 52, 0.05);
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.project-system-card:hover {
    transform: translateY(-2px);
    border-color: rgba(13, 74, 146, 0.24);
    box-shadow: 0 16px 34px rgba(12, 28, 52, 0.08);
}

.project-system-label {
    text-align: left;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
}

.project-system-card strong {
    text-align: left;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.45;
}

.project-gallery {
    display: grid;
    gap: 1rem;
}

.project-gallery-primary,
.project-gallery-item {
    display: grid;
    gap: 0.72rem;
}

.project-gallery-secondary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.project-gallery-label {
    align-self: start;
    width: fit-content;
    padding: 0.48rem 0.72rem;
    color: var(--primary);
}

.project-gallery-primary .project-gallery-frame {
    min-height: 23rem;
}

.project-gallery-item .project-gallery-frame {
    min-height: 11rem;
}

.service-delivery-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 1.3rem;
    align-items: start;
    padding: 1.7rem 1.75rem;
    border-radius: calc(var(--radius-lg) + 0.1rem);
    border: 1px solid rgba(170, 192, 220, 0.38);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(243, 248, 253, 0.96) 100%);
    box-shadow: 0 22px 50px rgba(12, 28, 52, 0.06);
}

.service-delivery-copy {
    max-width: 33rem;
}

.service-delivery-copy h2 {
    margin: 0.72rem 0 0;
    max-width: 20ch;
    font-size: 1.72rem;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: var(--primary-dark);
}

.service-delivery-copy p {
    margin: 0.8rem 0 0;
    color: #516983;
    font-size: 1rem;
    line-height: 1.74;
}

.service-delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
}

.service-delivery-point {
    min-height: 100%;
    border-radius: calc(var(--radius-md) + 0.05rem);
    padding: 1rem 1rem 0.95rem;
    border: 1px solid rgba(170, 192, 220, 0.36);
    background: rgba(255, 255, 255, 0.84);
}

.service-delivery-index {
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(13, 74, 146, 0.72);
}

.service-delivery-point p {
    margin: 0.55rem 0 0;
    color: #435a74;
    font-size: 0.94rem;
    line-height: 1.68;
}

.contact-page-actions {
    display: grid;
    gap: 0.95rem;
    margin-top: 1.4rem;
}

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

.contact-form {
    display: grid;
    gap: 0.95rem;
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
}

.contact-form span {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(170, 192, 220, 0.56);
    background: rgba(250, 252, 255, 0.96);
    color: var(--text);
    border-radius: 1rem;
    padding: 0.92rem 1rem;
    font: inherit;
    line-height: 1.5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(16, 35, 63, 0.75) 50%),
        linear-gradient(135deg, rgba(16, 35, 63, 0.75) 50%, transparent 50%);
    background-position:
        calc(100% - 1.05rem) calc(1.15rem),
        calc(100% - 0.8rem) calc(1.15rem);
    background-size: 0.38rem 0.38rem, 0.38rem 0.38rem;
    background-repeat: no-repeat;
    padding-right: 2.4rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 8rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(13, 74, 146, 0.48);
    box-shadow: 0 0 0 0.2rem rgba(13, 74, 146, 0.12);
    background: #fff;
}

.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
    border-color: rgba(194, 82, 76, 0.5);
    box-shadow: 0 0 0 0.18rem rgba(194, 82, 76, 0.1);
}

.field-error {
    color: #8b312e;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.45;
}

.form-status {
    padding: 0.85rem 0.95rem;
    border-radius: 1rem;
    background: rgba(13, 74, 146, 0.08);
    border: 1px solid rgba(13, 74, 146, 0.12);
    color: var(--primary-dark);
    font-weight: 700;
}

.form-status-error {
    background: rgba(194, 82, 76, 0.08);
    border-color: rgba(194, 82, 76, 0.18);
    color: #7d2d2a;
}

.contact-form .btn[disabled] {
    opacity: 0.8;
    cursor: wait;
    pointer-events: none;
}

.page-cta-section {
    padding: 4.3rem 0;
}

.page-cta-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.4rem;
    align-items: center;
}

.page-cta-copy h2 {
    margin: 0.72rem 0 0;
    font-size: clamp(1.9rem, 2vw, 2.45rem);
    line-height: 1.14;
    color: var(--hero-text);
}

.page-cta-copy p {
    margin: 0.9rem 0 0;
    max-width: 42rem;
    color: rgba(199, 216, 235, 0.84);
}

.page-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: flex-end;
}

@media (max-width: 1180px) {
    .page-hero-grid.page-hero-grid-panel,
    .internal-split-about,
    .internal-split-contact,
    .delivery-summary,
    .delivery-strip-shell,
    .service-delivery-shell,
    .detail-reference-shell,
    .project-hero-layout,
    .project-overview-layout,
    .page-cta-shell {
        grid-template-columns: minmax(0, 1fr);
    }

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

    .delivery-strip-steps {
        justify-content: flex-start;
    }

    .service-detail-delivery-shell {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-detail-summary-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-detail-overview-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 1024px) {
    .page-hero {
        padding-top: calc(var(--header-offset) + 2.2rem);
    }

    .page-hero-grid.page-hero-grid-panel,
    .internal-split-service,
    .industry-page-grid,
    .reference-grid-page,
    .info-card-grid,
    .process-strip,
    .delivery-summary-points,
    .service-delivery-grid,
    .project-snapshot-grid,
    .project-scope-grid,
    .project-system-grid,
    .project-related-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .project-gallery-secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .page-hero {
        padding: calc(var(--header-offset) + 1.6rem) 0 2.7rem;
    }

    .page-hero-shell {
        padding-top: 0.8rem;
    }

    .page-hero-grid,
    .page-hero-grid.page-hero-grid-panel,
    .internal-split-about,
    .internal-split-contact,
    .internal-split-service,
    .info-card-grid,
    .compact-sector-grid,
    .industry-page-grid,
    .reference-grid-page,
    .process-strip,
    .delivery-summary-points,
    .service-delivery-grid,
    .project-snapshot-grid,
    .project-scope-grid,
    .project-system-grid,
    .project-related-layout,
    .project-gallery-secondary,
    .project-hero-meta,
    .contact-form-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .page-hero-copy h1 {
        max-width: 14ch;
        font-size: clamp(2.2rem, 9vw, 3rem);
    }

    .service-detail-page .page-hero-copy h1 {
        max-width: 13ch;
    }

    .page-hero-intro,
    .info-card p,
    .compact-sector-card p,
    .industry-page-card p,
    .reference-card-page p,
    .contact-form-card p,
    .section-text {
        font-size: 0.96rem;
        line-height: 1.72;
    }

    .internal-section {
        padding: 4.3rem 0;
    }

    .page-cta-actions {
        justify-content: flex-start;
    }

    .service-detail-delivery-shell {
        padding: 1.35rem 1.25rem;
    }

    .service-detail-delivery-shell h2 {
        max-width: none;
        font-size: 1.5rem;
    }

    .service-detail-delivery-shell > p {
        font-size: 0.95rem;
        line-height: 1.68;
    }

    .service-detail-architecture-shell {
        padding: 1.35rem 1.1rem;
    }

    .service-detail-summary-row {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .service-detail-summary-copy h2 {
        max-width: none;
        font-size: 1.62rem;
    }

    .service-detail-summary-copy p {
        font-size: 0.96rem;
        line-height: 1.72;
    }

    .service-detail-summary-tags span {
        padding: 0.56rem 0.78rem;
        font-size: 0.72rem;
    }

    .service-detail-card {
        padding: 1.4rem 1.2rem;
    }

    .service-detail-card h3 {
        font-size: 1.34rem;
    }

    .detail-reference-shell,
    .service-detail-page .page-cta-shell {
        padding: 1.35rem 1.2rem;
    }

    .detail-reference-copy h2 {
        font-size: 1.7rem;
    }

    .detail-reference-copy p,
    .service-detail-page .page-cta-copy p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .service-detail-page .page-cta-copy h2 {
        max-width: none;
        font-size: 1.82rem;
    }

    .project-cover-slot-frame {
        min-height: 18rem;
    }

    .project-gallery-primary .project-gallery-frame {
        min-height: 16rem;
    }

    .project-gallery-item .project-gallery-frame {
        min-height: 9rem;
    }

    .service-delivery-shell {
        padding: 1.35rem 1.25rem;
    }

    .service-delivery-copy h2 {
        max-width: none;
        font-size: 1.48rem;
    }

    .service-delivery-copy p,
    .service-delivery-point p {
        font-size: 0.93rem;
        line-height: 1.66;
    }

    .delivery-strip-shell {
        padding: 1.45rem 1.3rem;
        gap: 1.1rem;
    }

    .delivery-strip-copy h2 {
        max-width: none;
        font-size: 1.42rem;
    }

    .delivery-strip-copy p {
        font-size: 0.95rem;
        line-height: 1.68;
    }

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

    .page-hero-panel,
    .industry-page-card,
    .reference-card-page,
    .contact-form-card,
    .internal-visual-card {
        padding: 1.25rem;
    }
}

.admin-body,
.admin-login-body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #edf3fb 0%, #f5f8fd 100%);
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 1.35rem;
    padding: 1.4rem 1.35rem;
    background: linear-gradient(180deg, #0a1f3d 0%, #0d2f5b 100%);
    color: rgba(233, 241, 250, 0.96);
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.06);
}

.admin-brand {
    display: grid;
    gap: 0.7rem;
    padding-bottom: 0.35rem;
    cursor: pointer;
}

.admin-brand img {
    width: 162px;
    height: auto;
}

.admin-brand span,
.admin-eyebrow {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-brand span {
    color: rgba(192, 212, 236, 0.86);
    line-height: 1.55;
}

.admin-nav {
    display: grid;
    gap: 0.42rem;
    align-content: start;
}

.admin-nav a {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    color: rgba(228, 238, 249, 0.88);
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.admin-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.admin-nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.55rem;
    min-height: 1.55rem;
    padding: 0 0.38rem;
    border-radius: 999px;
    background: rgba(13, 162, 217, 0.22);
    color: #f5fbff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.admin-nav a.is-active,
.admin-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(182, 208, 238, 0.12);
    color: #fff;
}

.admin-logout .btn {
    width: 100%;
    justify-content: center;
}

.admin-content {
    padding: 1.55rem 1.6rem 1.7rem;
}

.admin-header {
    margin-bottom: 1rem;
}

.admin-header h1 {
    margin: 0.55rem 0 0;
    font-size: clamp(2rem, 2vw, 2.55rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--primary-dark);
}

.admin-main {
    display: grid;
    gap: 1.15rem;
}

.admin-alert {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(170, 192, 220, 0.36);
    font-weight: 700;
}

.admin-alert-success {
    background: rgba(13, 74, 146, 0.08);
    color: var(--primary-dark);
}

.admin-alert-error {
    background: rgba(194, 82, 76, 0.08);
    border-color: rgba(194, 82, 76, 0.2);
    color: #7d2d2a;
}

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

.admin-card-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-card,
.admin-panel,
.admin-login-card {
    border-radius: calc(var(--radius-lg) + 0.05rem);
    border: 1px solid rgba(170, 192, 220, 0.42);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 249, 253, 0.96) 100%);
    box-shadow: 0 24px 52px rgba(12, 28, 52, 0.06);
}

.admin-card {
    padding: 1.4rem;
}

.admin-card-kicker {
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
}

.admin-card strong {
    display: block;
    margin-top: 0.8rem;
    font-size: 2rem;
    line-height: 1;
    color: var(--primary-dark);
}

.admin-card-compact {
    font-size: 1.2rem !important;
    line-height: 1.3 !important;
}

.admin-card p,
.admin-panel-heading p,
.admin-quick-link span,
.admin-login-card p,
.admin-empty-state {
    color: #506883;
    font-size: 0.97rem;
    line-height: 1.7;
}

.admin-card-link {
    display: inline-flex;
    margin-top: 1rem;
    font-weight: 800;
    color: var(--primary);
    cursor: pointer;
}

.admin-panel {
    padding: 1.4rem;
}

.admin-panel-intro {
    padding-bottom: 1.2rem;
}

.admin-editor-header {
    display: grid;
    gap: 1.05rem;
    border-color: rgba(150, 181, 216, 0.42);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 250, 255, 0.96) 100%);
    box-shadow: 0 16px 40px rgba(12, 28, 52, 0.05);
}

.admin-panel-heading {
    margin-bottom: 1rem;
}

.admin-panel-heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.admin-panel-actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.admin-editor-heading-copy {
    max-width: 40rem;
}

.admin-editor-heading-copy p {
    color: #566f8a;
    font-size: 0.985rem;
    line-height: 1.7;
}

.admin-editorial-pills {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem;
}

.admin-panel-heading h2,
.admin-login-card h1,
.admin-repeater-section h3 {
    margin: 0;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

.admin-quick-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.admin-quick-link {
    display: grid;
    gap: 0.42rem;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(170, 192, 220, 0.38);
    background: rgba(255, 255, 255, 0.84);
    cursor: pointer;
}

.admin-quick-link-strong {
    border-color: rgba(13, 74, 146, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 246, 255, 0.96) 100%);
}

.admin-quick-link strong {
    color: var(--primary-dark);
}

.admin-quick-link-kicker {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
}

.admin-quick-links-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-status-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.admin-status-pill.is-complete {
    background: rgba(13, 74, 146, 0.08);
    color: var(--primary-dark);
}

.admin-status-pill.is-pending {
    background: rgba(169, 116, 36, 0.1);
    color: #885f1b;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1rem;
}

.admin-task-list,
.admin-recent-list {
    display: grid;
    gap: 0.85rem;
}

.admin-task-item,
.admin-recent-item {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid rgba(170, 192, 220, 0.34);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.78);
}

.admin-task-item strong,
.admin-recent-item strong,
.admin-table-service strong {
    color: var(--primary-dark);
}

.admin-task-item p,
.admin-recent-item span,
.admin-recent-item small,
.admin-table-service span {
    color: #506883;
    font-size: 0.92rem;
    line-height: 1.6;
}

.admin-recent-item {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
}

.admin-recent-meta {
    display: grid;
    justify-items: end;
    gap: 0.45rem;
}

.admin-editorial-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(170, 192, 220, 0.32);
}

.admin-editorial-meta div {
    display: grid;
    gap: 0.22rem;
    padding: 0.85rem 0.9rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(171, 193, 221, 0.3);
    background: rgba(251, 253, 255, 0.72);
}

.admin-editorial-meta strong {
    color: var(--primary-dark);
    font-size: 0.84rem;
}

.admin-editorial-meta span {
    color: #5a718c;
    font-size: 0.92rem;
    line-height: 1.5;
}

.admin-editorial-actions {
    margin-top: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.admin-editorial-actions form {
    margin: 0;
}

.admin-editor-toolbar {
    position: sticky;
    top: 1rem;
    z-index: 20;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(153, 182, 214, 0.42);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 34px rgba(12, 28, 52, 0.08);
}

.admin-editor-toolbar .btn {
    min-height: 2.9rem;
}

.admin-editor-toolbar .btn-primary {
    box-shadow: 0 14px 28px rgba(13, 74, 146, 0.18);
}

.admin-editor-toolbar form {
    display: flex;
}

.admin-toolbar-back {
    display: inline-flex;
    align-items: center;
    color: #5f7690;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
}

.admin-toolbar-back:hover {
    color: var(--primary-dark);
}

.admin-editor-toolbar-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.7rem;
}

.admin-publish-action {
    border-color: rgba(13, 74, 146, 0.22);
    background: rgba(244, 248, 253, 0.98);
    color: var(--primary-dark);
    box-shadow: 0 10px 24px rgba(12, 28, 52, 0.08);
}

.admin-publish-action:hover {
    border-color: rgba(13, 74, 146, 0.34);
    background: rgba(235, 244, 252, 0.98);
    color: var(--primary-dark);
}

.admin-publish-action:focus-visible {
    outline: none;
    border-color: rgba(13, 74, 146, 0.42);
    box-shadow: 0 0 0 4px rgba(13, 74, 146, 0.12);
}

.admin-table-service {
    display: grid;
    gap: 0.22rem;
}

.admin-editorial-cell {
    display: grid;
    gap: 0.35rem;
}

.admin-editorial-cell small {
    color: #5b718a;
    font-size: 0.86rem;
    line-height: 1.5;
}

.admin-form {
    display: grid;
    gap: 1rem;
}

.admin-form-wide {
    gap: 1.2rem;
}

.admin-editor-form {
    gap: 1.35rem;
}

.admin-editor-form > .admin-panel {
    padding: 1.55rem;
    border: 1px solid rgba(166, 191, 220, 0.34);
    box-shadow: 0 12px 34px rgba(12, 28, 52, 0.04);
    position: relative;
}

.admin-editor-form > .admin-panel + .admin-panel {
    margin-top: 0.1rem;
}

.admin-editor-form > .admin-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1.55rem;
    right: 1.55rem;
    height: 0.2rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(13, 74, 146, 0.18) 0%, rgba(13, 74, 146, 0.05) 72%, rgba(13, 74, 146, 0) 100%);
}

.admin-editor-form .admin-panel-heading {
    margin-bottom: 1.22rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(176, 198, 223, 0.26);
}

.admin-editor-form .admin-panel-heading h2 {
    font-size: 1.3rem;
    line-height: 1.2;
}

.admin-editor-form .admin-panel-heading p {
    max-width: 44rem;
    color: #5b728c;
    font-size: 0.965rem;
    line-height: 1.72;
}

.admin-form-grid,
.admin-repeat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.admin-form-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-form-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-editor-form .admin-form-grid {
    gap: 1rem 1.05rem;
}

.admin-field {
    display: grid;
    gap: 0.45rem;
}

.admin-field-span-2 {
    grid-column: span 2;
}

.admin-field > span {
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2f4f70;
}

.admin-field input,
.admin-field textarea,
.admin-field select {
    width: 100%;
    border: 1px solid rgba(170, 192, 220, 0.56);
    background: rgba(250, 252, 255, 0.96);
    color: var(--text);
    border-radius: 1rem;
    padding: 0.92rem 1rem;
    font: inherit;
    line-height: 1.5;
}

.admin-field textarea {
    min-height: 7rem;
    resize: vertical;
}

.admin-field .field-error {
    color: #9a3b32;
    font-size: 0.84rem;
    line-height: 1.45;
}

.admin-editor-form .admin-field input,
.admin-editor-form .admin-field textarea,
.admin-editor-form .admin-field select {
    border-color: rgba(166, 191, 220, 0.62);
}

.admin-field input:focus,
.admin-field textarea:focus,
.admin-field select:focus {
    outline: none;
    border-color: rgba(13, 74, 146, 0.48);
    box-shadow: 0 0 0 0.2rem rgba(13, 74, 146, 0.12);
    background: #fff;
}

.admin-repeater-section {
    display: grid;
    gap: 0.8rem;
}

.admin-editor-form .admin-form-grid,
.admin-editor-form .admin-repeater-section {
    padding: 1rem 1.05rem;
    border: 1px solid rgba(174, 196, 222, 0.28);
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(250, 252, 255, 0.96) 0%, rgba(246, 250, 255, 0.96) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.admin-editor-form .admin-repeater-section + .admin-repeater-section,
.admin-editor-form .admin-form-grid + .admin-repeater-section,
.admin-editor-form .admin-repeater-section + .admin-form-grid {
    margin-top: 0.95rem;
}

.admin-editor-form .admin-repeater-section h3 {
    font-size: 0.96rem;
    line-height: 1.35;
    color: #264868;
}

.admin-editor-bottom-actions {
    padding-top: 0.25rem;
}

.admin-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.9rem;
}

.admin-filter-form {
    margin-bottom: 1.15rem;
}

.admin-filter-actions {
    align-self: end;
}

.admin-detail-list {
    display: grid;
    gap: 0.85rem;
}

.admin-detail-list div {
    display: grid;
    gap: 0.18rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(170, 192, 220, 0.24);
}

.admin-detail-list strong {
    color: var(--primary-dark);
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-detail-list span {
    color: #425a74;
    line-height: 1.65;
}

.admin-message-block {
    margin-top: 1.15rem;
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid rgba(170, 192, 220, 0.32);
    background: rgba(248, 251, 255, 0.88);
}

.admin-message-block strong {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--primary-dark);
}

.admin-message-block p {
    margin: 0;
    color: #435a74;
    line-height: 1.75;
    white-space: pre-line;
}

.admin-danger-actions {
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(170, 192, 220, 0.24);
}

.admin-main .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.admin-main .pagination .page-link,
.admin-main .pagination span[aria-current="page"] span,
.admin-main .pagination .page-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    min-height: 2.5rem;
    padding: 0.5rem 0.8rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(170, 192, 220, 0.34);
    color: #466078;
    background: rgba(255, 255, 255, 0.9);
}

.admin-main .pagination .active span,
.admin-main .pagination .page-item.active span {
    color: #fff;
    background: linear-gradient(135deg, #0d4a92, #1765b9);
    border-color: rgba(13, 74, 146, 0.3);
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 0.95rem 0.85rem;
    border-bottom: 1px solid rgba(170, 192, 220, 0.3);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
}

.admin-table td {
    color: #435a74;
}

.admin-table-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.admin-table-actions a,
.admin-table-actions button {
    border: 0;
    background: none;
    padding: 0;
    color: var(--primary);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.admin-card-link:hover,
.admin-quick-link:hover,
.admin-table-actions a:hover,
.admin-table-actions button:hover {
    color: var(--primary-dark);
}

.admin-brand:focus-visible,
.admin-nav a:focus-visible,
.admin-card-link:focus-visible,
.admin-quick-link:focus-visible,
.admin-toolbar-back:focus-visible,
.admin-table-actions a:focus-visible,
.admin-table-actions button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(13, 74, 146, 0.14);
    border-radius: 0.9rem;
}

.admin-table-actions form {
    margin: 0;
}

.admin-badge {
    display: inline-flex;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-badge.is-published {
    background: rgba(13, 74, 146, 0.08);
    color: var(--primary-dark);
}

.admin-badge.is-draft {
    background: rgba(91, 109, 130, 0.1);
    color: #445b75;
}

.admin-login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem 1.5rem;
}

.admin-login-card {
    width: min(448px, 100%);
    padding: 1.8rem 1.8rem 1.7rem;
    display: grid;
    gap: 0.9rem;
}

.admin-login-logo {
    width: 156px;
    height: auto;
    margin-bottom: 0.15rem;
}

.admin-login-card .admin-eyebrow {
    color: var(--primary);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
}

.admin-login-card h1 {
    font-size: clamp(1.95rem, 3vw, 2.3rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.admin-login-card p {
    margin: 0;
}

.admin-login-intro {
    max-width: 29rem;
    color: #4e6580;
    font-size: 0.98rem;
    line-height: 1.62;
}

.admin-login-route {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #627991;
    font-size: 0.83rem;
    line-height: 1.4;
}

.admin-login-route code {
    padding: 0.24rem 0.48rem;
    border-radius: 999px;
    background: rgba(13, 74, 146, 0.08);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 800;
}

.admin-submit {
    width: 100%;
    min-height: 3.25rem;
}

.admin-login-card .admin-form {
    margin-top: 0.15rem;
    gap: 0.95rem;
}

.admin-login-card .admin-field {
    gap: 0.5rem;
}

.admin-login-card .admin-field > span {
    color: #325170;
    font-size: 0.73rem;
    letter-spacing: 0.11em;
}

.admin-login-card .admin-field input {
    min-height: 3.2rem;
    padding: 0.95rem 1rem;
    border-radius: 0.95rem;
    background: rgba(252, 253, 255, 0.98);
}

.admin-login-card .admin-field input::placeholder {
    color: #8ea0b2;
}

.admin-login-card .admin-alert {
    margin: 0.15rem 0 0;
}

@media (max-width: 1100px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        grid-template-columns: 1fr;
    }

    .admin-card-grid,
    .admin-quick-links,
    .admin-card-grid-4,
    .admin-card-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-dashboard-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 760px) {
    .admin-content,
    .admin-sidebar,
    .admin-login-card,
    .admin-panel,
    .admin-card {
        padding: 1.15rem;
    }

    .admin-card-grid,
    .admin-quick-links,
    .admin-form-grid,
    .admin-repeat-grid,
    .admin-form-grid-3,
    .admin-form-grid-4,
    .admin-card-grid-4,
    .admin-card-grid-3,
    .admin-quick-links-compact {
        grid-template-columns: minmax(0, 1fr);
    }

    .admin-field-span-2 {
        grid-column: auto;
    }

    .admin-panel-heading-row,
    .admin-form-actions,
    .admin-panel-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-editor-toolbar {
        position: static;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .admin-editor-toolbar-actions {
        justify-content: stretch;
    }

    .admin-editor-toolbar-actions .btn,
    .admin-editor-toolbar-actions form {
        width: 100%;
    }

    .admin-recent-item {
        grid-template-columns: minmax(0, 1fr);
    }

    .admin-editorial-meta {
        grid-template-columns: minmax(0, 1fr);
    }

    .admin-recent-meta {
        justify-items: start;
    }

    .admin-login-shell {
        padding: 1rem;
    }

    .admin-login-card {
        width: min(100%, 28rem);
        gap: 0.8rem;
        padding: 1.35rem 1.2rem 1.2rem;
    }

    .admin-login-card h1 {
        font-size: 1.75rem;
    }

    .admin-login-intro {
        font-size: 0.94rem;
    }
}
