:root {
    --cx-bg: #0a101b;
    --cx-bg-soft: #121b2d;
    --cx-panel: rgba(18, 27, 45, 0.72);
    --cx-panel-solid: #162134;
    --cx-text: #e8eef8;
    --cx-text-muted: #9fb0ca;
    --cx-line: rgba(159, 176, 202, 0.18);
    --cx-line-strong: rgba(255, 255, 255, 0.3);
    --cx-red: #ff1710;
    --cx-blue: #344d78;
    --cx-white: #ffffff;
    --cx-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
    --cx-radius-lg: 1.75rem;
    --cx-radius-md: 1.1rem;
    --cx-radius-sm: 0.85rem;
    --cx-container: 1240px;
    --cx-gutter: clamp(1.1rem, 2vw, 2rem);
    --cx-section: clamp(4rem, 8vw, 7rem);
    --cx-transition: 220ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--cx-text);
    background:
        radial-gradient(circle at top left, rgba(255, 23, 16, 0.14), transparent 30%),
        linear-gradient(180deg, #09101a 0%, #0d1523 100%);
    line-height: 1.65;
}

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

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

.container {
    width: min(100% - (var(--cx-gutter) * 2), var(--cx-container));
    margin-inline: auto;
}

.section-shell {
    padding: var(--cx-section) 0;
}

.section-dark {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-top: 1px solid var(--cx-line);
    border-bottom: 1px solid var(--cx-line);
}

.section-accent {
    background: linear-gradient(135deg, rgba(52, 77, 120, 0.2), rgba(255, 23, 16, 0.09));
}

.eyebrow {
    display: inline-block;
    margin: 0 0 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cx-red);
}

h1,
h2,
h3,
h4 {
    margin: 0 0 1rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-family: "Montserrat", system-ui, sans-serif;
}

h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
}

p,
li {
    font-size: 1.03rem;
    color: var(--cx-text-muted);
}

ul {
    margin: 0;
    padding-left: 1.1rem;
}

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

/* ========================================
   HEADER
======================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(8, 13, 21, 0.82);
    border-bottom: 1px solid var(--cx-line);
    transition:
        background 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    min-height: 6.25rem;
    transition: min-height 220ms ease;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.site-brand__mark {
    display: inline-flex;
    align-items: center;
}

.site-brand__mark img {
    display: block;
    width: auto;
    height: 110px;
    max-width: none;
    transform-origin: left center;
    transition: height 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(8, 13, 21, 0.94);
    border-bottom-color: rgba(159, 176, 202, 0.24);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.site-header.is-scrolled .site-header__inner {
    min-height: 4.4rem;
}

.site-header.is-scrolled .site-brand__mark img {
    height: 64px;
}

.header-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin-left: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
}

.primary-menu,
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-menu {
    gap: 1.5rem;
}

.footer-menu {
    gap: 1rem;
}

.primary-menu a,
.footer-menu a {
    color: var(--cx-text);
    font-weight: 600;
    transition: color var(--cx-transition), opacity var(--cx-transition);
}

.primary-menu a:hover,
.primary-menu a:focus-visible,
.footer-menu a:hover,
.footer-menu a:focus-visible {
    color: var(--cx-red);
}

.header-cta {
    min-height: 2.85rem;
    padding: 0.72rem 1.15rem;
    white-space: nowrap;
    box-shadow: 0 14px 28px rgba(255, 23, 16, 0.18);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.32rem;
    width: 3rem;
    height: 3rem;
    margin-left: auto;
    border: 1px solid var(--cx-line);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 1.1rem;
    height: 2px;
    margin-inline: auto;
    background: var(--cx-white);
}

/* ========================================
   HERO / LAYOUT
======================================== */

.hero-grid,
.inquiry-grid,
.split-callout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
}

.hero-lead {
    font-size: 1.17rem;
    max-width: 44rem;
}

.hero-subtle {
    margin-top: 0.85rem;
    font-size: 0.98rem;
    color: rgba(255,255,255,0.72);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 2rem 0 1.5rem;
}
.hero-section {
    padding-top: clamp(2.5rem, 4vw, 4rem);
}
.hero-section .hero-grid {
    align-items: start;
}
.hero-copy {
    max-width: 46rem;
}

.hero-visual {
    align-self: stretch;
}

.hero-ops-card {
    height: 100%;
}
.hero-ops-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,70,70,0.08), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.03), transparent 60%);
    pointer-events: none;
}
.hero-ops-card__inner {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    padding: 1.5rem;
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(13, 20, 33, 0.98), rgba(17, 26, 43, 0.96)),
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.02) 0 14px,
            transparent 14px 28px
        );
    border-radius: calc(var(--cx-radius-lg) - 1px);
}

.hero-ops-card__status {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cx-text);
}

.hero-ops-card__status-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: var(--cx-red);
    box-shadow: 0 0 0 6px rgba(255, 23, 16, 0.12);
}

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

.hero-ops-chip {
    padding: 1rem 1rem 1.05rem;
    border-radius: var(--cx-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    min-height: 100%;
}

.hero-ops-chip__label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cx-red);
}

.hero-ops-chip strong {
    display: block;
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.3;
    color: var(--cx-white);
}

.hero-ops-card__footer h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.35rem);
    margin-bottom: 0.85rem;
}

.hero-ops-card__footer p:last-child {
    margin-bottom: 0;
}
/* ========================================
   BUTTONS
======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.8rem 1.3rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition:
        transform var(--cx-transition),
        border-color var(--cx-transition),
        background var(--cx-transition),
        color var(--cx-transition),
        box-shadow var(--cx-transition);
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--cx-red), #d0100a);
    color: var(--cx-white);
    box-shadow: 0 16px 30px rgba(255, 23, 16, 0.24);
}

.btn-secondary {
    border-color: var(--cx-line-strong);
    background: rgba(255, 255, 255, 0.02);
    color: var(--cx-white);
}

/* ========================================
   LISTS / UTILITY
======================================== */

.hero-points,
.check-list {
    display: grid;
    gap: 0.8rem;
    list-style: none;
    padding: 0;
}

.hero-points li,
.check-list li {
    position: relative;
    padding-left: 1.4rem;
}

.hero-points li::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--cx-red);
    box-shadow: 0 0 0 5px rgba(255, 23, 16, 0.14);
}

/* ========================================
   CARDS / PANELS
======================================== */

.electric-card,
.frosted-card,
.stat-card,
.bento-panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--cx-radius-lg);
    box-shadow: var(--cx-shadow);
}

.electric-card {
    padding: 1px;
    background: linear-gradient(
        140deg,
        rgba(255, 23, 16, 0.95),
        rgba(52, 77, 120, 0.9),
        rgba(255, 255, 255, 0.24)
    );
}

.electric-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 30%);
    opacity: 0.65;
    pointer-events: none;
}

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

.hero-card,
.service-card {
    background: linear-gradient(180deg, rgba(13, 20, 33, 0.98), rgba(17, 26, 43, 0.96));
    border-radius: calc(var(--cx-radius-lg) - 1px);
}

.hero-card__media {
    min-height: 300px;
    border-bottom: 1px solid var(--cx-line);
}

.hero-card__content,
.service-card {
    padding: 1.5rem;
}

.media-placeholder {
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0 12px, transparent 12px 24px);
    color: var(--cx-text-muted);
    text-align: center;
}

/* ========================================
   SERVICES
======================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.2rem;
}

.service-card {
    grid-column: span 4;
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border: 1px solid rgba(255, 70, 70, 0.35);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 70, 70, 0.25);
}

.service-card__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--cx-red);
}

/* ========================================
   SECTION BLOCKS
======================================== */

.section-heading {
    max-width: 46rem;
    margin-bottom: 2rem;
}

.bento-grid,
.stats-grid {
    display: grid;
    gap: 1.2rem;
}

.bento-grid {
    grid-template-columns: repeat(3, 1fr);
}

.stats-grid {
    grid-template-columns: repeat(3, 1fr);
}

.frosted-card,
.bento-panel,
.inquiry-panel,
.split-callout__panel,
.stat-card {
    padding: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(16px);
}

.stat-card__number {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
    font-family: "Montserrat", system-ui, sans-serif;
    color: var(--cx-white);
}

/* ========================================
   PAGE CONTENT
======================================== */

.page-shell {
    max-width: 860px;
}

.page-shell--wide {
    max-width: none;
}

.page-content > *:first-child {
    margin-top: 0;
}

.questionnaire-placeholder {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.25rem;
}

.questionnaire-placeholder__item {
    padding: 1rem 1.1rem;
    border-radius: var(--cx-radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--cx-line);
    transition:
        transform var(--cx-transition),
        border-color var(--cx-transition),
        background var(--cx-transition);
}

.questionnaire-placeholder__item:hover {
    transform: translateX(4px);
    border-color: rgba(255, 23, 16, 0.45);
    background: rgba(255, 255, 255, 0.08);
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
    padding: 2.4rem 0 1.4rem;
    border-top: 1px solid var(--cx-line);
    background: rgba(0, 0, 0, 0.18);
}

.site-footer__inner,
.site-footer__bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
}

.site-footer__brand {
    margin: 0 0 0.5rem;
    color: var(--cx-white);
    font-weight: 700;
}

.site-footer__copy,
.site-footer__bottom p {
    margin: 0;
}

/* ========================================
   REVEALS
======================================== */

.reveal-up {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 560ms ease, transform 560ms ease;
}

.reveal-up.delay-1 {
    transition-delay: 100ms;
}

.reveal-up.delay-2 {
    transition-delay: 200ms;
}

.reveal-up.delay-3 {
    transition-delay: 300ms;
}

.reveal-up.delay-4 {
    transition-delay: 400ms;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}



/* ========================================
   Reality
======================================== */

.reality-intro {
    margin-bottom: 0.4rem;
    color: rgba(255,255,255,0.82);
}

.reality-intro span {
    display: block;
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.58);
}



.reality-sub {
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.58);
}

.reality-matrix-wrap {
    position: relative;
}

.reality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    transition: opacity 0.35s ease, transform 0.45s ease;
}

.reality-card {
    position: relative;
    min-height: 250px;
    padding: 2rem;
    border-radius: 24px;
    background: linear-gradient(
        145deg,
        rgba(18, 28, 48, 0.82),
        rgba(8, 14, 26, 0.94)
    );
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
    cursor: pointer;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        opacity 0.25s ease;
}

.reality-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0)
        );
    pointer-events: none;
}

.reality-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(255, 70, 70, 0),
        rgba(255, 70, 70, 0.45),
        rgba(255, 70, 70, 0)
    );
    opacity: 0;
    transform: scaleX(0.65);
    transform-origin: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.reality-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(255, 90, 90, 0.18);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.reality-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.reality-card h3 {
    margin: 0.4rem 0 0.75rem;
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.1;
}

.reality-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.reality-label {
    display: inline-block;
    margin-bottom: 0.25rem;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.54);
}

.reality-cta {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.68);
    transition: color 0.25s ease, transform 0.25s ease;
}

.reality-card:hover .reality-cta {
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(2px);
}

.reality-grid.is-dimmed {
    opacity: 0.16;
    transform: scale(0.978);
}

.reality-grid.is-dimmed .reality-card {
    opacity: 0.32;
}

.reality-grid.is-dimmed .reality-card.is-selected {
    opacity: 1;
}

.reality-overlay {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: block;
    padding: 0;
    border-radius: 24px;
    background: linear-gradient(
        180deg,
		rgba(10, 18, 32, 0.94),
		rgba(16, 28, 48, 0.97)
    );
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);

    /* changed */
    overflow: hidden;
    min-height: 100%;

    opacity: 0;
    visibility: hidden;
    transform: scale(0.94) translateY(28px);
    transform-origin: center center;
    transition:
        opacity 0.5s ease,
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0.65s;
}

.reality-overlay.is-open {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    transition:
        opacity 0.5s ease,
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0s;
}

.reality-overlay__panel {
    display: none;

    /* changed */
    height: 100%;
    max-height: 100%;
    overflow-y: auto;

    padding: 2.5rem 2.5rem 3.25rem;
    scrollbar-gutter: stable;
}

.reality-overlay__panel.is-active {
    display: block;
    animation: realityPanelIn 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reality-overlay__panel h3 {
    margin: 0.35rem 0 0.85rem;
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.08;
}

.reality-overlay__panel p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 70ch;
}

.reality-overlay__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 25;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.reality-overlay__close:hover {
    background: rgba(255, 70, 70, 0.22);
    transform: rotate(90deg) scale(1.05);
    box-shadow: 0 0 0 1px rgba(255, 90, 90, 0.18);
}

.reality-overlay__lead {
    font-size: 1.16rem;
    font-weight: 500;
    margin: 1rem 0 1.25rem;
    color: rgba(255, 255, 255, 0.94);
    max-width: 48ch;
}

.reality-overlay ul {
    margin: 0 0 1.25rem 1.15rem;
    padding: 0;
}

.reality-overlay li {
    margin-bottom: 0.55rem;
    color: rgba(255, 255, 255, 0.84);
}

.reality-stat-list {
    margin: 1.35rem 0 1.6rem 1.1rem;
    padding: 0;
}

.reality-stat-list li {
    margin-bottom: 0.7rem;
    color: rgba(255, 255, 255, 0.88);
}

.reality-stat-list li::marker,
.reality-overlay li::marker {
    color: rgba(255, 90, 90, 0.82);
}

.reality-overlay__close-line {
    margin-top: 1.6rem;
    margin-bottom: 0;
    padding: 0 0 0 1rem;
    border-left: 2px solid rgba(255, 90, 90, 0.42);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    max-width: 62ch;
}

.reality-overlay__bridge {
    margin-top: 1.6rem;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
}

.reality-overlay__action {
    margin-top: 0.35rem;
    font-size: 0.95rem;
    color: rgba(255, 90, 90, 0.82);
    cursor: pointer;
    transition: transform 0.25s ease, color 0.25s ease;
}

.reality-overlay__action:hover {
    transform: translateX(3px);
    color: rgba(255, 90, 90, 1);
}

.reality-overlay__panel::-webkit-scrollbar {
    width: 10px;
}

.reality-overlay__panel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
}

.reality-overlay__panel::-webkit-scrollbar-thumb {
    background: rgba(255, 90, 90, 0.28);
    border-radius: 999px;
}

.reality-overlay__panel::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 90, 90, 0.42);
}

@keyframes realityPanelIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1080px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }

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

    .site-brand__mark img {
        height: 96px;
    }

    .site-header.is-scrolled .site-brand__mark img {
        height: 58px;
    }

    .primary-menu {
        gap: 1.15rem;
    }
}

@media (max-width: 900px) {
    .nav-toggle {
        display: inline-flex;
    }

    .header-nav-wrap {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: block;
        margin-left: 0;
        padding: 0 var(--cx-gutter) 1rem;
        background: rgba(8, 13, 21, 0.98);
        border-bottom: 1px solid var(--cx-line);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-6px);
        transition:
            opacity var(--cx-transition),
            transform var(--cx-transition),
            visibility var(--cx-transition);
    }

    .site-header.nav-open .header-nav-wrap {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .primary-nav {
        display: block;
    }

    .primary-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
        padding: 1rem 0 0;
    }

    .header-cta {
        display: inline-flex;
        margin-top: 1rem;
    }

    .hero-grid,
    .inquiry-grid,
    .split-callout,
    .site-footer__inner,
    .site-footer__bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .site-header__inner {
        min-height: 5.4rem;
    }

    .site-brand__mark img {
        height: 82px;
    }

    .site-header.is-scrolled .site-header__inner {
        min-height: 4rem;
    }

    .site-header.is-scrolled .site-brand__mark img {
        height: 54px;
    }

    .hero-ops-card__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .services-grid,
    .bento-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .site-header__inner {
        min-height: 4.75rem;
        gap: 1rem;
    }

    .site-brand__mark img {
        height: 72px;
    }

    .site-header.is-scrolled .site-header__inner {
        min-height: 3.75rem;
    }

    .site-header.is-scrolled .site-brand__mark img {
        height: 48px;
    }

    .section-shell {
        padding: 4rem 0;
    }
}