* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cyan: #16dfff;
    --blue: #2f7dff;
    --purple: #9b5cff;
    --white: #ffffff;
}

html, body {
    min-height: 100%;
    background: #020711;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--white);
    overflow-x: hidden;
    background:
        radial-gradient(circle at 75% 40%, rgba(47,125,255,0.25), transparent 30%),
        radial-gradient(circle at 60% 55%, rgba(155,92,255,0.2), transparent 35%),
        radial-gradient(circle at 40% 30%, rgba(22,223,255,0.15), transparent 25%),
        linear-gradient(180deg, #02050a 0%, #030913 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(22,223,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22,223,255,0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 0;
    pointer-events: none;
}

.page {
    position: relative;
    z-index: 2;
}

.header {
    height: 96px;
    min-height: 96px;
    padding: 0 7vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(22,223,255,0.2);
    background: rgba(2, 7, 17, 0.96);
    position: sticky;
    top: 0;
    z-index: 1000;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.brand img {
    height: 96px;
    margin-top: 0;
    display: block;
}

.nav {
    display: flex;
    gap: 40px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    align-items: center;
    min-height: 96px;
}

.nav a {
    color: #ffffff;
    opacity: 0.7;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.nav a:hover,
.nav a.active {
    color: #16dfff;
    opacity: 1;
}

.cta {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    padding: 16px 26px;
    border: none;
    color: white;
    font-weight: 900;
    border-radius: 6px;
    box-shadow: 0 0 25px rgba(47,125,255,0.4);
    cursor: pointer;
}

.site-section {
    display: none;
}

.site-section.active-section {
    display: block;
}


/* MOBILE NAV DEFAULT HIDDEN */
.mobile-menu-toggle,
.mobile-nav-overlay {
    display: none;
}

/* HOME */
.hero {
    padding: 70px 7vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.kicker {
    color: var(--cyan);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

h1 {
    font-size: 72px;
    line-height: 1;
    margin-bottom: 25px;
}

.gradient {
    background: linear-gradient(90deg, var(--cyan), var(--blue), var(--purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: #aab6c7;
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 0;
}

.hero-actions span {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-visual {
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.system-core {
    position: relative;
    width: 620px;
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(22,223,255,0.22);
    box-shadow: 0 0 35px rgba(22,223,255,0.08);
}

.ring.one {
    width: 600px;
    height: 600px;
}

.ring.two {
    width: 470px;
    height: 470px;
    border-color: rgba(155,92,255,0.22);
}

.ring.three {
    width: 340px;
    height: 340px;
    border-color: rgba(47,125,255,0.22);
}

.energy-lines {
    position: absolute;
    width: 620px;
    height: 620px;
    z-index: 1;
    pointer-events: none;
}

.energy-base {
    stroke: rgba(22,223,255,0.23);
    stroke-width: 1.3;
}

.energy-pulse {
    stroke: url(#beamGradient);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-dasharray: 42 560;
    animation: beamTravel 3.2s linear infinite;
    filter: drop-shadow(0 0 10px rgba(22,223,255,0.85));
}

.energy-pulse.reverse {
    animation-direction: reverse;
}

.energy-pulse.delay-1 { animation-delay: -0.3s; }
.energy-pulse.delay-2 { animation-delay: -0.8s; }
.energy-pulse.delay-3 { animation-delay: -1.2s; }
.energy-pulse.delay-4 { animation-delay: -1.7s; }
.energy-pulse.delay-5 { animation-delay: -2.1s; }
.energy-pulse.delay-6 { animation-delay: -2.6s; }


.hero-icon {
    width: 620px;
    position: absolute;
    z-index: 3;
    filter:
        drop-shadow(0 0 40px rgba(22,223,255,0.7))
        drop-shadow(0 0 80px rgba(155,92,255,0.4));
    animation: float 5s ease-in-out infinite;
}

.system-nodes {
    position: absolute;
    width: 620px;
    height: 620px;
    z-index: 5;
}

.node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.node.design { transform: translate(-50%, -50%) rotate(-90deg) translateX(300px) rotate(90deg); }
.node.structure { transform: translate(-50%, -50%) rotate(-38.6deg) translateX(300px) rotate(38.6deg); }
.node.strategy { transform: translate(-50%, -50%) rotate(12.8deg) translateX(300px) rotate(-12.8deg); }
.node.build { transform: translate(-50%, -50%) rotate(64.2deg) translateX(300px) rotate(-64.2deg); }
.node.execution { transform: translate(-50%, -50%) rotate(115.6deg) translateX(300px) rotate(-115.6deg); }
.node.diagnosis { transform: translate(-50%, -50%) rotate(167deg) translateX(300px) rotate(-167deg); }
.node.visibility { transform: translate(-50%, -50%) rotate(218.4deg) translateX(300px) rotate(-218.4deg); }

.node-bubble {
    width: 62px;
    height: 62px;
    border: 1px solid rgba(22,223,255,0.82);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 25%, rgba(22,223,255,0.18), transparent 36%),
        rgba(3, 15, 31, 0.94);
    box-shadow:
        0 0 22px rgba(22,223,255,0.36),
        inset 0 0 20px rgba(22,223,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-bubble svg {
    width: 28px;
    height: 28px;
    stroke: var(--cyan);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px rgba(22,223,255,0.65));
}

.node-title {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 0 12px rgba(22,223,255,0.45);
}

.pulse-floor {
    position: absolute;
    width: 430px;
    height: 105px;
    bottom: 280px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(22,223,255,0.18), transparent 58%),
        repeating-radial-gradient(circle, rgba(22,223,255,0.35) 0 1px, transparent 2px 22px);
    opacity: 0.75;
    animation: pulse 3.5s ease-in-out infinite;
    z-index: 2;
}

/* SHARED PAGE HERO */
.page-hero {
    padding: 80px 7vw 35px;
    text-align: center;
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.page-hero p {
    color: #aab6c7;
    max-width: 820px;
    line-height: 1.6;
    margin: 0 auto;
    text-align: center;
}

/* SERVICES */
.services {
    padding: 40px 7vw 100px;
}

.flow-map {
    position: relative;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 22px;
    align-items: stretch;
    margin-bottom: 46px;
}

.flow-map::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 4%;
    right: 4%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(22,223,255,0.55), rgba(155,92,255,0.45), transparent);
    z-index: 0;
}

.service-card {
    position: relative;
    z-index: 2;
    min-height: 150px;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(22,223,255,0.25);
    background:
        linear-gradient(180deg, rgba(5,18,35,0.84), rgba(2,8,18,0.92));
    cursor: pointer;
    transition: 0.25s ease;
}

.service-card:hover,
.service-card.active {
    transform: translateY(-7px);
    box-shadow: 0 0 28px rgba(22,223,255,0.22);
}

.step-number {
    font-size: 11px;
    color: var(--cyan);
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.service-title {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.service-text {
    font-size: 12px;
    color: #aab6c7;
    line-height: 1.45;
}

.service-detail {
    border: 1px solid rgba(22,223,255,0.22);
    background:
        radial-gradient(circle at 15% 20%, rgba(22,223,255,0.08), transparent 26%),
        linear-gradient(180deg, rgba(5,18,35,0.8), rgba(2,8,18,0.9));
    border-radius: 16px;
    padding: 34px;
}

.detail-kicker {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.service-detail h2 {
    font-size: 34px;
    margin-bottom: 18px;
}

.service-detail p {
    color: #aab6c7;
    line-height: 1.65;
    max-width: 850px;
    margin-bottom: 24px;
}

.detail-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.detail-list div {
    border: 1px solid rgba(22,223,255,0.15);
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 16px;
    font-size: 13px;
    color: #d7e7f5;
}

/* AUDIT */
.architecture-section {
    padding: 40px 7vw 95px;
}

.architecture-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 52px;
}

.architecture-header h2 {
    font-size: 42px;
    margin-bottom: 14px;
}

.architecture-header p {
    color: #aab6c7;
    font-size: 16px;
    line-height: 1.65;
}

.architecture-diagram {
    position: relative;
    width: 760px;
    height: 760px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arch-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(22,223,255,0.13);
    box-shadow: 0 0 35px rgba(22,223,255,0.05);
    pointer-events: none;
    z-index: 1;
}

.arch-ring.one { width: 690px; height: 690px; }
.arch-ring.two { width: 520px; height: 520px; border-color: rgba(47,125,255,0.14); }
.arch-ring.three { width: 350px; height: 350px; border-color: rgba(155,92,255,0.13); }

.outer-ring-energy {
    position: absolute;
    width: 690px;
    height: 690px;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    background:
        conic-gradient(
            from 0deg,
            transparent 0deg,
            transparent 286deg,
            rgba(22,223,255,0.12) 302deg,
            rgba(22,223,255,0.95) 326deg,
            rgba(47,125,255,0.78) 342deg,
            transparent 360deg
        );
    -webkit-mask: radial-gradient(circle, transparent 0 343px, #000 345px 347px, transparent 349px);
    mask: radial-gradient(circle, transparent 0 343px, #000 345px 347px, transparent 349px);
    filter:
        drop-shadow(0 0 7px rgba(22,223,255,0.62))
        drop-shadow(0 0 14px rgba(47,125,255,0.35));
    animation: outerBeamOrbit 6s linear infinite;
}

.system-beam {
    position: absolute;
    z-index: 3;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(22,223,255,0), rgba(22,223,255,0.95), rgba(47,125,255,0.9), rgba(22,223,255,0));
    box-shadow:
        0 0 12px rgba(22,223,255,0.75),
        0 0 24px rgba(47,125,255,0.45);
    opacity: 0.9;
    overflow: hidden;
}

.system-beam::after {
    content: "";
    position: absolute;
    top: 0;
    left: -35%;
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.95), transparent);
    animation: beamPulse 2.7s ease-in-out infinite;
    opacity: 0.75;
}

.system-beam.top { width: 186px; left: 287px; top: 238px; transform: rotate(90deg); }
.system-beam.right { width: 186px; left: 473px; top: 378px; }
.system-beam.bottom { width: 186px; left: 287px; top: 518px; transform: rotate(90deg); }
.system-beam.left { width: 186px; left: 101px; top: 378px; }

.system-beam.right::after { animation-delay: 0.25s; }
.system-beam.bottom::after { animation-delay: 0.5s; }
.system-beam.left::after { animation-delay: 0.75s; }

.system-path {
    position: absolute;
    z-index: 3;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(22,223,255,0.24), rgba(47,125,255,0.18), transparent);
    box-shadow: 0 0 8px rgba(22,223,255,0.24);
    pointer-events: none;
    opacity: 0.7;
}

.system-path.odin-crs { width: 330px; left: 157px; top: 219px; transform: rotate(-45deg); }
.system-path.crs-stark { width: 330px; left: 273px; top: 219px; transform: rotate(45deg); }
.system-path.stark-operon { width: 330px; left: 273px; top: 540px; transform: rotate(-45deg); }
.system-path.operon-odin { width: 330px; left: 157px; top: 540px; transform: rotate(45deg); }

.travel-node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16dfff;
    box-shadow:
        0 0 8px rgba(22,223,255,0.95),
        0 0 14px rgba(47,125,255,0.65);
    z-index: 4;
    pointer-events: none;
}

.travel-node.odin-crs { animation: moveOdinCrs 3.6s linear infinite; }
.travel-node.crs-stark { animation: moveCrsStark 3.6s linear infinite; animation-delay: 0.9s; }
.travel-node.stark-operon { animation: moveStarkOperon 3.6s linear infinite; animation-delay: 1.8s; }
.travel-node.operon-odin { animation: moveOperonOdin 3.6s linear infinite; animation-delay: 2.7s; }

.core-node {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(22,223,255,0.72);
    background:
        radial-gradient(circle at 50% 42%, rgba(22,223,255,0.24), transparent 48%),
        radial-gradient(circle at 50% 55%, rgba(155,92,255,0.16), transparent 58%),
        rgba(3, 15, 31, 0.94);
    box-shadow:
        0 0 48px rgba(22,223,255,0.35),
        0 0 90px rgba(47,125,255,0.22),
        0 0 120px rgba(155,92,255,0.14),
        inset 0 0 34px rgba(22,223,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.core-node img {
    width: 210px;
    height: 210px;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: lighten;
    filter:
        brightness(1.15)
        contrast(1.08)
        drop-shadow(0 0 20px rgba(22,223,255,0.50))
        drop-shadow(0 0 32px rgba(47,125,255,0.30));
}

.layer-node {
    position: absolute;
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 6;
}

.layer-bubble,
.system-node {
    width: 124px;
    height: 124px;
    border-radius: 50%;
    border: 1px solid rgba(22,223,255,0.62);
    background:
        radial-gradient(circle at 35% 25%, rgba(22,223,255,0.18), transparent 42%),
        radial-gradient(circle at 52% 60%, rgba(47,125,255,0.10), transparent 54%),
        rgba(3, 15, 31, 0.94);
    box-shadow:
        0 0 28px rgba(22,223,255,0.28),
        0 0 42px rgba(47,125,255,0.12),
        inset 0 0 22px rgba(22,223,255,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.layer-bubble img,
.system-node img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: lighten;
    filter:
        brightness(1.2)
        contrast(1.1)
        drop-shadow(0 0 12px rgba(22,223,255,0.35))
        drop-shadow(0 0 18px rgba(47,125,255,0.18));
}

.layer-bubble img.clean-logo,
.system-node img.clean-logo {
    background: transparent;
    mix-blend-mode: lighten;
    filter:
        brightness(1.22)
        contrast(1.14)
        drop-shadow(0 0 12px rgba(22,223,255,0.36))
        drop-shadow(0 0 18px rgba(47,125,255,0.18));
}

.layer-label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(215,231,245,0.82);
    text-align: center;
    line-height: 1.35;
}

.layer-label span {
    color: var(--cyan);
}

.layer-node.crs { top: 24px; left: 50%; transform: translateX(-50%); }
.layer-node.stark { right: 24px; top: 50%; transform: translateY(-50%); }
.layer-node.operon { bottom: 24px; left: 50%; transform: translateX(-50%); }
.layer-node.odin { left: 24px; top: 50%; transform: translateY(-50%); }

.systems {
    padding: 40px 7vw 100px;
}

.systems-intro {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    text-align: center;
}

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

.system-card {
    border: 1px solid rgba(22,223,255,0.2);
    border-radius: 16px;
    padding: 30px;
    background:
        radial-gradient(circle at 20% 20%, rgba(22,223,255,0.08), transparent 30%),
        linear-gradient(180deg, rgba(5,18,35,0.85), rgba(2,8,18,0.95));
    transition: 0.3s ease;
    min-height: 220px;
}

.system-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(22,223,255,0.25);
}

.system-number {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.system-title {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 14px;
}

.system-text {
    font-size: 14px;
    color: #aab6c7;
    line-height: 1.6;
}

.placeholder {
    padding: 80px 7vw 120px;
}

.placeholder-card {
    border: 1px solid rgba(22,223,255,0.22);
    background:
        radial-gradient(circle at 15% 20%, rgba(22,223,255,0.08), transparent 26%),
        linear-gradient(180deg, rgba(5,18,35,0.8), rgba(2,8,18,0.9));
    border-radius: 16px;
    padding: 34px;
    max-width: 860px;
}

.placeholder-card h2 {
    font-size: 34px;
    margin-bottom: 18px;
}

.placeholder-card p {
    color: #aab6c7;
    line-height: 1.65;
}







/* CONTACT CINEMATIC SECTION */
#contact.active-section {
    height: calc(100vh - 96px);
    overflow: hidden;
}

.contact-screen {
    position: relative;
    height: calc(100vh - 96px);
    width: 100%;
    background-color: #020711;
    padding: 0 6vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(0, 8, 18, 0.70) 0%, rgba(0, 8, 18, 0.46) 38%, rgba(0, 8, 18, 0.16) 68%, rgba(0, 8, 18, 0.18) 100%),
        linear-gradient(rgba(0, 8, 18, 0.18), rgba(0, 8, 18, 0.28)),
        url("contact-visual.png");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.contact-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(22,223,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22,223,255,0.025) 1px, transparent 1px);
    background-size: 78px 78px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}

.contact-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 50%, rgba(22,223,255,0.10), transparent 32%),
        radial-gradient(circle at 48% 72%, rgba(155,92,255,0.10), transparent 38%),
        radial-gradient(circle at 50% 50%, transparent 58%, rgba(2,7,17,0.18) 100%);
    pointer-events: none;
    z-index: 2;
}

.contact-glass-panel {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 150px);
    border-radius: 22px;
    border: 1px solid rgba(22,223,255,0.34);
    background:
        radial-gradient(circle at 14% 16%, rgba(22,223,255,0.10), transparent 32%),
        radial-gradient(circle at 88% 82%, rgba(155,92,255,0.10), transparent 38%),
        linear-gradient(180deg, rgba(5,18,35,0.72), rgba(2,8,18,0.86));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 0 42px rgba(22,223,255,0.18),
        0 0 82px rgba(155,92,255,0.12),
        inset 0 0 34px rgba(22,223,255,0.06);
    padding: 38px;
    overflow: hidden;
}

.contact-glass-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.06), transparent 34%, rgba(22,223,255,0.035));
    pointer-events: none;
}

.contact-panel-content {
    position: relative;
    z-index: 2;
    max-height: calc(100vh - 226px);
    overflow: hidden;
}

.contact-panel-content.form-open {
    overflow-y: auto;
    padding-right: 6px;
}

.contact-panel-content.form-open::-webkit-scrollbar {
    width: 5px;
}

.contact-panel-content.form-open::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.04);
    border-radius: 999px;
}

.contact-panel-content.form-open::-webkit-scrollbar-thumb {
    background: rgba(22,223,255,0.36);
    border-radius: 999px;
}

.contact-tag {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.contact-glass-panel h1 {
    font-size: 56px;
    line-height: 0.98;
    margin-bottom: 22px;
    letter-spacing: -1.3px;
}

.contact-glass-panel p {
    color: #c2cfde;
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 26px;
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.contact-actions.form-open {
    margin-bottom: 22px;
}

.contact-actions .cta,
.contact-actions .secondary-cta {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.contact-actions .cta:hover,
.contact-actions .secondary-cta:hover {
    transform: translateY(-2px);
}

.secondary-cta {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 7, 17, 0.55);
    padding: 15px 24px;
    border: 1px solid rgba(22,223,255,0.28);
    color: rgba(255,255,255,0.86);
    font-weight: 900;
    border-radius: 6px;
    cursor: pointer;
    text-transform: none;
}

.secondary-cta:hover {
    color: #ffffff;
    border-color: rgba(22,223,255,0.58);
    box-shadow:
        0 0 22px rgba(22,223,255,0.18),
        0 0 32px rgba(155,92,255,0.12);
}

.contact-form-panel {
    display: none;
    border-top: 1px solid rgba(22,223,255,0.16);
    padding-top: 20px;
}

.contact-form-panel.open {
    display: block;
}

.form-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 6px;
}

.form-subtitle {
    color: #aab6c7;
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 16px;
}

.system-review-form,
.call-request-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.review-step {
    border: 1px solid rgba(22,223,255,0.16);
    border-radius: 13px;
    background: rgba(2, 7, 17, 0.36);
    padding: 14px;
}

.review-step-title {
    color: var(--cyan);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

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

.form-field-compact {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-field-compact label {
    color: rgba(255,255,255,0.82);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.form-field-compact input,
.form-field-compact textarea {
    width: 100%;
    border: 1px solid rgba(22,223,255,0.22);
    border-radius: 9px;
    background: rgba(2, 7, 17, 0.76);
    color: #ffffff;
    font-size: 13px;
    padding: 12px 13px;
    outline: none;
}

.form-field-compact textarea {
    min-height: 72px;
    resize: vertical;
}

.form-field-compact input::placeholder,
.form-field-compact textarea::placeholder {
    color: rgba(188,202,219,0.58);
}

.form-field-compact input:focus,
.form-field-compact textarea:focus {
    border-color: rgba(22,223,255,0.7);
    box-shadow: 0 0 16px rgba(22,223,255,0.12);
}

.option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.option-pill {
    position: relative;
}

.option-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-pill span {
    display: flex;
    align-items: center;
    min-height: 38px;
    border: 1px solid rgba(22,223,255,0.18);
    border-radius: 9px;
    background: rgba(2, 7, 17, 0.54);
    color: rgba(255,255,255,0.78);
    font-size: 12px;
    line-height: 1.25;
    padding: 10px 11px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.option-pill input:checked + span {
    color: #ffffff;
    border-color: rgba(22,223,255,0.68);
    background: rgba(22,223,255,0.10);
    box-shadow: 0 0 16px rgba(22,223,255,0.12);
}

.form-consent {
    display: grid;
    gap: 10px;
    margin-top: 2px;
}

.form-consent-note {
    color: #aab6c7;
    font-size: 11px;
    line-height: 1.45;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: rgba(255,255,255,0.76);
    font-size: 12px;
    line-height: 1.35;
}

.form-checkbox input {
    margin-top: 2px;
    accent-color: #16dfff;
}

.form-submit-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.form-submit-row .cta {
    min-height: 46px;
    padding: 13px 20px;
}

@media(max-width:1000px){
    #contact.active-section {
        height: auto;
        overflow: visible;
    }

    .contact-screen {
        height: auto;
        min-height: calc(100vh - 96px);
        padding: 70px 7vw 90px;
        overflow: visible;
        background-position: center;
    }

    .contact-glass-panel {
        max-width: none;
        padding: 32px;
        max-height: none;
    }

    .contact-panel-content,
    .contact-panel-content.form-open {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .contact-glass-panel h1 {
        font-size: 42px;
    }

    .contact-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .form-row,
    .option-grid {
        grid-template-columns: 1fr;
    }
}

/* ABOUT SECTION */
.about-section {
    padding: 95px 7vw 110px;
}

.about-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.about-copy {
    max-width: 650px;
}

.about-copy h1 {
    font-size: 56px;
    line-height: 1.02;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.about-copy p {
    color: #aab6c7;
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 18px;
    max-width: 620px;
}

.about-copy .about-punch {
    margin-top: 30px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.4px;
    color: var(--white);
}

.live-flow-panel {
    position: relative;
    height: 460px;
    border-radius: 24px;
    border: 1px solid rgba(22,223,255,0.3);
    background:
        radial-gradient(circle at 72% 28%, rgba(47,125,255,0.18), transparent 34%),
        radial-gradient(circle at 28% 74%, rgba(155,92,255,0.12), transparent 32%),
        linear-gradient(180deg, rgba(5,18,35,0.9), rgba(2,8,18,0.96));
    box-shadow:
        0 0 44px rgba(22,223,255,0.14),
        inset 0 0 36px rgba(22,223,255,0.06);
    overflow: hidden;
}

.live-flow-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(22,223,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22,223,255,0.045) 1px, transparent 1px);
    background-size: 58px 58px;
    opacity: 0.75;
    pointer-events: none;
}

.live-flow-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent, rgba(22,223,255,0.045), transparent),
        radial-gradient(circle at 50% 50%, transparent 38%, rgba(2,7,17,0.18) 100%);
    pointer-events: none;
}

.live-line {
    position: absolute;
    left: 8%;
    right: 8%;
    height: 1px;
    background: rgba(22,223,255,0.14);
    box-shadow: 0 0 10px rgba(22,223,255,0.08);
    overflow: hidden;
}

.live-line::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -18%;
    width: 18%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(22,223,255,0.96), rgba(47,125,255,0.74), transparent);
    box-shadow:
        0 0 8px rgba(22,223,255,0.74),
        0 0 16px rgba(47,125,255,0.36);
    animation: liveFlow 4s linear infinite;
}

.live-line::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -8px;
    width: 8px;
    height: 5px;
    border-radius: 999px;
    background: rgba(22,223,255,0.95);
    box-shadow:
        0 0 10px rgba(22,223,255,0.82),
        0 0 22px rgba(47,125,255,0.46);
    opacity: 0;
    animation: liveSurge 8s ease-in-out infinite;
}

.live-line.one { top: 13%; }
.live-line.two { top: 24%; }
.live-line.three { top: 35%; }
.live-line.four { top: 46%; }
.live-line.five { top: 57%; }
.live-line.six { top: 68%; }
.live-line.seven { top: 79%; }
.live-line.eight { top: 90%; }

.live-line.one::before { animation-duration: 3.2s; animation-delay: -0.4s; }
.live-line.two::before { animation-duration: 4.4s; animation-delay: -1.1s; }
.live-line.three::before { animation-duration: 3.7s; animation-delay: -2.2s; }
.live-line.four::before { animation-duration: 5.1s; animation-delay: -0.8s; }
.live-line.five::before { animation-duration: 3.5s; animation-delay: -1.7s; }
.live-line.six::before { animation-duration: 4.8s; animation-delay: -2.8s; }
.live-line.seven::before { animation-duration: 3.9s; animation-delay: -0.2s; }
.live-line.eight::before { animation-duration: 5.5s; animation-delay: -3.4s; }

.live-line.two::after { animation-delay: -1.5s; }
.live-line.four::after { animation-delay: -3.2s; }
.live-line.six::after { animation-delay: -4.8s; }
.live-line.eight::after { animation-delay: -6.1s; }

.live-flare {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22,223,255,0.16), transparent 64%);
    opacity: 0;
    pointer-events: none;
    animation: panelFlare 7.2s ease-in-out infinite;
}

.live-flare.a {
    top: 18%;
    left: 58%;
}

.live-flare.b {
    bottom: 18%;
    left: 22%;
    animation-delay: -3.6s;
}

@keyframes liveFlow {
    0% { left: -20%; opacity: 0; }
    10% { opacity: 1; }
    72% { opacity: 1; }
    100% { left: 105%; opacity: 0; }
}

@keyframes liveSurge {
    0%, 68%, 100% { left: -8px; opacity: 0; transform: scale(0.8); }
    72% { opacity: 0.95; transform: scale(1); }
    84% { left: 82%; opacity: 0.55; transform: scale(1.18); }
    92% { left: 105%; opacity: 0; transform: scale(0.9); }
}

@keyframes panelFlare {
    0%, 58%, 100% { opacity: 0; transform: scale(0.7); }
    66% { opacity: 0.82; transform: scale(1); }
    78% { opacity: 0.22; transform: scale(1.35); }
}


/* UPDATED ABOUT RIGHT-SIDE STATIC IMAGE PANEL */
.live-flow-panel.system-sync-panel,
.container-brain-panel {
    position: relative;
    height: 460px;
    border-radius: 24px;
    border: 1px solid rgba(22,223,255,0.45);
    background: #020711;
    box-shadow:
        0 0 40px rgba(22,223,255,0.18),
        0 0 70px rgba(155,92,255,0.12),
        inset 0 0 30px rgba(22,223,255,0.08);
    overflow: hidden;
    isolation: isolate;
    padding: 0;
    margin: 0;
}

.container-brain-panel img,
.about-brain-image {
    width: 100%;
    height: 125%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(1.06);
    padding: 0;
    margin: 0;
    transform: translateY(-7%);
}

.live-flow-panel.system-sync-panel::before,
.container-brain-panel::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background:
        conic-gradient(
            from 0deg,
            transparent 0deg,
            transparent 250deg,
            rgba(22,223,255,0.15) 270deg,
            rgba(22,223,255,0.8) 295deg,
            rgba(47,125,255,0.6) 315deg,
            rgba(155,92,255,0.3) 335deg,
            transparent 360deg
        );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    padding: 2px;
    opacity: 0.7;
    pointer-events: none;
    z-index: 2;
}

.live-flow-panel.system-sync-panel::after,
.container-brain-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(0,255,255,0.08), transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(0,0,0,0) 48%, rgba(2,7,17,0.30) 100%);
    pointer-events: none;
    z-index: 1;
}

/* ANIMATIONS */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

@keyframes pulse {
    0%,100% {
        transform: scale(0.94);
        opacity: 0.55;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes beamTravel {
    from {
        stroke-dashoffset: 560;
        opacity: 0.25;
    }
    35% {
        opacity: 1;
    }
    to {
        stroke-dashoffset: -560;
        opacity: 0.25;
    }
}


@keyframes beamPulse {
    0% { left: -35%; opacity: 0; }
    18% { opacity: 0.8; }
    55% { opacity: 0.9; }
    100% { left: 100%; opacity: 0; }
}

@keyframes outerBeamOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes moveOdinCrs {
    0% { left: 122px; top: 380px; opacity: 0; }
    12% { opacity: 1; }
    50% { left: 300px; top: 300px; opacity: 0.92; }
    88% { opacity: 1; }
    100% { left: 380px; top: 122px; opacity: 0; }
}

@keyframes moveCrsStark {
    0% { left: 380px; top: 122px; opacity: 0; }
    12% { opacity: 1; }
    50% { left: 460px; top: 300px; opacity: 0.92; }
    88% { opacity: 1; }
    100% { left: 638px; top: 380px; opacity: 0; }
}

@keyframes moveStarkOperon {
    0% { left: 638px; top: 380px; opacity: 0; }
    12% { opacity: 1; }
    50% { left: 460px; top: 460px; opacity: 0.92; }
    88% { opacity: 1; }
    100% { left: 380px; top: 638px; opacity: 0; }
}

@keyframes moveOperonOdin {
    0% { left: 380px; top: 638px; opacity: 0; }
    12% { opacity: 1; }
    50% { left: 300px; top: 460px; opacity: 0.92; }
    88% { opacity: 1; }
    100% { left: 122px; top: 380px; opacity: 0; }
}








/* ABOUT PREMIUM POSITIONING PAGE */
#about.active-section {
    min-height: calc(100vh - 96px);
    height: calc(100vh - 96px);
    overflow: hidden;
}

#about.active-section .about-section {
    height: calc(100vh - 96px);
    min-height: 0;
    padding: 42px 7vw 36px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

#about.active-section .about-layout {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 92px;
    align-items: center;
    width: 100%;
    height: 100%;
}

.about-eyebrow {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

#about.active-section .about-copy {
    max-width: 760px;
}

#about.active-section .about-copy h1 {
    font-size: 56px;
    line-height: 0.98;
    margin-bottom: 24px;
    letter-spacing: -1.4px;
}

.about-intro {
    max-width: 690px;
    margin-bottom: 28px;
}

#about.active-section .about-copy .about-intro p {
    color: #aab6c7;
    font-size: 16px;
    line-height: 1.58;
    margin-bottom: 14px;
}

.about-statement-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 710px;
}

.about-statement-card {
    border: 1px solid rgba(22,223,255,0.22);
    border-radius: 14px;
    background:
        radial-gradient(circle at 12% 15%, rgba(22,223,255,0.08), transparent 36%),
        linear-gradient(180deg, rgba(5,18,35,0.82), rgba(2,8,18,0.92));
    padding: 18px 20px;
    box-shadow:
        0 0 26px rgba(22,223,255,0.06),
        inset 0 0 24px rgba(22,223,255,0.035);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.about-statement-card:hover {
    transform: translateY(-3px);
    border-color: rgba(22,223,255,0.42);
    box-shadow:
        0 0 30px rgba(22,223,255,0.12),
        inset 0 0 24px rgba(22,223,255,0.05);
}

.about-statement-card h3 {
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.about-statement-card p {
    color: #aab6c7;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

#about.active-section .live-flow-panel {
    width: 100%;
    max-width: 650px;
    height: 470px;
    margin-left: auto;
    box-shadow:
        0 0 48px rgba(22,223,255,0.20),
        0 0 86px rgba(155,92,255,0.13),
        inset 0 0 34px rgba(22,223,255,0.09);
}

@media(max-width:1000px){
    #about.active-section {
        position: relative;
        height: auto;
        min-height: auto;
        overflow: visible;
    }

    #about.active-section .about-section {
        height: auto;
        padding: 70px 7vw 85px;
        overflow: visible;
    }

    #about.active-section .about-layout {
        grid-template-columns: 1fr;
        gap: 44px;
        height: auto;
    }

    #about.active-section .about-copy h1 {
        font-size: 42px;
    }

    #about.active-section .live-flow-panel {
        max-width: none;
        height: 380px;
    }
}

/* RESPONSIVE */
@media(max-width:1200px){
    .flow-map {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-map::before {
        display: none;
    }

    .detail-list {
        grid-template-columns: 1fr;
    }
}

@media(max-width:1000px){
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    h1,
    .page-hero h1 {
        font-size: 42px;
    }

    .hero-icon {
        width: 300px;
    }

    .nav {
        gap: 18px;
        font-size: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-visual {
        height: 430px;
    }

    .system-core,
    .system-nodes,
    .energy-lines {
        width: 340px;
        height: 340px;
    }

    .system-nodes,
    .energy-lines,
    .ring,
    .pulse-floor {
        display: none;
    }

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

    .architecture-diagram {
        width: 340px;
        height: 720px;
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 24px;
        padding: 10px 0;
    }

    .arch-ring,
    .outer-ring-energy,
    .system-beam,
    .system-path,
    .travel-node {
        display: none;
    }

    .core-node,
    .layer-node,
    .layer-node.crs,
    .layer-node.stark,
    .layer-node.operon,
    .layer-node.odin {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        transform: none;
    }

    .core-node {
        width: 170px;
        height: 170px;
        order: 1;
    }

    .core-node img {
        width: 135px;
        height: 135px;
    }

    .layer-node {
        width: 180px;
    }

    .layer-bubble,
    .system-node {
        width: 100px;
        height: 100px;
    }

    .layer-bubble img,
    .system-node img {
        width: 70%;
        height: 70%;
    }

    .layer-node.crs { order: 2; }
    .layer-node.stark { order: 3; }
    .layer-node.operon { order: 4; }
    .layer-node.odin { order: 5; }

    .about-section {
        padding: 70px 7vw 85px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .about-copy h1 {
        font-size: 42px;
    }

    .about-copy p {
        font-size: 16px;
    }

    .live-flow-panel {
        height: 380px;
    }

}




/* MOBILE REBUILD PASS */
@media(max-width:768px){
    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .header {
        height: 78px;
        min-height: 78px;
        padding: 0 5vw;
        gap: 12px;
    }

    .brand {
        flex: 0 0 auto;
    }

    .brand img {
        height: 62px;
    }

    .header .nav {
        display: none;
    }

    .header > .cta {
        display: inline-flex;
        min-height: 40px;
        padding: 12px 14px;
        font-size: 11px;
        border-radius: 6px;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(22,223,255,0.28);
        border-radius: 8px;
        background: rgba(2,7,17,0.68);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        box-shadow: 0 0 18px rgba(22,223,255,0.10);
        flex: 0 0 auto;
        position: relative;
        z-index: 1001;
    }

    .mobile-menu-toggle span {
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: #ffffff;
        box-shadow: 0 0 8px rgba(22,223,255,0.35);
        display: block;
    }

    .mobile-nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 2000;
        background:
            radial-gradient(circle at 20% 20%, rgba(22,223,255,0.12), transparent 34%),
            radial-gradient(circle at 78% 70%, rgba(155,92,255,0.14), transparent 38%),
            rgba(2,7,17,0.94);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .mobile-nav-overlay.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-nav-panel {
        min-height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 26px;
        border: 1px solid rgba(22,223,255,0.16);
    }

    .mobile-nav-panel a {
        color: #ffffff;
        text-decoration: none;
        font-size: 24px;
        font-weight: 900;
        letter-spacing: 2px;
        opacity: 0.86;
        transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
    }

    .mobile-nav-panel a:hover,
    .mobile-nav-panel a.active {
        color: var(--cyan);
        opacity: 1;
        transform: translateY(-2px);
    }

    .mobile-nav-close {
        position: absolute;
        top: 22px;
        right: 24px;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(22,223,255,0.28);
        border-radius: 10px;
        background: rgba(2,7,17,0.70);
        color: #ffffff;
        font-size: 30px;
        line-height: 1;
        cursor: pointer;
    }

    .hero {
        padding: 46px 7vw 54px;
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .kicker {
        font-size: 10px;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .hero h1,
    h1,
    .page-hero h1 {
        font-size: 38px;
        line-height: 1.03;
        margin-bottom: 18px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.55;
        max-width: 360px;
        margin: 0 auto 24px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        height: 220px;
        margin-top: 0;
    }

    .system-core {
        width: 210px;
        height: 210px;
    }

    .hero-icon {
        width: 200px;
        display: block;
        position: absolute;
        z-index: 3;
        animation: float 5s ease-in-out infinite;
        filter:
            drop-shadow(0 0 24px rgba(22,223,255,0.55))
            drop-shadow(0 0 46px rgba(155,92,255,0.30));
    }

    .ring.one,
    .ring.two,
    .ring.three,
    .system-nodes,
    .energy-lines,
    .pulse-floor {
        display: none;
    }

    .page-hero {
        padding: 42px 7vw 26px;
    }

    .page-hero p {
        font-size: 15px;
        line-height: 1.55;
    }

    .services {
        padding: 26px 7vw 64px;
    }

    .flow-map {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 24px;
    }

    .service-card {
        min-height: auto;
        padding: 20px;
    }

    .service-detail {
        padding: 24px;
    }

    .service-detail h2 {
        font-size: 28px;
    }

    .detail-list {
        grid-template-columns: 1fr;
    }

    .architecture-section {
        padding: 26px 7vw 50px;
    }

    .architecture-header {
        margin: 0 auto 26px;
    }

    .architecture-header h2 {
        font-size: 34px;
    }

    .architecture-header p {
        font-size: 15px;
    }

    .architecture-diagram {
        width: 100%;
        max-width: 360px;
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0;
        margin: 0 auto;
    }

    .arch-ring,
    .outer-ring-energy,
    .system-beam,
    .system-path,
    .travel-node {
        display: none;
    }

    .core-node,
    .layer-node,
    .layer-node.crs,
    .layer-node.stark,
    .layer-node.operon,
    .layer-node.odin {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        transform: none;
    }

    .core-node {
        width: 170px;
        height: 170px;
        margin: 0 auto 36px;
        order: 1;
    }

    .core-node::after {
        content: "AZEXIA CORE";
        position: absolute;
        bottom: -28px;
        left: 50%;
        transform: translateX(-50%);
        width: 180px;
        color: var(--cyan);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1px;
        text-align: center;
    }

    .core-node img {
        width: 132px;
        height: 132px;
    }

    .layer-node {
        width: 100%;
        max-width: 320px;
        min-height: 86px;
        margin: 0 auto;
        padding: 14px 18px;
        border: 1px solid rgba(22,223,255,0.20);
        border-radius: 16px;
        background:
            radial-gradient(circle at 15% 20%, rgba(22,223,255,0.07), transparent 32%),
            linear-gradient(180deg, rgba(5,18,35,0.78), rgba(2,8,18,0.92));
        display: grid;
        grid-template-columns: 74px 1fr;
        align-items: center;
        gap: 14px;
    }

    .layer-node.crs {
        order: 2;
    }

    .layer-node.stark {
        order: 3;
    }

    .layer-node.operon {
        order: 4;
    }

    .layer-node.odin {
        order: 5;
    }

    .layer-bubble,
    .system-node {
        width: 68px;
        height: 68px;
    }

    .layer-bubble img,
    .system-node img {
        width: 72%;
        height: 72%;
    }

    .layer-label {
        font-size: 12px;
        text-align: left;
        line-height: 1.35;
        max-width: none;
    }

    .systems {
        padding: 30px 7vw 70px;
    }

    .system-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .system-card {
        min-height: auto;
        padding: 24px;
    }

    #about.active-section {
        height: auto;
        min-height: auto;
        overflow: visible;
    }

    #about.active-section .about-section {
        height: auto;
        padding: 48px 7vw 70px;
        overflow: visible;
    }

    #about.active-section .about-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        height: auto;
    }

    #about.active-section .about-copy h1 {
        font-size: 38px;
        line-height: 1.04;
    }

    #about.active-section .about-copy .about-intro p {
        font-size: 15px;
    }

    .about-statement-card {
        padding: 17px 18px;
    }

    #about.active-section .live-flow-panel,
    .live-flow-panel.system-sync-panel,
    .container-brain-panel {
        height: 280px;
        max-width: none;
        width: 100%;
        padding: 0;
        overflow: hidden;
        margin: 0;
    }

    .container-brain-panel img,
    .about-brain-image {
        width: 100%;
        height: 125%;
        object-fit: cover;
        object-position: center;
        display: block;
        transform: translateY(-7%);
    }

    #contact.active-section {
        height: auto;
        overflow: visible;
    }

    .contact-screen {
        height: auto;
        min-height: calc(100vh - 78px);
        padding: 42px 7vw 58px;
        align-items: center;
        background-position: center;
        overflow: visible;
    }

    .contact-glass-panel {
        max-width: none;
        width: 100%;
        padding: 28px;
        max-height: none;
    }

    .contact-panel-content,
    .contact-panel-content.form-open {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .contact-glass-panel h1 {
        font-size: 38px;
        line-height: 1.04;
    }

    .contact-glass-panel p {
        font-size: 15px;
    }

    .contact-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .contact-actions .cta,
    .secondary-cta {
        width: 100%;
    }

    .form-row,
    .option-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:420px){
    .header {
        padding: 0 4vw;
        gap: 8px;
    }

    .brand img {
        height: 56px;
    }

    .header > .cta {
        padding: 10px 11px;
        font-size: 10px;
    }

    .mobile-menu-toggle {
        width: 38px;
        height: 38px;
    }

    .hero h1,
    h1,
    .page-hero h1,
    #about.active-section .about-copy h1,
    .contact-glass-panel h1 {
        font-size: 34px;
    }

    .hero-visual {
        height: 205px;
    }

    .system-core {
        width: 200px;
        height: 200px;
    }

    .hero-icon {
        width: 188px;
    }

    .contact-glass-panel {
        padding: 24px;
    }
}


/* Split-page support */
.brand { text-decoration: none; display: inline-flex; align-items: center; }
a.cta { text-decoration: none; }
body.page-home .nav a[href="index.html"],
body.page-services .nav a[href="services.html"],
body.page-audit .nav a[href="audit.html"],
body.page-about .nav a[href="about.html"],
body.page-contact .nav a[href="contact.html"] { color: var(--cyan); opacity: 1; }

/* V3 DESKTOP HOME SCREEN LOCK
   Keeps the homepage fitted to one clean viewport on desktop, removing the tiny vertical scroll caused by the hero padding/visual height. Other pages remain scrollable. */
@media (min-width: 769px) {
    body.page-home {
        height: 100vh;
        overflow: hidden;
    }

    body.page-home .page {
        height: 100vh;
        overflow: hidden;
    }

    body.page-home main {
        height: calc(100vh - 96px);
        overflow: hidden;
    }

    body.page-home #home,
    body.page-home #home.active-section {
        height: 100%;
        overflow: hidden;
    }

    body.page-home .hero {
        height: 100%;
        padding-top: 0;
        padding-bottom: 0;
        overflow: hidden;
    }

    body.page-home .hero-visual {
        height: 100%;
        max-height: calc(100vh - 96px);
        overflow: visible;
    }
}


/* V9 SERVICES PAGE DESKTOP FIT
   Keeps the services page as a single clean desktop screen, removes numbered card labels, and tightens the detail panel so the lower card sits fully in view. Mobile remains scrollable. */
.step-number {
    display: none;
}

@media (min-width: 769px) {
    body.page-services {
        height: 100vh;
        overflow: hidden;
    }

    body.page-services .page {
        height: 100vh;
        overflow: hidden;
    }

    body.page-services main {
        height: calc(100vh - 96px);
        overflow: hidden;
    }

    body.page-services #services,
    body.page-services #services.active-section {
        height: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    body.page-services .page-hero {
        padding: clamp(36px, 5vh, 56px) 7vw clamp(22px, 3vh, 32px);
        flex: 0 0 auto;
    }

    body.page-services .page-hero h1 {
        font-size: clamp(42px, 3.4vw, 56px);
        margin-bottom: 12px;
    }

    body.page-services .page-hero p {
        max-width: 820px;
        line-height: 1.45;
    }

    body.page-services .services {
        padding: clamp(18px, 2.2vh, 28px) 7vw clamp(18px, 2.4vh, 30px);
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    body.page-services .flow-map {
        gap: 20px;
        margin-bottom: clamp(22px, 3vh, 34px);
        flex: 0 0 auto;
    }

    body.page-services .service-card {
        min-height: clamp(112px, 13vh, 132px);
        padding: 24px 24px 22px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    body.page-services .service-card:hover,
    body.page-services .service-card.active {
        transform: translateY(-4px);
    }

    body.page-services .service-title {
        margin-bottom: 9px;
    }

    body.page-services .service-detail {
        flex: 1 1 auto;
        min-height: 0;
        padding: clamp(24px, 3vh, 32px);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    body.page-services .detail-kicker {
        margin-bottom: 10px;
    }

    body.page-services .service-detail h2 {
        font-size: clamp(28px, 2.2vw, 34px);
        margin-bottom: 14px;
    }

    body.page-services .service-detail p {
        line-height: 1.5;
        margin-bottom: clamp(18px, 2.2vh, 24px);
    }

    body.page-services .detail-list {
        gap: 12px;
    }

    body.page-services .detail-list div {
        padding: 14px 16px;
    }
}

/* V10 SERVICES POLISH
   Keeps the existing services layout, removes the oversized feel from the detail panel, gives each section a clearer action route, and preserves the no-scroll desktop setup. */
@media (min-width: 769px) {
    body.page-services .page-hero {
        padding: clamp(32px, 4.6vh, 50px) 7vw clamp(18px, 2.4vh, 26px);
    }

    body.page-services .page-hero h1 {
        font-size: clamp(40px, 3.2vw, 54px);
        letter-spacing: -1px;
    }

    body.page-services .page-hero p {
        max-width: 760px;
        font-size: 15px;
    }

    body.page-services .services {
        padding: clamp(16px, 2vh, 24px) 7vw clamp(16px, 2vh, 24px);
    }

    body.page-services .flow-map {
        gap: 18px;
        margin-bottom: clamp(18px, 2.4vh, 28px);
    }

    body.page-services .service-card {
        min-height: clamp(104px, 12vh, 122px);
        padding: 22px 24px;
        border-radius: 13px;
    }

    body.page-services .service-title {
        font-size: 13px;
        margin-bottom: 8px;
    }

    body.page-services .service-text {
        font-size: 12px;
        line-height: 1.38;
    }

    body.page-services .service-detail {
        justify-content: flex-start;
        padding: clamp(26px, 3vh, 34px);
        max-height: 100%;
    }

    body.page-services .detail-kicker {
        margin-bottom: 10px;
    }

    body.page-services .service-detail h2 {
        max-width: 1160px;
        font-size: clamp(28px, 2.05vw, 33px);
        line-height: 1.12;
        margin-bottom: 14px;
    }

    body.page-services .service-detail p {
        max-width: 900px;
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: clamp(16px, 2vh, 22px);
    }

    body.page-services .detail-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 11px;
    }

    body.page-services .detail-list div {
        padding: 12px 16px;
        min-height: 42px;
        display: flex;
        align-items: center;
        font-size: 12px;
        font-weight: 800;
    }

    body.page-services .detail-action {
        margin-top: clamp(16px, 2vh, 24px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        border: 1px solid rgba(22,223,255,0.16);
        background: linear-gradient(90deg, rgba(22,223,255,0.07), rgba(155,92,255,0.06));
        border-radius: 12px;
        padding: 13px 16px;
    }

    body.page-services .detail-action span {
        color: #c6d4e4;
        font-size: 13px;
        line-height: 1.35;
    }

    body.page-services .detail-action a {
        flex: 0 0 auto;
        color: #ffffff;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .3px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 9px;
        background: linear-gradient(135deg, var(--cyan), var(--purple));
        box-shadow: 0 0 18px rgba(22,223,255,0.18);
    }
}

@media (max-width: 768px) {
    .detail-action {
        margin-top: 18px;
        display: grid;
        gap: 12px;
        border: 1px solid rgba(22,223,255,0.16);
        background: rgba(5,18,35,0.65);
        border-radius: 12px;
        padding: 15px;
    }

    .detail-action span {
        color: #c6d4e4;
        font-size: 13px;
        line-height: 1.45;
    }

    .detail-action a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        color: #ffffff;
        font-size: 12px;
        font-weight: 900;
        text-decoration: none;
        padding: 11px 14px;
        border-radius: 9px;
        background: linear-gradient(135deg, var(--cyan), var(--purple));
    }
}

/* V11 SERVICES POLISH
   Tightens the desktop services detail card so it sits cleaner on-screen, while adding a subtle lower glow so the lifted layout does not feel lost against the dark background. */
@media (min-width: 769px) {
    body.page-services .services {
        position: relative;
        padding-top: clamp(14px, 1.8vh, 22px);
        padding-bottom: clamp(18px, 2.2vh, 28px);
    }

    body.page-services .services::after {
        content: "";
        position: absolute;
        left: 16%;
        right: 16%;
        bottom: 0;
        height: 120px;
        pointer-events: none;
        background:
            radial-gradient(ellipse at center, rgba(22,223,255,0.12), rgba(155,92,255,0.08) 38%, transparent 72%);
        filter: blur(18px);
        opacity: 0.72;
        z-index: 0;
    }

    body.page-services .flow-map {
        margin-bottom: clamp(14px, 1.8vh, 22px);
        position: relative;
        z-index: 2;
    }

    body.page-services .service-detail {
        position: relative;
        z-index: 2;
        flex: 0 0 clamp(300px, 37vh, 350px);
        min-height: clamp(300px, 37vh, 350px);
        padding: clamp(24px, 2.8vh, 32px);
        justify-content: center;
        box-shadow:
            0 0 0 1px rgba(22,223,255,0.02) inset,
            0 28px 70px rgba(0,0,0,0.22),
            0 0 42px rgba(22,223,255,0.055);
        overflow: visible;
    }

    body.page-services .service-detail::after {
        content: "";
        position: absolute;
        left: 7%;
        right: 7%;
        bottom: -34px;
        height: 58px;
        pointer-events: none;
        background:
            radial-gradient(ellipse at center, rgba(22,223,255,0.18), rgba(155,92,255,0.10) 42%, transparent 76%);
        filter: blur(20px);
        opacity: 0.62;
        z-index: -1;
    }

    body.page-services .service-detail h2 {
        margin-bottom: 12px;
    }

    body.page-services .service-detail p {
        margin-bottom: clamp(14px, 1.7vh, 20px);
    }

    body.page-services .detail-list {
        gap: 10px;
    }

    body.page-services .detail-list div {
        min-height: 38px;
        padding: 10px 15px;
    }

    body.page-services .detail-action {
        margin-top: clamp(12px, 1.5vh, 18px);
        padding: 11px 14px;
    }
}

/* V12 AUDIT PAGE SECTION CLEANUP
   Rebuilds the audit page into proper scroll sections, removes numbered card styling from audit cards, and avoids half-seen information by giving each block its own clean screen area. */
body.page-audit .system-number {
    display: none;
}

@media (min-width: 769px) {
    body.page-audit main {
        overflow: visible;
    }

    body.page-audit .audit-screen {
        min-height: calc(100vh - 96px);
        padding: clamp(42px, 5vh, 62px) 7vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    body.page-audit .audit-intro-screen {
        padding-top: clamp(44px, 5vh, 64px);
    }

    body.page-audit .audit-next-step-screen {
        border-top: 1px solid rgba(22,223,255,0.12);
        background:
            radial-gradient(circle at 50% 10%, rgba(22,223,255,0.07), transparent 30%),
            radial-gradient(circle at 50% 58%, rgba(155,92,255,0.11), transparent 34%);
    }

    body.page-audit .audit-page-hero {
        padding: 0 0 clamp(34px, 4vh, 44px);
    }

    body.page-audit .audit-page-hero h1 {
        font-size: clamp(46px, 4vw, 58px);
        line-height: 1.05;
        letter-spacing: -1px;
        margin-bottom: 14px;
    }

    body.page-audit .audit-page-hero p {
        max-width: 850px;
        font-size: 16px;
        line-height: 1.55;
    }

    body.page-audit .audit-section-head {
        max-width: 900px;
        margin: 0 auto clamp(30px, 4vh, 42px);
        text-align: center;
    }

    body.page-audit .section-kicker {
        color: var(--cyan);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin: 0 0 12px;
    }

    body.page-audit .audit-section-head h2 {
        font-size: clamp(32px, 3vw, 44px);
        line-height: 1.08;
        letter-spacing: -0.5px;
        margin-bottom: 14px;
    }

    body.page-audit .audit-section-head p:not(.section-kicker) {
        color: #aab6c7;
        font-size: 15px;
        line-height: 1.6;
        margin: 0 auto;
        max-width: 880px;
    }

    body.page-audit .audit-card-grid {
        display: grid;
        gap: clamp(18px, 2vh, 26px);
        width: 100%;
        max-width: 1680px;
        margin: 0 auto;
    }

    body.page-audit .audit-card-grid-six {
        grid-template-columns: repeat(3, 1fr);
    }

    body.page-audit .audit-card-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 1260px;
    }

    body.page-audit .audit-card {
        border: 1px solid rgba(22,223,255,0.22);
        border-radius: 16px;
        padding: clamp(24px, 2.3vh, 30px);
        background:
            radial-gradient(circle at 18% 18%, rgba(22,223,255,0.08), transparent 32%),
            linear-gradient(180deg, rgba(5,18,35,0.85), rgba(2,8,18,0.95));
        box-shadow: 0 24px 70px rgba(0,0,0,0.16);
        min-height: clamp(170px, 19vh, 205px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    body.page-audit .audit-card:hover {
        transform: translateY(-5px);
        border-color: rgba(22,223,255,0.42);
        box-shadow: 0 0 30px rgba(22,223,255,0.18), 0 26px 80px rgba(0,0,0,0.18);
    }

    body.page-audit .audit-card h3 {
        font-size: clamp(18px, 1.35vw, 22px);
        line-height: 1.15;
        margin-bottom: 14px;
    }

    body.page-audit .audit-card p {
        color: #aab6c7;
        font-size: 14px;
        line-height: 1.58;
        margin: 0;
    }

    body.page-audit .audit-card-large {
        min-height: clamp(210px, 24vh, 250px);
        justify-content: flex-start;
    }

    body.page-audit .audit-card-large span {
        display: block;
        margin-top: auto;
        padding-top: 18px;
        color: #d7e7f5;
        font-size: 13px;
        line-height: 1.45;
        opacity: 0.92;
    }

    body.page-audit .audit-action-band {
        max-width: 1260px;
        width: 100%;
        margin: clamp(24px, 3vh, 34px) auto 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 22px;
        border: 1px solid rgba(22,223,255,0.18);
        border-radius: 14px;
        padding: 16px 18px;
        background: linear-gradient(90deg, rgba(22,223,255,0.07), rgba(155,92,255,0.07));
        box-shadow: 0 0 40px rgba(22,223,255,0.05);
    }

    body.page-audit .audit-action-band span {
        color: #c6d4e4;
        font-size: 14px;
        line-height: 1.45;
    }

    body.page-audit .audit-action-band a {
        flex: 0 0 auto;
        color: #ffffff;
        font-size: 13px;
        font-weight: 900;
        text-decoration: none;
        padding: 12px 16px;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--cyan), var(--purple));
        box-shadow: 0 0 24px rgba(22,223,255,0.22);
    }
}

@media (max-width: 768px) {
    body.page-audit .audit-screen {
        padding: 56px 20px;
    }

    body.page-audit .audit-page-hero {
        padding: 0 0 32px;
    }

    body.page-audit .audit-section-head {
        text-align: left;
        margin-bottom: 26px;
    }

    body.page-audit .section-kicker {
        color: var(--cyan);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1.6px;
        text-transform: uppercase;
        margin: 0 0 10px;
    }

    body.page-audit .audit-section-head h2 {
        font-size: 30px;
        line-height: 1.1;
        margin-bottom: 14px;
    }

    body.page-audit .audit-section-head p:not(.section-kicker) {
        color: #aab6c7;
        line-height: 1.58;
        margin: 0;
    }

    body.page-audit .audit-card-grid {
        display: grid;
        gap: 16px;
    }

    body.page-audit .audit-card {
        border: 1px solid rgba(22,223,255,0.22);
        border-radius: 15px;
        padding: 22px;
        background:
            radial-gradient(circle at 18% 18%, rgba(22,223,255,0.08), transparent 34%),
            linear-gradient(180deg, rgba(5,18,35,0.85), rgba(2,8,18,0.95));
    }

    body.page-audit .audit-card h3 {
        font-size: 19px;
        line-height: 1.16;
        margin-bottom: 12px;
    }

    body.page-audit .audit-card p,
    body.page-audit .audit-card span {
        color: #aab6c7;
        font-size: 14px;
        line-height: 1.58;
        margin: 0;
    }

    body.page-audit .audit-card span {
        display: block;
        color: #d7e7f5;
        margin-top: 16px;
    }

    body.page-audit .audit-action-band {
        display: grid;
        gap: 14px;
        margin-top: 22px;
        border: 1px solid rgba(22,223,255,0.18);
        border-radius: 14px;
        padding: 16px;
        background: rgba(5,18,35,0.7);
    }

    body.page-audit .audit-action-band span {
        color: #c6d4e4;
        font-size: 14px;
        line-height: 1.45;
    }

    body.page-audit .audit-action-band a {
        display: inline-flex;
        width: fit-content;
        color: #ffffff;
        font-size: 13px;
        font-weight: 900;
        text-decoration: none;
        padding: 12px 16px;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--cyan), var(--purple));
    }
}

/* ABOUT PAGE V13 SECTION CLEANUP */
body.page-about {
    overflow-y: auto;
}

body.page-about #about.active-section {
    height: auto;
    min-height: calc(100vh - 96px);
    overflow: visible;
}

body.page-about .about-hero-section {
    min-height: calc(100vh - 96px);
    padding: 46px 7vw 54px;
    display: flex;
    align-items: center;
}

body.page-about #about.active-section .about-layout {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 86px;
    align-items: center;
    width: 100%;
    height: auto;
}

body.page-about #about.active-section .about-copy {
    max-width: 760px;
}

body.page-about #about.active-section .about-copy h1 {
    font-size: clamp(48px, 4vw, 68px);
    line-height: 0.98;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

body.page-about #about.active-section .about-copy .about-intro {
    margin-bottom: 24px;
}

body.page-about #about.active-section .about-copy .about-intro p {
    font-size: 16px;
    line-height: 1.58;
    margin-bottom: 14px;
}

body.page-about .about-hero-action,
body.page-about .about-action-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border: 1px solid rgba(22,223,255,0.22);
    border-radius: 16px;
    padding: 16px 18px;
    background:
        radial-gradient(circle at 84% 50%, rgba(155,92,255,0.16), transparent 30%),
        linear-gradient(180deg, rgba(5,18,35,0.82), rgba(2,8,18,0.94));
    box-shadow:
        0 0 28px rgba(22,223,255,0.08),
        inset 0 0 24px rgba(22,223,255,0.04);
}

body.page-about .about-hero-action span,
body.page-about .about-action-band span {
    color: #c6d4e4;
    font-size: 14px;
    line-height: 1.4;
}

body.page-about .about-hero-action a,
body.page-about .about-action-band a {
    flex: 0 0 auto;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    box-shadow: 0 0 24px rgba(22,223,255,0.24);
}

body.page-about #about.active-section .live-flow-panel {
    width: 100%;
    max-width: 650px;
    height: min(45vh, 470px);
    min-height: 360px;
    margin-left: auto;
}

body.page-about .about-principles-section {
    min-height: calc(100vh - 96px);
    padding: 82px 7vw 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

body.page-about .about-principles-section::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6%;
    width: 70%;
    height: 220px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(22,223,255,0.10), rgba(155,92,255,0.08) 36%, transparent 70%);
    pointer-events: none;
    filter: blur(2px);
}

body.page-about .about-section-head {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 44px;
    position: relative;
    z-index: 1;
}

body.page-about .about-section-head h2 {
    color: #ffffff;
    font-size: clamp(36px, 3.1vw, 54px);
    line-height: 1.04;
    letter-spacing: -1.2px;
    margin: 0 0 18px;
}

body.page-about .about-section-head p {
    color: #aab6c7;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 760px;
}

body.page-about .about-principles-section .about-statement-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

body.page-about .about-principles-section .about-statement-card {
    min-height: 210px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.page-about .about-principles-section .about-statement-card h3 {
    font-size: 22px;
    line-height: 1.12;
    margin-bottom: 14px;
}

body.page-about .about-principles-section .about-statement-card p {
    font-size: 15px;
    line-height: 1.62;
}

body.page-about .about-action-band {
    margin-top: 26px;
    position: relative;
    z-index: 1;
}

@media(max-width:1200px){
    body.page-about .about-hero-section,
    body.page-about .about-principles-section {
        min-height: auto;
        padding: 58px 7vw 70px;
    }

    body.page-about #about.active-section .about-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    body.page-about #about.active-section .live-flow-panel {
        max-width: none;
        height: 340px;
        min-height: 0;
        margin: 0;
    }

    body.page-about .about-principles-section .about-statement-grid {
        grid-template-columns: 1fr;
    }

    body.page-about .about-principles-section .about-statement-card {
        min-height: auto;
    }
}

@media(max-width:720px){
    body.page-about .about-hero-section,
    body.page-about .about-principles-section {
        padding: 46px 6vw 58px;
    }

    body.page-about #about.active-section .about-copy h1 {
        font-size: 40px;
    }

    body.page-about .about-section-head h2 {
        font-size: 32px;
    }

    body.page-about .about-hero-action,
    body.page-about .about-action-band {
        align-items: stretch;
        flex-direction: column;
    }

    body.page-about .about-hero-action a,
    body.page-about .about-action-band a {
        text-align: center;
        justify-content: center;
    }
}

/* V15 AUDIT PAGE REPAIR
   Restores the audit page as clean full sections, removes card numbers completely, and prevents half-seen information on desktop. */
body.page-audit {
    overflow-y: auto;
}

body.page-audit .system-number {
    display: none !important;
}

body.page-audit #audit.active-section {
    display: block;
    height: auto;
    min-height: calc(100vh - 96px);
    overflow: visible;
}

@media (min-width: 769px) {
    body.page-audit main {
        height: auto;
        overflow: visible;
    }

    body.page-audit .audit-screen {
        min-height: calc(100vh - 96px);
        padding: clamp(28px, 3.2vh, 42px) 7vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    body.page-audit .audit-intro-screen {
        padding-top: clamp(26px, 3vh, 38px);
        padding-bottom: clamp(34px, 3.8vh, 48px);
    }

    body.page-audit .audit-next-step-screen {
        border-top: 1px solid rgba(22,223,255,0.12);
        background:
            radial-gradient(circle at 50% 8%, rgba(22,223,255,0.07), transparent 30%),
            radial-gradient(circle at 50% 56%, rgba(155,92,255,0.11), transparent 34%);
        padding-top: clamp(42px, 5vh, 66px);
        padding-bottom: clamp(42px, 5vh, 66px);
    }

    body.page-audit .audit-page-hero {
        padding: 0 0 clamp(18px, 2.2vh, 26px);
        text-align: center;
    }

    body.page-audit .audit-page-hero h1 {
        font-size: clamp(42px, 3.7vw, 58px);
        line-height: 1.04;
        letter-spacing: -1px;
        margin: 0 0 12px;
    }

    body.page-audit .audit-page-hero p {
        max-width: 850px;
        color: #aab6c7;
        font-size: 15px;
        line-height: 1.5;
        margin: 0 auto;
        text-align: center;
    }

    body.page-audit .audit-section-head {
        max-width: 900px;
        margin: 0 auto clamp(20px, 2.6vh, 30px);
        text-align: center;
    }

    body.page-audit .audit-after-head {
        margin-bottom: clamp(24px, 3vh, 34px);
    }

    body.page-audit .section-kicker {
        color: var(--cyan);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin: 0 0 10px;
    }

    body.page-audit .audit-section-head h2 {
        color: #ffffff;
        font-size: clamp(34px, 3vw, 46px);
        line-height: 1.08;
        letter-spacing: -0.7px;
        margin: 0 0 13px;
    }

    body.page-audit .audit-section-head p:not(.section-kicker) {
        color: #aab6c7;
        font-size: 15px;
        line-height: 1.55;
        margin: 0 auto;
        max-width: 880px;
    }

    body.page-audit .audit-card-grid {
        display: grid;
        gap: clamp(16px, 1.8vh, 22px);
        width: 100%;
        max-width: 1680px;
        margin: 0 auto;
    }

    body.page-audit .audit-card-grid-six {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.page-audit .audit-card-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 1240px;
    }

    body.page-audit .audit-card {
        border: 1px solid rgba(22,223,255,0.22);
        border-radius: 16px;
        padding: clamp(22px, 2.1vh, 28px);
        background:
            radial-gradient(circle at 18% 18%, rgba(22,223,255,0.08), transparent 32%),
            linear-gradient(180deg, rgba(5,18,35,0.85), rgba(2,8,18,0.95));
        box-shadow: 0 24px 70px rgba(0,0,0,0.16);
        min-height: clamp(130px, 15vh, 158px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    body.page-audit .audit-card:hover {
        transform: translateY(-4px);
        border-color: rgba(22,223,255,0.42);
        box-shadow: 0 0 30px rgba(22,223,255,0.18), 0 26px 80px rgba(0,0,0,0.18);
    }

    body.page-audit .audit-card h3 {
        color: #ffffff;
        font-size: clamp(18px, 1.25vw, 22px);
        line-height: 1.15;
        margin: 0 0 12px;
    }

    body.page-audit .audit-card p {
        color: #aab6c7;
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
    }

    body.page-audit .audit-card-large {
        min-height: clamp(190px, 22vh, 230px);
        justify-content: flex-start;
    }

    body.page-audit .audit-card-large span {
        display: block;
        margin-top: auto;
        padding-top: 18px;
        color: #d7e7f5;
        font-size: 13px;
        line-height: 1.45;
        opacity: 0.92;
        font-weight: 800;
    }

    body.page-audit .audit-action-band {
        max-width: 1240px;
        width: 100%;
        margin: clamp(22px, 2.8vh, 32px) auto 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 22px;
        border: 1px solid rgba(22,223,255,0.18);
        border-radius: 14px;
        padding: 16px 18px;
        background: linear-gradient(90deg, rgba(22,223,255,0.07), rgba(155,92,255,0.07));
        box-shadow: 0 0 40px rgba(22,223,255,0.05);
    }

    body.page-audit .audit-action-band span {
        color: #c6d4e4;
        font-size: 14px;
        line-height: 1.45;
    }

    body.page-audit .audit-action-band a {
        flex: 0 0 auto;
        color: #ffffff;
        font-size: 13px;
        font-weight: 900;
        text-decoration: none;
        padding: 12px 16px;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--cyan), var(--purple));
        box-shadow: 0 0 24px rgba(22,223,255,0.22);
    }
}

@media (max-width: 768px) {
    body.page-audit #audit.active-section {
        height: auto;
        overflow: visible;
    }

    body.page-audit .audit-screen {
        padding: 52px 20px;
    }

    body.page-audit .audit-page-hero {
        padding: 0 0 30px;
        text-align: left;
    }

    body.page-audit .audit-page-hero h1 {
        font-size: 40px;
        line-height: 1.05;
        margin-bottom: 14px;
    }

    body.page-audit .audit-page-hero p {
        color: #aab6c7;
        line-height: 1.58;
        margin: 0;
        text-align: left;
    }

    body.page-audit .audit-section-head {
        text-align: left;
        margin-bottom: 26px;
    }

    body.page-audit .section-kicker {
        color: var(--cyan);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1.6px;
        text-transform: uppercase;
        margin: 0 0 10px;
    }

    body.page-audit .audit-section-head h2 {
        color: #ffffff;
        font-size: 30px;
        line-height: 1.1;
        margin-bottom: 14px;
    }

    body.page-audit .audit-section-head p:not(.section-kicker) {
        color: #aab6c7;
        line-height: 1.58;
        margin: 0;
    }

    body.page-audit .audit-card-grid {
        display: grid;
        gap: 16px;
    }

    body.page-audit .audit-card {
        border: 1px solid rgba(22,223,255,0.22);
        border-radius: 15px;
        padding: 22px;
        background:
            radial-gradient(circle at 18% 18%, rgba(22,223,255,0.08), transparent 34%),
            linear-gradient(180deg, rgba(5,18,35,0.85), rgba(2,8,18,0.95));
    }

    body.page-audit .audit-card h3 {
        color: #ffffff;
        font-size: 19px;
        line-height: 1.16;
        margin-bottom: 12px;
    }

    body.page-audit .audit-card p,
    body.page-audit .audit-card span {
        color: #aab6c7;
        font-size: 14px;
        line-height: 1.58;
        margin: 0;
    }

    body.page-audit .audit-card span {
        display: block;
        color: #d7e7f5;
        margin-top: 16px;
        font-weight: 800;
    }

    body.page-audit .audit-action-band {
        display: grid;
        gap: 14px;
        margin-top: 22px;
        border: 1px solid rgba(22,223,255,0.18);
        border-radius: 14px;
        padding: 16px;
        background: rgba(5,18,35,0.7);
    }

    body.page-audit .audit-action-band span {
        color: #c6d4e4;
        font-size: 14px;
        line-height: 1.45;
    }

    body.page-audit .audit-action-band a {
        display: inline-flex;
        width: fit-content;
        color: #ffffff;
        font-size: 13px;
        font-weight: 900;
        text-decoration: none;
        padding: 12px 16px;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--cyan), var(--purple));
    }
}

/* V16 ABOUT IMAGE CONTAIN FIX
   Shows the full right-side Presence Review Snapshot without cropping the output strip. */
body.page-about #about.active-section .live-flow-panel.system-sync-panel,
body.page-about #about.active-section .container-brain-panel {
    width: 100%;
    max-width: 690px;
    height: auto;
    min-height: 0;
    aspect-ratio: 1210 / 805;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

body.page-about #about.active-section .container-brain-panel img,
body.page-about #about.active-section .about-brain-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
    filter: brightness(1.06);
}

@media(max-width:1200px){
    body.page-about #about.active-section .live-flow-panel.system-sync-panel,
    body.page-about #about.active-section .container-brain-panel {
        max-width: none;
        height: auto;
        min-height: 0;
        aspect-ratio: 1210 / 805;
    }
}


/* V17 ABOUT SCROLL CUE
   Makes the second About section visible as an intentional continuation instead of hidden below the fold. */
body.page-about .about-hero-section {
    position: relative;
}

body.page-about .about-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 16px;
    border: 1px solid rgba(22,223,255,0.28);
    border-radius: 999px;
    background:
        radial-gradient(circle at 78% 50%, rgba(155,92,255,0.18), transparent 38%),
        linear-gradient(180deg, rgba(4,15,30,0.72), rgba(2,8,18,0.86));
    box-shadow:
        0 0 26px rgba(22,223,255,0.10),
        inset 0 0 18px rgba(22,223,255,0.045);
    opacity: 0.88;
    transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

body.page-about .about-scroll-cue:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
    border-color: rgba(22,223,255,0.48);
}

body.page-about .about-scroll-cue strong {
    color: var(--cyan);
    font-size: 15px;
    line-height: 1;
    animation: aboutCueDrop 1.45s ease-in-out infinite;
}

@keyframes aboutCueDrop {
    0%, 100% { transform: translateY(-1px); opacity: 0.75; }
    50% { transform: translateY(3px); opacity: 1; }
}

body.page-about #how-azexia-works {
    scroll-margin-top: 96px;
}

@media(max-width:1200px){
    body.page-about .about-scroll-cue {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin: 30px auto 0;
        width: fit-content;
    }

    body.page-about .about-scroll-cue:hover {
        transform: translateY(-2px);
    }
}

@media(max-width:720px){
    body.page-about .about-scroll-cue {
        width: 100%;
        justify-content: center;
        font-size: 11px;
        letter-spacing: 1.6px;
    }
}
