/* Aqorvia extended product site */

.language-link {
    min-width: 34px;
    color: #0b6fbf !important;
    font-weight: 800 !important;
}

.product-proof {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    color: #f7f8fa;
    background: #0f1216;
}

.product-proof::before,
.page-dark-band::before,
.subpage-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 58px 58px;
}

.product-proof .page-frame {
    position: relative;
}

.proof-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
    align-items: end;
    gap: 72px;
    margin-bottom: 48px;
}

.product-proof .section-heading {
    margin: 0;
}

.product-proof .section-heading h2 {
    max-width: 780px;
    color: #ffffff;
}

.product-proof .section-heading p {
    color: #9ba4b0;
}

.proof-heading-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    padding-bottom: 4px;
}

.product-proof .secondary-button {
    border-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #c8cdd4;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 500ms cubic-bezier(0.32, 0.72, 0, 1);
}

.text-link span {
    color: #ff7a18;
    font-size: 1rem;
}

.text-link:hover {
    color: #ffffff;
}

.proof-film {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: #171b20;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.proof-film-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-film-bar > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof-film-bar img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.proof-film-bar strong,
.proof-film-bar small {
    display: block;
}

.proof-film-bar strong {
    font-size: 0.86rem;
}

.proof-film-bar small {
    margin-top: 3px;
    color: #77828f;
    font-size: 0.68rem;
}

.film-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 5px 13px 5px 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #c8cdd4;
    background: rgba(255, 255, 255, 0.035);
    font: inherit;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    transition: color 500ms cubic-bezier(0.32, 0.72, 0, 1), background 500ms cubic-bezier(0.32, 0.72, 0, 1), transform 500ms cubic-bezier(0.32, 0.72, 0, 1);
}

.film-toggle i {
    position: relative;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ff7815;
}

.film-toggle i::before,
.film-toggle i::after {
    content: "";
    position: absolute;
    top: 8px;
    width: 2px;
    height: 10px;
    border-radius: 1px;
    background: #ffffff;
}

.film-toggle i::before { left: 9px; }
.film-toggle i::after { right: 9px; }

.film-toggle.paused i::before {
    top: 7px;
    left: 10px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid #ffffff;
    border-radius: 0;
    background: transparent;
}

.film-toggle.paused i::after { display: none; }

.film-toggle:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-1px);
}

.proof-stage {
    position: relative;
    aspect-ratio: 16 / 8.8;
    overflow: hidden;
    background: #0c0f13;
}

.proof-panel {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(18px) scale(0.995);
    transition: opacity 850ms cubic-bezier(0.32, 0.72, 0, 1), transform 850ms cubic-bezier(0.32, 0.72, 0, 1), visibility 850ms;
}

.proof-panel.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.proof-capture {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: #eef1f4;
}

.proof-capture::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 70px rgba(9, 12, 16, 0.08);
}

.proof-capture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 6400ms cubic-bezier(0.2, 0.7, 0, 1);
}

.proof-panel.active .proof-capture img {
    transform: scale(1.025);
}

.proof-panel.active .crop-operations img {
    transform: translateY(-6%) scale(1.14);
    transform-origin: top center;
}

.proof-panel.active .crop-crm img {
    transform: translateY(-8%) scale(1.17);
    transform-origin: top center;
}

.proof-panel.active .crop-permission img {
    transform: scale(1.055);
    transform-origin: top center;
}

.proof-panel.active .crop-calendar img {
    transform: scale(1.025);
    transform-origin: top center;
}

.proof-panel.active .crop-system img {
    transform: scale(1.035);
    transform-origin: top center;
}

.proof-panel.active .crop-governance img {
    transform: scale(1.025);
    transform-origin: top center;
}

.crop-system img { object-position: 50% 8%; }
.crop-operations img { object-position: 50% 16%; }
.crop-permission img { object-position: 50% 4%; }
.crop-governance img { object-position: 50% 4%; }
.crop-crm img { object-position: 50% 38%; }
.crop-calendar img { object-position: 50% 8%; }

.proof-panel figcaption {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 42px 34px;
    background: #15191e;
}

.proof-panel figcaption span {
    margin-bottom: auto;
    color: #ff8831;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.proof-panel figcaption strong {
    color: #ffffff;
    font-size: 1.65rem;
    line-height: 1.25;
}

.proof-panel figcaption small {
    margin-top: 18px;
    color: #7f8995;
    font-size: 0.72rem;
    line-height: 1.7;
}

.proof-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    min-height: 88px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-timeline button {
    position: relative;
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 8px;
    padding: 17px 19px 20px;
    overflow: hidden;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    color: #7e8792;
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: color 500ms cubic-bezier(0.32, 0.72, 0, 1), background 500ms cubic-bezier(0.32, 0.72, 0, 1);
}

.proof-timeline button:last-child { border-right: 0; }

.proof-timeline button span {
    color: #59636f;
    font-size: 0.65rem;
    font-weight: 800;
}

.proof-timeline button strong {
    font-size: 0.78rem;
}

.proof-timeline button i {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #ff7815;
    transform: scaleX(0);
    transform-origin: left;
}

.proof-timeline button.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.035);
}

.proof-timeline button.active span { color: #ff8831; }
.proof-timeline button.active i { animation: film-progress 5800ms cubic-bezier(0.32, 0.72, 0, 1) forwards; }

.proof-film:has(.film-toggle.paused) .proof-timeline button.active i,
.proof-film:hover .proof-timeline button.active i,
.proof-film:focus-within .proof-timeline button.active i {
    animation-play-state: paused;
}

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

.proof-disclosure {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 22px;
    color: #6f7984;
    font-size: 0.7rem;
}

.proof-disclosure span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b7c0c9;
    font-weight: 700;
}

.proof-disclosure span i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #29b9aa;
    box-shadow: 0 0 0 5px rgba(41, 185, 170, 0.1);
}

.proof-disclosure p { margin: 0; }

.proof-atlas {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.atlas-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    background: #171b20;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.045);
    transition: transform 700ms cubic-bezier(0.32, 0.72, 0, 1), border-color 700ms cubic-bezier(0.32, 0.72, 0, 1);
}

.atlas-card:nth-child(1),
.atlas-card:nth-child(4) { grid-column: span 7; }

.atlas-card:nth-child(2),
.atlas-card:nth-child(3) { grid-column: span 5; }

.atlas-card:hover {
    z-index: 1;
    border-color: rgba(255, 120, 21, 0.3);
    transform: translateY(-5px);
}

.atlas-image {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #eef1f4;
}

.atlas-wide .atlas-image { aspect-ratio: 16 / 6.5; }
.atlas-compact .atlas-image { aspect-ratio: 16 / 7.3; }

.atlas-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 46px rgba(9, 12, 16, 0.06);
}

.atlas-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 900ms cubic-bezier(0.32, 0.72, 0, 1);
}

.atlas-card:hover .atlas-image img { transform: scale(1.018); }

.atlas-card figcaption {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.75fr);
    gap: 10px 28px;
    min-height: 112px;
    padding: 22px 24px;
}

.atlas-card figcaption span {
    grid-column: 1 / -1;
    color: #ff8831;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
}

.atlas-card figcaption strong {
    color: #ffffff;
    font-size: 0.93rem;
    line-height: 1.4;
}

.atlas-card figcaption small {
    color: #7f8995;
    font-size: 0.67rem;
    line-height: 1.55;
}

.atlas-compact figcaption { grid-template-columns: 1fr; }
.atlas-compact figcaption span { grid-column: 1; }

.consent-field {
    display: grid !important;
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 10px;
    margin: 14px 0 2px;
}

.consent-field input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: #ff7815;
}

.consent-field span {
    color: #69727d;
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    line-height: 1.6;
}

.consent-field a {
    color: #116baa;
    text-underline-offset: 3px;
}

.demo-form.has-errors input:invalid,
.demo-form.has-errors textarea:invalid,
.demo-form.has-errors select:invalid {
    outline: 2px solid rgba(201, 56, 56, 0.18);
    border-color: #c93838;
}

.demo-form button:disabled {
    cursor: wait;
    opacity: 0.65;
}

/* Shared subpages */

body.site-page {
    color: #20242a;
    background: #f5f6f7;
}

.site-page main {
    padding-top: 0;
}

.subpage-hero {
    position: relative;
    overflow: hidden;
    padding: 160px 0 96px;
    background: #f5f6f7;
}

.subpage-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(25, 30, 36, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 30, 36, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.subpage-hero .page-frame {
    position: relative;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 34px;
    color: #818a94;
    font-size: 0.7rem;
    font-weight: 700;
}

.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb i { width: 16px; height: 1px; background: #ff7815; }

.subpage-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    align-items: center;
    gap: 84px;
}

.subpage-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #ff6f0f;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.subpage-kicker::before {
    content: "";
    width: 20px;
    height: 1px;
    background: currentColor;
}

.subpage-hero h1 {
    max-width: 820px;
    margin: 22px 0 26px;
    color: #1b1f25;
    font-size: 4.6rem;
    line-height: 1.03;
}

.subpage-hero-copy > p {
    max-width: 700px;
    margin: 0;
    color: #69727e;
    font-size: 1.02rem;
    line-height: 1.8;
}

.subpage-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.subpage-visual {
    position: relative;
    min-width: 0;
}

.actual-screen {
    overflow: hidden;
    border: 6px solid #ffffff;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 34px 90px rgba(32, 38, 46, 0.16), 0 0 0 1px rgba(24, 29, 35, 0.07);
}

.actual-screen img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transform: scale(1.07);
    transform-origin: top center;
}

.screen-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 16px;
    color: #727b85;
    font-size: 0.66rem;
    font-weight: 700;
}

.screen-caption span:first-child { color: #252a31; }

.visual-note {
    position: absolute;
    right: -24px;
    bottom: -28px;
    width: 230px;
    padding: 20px;
    border-radius: 6px;
    color: #d6dbe1;
    background: #15191e;
    box-shadow: 0 24px 60px rgba(13, 17, 22, 0.2);
}

.visual-note small,
.visual-note strong { display: block; }
.visual-note small { color: #ff8230; font-size: 0.62rem; font-weight: 800; text-transform: uppercase; }
.visual-note strong { margin-top: 9px; font-size: 0.86rem; line-height: 1.55; }

.page-intro-band {
    padding: 36px 0;
    border-top: 1px solid rgba(27, 32, 38, 0.08);
    border-bottom: 1px solid rgba(27, 32, 38, 0.08);
    background: #ffffff;
}

.page-intro-band .page-frame {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.intro-stat {
    min-width: 0;
    padding: 4px 26px;
    border-right: 1px solid rgba(27, 32, 38, 0.08);
}

.intro-stat:first-child { padding-left: 0; }
.intro-stat:last-child { border-right: 0; }
.intro-stat small,
.intro-stat strong { display: block; }
.intro-stat small { color: #89919a; font-size: 0.62rem; font-weight: 800; text-transform: uppercase; }
.intro-stat strong { margin-top: 8px; font-size: 0.86rem; line-height: 1.5; }

.content-section {
    padding: 112px 0;
    background: #ffffff;
}

.content-section.alt { background: #f5f6f7; }

.content-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 54px;
}

.content-heading h2 {
    max-width: 790px;
    margin: 16px 0 0;
    font-size: 3.25rem;
    line-height: 1.08;
}

.content-heading p {
    margin: 0;
    color: #707985;
    line-height: 1.8;
}

.feature-ledger {
    border-top: 1px solid rgba(27, 32, 38, 0.12);
}

.feature-row {
    display: grid;
    grid-template-columns: 64px minmax(230px, 0.8fr) minmax(0, 1.2fr) 150px;
    align-items: center;
    gap: 28px;
    min-height: 112px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(27, 32, 38, 0.1);
}

.feature-row > span {
    color: #ff7413;
    font-size: 0.68rem;
    font-weight: 800;
}

.feature-row h3 {
    margin: 0;
    font-size: 1.15rem;
}

.feature-row p {
    margin: 0;
    color: #747d88;
    font-size: 0.82rem;
    line-height: 1.7;
}

.feature-row b {
    justify-self: end;
    color: #8a929c;
    font-size: 0.66rem;
    text-transform: uppercase;
}

.page-dark-band {
    position: relative;
    overflow: hidden;
    padding: 112px 0;
    color: #f7f8fa;
    background: #0f1216;
}

.page-dark-band .page-frame { position: relative; }
.page-dark-band .content-heading h2 { color: #ffffff; }
.page-dark-band .content-heading p { color: #929ca8; }

.dark-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-cell {
    min-height: 210px;
    padding: 34px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-cell.large { grid-row: span 2; min-height: 440px; }
.dark-cell span { color: #ff8731; font-size: 0.62rem; font-weight: 800; text-transform: uppercase; }
.dark-cell h3 { margin: 50px 0 12px; color: #ffffff; font-size: 1.65rem; }
.dark-cell.large h3 { margin-top: 170px; font-size: 2.6rem; }
.dark-cell p { max-width: 540px; margin: 0; color: #8e98a4; line-height: 1.75; }

.status-board {
    overflow: hidden;
    border: 1px solid rgba(27, 32, 38, 0.11);
    border-radius: 8px;
    background: #ffffff;
}

.status-board-head,
.status-row {
    display: grid;
    grid-template-columns: minmax(190px, 0.7fr) minmax(260px, 1.2fr) 135px minmax(220px, 0.8fr);
    gap: 20px;
    align-items: center;
}

.status-board-head {
    padding: 15px 20px;
    color: #8a929c;
    background: #f3f4f5;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
}

.status-row {
    min-height: 92px;
    padding: 18px 20px;
    border-top: 1px solid rgba(27, 32, 38, 0.09);
}

.status-row strong { font-size: 0.86rem; }
.status-row p { margin: 0; color: #727b85; font-size: 0.76rem; line-height: 1.55; }

.status-pill {
    justify-self: start;
    padding: 7px 10px;
    border-radius: 999px;
    color: #087d73;
    background: #e8f7f4;
    font-size: 0.62rem;
    font-weight: 800;
}

.status-pill.roadmap {
    color: #9a590d;
    background: #fff1df;
}

.status-row small { color: #87909a; font-size: 0.68rem; line-height: 1.55; }

.solution-index {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1px;
    background: rgba(27, 32, 38, 0.1);
}

.solution-entry {
    min-height: 330px;
    padding: 38px;
    color: #22272d;
    background: #ffffff;
    text-decoration: none;
    transition: color 650ms cubic-bezier(0.32, 0.72, 0, 1), background 650ms cubic-bezier(0.32, 0.72, 0, 1);
}

.solution-entry:nth-child(3) { grid-column: 1 / -1; min-height: 250px; }
.solution-entry span { color: #ff7514; font-size: 0.66rem; font-weight: 800; text-transform: uppercase; }
.solution-entry h3 { max-width: 540px; margin: 70px 0 14px; font-size: 2rem; }
.solution-entry:nth-child(3) h3 { margin-top: 36px; }
.solution-entry p { max-width: 620px; margin: 0; color: #747d88; line-height: 1.75; }
.solution-entry b { display: inline-flex; margin-top: 28px; color: #31363d; font-size: 0.72rem; }
.solution-entry:hover { color: #ffffff; background: #171b20; }
.solution-entry:hover p,
.solution-entry:hover b { color: #abb3bc; }

body[data-page="solutions"] .solution-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="solutions"] .solution-entry:nth-child(3) {
    grid-column: auto;
    min-height: 330px;
}

body[data-page="solutions"] .solution-entry:nth-child(3) h3 {
    margin-top: 70px;
}

.principle-stack {
    border-top: 1px solid rgba(27, 32, 38, 0.12);
}

.principle-row {
    display: grid;
    grid-template-columns: 90px minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 34px;
    align-items: start;
    padding: 34px 0;
    border-bottom: 1px solid rgba(27, 32, 38, 0.1);
}

.principle-row > span { color: #ff7312; font-size: 0.68rem; font-weight: 800; }
.principle-row h3 { margin: 0; font-size: 1.35rem; }
.principle-row p { margin: 0; color: #727b85; line-height: 1.75; }

.release-list {
    border-left: 1px solid rgba(27, 32, 38, 0.14);
    margin-left: 13px;
}

.release-entry {
    position: relative;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 36px;
    padding: 0 0 64px 42px;
}

.release-entry::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -6px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ff7815;
    box-shadow: 0 0 0 6px #fff0e5;
}

.release-entry time { color: #808994; font-size: 0.7rem; font-weight: 700; }
.release-entry h3 { margin: 0 0 13px; font-size: 1.35rem; }
.release-entry p { margin: 0; color: #727b85; line-height: 1.75; }
.release-entry ul { display: grid; gap: 9px; margin: 20px 0 0; padding: 0; list-style: none; }
.release-entry li { color: #555e69; font-size: 0.8rem; }
.release-entry li::before { content: ""; display: inline-block; width: 5px; height: 5px; margin: 0 10px 2px 0; border-radius: 50%; background: #ff7815; }

.doc-cover {
    max-width: 980px;
    margin: 0 auto;
    padding: 72px;
    border: 1px solid rgba(27, 32, 38, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(25, 31, 37, 0.1);
}

.doc-cover-header { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 42px; border-bottom: 1px solid rgba(27, 32, 38, 0.1); }
.doc-cover-header img { width: 150px; }
.doc-cover-header span { color: #89919a; font-size: 0.66rem; font-weight: 800; text-transform: uppercase; }
.doc-cover h1 { max-width: 700px; margin: 64px 0 24px; font-size: 4rem; line-height: 1.05; }
.doc-cover > p { max-width: 680px; color: #6f7883; line-height: 1.8; }
.doc-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 54px; background: rgba(27, 32, 38, 0.1); }
.doc-meta div { min-height: 125px; padding: 24px; background: #f6f7f8; }
.doc-meta small,
.doc-meta strong { display: block; }
.doc-meta small { color: #9098a1; font-size: 0.6rem; font-weight: 800; text-transform: uppercase; }
.doc-meta strong { margin-top: 30px; font-size: 0.85rem; }

.subpage-cta {
    position: relative;
    overflow: hidden;
    padding: 0;
    color: #f4f6f7;
    background: #0d1216;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.subpage-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
}

.subpage-cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: max(28px, calc((100% - 1320px) / 2));
    width: min(340px, 28vw);
    height: 3px;
    background: #ff7815;
}

.subpage-cta .page-frame {
    position: relative;
    display: grid;
    min-height: 430px;
    padding: 82px 0;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
    align-items: stretch;
    gap: 64px;
}

.subpage-cta .cta-copy {
    display: flex;
    min-width: 0;
    min-height: 0;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    border-radius: 0;
    color: #939da6;
    background: transparent;
}
.cta-kicker { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px; color: #ff8730; font-size: 0.56rem; font-weight: 800; }
.cta-kicker::before { content: ""; width: 24px; height: 1px; background: #ff7815; }
.subpage-cta h2 { max-width: 830px; margin: 0; color: #ffffff; font-size: 3rem; line-height: 1.12; }
.subpage-cta p { max-width: 700px; margin: 20px 0 0; color: #939da6; font-size: 0.72rem; line-height: 1.75; }
.cta-meta { display: flex; flex-wrap: wrap; margin-top: 34px; border-top: 1px solid rgba(255, 255, 255, 0.09); }
.cta-meta span { min-height: 44px; padding: 16px 24px 0 0; margin-right: 24px; border-right: 1px solid rgba(255, 255, 255, 0.09); color: #68747e; font-size: 0.52rem; font-weight: 700; }
.cta-meta span:last-child { margin-right: 0; border-right: 0; }
.cta-action { display: flex; padding: 12px 0 12px 52px; flex-direction: column; justify-content: space-between; border-left: 1px solid rgba(255, 255, 255, 0.1); }
.cta-action > div small,
.cta-action > div strong { display: block; }
.cta-action > div small { color: #ff8730; font-size: 0.52rem; font-weight: 800; }
.cta-action > div strong { max-width: 270px; margin-top: 14px; color: #e8ecef; font-size: 1rem; line-height: 1.5; }
.subpage-cta .primary-button { align-self: flex-start; min-width: 210px; box-shadow: 0 16px 42px rgba(255, 120, 21, 0.2); }

.subpage-footer { position: relative; overflow: hidden; margin-top: 0; padding: 72px 0 28px; color: #d4d9df; background: #0e1115; }
.subpage-footer .page-frame { position: relative; }

.product-gallery {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: #161a1f;
}

.gallery-tabs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.gallery-tabs button {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 66px;
    padding: 14px 20px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    color: #87919c;
    background: transparent;
    font: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: color 550ms cubic-bezier(0.32, 0.72, 0, 1), background 550ms cubic-bezier(0.32, 0.72, 0, 1);
}

.gallery-tabs button:last-child { border-right: 0; }
.gallery-tabs button span { color: #5e6874; font-size: 0.62rem; }
.gallery-tabs button.active { color: #ffffff; background: rgba(255, 255, 255, 0.04); }
.gallery-tabs button.active span { color: #ff8731; }

.gallery-stage {
    position: relative;
    aspect-ratio: 16 / 7.8;
    overflow: hidden;
    background: #eef1f4;
}

.gallery-panel {
    position: absolute;
    inset: 0;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 750ms cubic-bezier(0.32, 0.72, 0, 1), transform 750ms cubic-bezier(0.32, 0.72, 0, 1), visibility 750ms;
}

.gallery-panel.active { visibility: visible; opacity: 1; transform: translateY(0); }
.gallery-panel img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; transform: scale(1.06); transform-origin: top center; }
.gallery-panel:nth-child(1) img { object-position: center 8%; }
.gallery-panel.contain img { padding: 66px 34px 34px; object-fit: contain; transform: none; background: #eef1f4; }

.gallery-panel figcaption {
    position: absolute;
    right: 22px;
    bottom: 22px;
    min-width: 290px;
    padding: 18px 20px;
    border-radius: 6px;
    color: #ffffff;
    background: rgba(17, 21, 26, 0.92);
}

.gallery-panel figcaption strong,
.gallery-panel figcaption span { display: block; }
.gallery-panel figcaption strong { font-size: 0.84rem; }
.gallery-panel figcaption span { margin-top: 6px; color: #9ba4af; font-size: 0.66rem; }

.entry-proof {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    overflow: hidden;
    margin-bottom: 22px;
    border: 1px solid rgba(27, 32, 38, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(27, 32, 38, 0.09);
}

.entry-proof-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 46px;
}

.entry-proof-copy > span { color: #ff7815; font-size: 0.66rem; font-weight: 800; text-transform: uppercase; }
.entry-proof-copy h3 { margin: 18px 0 15px; font-size: 2rem; line-height: 1.18; }
.entry-proof-copy p { margin: 0; color: #727b85; font-size: 0.84rem; line-height: 1.75; }
.entry-proof-copy > div { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.entry-proof-copy b { padding: 8px 10px; border-radius: 5px; color: #626b75; background: #f1f3f5; font-size: 0.64rem; }
.entry-proof figure { position: relative; min-width: 0; margin: 0; background: #f6f7f8; }
.entry-proof figure img { display: block; width: 100%; height: 100%; min-height: 430px; object-fit: cover; object-position: center; }
.entry-proof figcaption { position: absolute; right: 18px; bottom: 18px; padding: 10px 12px; border-radius: 5px; color: #ffffff; background: rgba(17, 21, 26, 0.9); font-size: 0.65rem; font-weight: 700; }

.product-lifecycle,
.trust-model {
    color: #f7f8fa;
    background: #0f1216;
}

.governance-proof-grid,
.assurance-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.governance-proof-grid figure,
.assurance-proof figure {
    min-width: 0;
    overflow: hidden;
    margin: 0;
    border-radius: 8px;
}

.governance-proof-grid figure {
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1c2127;
    box-shadow: 0 28px 74px rgba(0, 0, 0, 0.24);
}

.governance-proof-grid img,
.assurance-proof img {
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center top;
}

.governance-proof-grid img { aspect-ratio: 16 / 8.2; border-radius: 5px 5px 0 0; }
.governance-proof-grid figcaption { min-height: 142px; padding: 24px 22px; background: #15191e; }
.governance-proof-grid figcaption span,
.governance-proof-grid figcaption strong,
.governance-proof-grid figcaption small { display: block; }
.governance-proof-grid figcaption span { color: #ff8831; font-size: 0.62rem; font-weight: 800; text-transform: uppercase; }
.governance-proof-grid figcaption strong { margin-top: 13px; color: #ffffff; font-size: 1rem; line-height: 1.4; }
.governance-proof-grid figcaption small { margin-top: 9px; color: #858f9a; font-size: 0.68rem; line-height: 1.6; }

.assurance-proof { margin: 0 0 30px; }
.assurance-proof figure { border: 5px solid #ffffff; background: #ffffff; box-shadow: 0 25px 65px rgba(27, 32, 38, 0.11), 0 0 0 1px rgba(27, 32, 38, 0.07); }
.assurance-proof img { aspect-ratio: 16 / 6.2; }
.assurance-proof figcaption { padding: 16px 18px; }
.assurance-proof figcaption strong,
.assurance-proof figcaption span { display: block; }
.assurance-proof figcaption strong { color: #2b3036; font-size: 0.8rem; }
.assurance-proof figcaption span { margin-top: 6px; color: #7b848f; font-size: 0.64rem; }

.solution-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
    align-items: center;
    gap: 82px;
}

.solution-detail-grid.reverse .solution-detail-copy { order: 2; }
.solution-detail-grid.reverse .solution-detail-media { order: 1; }

.solution-detail-copy h2 {
    max-width: 680px;
    margin: 20px 0 24px;
    font-size: 3.15rem;
    line-height: 1.08;
}

.solution-detail-copy > p {
    max-width: 640px;
    margin: 0;
    color: #707985;
    line-height: 1.8;
}

.solution-capabilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin: 32px 0;
    padding: 1px;
    background: rgba(27, 32, 38, 0.1);
    list-style: none;
}

.solution-capabilities li {
    min-height: 74px;
    padding: 24px 20px;
    color: #4d5660;
    background: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
}

.solution-capabilities li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 10px 2px 0;
    border-radius: 50%;
    background: #ff7815;
}

.solution-detail-media {
    overflow: hidden;
    border: 6px solid #ffffff;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(27, 32, 38, 0.15), 0 0 0 1px rgba(27, 32, 38, 0.08);
}

.solution-detail-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center top;
}

.solution-detail-media.portrait img { aspect-ratio: 16 / 11; object-position: center 12%; }
.solution-detail-media > span { display: block; padding: 13px 14px; color: #737c86; font-size: 0.64rem; font-weight: 700; }

.solution-media-stack {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 12px;
    align-items: end;
}

.solution-media-stack figure {
    min-width: 0;
    overflow: hidden;
    margin: 0;
    border: 6px solid #ffffff;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 26px 70px rgba(27, 32, 38, 0.13), 0 0 0 1px rgba(27, 32, 38, 0.07);
    transition: transform 700ms cubic-bezier(0.32, 0.72, 0, 1);
}

.solution-media-stack figure:first-child { transform: translateY(-26px); }
.solution-media-stack figure:hover { transform: translateY(-8px); }
.solution-media-stack figure:first-child:hover { transform: translateY(-34px); }
.solution-media-stack img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center top; }
.solution-media-stack figcaption { min-height: 78px; padding: 14px; }
.solution-media-stack figcaption strong,
.solution-media-stack figcaption span { display: block; }
.solution-media-stack figcaption strong { color: #2a2f35; font-size: 0.76rem; }
.solution-media-stack figcaption span { margin-top: 6px; color: #7a838e; font-size: 0.61rem; line-height: 1.45; }
.text-link.dark { color: #333941; }
.text-link.dark:hover { color: #ff7010; }

.dark-solution .solution-detail-copy h2 { color: #ffffff; }
.dark-solution .solution-detail-copy > p { color: #929ca7; }
.dark-solution .solution-capabilities { background: rgba(255, 255, 255, 0.1); }
.dark-solution .solution-capabilities li { color: #c2c9d0; background: #171b20; }
.dark-solution .solution-detail-media { border-color: #252a31; background: #252a31; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28); }
.dark-solution .solution-detail-media > span { color: #909aa5; }

.data-boundary {
    display: grid;
    grid-template-columns: 1fr 90px 1fr;
    align-items: stretch;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.data-boundary article {
    min-height: 330px;
    padding: 38px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-boundary > i {
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ff7b1a;
    font-size: 1.5rem;
    font-style: normal;
}

.data-boundary article span { color: #ff8731; font-size: 0.64rem; font-weight: 800; text-transform: uppercase; }
.data-boundary article h3 { margin: 100px 0 16px; color: #ffffff; font-size: 2rem; }
.data-boundary article p { max-width: 520px; margin: 0; color: #8e98a4; line-height: 1.75; }
.data-boundary article small { display: block; margin-top: 28px; color: #5fc9bd; font-size: 0.64rem; font-weight: 800; }

.company-monogram {
    position: relative;
    min-height: 500px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(27, 32, 38, 0.09);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(27, 32, 38, 0.1);
}

.company-monogram img { width: 30px; }
.company-monogram > span { margin-left: 10px; color: #7f8892; font-size: 0.58rem; font-weight: 800; }
.company-monogram > strong { position: absolute; right: -12px; bottom: -120px; color: rgba(255, 120, 21, 0.075); font-size: 30rem; line-height: 1; }
.company-monogram p { position: absolute; right: 34px; bottom: 36px; left: 34px; max-width: 400px; margin: 0; font-size: 1.6rem; font-weight: 700; line-height: 1.35; }

.engagement-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(27, 32, 38, 0.12);
    border-left: 1px solid rgba(27, 32, 38, 0.12);
}

.engagement-flow article {
    min-height: 300px;
    padding: 28px;
    border-right: 1px solid rgba(27, 32, 38, 0.12);
    border-bottom: 1px solid rgba(27, 32, 38, 0.12);
    background: #ffffff;
}

.engagement-flow article > span { color: #ff7815; font-size: 0.66rem; font-weight: 800; }
.engagement-flow small { display: block; margin-top: 62px; color: #9299a1; font-size: 0.6rem; font-weight: 800; text-transform: uppercase; }
.engagement-flow h3 { margin: 12px 0; font-size: 1.18rem; }
.engagement-flow p { margin: 0; color: #737c86; font-size: 0.77rem; line-height: 1.7; }

.release-signal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 370px;
    padding: 44px;
    border: 1px solid rgba(27, 32, 38, 0.09);
    border-radius: 8px;
    color: #ffffff;
    background: #14181d;
    box-shadow: 0 30px 80px rgba(27, 32, 38, 0.14);
}

.release-signal img { width: 38px; margin-bottom: auto; }
.release-signal > span { display: inline-flex; align-items: center; gap: 10px; color: #70d5ca; font-size: 0.66rem; font-weight: 800; }
.release-signal > span i { width: 7px; height: 7px; border-radius: 50%; background: #38bcae; box-shadow: 0 0 0 6px rgba(56, 188, 174, 0.1); }
.release-signal strong { margin-top: 16px; font-size: 2.4rem; }
.release-signal small { margin-top: 9px; color: #7f8994; font-size: 0.7rem; }

.evidence-triptych {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.evidence-triptych figure {
    min-width: 0;
    margin: 0;
    background: #171b20;
}

.evidence-triptych figure:first-child { grid-row: span 2; }
.evidence-triptych img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center top; }
.evidence-triptych figure:first-child img { height: calc(100% - 82px); aspect-ratio: auto; }
.evidence-triptych figcaption { min-height: 82px; padding: 18px 20px; }
.evidence-triptych figcaption strong,
.evidence-triptych figcaption span { display: block; }
.evidence-triptych figcaption strong { color: #ffffff; font-size: 0.82rem; }
.evidence-triptych figcaption span { margin-top: 6px; color: #7f8994; font-size: 0.65rem; }

/* Code-rendered product scenes */
.concept-proof-section {
    background: #0d1014;
}

.concept-command,
.ui-scene {
    overflow: hidden;
    border: 6px solid #242a30;
    border-radius: 8px;
    background: #151a1f;
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.concept-command-bar,
.ui-scene-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 68px;
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    background: #151a1f;
}

.concept-command-bar > div,
.ui-scene-bar > div {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.concept-command-bar img,
.ui-scene-bar img {
    width: 29px;
    height: 29px;
    object-fit: contain;
}

.concept-command-bar span,
.ui-scene-bar span { min-width: 0; }
.concept-command-bar strong,
.concept-command-bar small,
.ui-scene-bar strong,
.ui-scene-bar small { display: block; }
.concept-command-bar strong,
.ui-scene-bar strong { font-size: 0.73rem; }
.concept-command-bar small,
.ui-scene-bar small { margin-top: 3px; color: #728091; font-size: 0.56rem; }

.concept-command-bar > b,
.ui-scene-bar > b {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    color: #48ceb9;
    font-size: 0.59rem;
}

.concept-command-bar > b i,
.ui-scene-bar > b i,
.concept-health-strip i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #35c9b2;
    box-shadow: 0 0 0 5px rgba(53, 201, 178, 0.1);
}

.concept-command-layout {
    display: grid;
    grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
    min-height: 560px;
}

.concept-command-rail {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 42px 34px 38px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    color: #ffffff;
    background:
        linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
        #181d23;
    background-size: 100% 74px;
}

.concept-command-rail > small,
.concept-surface-copy > span {
    color: #ff812b;
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
}

.concept-command-rail > strong {
    max-width: 300px;
    margin-top: 18px;
    font-size: 2rem;
    line-height: 1.12;
}

.concept-command-rail > p {
    margin: 17px 0 28px;
    color: #89939f;
    font-size: 0.73rem;
    line-height: 1.7;
}

.concept-command-rail > div {
    display: grid;
    gap: 6px;
}

.concept-command-rail > div span {
    padding: 10px 12px;
    border-radius: 5px;
    color: #8d97a3;
    font-size: 0.65rem;
    font-weight: 700;
}

.concept-command-rail > div span.active {
    color: #ffffff;
    background: #ff7815;
}

.concept-command-workspace {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 34px;
    color: #242a31;
    background: #f7f8fa;
}

.concept-workspace-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e1e5e9;
}

.concept-workspace-head span small,
.concept-workspace-head span strong { display: block; }
.concept-workspace-head span small { color: #83909d; font-size: 0.54rem; font-weight: 800; }
.concept-workspace-head span strong { margin-top: 7px; font-size: 1.25rem; }
.concept-workspace-head > b { color: #7b858f; font-size: 0.62rem; }

.concept-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 22px;
    border: 1px solid #e0e4e8;
    border-radius: 7px;
    background: #ffffff;
}

.concept-metrics article {
    min-width: 0;
    padding: 19px;
    border-right: 1px solid #e6e9ec;
}

.concept-metrics article:last-child { border-right: 0; }
.concept-metrics small,
.concept-metrics strong,
.concept-metrics span { display: block; }
.concept-metrics small { color: #ff7815; font-size: 0.5rem; font-weight: 800; }
.concept-metrics strong { margin-top: 12px; font-size: 1.55rem; }
.concept-metrics span { margin-top: 8px; overflow: hidden; color: #8a949e; font-size: 0.55rem; text-overflow: ellipsis; white-space: nowrap; }

.concept-system-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.concept-system-grid article {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 16px;
    border: 1px solid #e4e7ea;
    border-radius: 6px;
    background: #ffffff;
}

.concept-system-grid article > span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 5px;
    color: #ff7815;
    background: #fff0e7;
    font-size: 0.56rem;
    font-weight: 800;
}

.concept-system-grid article div { min-width: 0; }
.concept-system-grid article strong,
.concept-system-grid article small { display: block; }
.concept-system-grid article strong { overflow: hidden; font-size: 0.68rem; text-overflow: ellipsis; white-space: nowrap; }
.concept-system-grid article small { margin-top: 5px; color: #8b949e; font-size: 0.52rem; }
.concept-system-grid article > b { color: #159e89; font-size: 0.52rem; }

.concept-health-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 24px;
}

.concept-health-strip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #747f89;
    font-size: 0.52rem;
}

.concept-surface-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.concept-surface {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: #171b20;
}

.concept-surface-copy { padding: 30px 30px 24px; }
.concept-surface-copy h3 { max-width: 520px; margin: 15px 0 12px; color: #ffffff; font-size: 1.42rem; line-height: 1.25; }
.concept-surface-copy p { max-width: 520px; margin: 0; color: #89939e; font-size: 0.7rem; line-height: 1.7; }

.concept-mini-window {
    align-self: end;
    min-width: 0;
    margin: 0 8px 8px;
    overflow: hidden;
    border-radius: 6px;
    color: #292f36;
    background: #f7f8fa;
}

.concept-mini-window > header,
.ui-window-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 48px;
    padding: 0 18px;
    border-bottom: 1px solid #e1e5e9;
    background: #ffffff;
}

.concept-mini-window > header strong,
.ui-window-head strong { font-size: 0.66rem; }
.concept-mini-window > header b,
.ui-window-head b { color: #159e89; font-size: 0.54rem; }

.mini-data-layout {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 194px;
}

.mini-data-layout aside {
    display: grid;
    align-content: start;
    gap: 5px;
    padding: 16px 10px;
    border-right: 1px solid #e2e6ea;
    background: #f0f2f4;
}

.mini-data-layout aside span,
.mini-data-layout aside b { padding: 8px; border-radius: 4px; font-size: 0.54rem; }
.mini-data-layout aside b { color: #ffffff; background: #ff7815; }
.mini-data-layout main { min-width: 0; padding: 16px; }
.mini-data-layout main > small { display: block; margin-bottom: 11px; color: #7b8691; font-size: 0.55rem; }
.mini-resource-row { display: grid; grid-template-columns: minmax(0, 1fr) 70px 84px; min-width: 0; padding: 9px 10px; border-top: 1px solid #e4e7ea; font-size: 0.54rem; }
.mini-resource-row.active { color: #ffffff; background: #ff7815; }
.mini-resource-row i { overflow: hidden; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }

.mini-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 26px 20px 18px;
}

.mini-flow > span { min-width: 0; padding: 14px; border: 1px solid #e2e5e8; border-radius: 5px; background: #ffffff; }
.mini-flow i,
.mini-flow b,
.mini-flow small { display: block; }
.mini-flow i { color: #ff7815; font-size: 0.5rem; font-style: normal; font-weight: 800; }
.mini-flow b { margin-top: 12px; font-size: 0.62rem; }
.mini-flow small { margin-top: 5px; overflow: hidden; color: #8a949e; font-size: 0.5rem; text-overflow: ellipsis; white-space: nowrap; }
.mini-flow em { color: #ff7815; font-style: normal; }
.mini-condition { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 14px; margin: 0 20px 20px; padding: 12px 14px; border-radius: 5px; background: #eef1f4; }
.mini-condition small { color: #89939e; font-size: 0.5rem; font-weight: 800; }
.mini-condition strong { overflow: hidden; font-size: 0.57rem; text-overflow: ellipsis; white-space: nowrap; }
.mini-condition b { color: #159e89; font-size: 0.52rem; }

.mini-chart { display: grid; gap: 18px; padding: 28px 22px 30px; }
.mini-chart span { display: grid; grid-template-columns: 76px minmax(0, 1fr) 46px; align-items: center; gap: 12px; font-size: 0.55rem; }
.mini-chart span > i { position: relative; height: 8px; overflow: hidden; border-radius: 4px; background: #e5e8eb; }
.mini-chart span > i::after { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--bar); border-radius: inherit; background: linear-gradient(90deg, #ff7815, #ffab72); }
.mini-chart small { color: #747f8a; text-align: right; }

.mini-week { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); min-height: 192px; }
.mini-week > span { display: flex; flex-direction: column; justify-content: center; min-width: 0; padding: 16px; border-right: 1px solid #e4e7ea; }
.mini-week > span:last-child { border-right: 0; }
.mini-week small,
.mini-week b,
.mini-week strong { display: block; }
.mini-week small { color: #ff7815; font-size: 0.5rem; font-weight: 800; }
.mini-week b,
.mini-week strong { font-size: 0.62rem; }
.mini-week b { margin-top: 20px; }
.mini-week i { height: 2px; margin: 10px 0; background: #dce1e5; }
.mini-week .off { justify-content: flex-start; color: #89939e; background: #f0f2f4; }
.mini-week .off b { line-height: 1.5; }

/* Reusable compact scenes for secondary pages */
.ui-scene {
    min-height: 370px;
}

.subpage-visual .ui-scene { transform: perspective(1200px) rotateY(-1.5deg); transform-origin: center right; }

.ui-scene-body {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr) 150px;
    min-height: 320px;
    color: #2a3037;
    background: #f7f8fa;
}

.ui-rail {
    display: grid;
    align-content: start;
    gap: 6px;
    padding: 20px 12px;
    border-right: 1px solid #e1e5e8;
    background: #eef1f3;
}

.ui-rail small { margin: 0 7px 8px; color: #929ca7; font-size: 0.48rem; font-weight: 800; }
.ui-rail span { padding: 9px 10px; border-radius: 4px; color: #6f7a85; font-size: 0.55rem; font-weight: 700; }
.ui-rail span.active { color: #ffffff; background: #ff7815; }

.ui-workspace { min-width: 0; padding: 22px; }
.ui-workspace > small { color: #86919c; font-size: 0.52rem; }
.ui-workspace > h3 { margin: 8px 0 20px; font-size: 1.28rem; }

.ui-inspector {
    min-width: 0;
    padding: 20px 14px;
    border-left: 1px solid #e1e5e8;
    background: #ffffff;
}

.ui-inspector > small { color: #8a949e; font-size: 0.5rem; font-weight: 800; }
.ui-inspector > strong { display: block; margin: 9px 0 16px; font-size: 0.72rem; }
.ui-toggle { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 0; border-top: 1px solid #edf0f2; color: #626d78; font-size: 0.53rem; }
.ui-toggle i { width: 22px; height: 12px; border-radius: 8px; background: #d7dde2; }
.ui-toggle.on i { position: relative; background: #caeee7; }
.ui-toggle.on i::after { content: ""; position: absolute; top: 2px; right: 2px; width: 8px; height: 8px; border-radius: 50%; background: #149984; }

.ui-resource-tree { display: grid; gap: 5px; }
.ui-resource-tree span { display: grid; grid-template-columns: 20px minmax(0, 1fr) auto; align-items: center; gap: 9px; padding: 9px 10px; border-radius: 4px; color: #66717c; background: #eef1f3; font-size: 0.53rem; }
.ui-resource-tree span i { color: #a0a9b1; font-style: normal; }
.ui-resource-tree span b { color: #88939e; font-size: 0.48rem; }
.ui-resource-tree span.active { color: #ffffff; background: #ff7815; }
.ui-resource-tree span.active b,
.ui-resource-tree span.active i { color: #ffffff; }

.ui-scene-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 38px;
    padding: 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: #768290;
    background: #151a1f;
    font-size: 0.48rem;
}

.ui-scene-footer span::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 7px; border-radius: 50%; background: #36c8b2; }

.ui-dashboard-body {
    padding: 22px;
    color: #293039;
    background: #f7f8fa;
}

.ui-kpi-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
.ui-kpi-row article { min-width: 0; padding: 14px; border: 1px solid #e2e6e9; border-radius: 5px; background: #ffffff; }
.ui-kpi-row small,
.ui-kpi-row strong,
.ui-kpi-row span { display: block; }
.ui-kpi-row small { color: #8c96a0; font-size: 0.48rem; }
.ui-kpi-row strong { margin-top: 12px; font-size: 1rem; }
.ui-kpi-row span { margin-top: 6px; color: #179985; font-size: 0.48rem; }

.ui-dashboard-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 9px; margin-top: 9px; }
.ui-chart-panel,
.ui-list-panel { min-width: 0; padding: 16px; border: 1px solid #e2e6e9; border-radius: 5px; background: #ffffff; }
.ui-chart-panel > header,
.ui-list-panel > header { display: flex; justify-content: space-between; gap: 12px; color: #313840; font-size: 0.56rem; font-weight: 800; }
.ui-bars { display: flex; align-items: flex-end; gap: 9px; height: 120px; margin-top: 14px; border-bottom: 1px solid #dde2e6; }
.ui-bars i { flex: 1; min-width: 0; height: var(--h); border-radius: 3px 3px 0 0; background: #dfe4e8; }
.ui-bars i.hot { background: #ff7815; }
.ui-list-panel div { display: grid; gap: 7px; margin-top: 14px; }
.ui-list-panel span { display: flex; justify-content: space-between; gap: 10px; padding: 9px; border-radius: 4px; background: #f0f2f4; font-size: 0.5rem; }
.ui-list-panel span b { color: #ff7815; }

.ui-calendar-body { display: grid; grid-template-columns: 126px minmax(0, 1fr); min-height: 310px; background: #f7f8fa; }
.ui-calendar-list { padding: 18px 12px; border-right: 1px solid #e1e5e8; background: #eef1f3; }
.ui-calendar-list small { display: block; margin: 0 7px 10px; color: #8a949e; font-size: 0.48rem; font-weight: 800; }
.ui-calendar-list span { display: block; padding: 10px; border-radius: 4px; color: #6f7a85; font-size: 0.53rem; }
.ui-calendar-list span.active { color: #ffffff; background: #ff7815; }
.ui-calendar-main { min-width: 0; padding: 18px; }
.ui-calendar-main > header { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.ui-calendar-main > header strong { font-size: 0.68rem; }
.ui-calendar-main > header b { color: #ff7815; font-size: 0.52rem; }
.ui-calendar-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin-top: 18px; border: 1px solid #e0e4e7; border-radius: 5px; overflow: hidden; }
.ui-calendar-grid span { min-width: 0; min-height: 190px; padding: 12px 8px; border-right: 1px solid #e3e7ea; background: #ffffff; }
.ui-calendar-grid span:last-child { border-right: 0; }
.ui-calendar-grid small,
.ui-calendar-grid b,
.ui-calendar-grid i { display: block; }
.ui-calendar-grid small { color: #8a949e; font-size: 0.46rem; }
.ui-calendar-grid b { margin-top: 8px; color: #2c333a; font-size: 0.58rem; }
.ui-calendar-grid i { height: 4px; margin-top: 75px; border-radius: 2px; background: #ff9e59; }

.ui-flow-body { padding: 26px; color: #283039; background: #f7f8fa; }
.ui-flow-track { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.ui-flow-track article { position: relative; min-width: 0; padding: 16px; border: 1px solid #e1e5e8; border-radius: 5px; background: #ffffff; }
.ui-flow-track article:not(:last-child)::after { content: "→"; position: absolute; top: 50%; right: -18px; color: #ff7815; transform: translateY(-50%); }
.ui-flow-track small,
.ui-flow-track strong,
.ui-flow-track span { display: block; }
.ui-flow-track small { color: #ff7815; font-size: 0.48rem; font-weight: 800; }
.ui-flow-track strong { margin-top: 15px; font-size: 0.65rem; }
.ui-flow-track span { margin-top: 6px; color: #8a949e; font-size: 0.49rem; }
.ui-condition-table { margin-top: 20px; overflow: hidden; border: 1px solid #e1e5e8; border-radius: 5px; background: #ffffff; }
.ui-condition-table div { display: grid; grid-template-columns: 1fr 0.7fr 1fr auto; gap: 10px; padding: 11px 13px; border-bottom: 1px solid #e8ebed; font-size: 0.51rem; }
.ui-condition-table div:last-child { border-bottom: 0; }
.ui-condition-table div.head { color: #89949f; background: #f0f2f4; font-weight: 800; }
.ui-condition-table b { color: #149984; }

.ui-module-body { padding: 22px; color: #293039; background: #f7f8fa; }
.ui-module-summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.ui-module-summary span { padding: 13px; border: 1px solid #e1e5e8; border-radius: 5px; background: #ffffff; }
.ui-module-summary small,
.ui-module-summary strong { display: block; }
.ui-module-summary small { color: #8b96a0; font-size: 0.46rem; }
.ui-module-summary strong { margin-top: 9px; font-size: 0.75rem; }
.ui-module-table { margin-top: 14px; overflow: hidden; border: 1px solid #e0e4e7; border-radius: 5px; background: #ffffff; }
.ui-module-table div { display: grid; grid-template-columns: 1.2fr 1fr 0.5fr auto; gap: 10px; padding: 11px 13px; border-bottom: 1px solid #e7eaed; font-size: 0.51rem; }
.ui-module-table div:last-child { border-bottom: 0; }
.ui-module-table div.head { color: #87929d; background: #f0f2f4; font-weight: 800; }
.ui-module-table b { color: #139783; }

.ui-language-body { padding: 22px; color: #293039; background: #f7f8fa; }
.ui-language-tabs { display: flex; gap: 6px; }
.ui-language-tabs span { padding: 8px 10px; border-radius: 4px; color: #78838e; background: #e9edef; font-size: 0.5rem; }
.ui-language-tabs span.active { color: #ffffff; background: #ff7815; }
.ui-language-table { margin-top: 15px; overflow: hidden; border: 1px solid #e0e4e7; border-radius: 5px; background: #ffffff; }
.ui-language-table div { display: grid; grid-template-columns: 1fr 1fr 0.35fr; gap: 10px; padding: 10px 12px; border-bottom: 1px solid #e6eaed; font-size: 0.51rem; }
.ui-language-table div:last-child { border-bottom: 0; }
.ui-language-table div.head { color: #87929d; background: #f0f2f4; font-weight: 800; }
.ui-language-table b { color: #149984; }

.ui-login-body { display: grid; grid-template-columns: 0.82fr 1.18fr; min-height: 365px; color: #293039; background: #f7f8fa; }
.ui-login-panel { padding: 30px; background: #ffffff; }
.ui-login-panel > small { color: #ff7815; font-size: 0.5rem; font-weight: 800; }
.ui-login-panel > strong { display: block; margin: 12px 0 22px; font-size: 1.15rem; }
.ui-field { margin-top: 10px; padding: 11px 12px; border: 1px solid #dce1e5; border-radius: 5px; color: #838d97; font-size: 0.55rem; }
.ui-login-button { margin-top: 14px; padding: 12px; border-radius: 5px; color: #ffffff; background: #ff7815; font-size: 0.57rem; font-weight: 800; text-align: center; }
.ui-login-context { display: flex; flex-direction: column; justify-content: center; padding: 34px; background: #eef1f3; }
.ui-login-context > small { color: #8a949e; font-size: 0.5rem; }
.ui-login-context > strong { max-width: 360px; margin-top: 12px; font-size: 1.4rem; line-height: 1.2; }
.ui-login-context > div { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; margin-top: 24px; }
.ui-login-context span { padding: 10px; border-radius: 4px; background: #ffffff; font-size: 0.5rem; font-weight: 700; }

.ui-health-body { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 12px; padding: 22px; color: #293039; background: #f7f8fa; }
.ui-health-score { display: grid; place-items: center; min-height: 240px; border: 1px solid #e1e5e8; border-radius: 5px; background: #ffffff; text-align: center; }
.ui-health-score i { display: grid; width: 86px; height: 86px; place-items: center; border: 8px solid #d4f0eb; border-top-color: #1aa48f; border-radius: 50%; color: #159783; font-size: 1.1rem; font-style: normal; font-weight: 800; }
.ui-health-score strong,
.ui-health-score small { display: block; }
.ui-health-score strong { margin-top: 14px; font-size: 0.7rem; }
.ui-health-score small { margin-top: 6px; color: #8a949e; font-size: 0.5rem; }
.ui-event-list { display: grid; align-content: start; gap: 7px; }
.ui-event-list span { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 10px; padding: 12px; border-radius: 5px; background: #ffffff; font-size: 0.5rem; }
.ui-event-list i { width: 6px; height: 6px; margin-top: 3px; border-radius: 50%; background: #34c6ae; }
.ui-event-list b { color: #159783; }

.scene-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 16px;
    color: #8b95a0;
    background: #151a1f;
    font-size: 0.57rem;
    font-weight: 700;
}
.scene-caption strong { color: #ffffff; }

.product-gallery .ui-scene { display: flex; flex-direction: column; height: 100%; min-height: 0; border: 0; border-radius: 0; box-shadow: none; }
.product-gallery .ui-dashboard-body,
.product-gallery .ui-scene-body,
.product-gallery .ui-flow-body,
.product-gallery .ui-module-body,
.product-gallery .ui-language-body { flex: 1; }
.product-gallery .ui-dashboard-body { display: flex; flex-direction: column; }
.product-gallery .ui-dashboard-grid { flex: 1; }
.product-gallery .ui-chart-panel,
.product-gallery .ui-list-panel { display: flex; flex-direction: column; }
.product-gallery .ui-bars { flex: 1; height: auto; min-height: 120px; }
.gallery-panel .ui-scene { width: 100%; height: 100%; }
.gallery-panel .scene-caption { position: absolute; right: 16px; bottom: 16px; left: 16px; z-index: 2; border-radius: 5px; background: rgba(21, 26, 31, 0.96); }
.entry-proof > .ui-scene { min-height: 430px; border: 0; border-radius: 0; box-shadow: none; }
.solution-detail-media > .ui-scene { border: 0; border-radius: 5px 5px 0 0; box-shadow: none; }
.solution-media-stack .ui-scene { min-height: 310px; border: 0; border-radius: 5px 5px 0 0; box-shadow: none; }
.governance-proof-grid .ui-scene,
.assurance-proof .ui-scene,
.evidence-triptych .ui-scene { min-height: 340px; border: 0; border-radius: 0; box-shadow: none; }
.evidence-triptych { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; background: transparent; }
.evidence-triptych figure:first-child { grid-row: auto; }
.evidence-triptych .ui-scene { height: auto; }

@media (max-width: 1120px) {
    .concept-command-layout { grid-template-columns: 230px minmax(0, 1fr); }
    .concept-command-rail { padding-inline: 26px; }
    .ui-scene-body { grid-template-columns: 105px minmax(0, 1fr) 135px; }
    .ui-workspace { padding: 18px; }
    .proof-heading { gap: 44px; }
    .proof-stage { aspect-ratio: 16 / 9.6; }
    .proof-panel { grid-template-columns: minmax(0, 1fr) 280px; }
    .proof-timeline { grid-template-columns: repeat(3, 1fr); }
    .proof-timeline button:nth-child(3) { border-right: 0; }
    .proof-timeline button:nth-child(-n+3) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .subpage-hero-grid { gap: 52px; }
    .subpage-hero h1 { font-size: 3.75rem; }
    .content-heading { gap: 48px; }
    .solution-detail-grid { gap: 52px; }
    .solution-detail-copy h2 { font-size: 2.7rem; }
    .engagement-flow { grid-template-columns: repeat(2, 1fr); }
    .gallery-tabs { grid-template-columns: repeat(3, 1fr); }
    .gallery-tabs button:nth-child(3) { border-right: 0; }
    .gallery-tabs button:nth-child(-n+3) { border-bottom: 1px solid rgba(255, 255, 255, 0.09); }
}

@media (max-width: 880px) {
    .concept-command-layout { grid-template-columns: 1fr; }
    .concept-command-rail { min-height: 290px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
    .concept-command-workspace { min-height: 460px; }
    .concept-surface-grid { grid-template-columns: 1fr; }
    .ui-scene-body { grid-template-columns: 110px minmax(0, 1fr); }
    .ui-inspector { display: none; }
    .ui-dashboard-grid { grid-template-columns: 1fr; }
    .ui-calendar-body { grid-template-columns: 105px minmax(0, 1fr); }
    .ui-flow-body { padding: 20px; }
    .subpage-visual .ui-scene { transform: none; }
    .proof-heading,
    .subpage-hero-grid,
    .content-heading,
    .subpage-cta .page-frame {
        grid-template-columns: 1fr;
    }
    .subpage-cta .page-frame { min-height: 0; padding: 72px 0; gap: 42px; }
    .cta-action { padding: 34px 0 0; gap: 34px; border-top: 1px solid rgba(255, 255, 255, 0.1); border-left: 0; }

    .proof-heading-actions { justify-content: flex-start; }
    .proof-stage { aspect-ratio: auto; min-height: 720px; }
    .proof-panel { grid-template-columns: 1fr; grid-template-rows: minmax(360px, 1fr) auto; }
    .proof-capture { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .proof-panel figcaption { min-height: 210px; padding: 30px; }
    .proof-panel figcaption span { margin-bottom: 36px; }
    .proof-timeline { grid-template-columns: repeat(2, 1fr); }
    .proof-timeline button:nth-child(3) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
    .proof-timeline button:nth-child(even) { border-right: 0; }
    .proof-timeline button:nth-child(-n+4) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .proof-disclosure { align-items: flex-start; flex-direction: column; }
    .proof-atlas { grid-template-columns: 1fr; }
    .atlas-card:nth-child(n) { grid-column: auto; }
    .subpage-hero { padding-top: 140px; }
    .subpage-visual { max-width: 680px; }
    .visual-note { right: 18px; }
    .page-intro-band .page-frame { grid-template-columns: repeat(2, 1fr); }
    .intro-stat:nth-child(2) { border-right: 0; }
    .intro-stat:nth-child(-n+2) { padding-bottom: 22px; border-bottom: 1px solid rgba(27, 32, 38, 0.08); }
    .intro-stat:nth-child(n+3) { padding-top: 22px; }
    .intro-stat:nth-child(3) { padding-left: 0; }
    .feature-row { grid-template-columns: 48px minmax(190px, 0.7fr) minmax(0, 1.3fr); }
    .feature-row b { display: none; }
    .status-board { overflow-x: auto; }
    .status-board-head,
    .status-row { min-width: 880px; }
    .solution-index { grid-template-columns: 1fr; }
    .solution-entry:nth-child(3) { grid-column: auto; }
    .dark-grid { grid-template-columns: 1fr; }
    .governance-proof-grid,
    .assurance-proof { grid-template-columns: 1fr; }
    .dark-cell.large { grid-row: auto; min-height: 320px; }
    .dark-cell.large h3 { margin-top: 90px; }
    .solution-detail-grid,
    .solution-detail-grid.reverse { grid-template-columns: 1fr; }
    .solution-detail-grid.reverse .solution-detail-copy,
    .solution-detail-grid.reverse .solution-detail-media { order: initial; }
    .solution-detail-media { max-width: 760px; }
    .solution-media-stack { max-width: 760px; }
    .entry-proof { grid-template-columns: 1fr; }
    .entry-proof figure img { min-height: 0; aspect-ratio: 16 / 8.4; }
    .data-boundary { grid-template-columns: 1fr; }
    .data-boundary > i { min-height: 70px; }
    .company-monogram { max-width: 680px; }
    .evidence-triptych { grid-template-columns: 1fr; }
    .evidence-triptych figure:first-child { grid-row: auto; }
    .evidence-triptych figure:first-child img { height: auto; aspect-ratio: 16 / 9; }
}

@media (max-width: 720px) {
    .concept-command,
    .ui-scene { border-width: 4px; }
    .concept-command-bar,
    .ui-scene-bar { min-height: 60px; padding: 0 14px; }
    .concept-command-bar > b,
    .ui-scene-bar > b { font-size: 0; }
    .concept-command-bar > b i,
    .ui-scene-bar > b i { margin: 0; }
    .concept-command-rail { min-height: 260px; padding: 30px 22px; }
    .concept-command-rail > strong { font-size: 1.55rem; }
    .concept-command-workspace { min-height: 560px; padding: 20px 14px; }
    .concept-workspace-head { align-items: flex-start; flex-direction: column; }
    .concept-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .concept-metrics article:nth-child(2) { border-right: 0; }
    .concept-metrics article:nth-child(-n+2) { border-bottom: 1px solid #e6e9ec; }
    .concept-system-grid { grid-template-columns: 1fr; }
    .concept-health-strip { align-items: flex-start; flex-direction: column; }
    .concept-surface { min-height: 470px; }
    .concept-surface-copy { padding: 25px 22px 20px; }
    .concept-surface-copy h3 { font-size: 1.2rem; }
    .mini-data-layout { grid-template-columns: 78px minmax(0, 1fr); }
    .mini-resource-row { grid-template-columns: minmax(0, 1fr) 50px; }
    .mini-resource-row i { display: none; }
    .mini-flow { grid-template-columns: 1fr; gap: 7px; }
    .mini-flow em { display: none; }
    .mini-condition { grid-template-columns: 1fr auto; }
    .mini-condition small { grid-column: 1 / -1; }
    .mini-week { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mini-week > span:nth-child(2) { border-right: 0; }
    .mini-week > span:nth-child(-n+2) { border-bottom: 1px solid #e4e7ea; }
    .ui-scene { min-height: 350px; }
    .ui-scene-body { grid-template-columns: 78px minmax(0, 1fr); min-height: 310px; }
    .ui-rail { padding-inline: 7px; }
    .ui-rail span { overflow: hidden; padding-inline: 7px; text-overflow: ellipsis; white-space: nowrap; }
    .ui-workspace { padding: 14px 10px; }
    .ui-workspace > h3 { font-size: 1rem; }
    .ui-resource-tree span { grid-template-columns: 16px minmax(0, 1fr); }
    .ui-resource-tree span b { display: none; }
    .ui-scene-footer { display: none; }
    .ui-kpi-row { grid-template-columns: 1fr; }
    .ui-kpi-row article:nth-child(n+3) { display: none; }
    .ui-bars { height: 82px; }
    .ui-calendar-body { grid-template-columns: 78px minmax(0, 1fr); min-height: 300px; }
    .ui-calendar-list { padding-inline: 7px; }
    .ui-calendar-list span { overflow: hidden; padding-inline: 7px; text-overflow: ellipsis; white-space: nowrap; }
    .ui-calendar-main { padding: 14px 10px; }
    .ui-calendar-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .ui-calendar-grid span:nth-child(n+4) { display: none; }
    .ui-calendar-grid span:nth-child(3) { border-right: 0; }
    .ui-flow-track { grid-template-columns: 1fr; gap: 7px; }
    .ui-flow-track article:not(:last-child)::after { display: none; }
    .ui-condition-table div { grid-template-columns: 1fr 0.8fr auto; }
    .ui-condition-table div > :nth-child(3) { display: none; }
    .ui-module-summary { grid-template-columns: repeat(2, 1fr); }
    .ui-module-table div { grid-template-columns: 1fr auto; }
    .ui-module-table div > :nth-child(2),
    .ui-module-table div > :nth-child(3) { display: none; }
    .ui-login-body { grid-template-columns: 1fr; }
    .ui-login-context { display: none; }
    .ui-health-body { grid-template-columns: 1fr; }
    .ui-health-score { min-height: 150px; }
    .scene-caption { align-items: flex-start; flex-direction: column; gap: 5px; }
    .product-proof { padding: 80px 0; }
    .proof-heading { gap: 28px; margin-bottom: 32px; }
    .proof-heading-actions { align-items: flex-start; flex-direction: column; }
    .proof-film-bar { align-items: flex-start; min-height: 112px; flex-direction: column; padding-block: 16px; }
    .proof-stage { min-height: 600px; }
    .proof-panel { grid-template-rows: 330px auto; }
    .proof-capture img { object-position: 46% center; }
    .crop-operations img { object-position: 24% center; }
    .crop-permission img { object-position: 48% 4%; }
    .crop-crm img { object-position: 38% center; }
    .proof-panel figcaption { min-height: 255px; }
    .proof-panel figcaption strong { font-size: 1.35rem; }
    .proof-timeline button { grid-template-columns: 22px 1fr; min-height: 76px; padding: 14px 12px 18px; }
    .proof-timeline button strong { font-size: 0.7rem; }
    .proof-disclosure p { line-height: 1.6; }
    .atlas-wide .atlas-image,
    .atlas-compact .atlas-image { aspect-ratio: 16 / 8.5; }
    .atlas-card figcaption { grid-template-columns: 1fr; min-height: 0; padding: 20px; }
    .atlas-card figcaption span { grid-column: 1; }
    .subpage-hero { padding: 128px 0 72px; }
    .breadcrumb { margin-bottom: 26px; }
    .subpage-hero h1 { font-size: 2.65rem; }
    .subpage-hero-copy > p { font-size: 0.92rem; }
    .subpage-visual { margin-top: 10px; }
    .visual-note { position: static; width: auto; margin: 10px 0 0; }
    .page-intro-band .page-frame { grid-template-columns: 1fr; }
    .intro-stat,
    .intro-stat:first-child,
    .intro-stat:nth-child(3) { padding: 17px 0; border-right: 0; border-bottom: 1px solid rgba(27, 32, 38, 0.08); }
    .intro-stat:last-child { border-bottom: 0; }
    .content-section,
    .page-dark-band { padding: 78px 0; }
    .content-heading { gap: 24px; margin-bottom: 36px; }
    .content-heading h2 { font-size: 2.3rem; }
    .feature-row { grid-template-columns: 38px 1fr; gap: 14px; padding: 26px 0; }
    .feature-row p { grid-column: 2; }
    .dark-cell { min-height: 240px; padding: 26px; }
    .dark-cell.large { min-height: 300px; }
    .dark-cell h3,
    .dark-cell.large h3 { margin-top: 72px; font-size: 1.7rem; }
    .solution-entry { min-height: 300px; padding: 28px; }
    .solution-entry h3 { margin-top: 66px; font-size: 1.65rem; }
    .principle-row { grid-template-columns: 42px 1fr; gap: 16px; }
    .principle-row p { grid-column: 2; }
    .release-entry { grid-template-columns: 1fr; gap: 10px; padding-left: 30px; }
    .doc-cover { padding: 34px 24px; }
    .doc-cover-header { align-items: flex-start; flex-direction: column; }
    .doc-cover h1 { margin-top: 44px; font-size: 2.6rem; }
    .doc-meta { grid-template-columns: 1fr; }
    .subpage-cta { padding: 0; }
    .subpage-cta .page-frame { padding: 66px 0; }
    .subpage-cta h2 { font-size: 2.25rem; }
    .cta-meta { display: grid; grid-template-columns: 1fr; }
    .cta-meta span { min-height: 38px; padding-top: 13px; margin-right: 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .cta-meta span:last-child { border-bottom: 0; }
    .subpage-cta .primary-button { width: 100%; }
    .gallery-tabs { grid-template-columns: repeat(2, 1fr); }
    .gallery-tabs button { border-right: 1px solid rgba(255, 255, 255, 0.09); border-bottom: 1px solid rgba(255, 255, 255, 0.09); }
    .gallery-tabs button:nth-child(3) { border-right: 1px solid rgba(255, 255, 255, 0.09); }
    .gallery-tabs button:nth-child(even) { border-right: 0; }
    .gallery-tabs button:nth-last-child(-n+2) { border-bottom: 0; }
    .gallery-stage { aspect-ratio: 4 / 5; }
    .gallery-panel img { object-position: 45% top; }
    .gallery-panel figcaption { right: 12px; bottom: 12px; left: 12px; min-width: 0; }
    .gallery-panel.contain img { padding: 52px 18px 74px; }
    .entry-proof-copy { padding: 30px 24px; }
    .entry-proof-copy h3 { font-size: 1.65rem; }
    .solution-detail-copy h2 { font-size: 2.3rem; }
    .solution-capabilities { grid-template-columns: 1fr; }
    .solution-detail-media img,
    .solution-detail-media.portrait img { aspect-ratio: 4 / 3; object-position: center top; }
    .solution-media-stack { grid-template-columns: 1fr; }
    .solution-media-stack figure:first-child,
    .solution-media-stack figure:first-child:hover { transform: none; }
    .data-boundary article { min-height: 270px; padding: 28px; }
    .data-boundary article h3 { margin-top: 70px; font-size: 1.65rem; }
    .company-monogram { min-height: 390px; padding: 24px; }
    .company-monogram > strong { right: -20px; bottom: -85px; font-size: 22rem; }
    .company-monogram p { right: 24px; bottom: 28px; left: 24px; font-size: 1.35rem; }
    .engagement-flow { grid-template-columns: 1fr; }
    .engagement-flow article { min-height: 250px; }
    .release-signal { min-height: 320px; padding: 30px; }
}

@media (prefers-reduced-motion: reduce) {
    .proof-panel,
    .proof-capture img,
    .proof-timeline button i {
        animation: none !important;
        transition: none !important;
    }
}

@media print {
    .site-header,
    .mobile-menu,
    .scroll-progress,
    .subpage-cta,
    .subpage-footer,
    .print-hidden { display: none !important; }
    body.site-page { background: #ffffff; }
    .subpage-hero { padding: 24px 0; }
    .doc-cover { max-width: none; padding: 0; border: 0; box-shadow: none; }
}

/* Enterprise module atlas */
.module-universe-section {
    position: relative;
    overflow: hidden;
    padding: 118px 0;
    background: #eef1f3;
}

.module-universe-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(19, 24, 29, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(19, 24, 29, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

.module-universe-section .page-frame {
    position: relative;
}

.module-universe-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 38px;
}

.module-universe-heading .section-heading {
    margin: 0;
}

.module-universe-heading .section-heading h2 {
    max-width: 820px;
}

.module-universe-heading .section-heading p {
    max-width: 810px;
}

.module-universe-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(24, 29, 34, 0.14);
    border-bottom: 1px solid rgba(24, 29, 34, 0.14);
}

.module-universe-stats div {
    min-width: 0;
    padding: 21px 18px;
    border-right: 1px solid rgba(24, 29, 34, 0.1);
}

.module-universe-stats div:last-child {
    border-right: 0;
}

.module-universe-stats strong,
.module-universe-stats span {
    display: block;
}

.module-universe-stats strong {
    color: #171b20;
    font-size: 2rem;
    line-height: 1;
}

.module-universe-stats span {
    margin-top: 8px;
    color: #69727d;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.45;
}

.module-contract-line {
    display: flex;
    align-items: center;
    gap: 0;
    min-height: 58px;
    overflow: hidden;
    border: 1px solid #252b31;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    color: #c8ced5;
    background: #15191e;
}

.module-contract-line span,
.module-contract-line b {
    display: inline-flex;
    align-items: center;
    min-height: 58px;
    padding: 0 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.68rem;
    white-space: nowrap;
}

.module-contract-line span {
    color: #ff8a34;
    font-weight: 800;
    text-transform: uppercase;
}

.module-contract-line b {
    font-weight: 650;
}

.module-explorer {
    overflow: hidden;
    border: 1px solid #252b31;
    border-radius: 8px;
    color: #f6f7f8;
    background: #12161a;
    box-shadow: 0 34px 90px rgba(18, 22, 26, 0.19), inset 0 1px rgba(255, 255, 255, 0.04);
}

.module-contract-line + .module-explorer {
    border-radius: 0 0 8px 8px;
}

.module-explorer-toolbar {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(210px, 0.55fr) minmax(185px, auto);
    align-items: end;
    gap: 12px;
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    background: #191e23;
}

.module-search,
.module-filter {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.module-search > span,
.module-filter > span {
    color: #8e98a3;
    font-size: 0.61rem;
    font-weight: 800;
    text-transform: uppercase;
}

.module-search input,
.module-filter select {
    width: 100%;
    height: 42px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 5px;
    outline: 0;
    color: #eef1f3;
    background: #101419;
    font-size: 0.74rem;
    transition: border-color 220ms ease, background 220ms ease;
}

.module-search input:focus,
.module-filter select:focus {
    border-color: #ff7a18;
    background: #151a1f;
}

.module-search input::placeholder {
    color: #6f7882;
}

.module-filter select {
    color-scheme: dark;
}

.module-count {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    min-height: 42px;
    padding: 0 4px 1px 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.module-count strong {
    grid-row: 1 / 3;
    margin-right: 10px;
    color: #ff7a18;
    font-size: 2rem;
    line-height: 1;
}

.module-count span {
    color: #f2f4f6;
    font-size: 0.7rem;
    font-weight: 750;
}

.module-count small {
    color: #7f8994;
    font-size: 0.59rem;
}

.module-explorer-layout {
    display: grid;
    grid-template-columns: minmax(380px, 0.78fr) minmax(0, 1.22fr);
    height: 760px;
}

.module-index-pane,
.module-detail-pane {
    min-width: 0;
    overflow: auto;
    scrollbar-color: #394047 transparent;
    scrollbar-width: thin;
}

.module-index-pane {
    padding: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    background: #151a1f;
}

.module-index-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 34px;
    margin-bottom: 13px;
}

.module-index-head span {
    color: #f4f6f7;
    font-size: 0.75rem;
    font-weight: 800;
}

.module-index-head b {
    color: #7e8994;
    font-size: 0.62rem;
}

.module-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

.module-node {
    position: relative;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    grid-template-rows: 18px minmax(32px, auto) 17px;
    align-items: center;
    min-width: 0;
    min-height: 104px;
    padding: 12px 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    color: #c4cbd2;
    text-align: left;
    background: #1b2026;
    cursor: pointer;
    transition: color 220ms ease, border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.module-node:hover {
    border-color: rgba(255, 122, 24, 0.55);
    color: #ffffff;
    background: #20262c;
    transform: translateY(-2px);
}

.module-node.active {
    border-color: #ff7a18;
    color: #ffffff;
    background: #ff7411;
    box-shadow: 0 10px 24px rgba(255, 116, 17, 0.22);
}

.module-node-icon {
    grid-row: 1 / 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border: 1px solid rgba(255, 122, 24, 0.28);
    border-radius: 4px;
    background: rgba(255, 122, 24, 0.09);
}

.module-node-icon img {
    width: 17px;
    height: 17px;
}

.module-node.active .module-node-icon {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.15);
}

.module-node.active .module-node-icon img {
    filter: brightness(0) invert(1);
}

.module-node > b {
    align-self: start;
    color: #78828d;
    font-size: 0.54rem;
    font-weight: 800;
}

.module-node.active > b {
    color: rgba(255, 255, 255, 0.75);
}

.module-node > strong {
    min-width: 0;
    color: inherit;
    font-size: 0.68rem;
    font-weight: 750;
    line-height: 1.35;
}

.module-node > small {
    grid-column: 1 / 3;
    align-self: end;
    color: #77828d;
    font-size: 0.55rem;
}

.module-node.active > small {
    color: rgba(255, 255, 255, 0.72);
}

.module-empty {
    padding: 72px 20px;
    color: #87919c;
    text-align: center;
}

.module-empty strong,
.module-empty span {
    display: block;
}

.module-empty strong {
    color: #ffffff;
    font-size: 0.9rem;
}

.module-empty span {
    margin-top: 8px;
    font-size: 0.68rem;
}

.module-detail-pane {
    padding: 30px 32px 0;
    color: #24292f;
    background: #fbfbfc;
}

.module-detail-head,
.module-detail-identity {
    display: flex;
    align-items: center;
}

.module-detail-head {
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 23px;
    border-bottom: 1px solid #e1e4e7;
}

.module-detail-identity {
    gap: 13px;
    min-width: 0;
}

.module-detail-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #ffd5b6;
    border-radius: 6px;
    background: #fff0e5;
}

.module-detail-icon img {
    width: 23px;
    height: 23px;
}

.module-detail-identity small {
    color: #7b8490;
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
}

.module-detail-identity h3 {
    margin: 4px 0 0;
    color: #1b1f24;
    font-size: 1.55rem;
    line-height: 1.16;
}

.module-detail-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border: 1px solid #bfe4df;
    border-radius: 4px;
    color: #0d746c;
    background: #edf9f7;
    font-size: 0.58rem;
    font-weight: 750;
    white-space: nowrap;
}

.module-detail-status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #11a094;
    box-shadow: 0 0 0 4px rgba(17, 160, 148, 0.1);
}

.module-detail-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 138px;
    gap: 28px;
    padding: 28px 0;
}

.module-detail-intro > div > span,
.module-detail-facts span,
.module-detail-pane .module-flow > span,
.module-capability-head span {
    display: block;
    color: #ff7411;
    font-size: 0.59rem;
    font-weight: 850;
    text-transform: uppercase;
}

.module-detail-intro p,
.module-detail-facts p {
    margin: 9px 0 0;
    color: #4e5761;
    font-size: 0.76rem;
    line-height: 1.75;
}

.module-detail-intro aside {
    display: grid;
    align-content: center;
    padding: 17px;
    border-left: 2px solid #ff7a18;
    background: #f1f3f5;
}

.module-detail-intro aside small,
.module-detail-intro aside span {
    color: #7d8791;
    font-size: 0.54rem;
    font-weight: 750;
}

.module-detail-intro aside strong {
    margin: 6px 0;
    color: #1e2328;
    font-size: 1.05rem;
}

.module-detail-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #e1e4e7;
    border-bottom: 1px solid #e1e4e7;
}

.module-detail-facts section {
    padding: 22px 22px 22px 0;
}

.module-detail-facts section + section {
    padding-left: 22px;
    border-left: 1px solid #e1e4e7;
}

.module-detail-pane .module-flow {
    display: grid;
    grid-template-columns: 135px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid #e1e4e7;
}

.module-detail-pane .module-flow strong {
    color: #262c32;
    font-size: 0.71rem;
    line-height: 1.6;
}

.module-capability-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    padding: 24px 0 14px;
}

.module-capability-head strong {
    display: block;
    margin-top: 5px;
    color: #22272d;
    font-size: 0.83rem;
}

.module-capability-head small {
    max-width: 210px;
    color: #828b95;
    font-size: 0.56rem;
    line-height: 1.5;
    text-align: right;
}

.module-capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    padding: 1px;
    list-style: none;
    background: #e0e4e7;
}

.module-capability-grid li {
    display: grid;
    grid-template-columns: 27px minmax(0, 1fr);
    align-items: center;
    min-height: 43px;
    padding: 8px 11px;
    color: #4c555e;
    background: #ffffff;
    font-size: 0.65rem;
    line-height: 1.45;
}

.module-capability-grid li span {
    color: #b1b7bd;
    font-size: 0.51rem;
    font-weight: 800;
}

.module-platform-contract {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 26px -32px 0;
    padding: 16px 32px;
    border-top: 1px solid #e1e4e7;
    color: #626c76;
    background: #f1f3f4;
}

.module-platform-contract span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.56rem;
    font-weight: 750;
}

.module-platform-contract i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0e8a80;
}

.module-catalog-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 22px;
    padding: 24px 0 0;
    border-top: 1px solid rgba(24, 29, 34, 0.13);
}

.module-catalog-cta div span,
.module-catalog-cta div strong {
    display: block;
}

.module-catalog-cta div span {
    color: #ff7411;
    font-size: 0.61rem;
    font-weight: 850;
    text-transform: uppercase;
}

.module-catalog-cta div strong {
    max-width: 620px;
    margin-top: 6px;
    color: #24292f;
    font-size: 0.88rem;
    line-height: 1.55;
}

@media (max-width: 1120px) {
    .module-universe-heading { grid-template-columns: 1fr; gap: 34px; }
    .module-universe-stats { max-width: 620px; }
    .module-contract-line { overflow-x: auto; }
    .module-explorer-layout { grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr); }
    .module-icon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 880px) {
    .module-universe-section { padding: 86px 0; }
    .module-explorer-toolbar { grid-template-columns: 1fr 1fr; }
    .module-count { grid-column: 1 / 3; border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.09); padding: 13px 0 0; }
    .module-explorer-layout { grid-template-columns: 1fr; height: auto; }
    .module-index-pane { max-height: 620px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.09); }
    .module-icon-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .module-detail-pane { max-height: none; overflow: visible; }
    body[data-page="solutions"] .solution-index { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .module-universe-heading { gap: 26px; }
    .module-universe-stats { grid-template-columns: 1fr; }
    .module-universe-stats div { padding: 15px 0; border-right: 0; border-bottom: 1px solid rgba(24, 29, 34, 0.1); }
    .module-universe-stats div:last-child { border-bottom: 0; }
    .module-contract-line { display: none; }
    .module-explorer,
    .module-contract-line + .module-explorer { border-radius: 7px; }
    .module-explorer-toolbar { grid-template-columns: 1fr; }
    .module-count { grid-column: auto; }
    .module-icon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .module-node { min-height: 98px; }
    .module-detail-pane { padding: 24px 18px 0; }
    .module-detail-head { align-items: flex-start; flex-direction: column; }
    .module-detail-status { white-space: normal; }
    .module-detail-intro { grid-template-columns: 1fr; gap: 16px; }
    .module-detail-intro aside { border-top: 2px solid #ff7a18; border-left: 0; }
    .module-detail-facts { grid-template-columns: 1fr; }
    .module-detail-facts section { padding: 20px 0; }
    .module-detail-facts section + section { padding-left: 0; border-top: 1px solid #e1e4e7; border-left: 0; }
    .module-detail-pane .module-flow { grid-template-columns: 1fr; gap: 7px; }
    .module-capability-head { align-items: flex-start; flex-direction: column; }
    .module-capability-head small { max-width: none; text-align: left; }
    .module-capability-grid { grid-template-columns: 1fr; }
    .module-platform-contract { margin-inline: -18px; padding-inline: 18px; }
    .module-catalog-cta { align-items: flex-start; flex-direction: column; }
}

/* Module catalog page */
.module-page-hero {
    position: relative;
    overflow: hidden;
    padding: 132px 0 82px;
    color: #f7f8f9;
    background: #101419;
}

.module-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
}

.module-page-hero::after {
    content: none;
}

.module-page-hero .page-frame {
    position: relative;
}

.module-page-hero .breadcrumb {
    color: #8f99a5;
}

.module-page-hero .breadcrumb a,
.module-page-hero .breadcrumb span {
    color: inherit;
}

.module-page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(560px, 1.25fr);
    align-items: center;
    gap: 70px;
}

.module-page-copy h1 {
    max-width: 640px;
    margin: 20px 0 24px;
    color: #ffffff;
    font-size: 4.35rem;
    line-height: 1.03;
}

.module-page-copy > p {
    max-width: 610px;
    margin: 0;
    color: #a7afb8;
    font-size: 0.9rem;
    line-height: 1.9;
}

.module-page-copy .subpage-actions {
    margin-top: 32px;
}

.module-page-copy .secondary-button {
    border-color: rgba(255, 255, 255, 0.16);
    color: #f2f4f6;
    background: rgba(255, 255, 255, 0.04);
}

.module-hero-map {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: #181d22;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.module-hero-map > header,
.module-hero-map > header > div,
.module-hero-map > header > div > span,
.module-hero-map > footer {
    display: flex;
    align-items: center;
}

.module-hero-map > header {
    justify-content: space-between;
    min-height: 68px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.module-hero-map > header > div {
    gap: 10px;
}

.module-hero-map > header img {
    width: 27px;
}

.module-hero-map > header > div > span {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
}

.module-hero-map > header strong {
    font-size: 0.68rem;
}

.module-hero-map > header small {
    color: #737f8b;
    font-size: 0.51rem;
}

.module-hero-map > header > b {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #47c7b9;
    font-size: 0.54rem;
}

.module-hero-map > header > b i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #23b7a7;
    box-shadow: 0 0 0 5px rgba(35, 183, 167, 0.1);
}

.module-domain-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.module-domain-grid > div {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    align-items: center;
    min-height: 132px;
    padding: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #151a1f;
    transition: background 240ms ease;
}

.module-domain-grid > div:nth-child(4n) {
    border-right: 0;
}

.module-domain-grid > div:nth-last-child(-n+4) {
    border-bottom: 0;
}

.module-domain-grid > div:hover {
    background: #20262c;
}

.module-domain-grid span {
    grid-row: 1 / 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 122, 24, 0.28);
    border-radius: 4px;
    background: rgba(255, 122, 24, 0.08);
}

.module-domain-grid img {
    width: 17px;
    height: 17px;
    filter: brightness(0) invert(61%) sepia(94%) saturate(2986%) hue-rotate(348deg) brightness(101%) contrast(102%);
}

.module-domain-grid strong {
    align-self: end;
    min-width: 0;
    color: #eef1f3;
    font-size: 0.64rem;
    line-height: 1.4;
}

.module-domain-grid small {
    align-self: start;
    margin-top: 5px;
    color: #737e89;
    font-size: 0.53rem;
}

.module-hero-map > footer {
    gap: 12px;
    min-height: 52px;
    padding: 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: #76818c;
    font-size: 0.51rem;
}

.module-hero-map > footer i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #58616b;
}

.module-hero-map > footer b {
    margin-left: auto;
    color: #ff8a34;
    font-size: 0.53rem;
}

.module-catalog-section {
    padding: 112px 0;
    background: #eef1f3;
}

.module-catalog-section .content-heading h2 {
    max-width: 770px;
}

.module-catalog-section .module-explorer-layout {
    height: 880px;
}

.module-contract-section .dark-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.module-contract-section .dark-cell {
    min-height: 330px;
}

.module-operating-model {
    padding: 112px 0;
    background: #ffffff;
}

.module-operating-model .page-frame {
    display: grid;
    grid-template-columns: minmax(0, 0.74fr) minmax(560px, 1.26fr);
    gap: 90px;
}

.module-model-copy h2 {
    max-width: 560px;
    margin: 17px 0 20px;
    color: #1d2228;
    font-size: 2.75rem;
    line-height: 1.12;
}

.module-model-copy p {
    max-width: 560px;
    margin: 0;
    color: #68717b;
    font-size: 0.82rem;
    line-height: 1.85;
}

.module-model-flow {
    border-top: 1px solid #dfe3e6;
}

.module-model-flow article {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid #dfe3e6;
}

.module-model-flow article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ffd2b0;
    border-radius: 4px;
    color: #ff7411;
    background: #fff4ec;
    font-size: 0.61rem;
    font-weight: 800;
}

.module-model-flow strong {
    color: #20252a;
    font-size: 0.82rem;
}

.module-model-flow p {
    margin: 6px 0 0;
    color: #737c86;
    font-size: 0.69rem;
    line-height: 1.6;
}

@media (max-width: 1120px) {
    .module-page-hero-grid { grid-template-columns: 1fr; }
    .module-page-copy h1 { font-size: 3.8rem; }
    .module-contract-section .dark-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .module-operating-model .page-frame { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 880px) {
    .module-page-hero { padding: 126px 0 70px; }
    .module-domain-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .module-domain-grid > div:nth-child(2n) { border-right: 0; }
    .module-domain-grid > div:nth-child(4n) { border-right: 0; }
    .module-domain-grid > div:nth-last-child(-n+4) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .module-domain-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
    .module-catalog-section { padding: 84px 0; }
    .module-catalog-section .module-explorer-layout { height: auto; }
}

@media (max-width: 720px) {
    .module-page-hero-grid { gap: 44px; }
    .module-page-copy h1 { font-size: 2.8rem; }
    .module-page-copy > p { font-size: 0.82rem; }
    .module-hero-map > header { align-items: flex-start; min-height: 92px; flex-direction: column; justify-content: center; gap: 10px; }
    .module-domain-grid { grid-template-columns: 1fr; }
    .module-domain-grid > div { min-height: 94px; border-right: 0; }
    .module-domain-grid > div:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .module-domain-grid > div:last-child { border-bottom: 0; }
    .module-hero-map > footer { align-items: flex-start; flex-direction: column; min-height: 112px; justify-content: center; }
    .module-hero-map > footer i { display: none; }
    .module-hero-map > footer b { margin-left: 0; }
    .module-contract-section .dark-grid { grid-template-columns: 1fr; }
    .module-operating-model { padding: 82px 0; }
    .module-model-copy h2 { font-size: 2.25rem; }
}

/* Open module directory */
.module-explorer.module-directory,
.module-contract-line + .module-explorer.module-directory {
    overflow: visible;
    border: 0;
    border-radius: 0;
    color: #24292f;
    background: transparent;
    box-shadow: none;
}

.module-directory-toolbar {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(240px, 0.55fr) 210px;
    align-items: end;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid rgba(24, 29, 34, 0.14);
    border-bottom: 1px solid rgba(24, 29, 34, 0.14);
}

.module-directory-search,
.module-directory-filter {
    display: grid;
    gap: 8px;
}

.module-directory-search span,
.module-directory-filter span {
    color: #737d87;
    font-size: 0.58rem;
    font-weight: 850;
    text-transform: uppercase;
}

.module-directory-search input,
.module-directory-filter select {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #d6dbe0;
    border-radius: 5px;
    outline: 0;
    color: #20252a;
    background: rgba(255, 255, 255, 0.84);
    font-size: 0.72rem;
    transition: border-color 220ms ease, box-shadow 220ms ease;
}

.module-directory-search input:focus,
.module-directory-filter select:focus {
    border-color: #ff7815;
    box-shadow: 0 0 0 3px rgba(255, 120, 21, 0.1);
}

.module-directory-count {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    min-height: 46px;
    padding-left: 20px;
    border-left: 1px solid rgba(24, 29, 34, 0.13);
}

.module-directory-count strong {
    grid-row: 1 / 3;
    margin-right: 11px;
    color: #ff7411;
    font-size: 2.15rem;
    line-height: 1;
}

.module-directory-count span {
    color: #22272d;
    font-size: 0.7rem;
    font-weight: 800;
}

.module-directory-count small {
    color: #7a848e;
    font-size: 0.58rem;
}

.module-directory-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 60px;
    border-bottom: 1px solid rgba(24, 29, 34, 0.14);
}

.module-directory-head span {
    color: #22272d;
    font-size: 0.74rem;
    font-weight: 800;
}

.module-directory-head b {
    color: #7d8791;
    font-size: 0.62rem;
}

.module-directory-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    border-top: 1px solid #d9dde1;
    border-left: 1px solid #d9dde1;
}

.module-directory-item {
    position: relative;
    display: grid;
    grid-template-rows: 42px 18px minmax(44px, auto) 20px;
    align-content: start;
    min-width: 0;
    min-height: 174px;
    padding: 20px 17px;
    border-right: 1px solid #d9dde1;
    border-bottom: 1px solid #d9dde1;
    color: #24292f;
    background: rgba(255, 255, 255, 0.84);
    transition: color 280ms ease, background 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}

.module-directory-item:hover {
    z-index: 2;
    color: #ffffff;
    background: #171c21;
    box-shadow: 0 18px 42px rgba(20, 24, 28, 0.18);
    transform: translateY(-4px);
}

.module-directory-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #ffd0ad;
    border-radius: 5px;
    background: #fff0e5;
}

.module-directory-icon img {
    width: 19px;
    height: 19px;
    filter: brightness(0) saturate(100%) invert(52%) sepia(89%) saturate(2709%) hue-rotate(348deg) brightness(104%) contrast(102%);
}

.module-directory-item:hover .module-directory-icon {
    border-color: rgba(255, 255, 255, 0.18);
    background: #ff7815;
}

.module-directory-item:hover .module-directory-icon img {
    filter: brightness(0) invert(1);
}

.module-directory-item > small {
    color: #8a949e;
    font-size: 0.52rem;
    font-weight: 800;
}

.module-directory-item > strong {
    align-self: center;
    min-width: 0;
    color: inherit;
    font-size: 0.68rem;
    font-weight: 780;
    line-height: 1.38;
}

.module-directory-item > em {
    color: #818b95;
    font-size: 0.54rem;
    font-style: normal;
}

.module-directory-item > i {
    position: absolute;
    right: 15px;
    bottom: 15px;
    color: #ff7815;
    font-size: 0.9rem;
    font-style: normal;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 220ms ease, transform 220ms ease;
}

.module-directory-item:hover > i {
    opacity: 1;
    transform: translateX(0);
}

.module-directory-empty {
    padding: 70px 0;
    text-align: center;
}

.module-directory-empty strong,
.module-directory-empty span {
    display: block;
}

.module-directory-empty strong {
    color: #252a2f;
    font-size: 0.92rem;
}

.module-directory-empty span {
    margin-top: 8px;
    color: #7b858f;
    font-size: 0.67rem;
}

/* Independent module detail */
.module-detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    padding: 132px 0 86px;
    color: #f7f8fa;
    background: #101419;
}

.module-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
}

.module-detail-hero::after {
    content: none;
}

.module-detail-hero .page-frame {
    position: relative;
}

.module-detail-hero .breadcrumb,
.module-detail-hero .breadcrumb a,
.module-detail-hero .breadcrumb span {
    color: #8b95a0;
}

.module-detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
    align-items: center;
    gap: 78px;
}

.module-detail-title-mark {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 82px;
    height: 62px;
    margin-bottom: 30px;
    padding: 0 13px;
    border: 1px solid rgba(255, 120, 21, 0.34);
    border-radius: 6px;
    background: rgba(255, 120, 21, 0.08);
}

.module-detail-title-mark img {
    width: 26px;
    height: 26px;
    filter: brightness(0) saturate(100%) invert(60%) sepia(99%) saturate(3502%) hue-rotate(349deg) brightness(103%) contrast(103%);
}

.module-detail-title-mark span {
    color: #ff8a34;
    font-size: 0.62rem;
    font-weight: 800;
}

.module-detail-title h1 {
    max-width: 670px;
    margin: 18px 0 24px;
    color: #ffffff;
    font-size: 3.7rem;
    line-height: 1.04;
}

.module-detail-title > p {
    max-width: 650px;
    margin: 0;
    color: #a7afb8;
    font-size: 0.87rem;
    line-height: 1.88;
}

.module-detail-title .subpage-actions {
    margin-top: 32px;
}

.module-detail-title .secondary-button {
    border-color: rgba(255, 255, 255, 0.16);
    color: #f4f6f7;
    background: rgba(255, 255, 255, 0.04);
}

.module-detail-brief {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: #171c21;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.26);
}

.module-detail-brief > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: #98a1ab;
    font-size: 0.58rem;
    font-weight: 750;
}

.module-detail-brief > header b {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #42c2b4;
    font-size: 0.55rem;
}

.module-detail-brief > header i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #25b6a7;
    box-shadow: 0 0 0 5px rgba(37, 182, 167, 0.1);
}

.module-detail-brief-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.module-detail-brief-grid article {
    min-height: 152px;
    padding: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.module-detail-brief-grid article:nth-child(2n) {
    border-right: 0;
}

.module-detail-brief-grid article:nth-last-child(-n+2) {
    border-bottom: 0;
}

.module-detail-brief-grid small {
    color: #ff8530;
    font-size: 0.53rem;
    font-weight: 850;
}

.module-detail-brief-grid strong {
    display: block;
    margin-top: 35px;
    color: #f1f3f5;
    font-size: 0.72rem;
    font-weight: 650;
    line-height: 1.65;
}

.module-detail-brief > footer {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.module-detail-brief > footer span {
    display: grid;
    grid-template-columns: 20px auto;
    align-items: center;
    min-width: 112px;
    min-height: 54px;
    padding: 0 13px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    color: #a0a8b1;
    font-size: 0.52rem;
    white-space: nowrap;
}

.module-detail-brief > footer b {
    color: #ff7a18;
    font-size: 0.48rem;
}

.module-detail-intro-band {
    background: #ffffff;
}

.module-detail-intro-band .page-frame {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 1px solid #e0e4e7;
}

.module-detail-intro-band article {
    min-height: 190px;
    padding: 34px;
    border-right: 1px solid #e0e4e7;
}

.module-detail-intro-band article > span {
    color: #ff7411;
    font-size: 0.56rem;
    font-weight: 850;
}

.module-detail-intro-band p {
    margin: 42px 0 0;
    color: #4f5862;
    font-size: 0.75rem;
    line-height: 1.75;
}

.module-process-section,
.module-function-section,
.module-kpi-section,
.related-modules-section {
    padding: 110px 0;
}

.module-process-section {
    background: #eef1f3;
}

.module-process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    border-top: 1px solid #d7dce0;
    border-left: 1px solid #d7dce0;
}

.module-process-flow article {
    position: relative;
    min-height: 205px;
    padding: 24px;
    border-right: 1px solid #d7dce0;
    border-bottom: 1px solid #d7dce0;
    background: rgba(255, 255, 255, 0.62);
}

.module-process-flow article > span {
    color: #ff7411;
    font-size: 0.57rem;
    font-weight: 850;
}

.module-process-flow strong,
.module-process-flow small {
    display: block;
}

.module-process-flow strong {
    margin-top: 70px;
    color: #22272d;
    font-size: 0.83rem;
}

.module-process-flow small {
    margin-top: 9px;
    color: #7b858f;
    font-size: 0.59rem;
    line-height: 1.55;
}

.module-function-section {
    background: #ffffff;
}

.module-function-list {
    border-top: 1px solid #d9dee2;
}

.module-function-item {
    border-bottom: 1px solid #d9dee2;
}

.module-function-item summary {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 28px;
    align-items: center;
    min-height: 78px;
    padding: 0 12px;
    cursor: pointer;
    list-style: none;
}

.module-function-item summary::-webkit-details-marker {
    display: none;
}

.module-function-item summary > span {
    color: #a4abb2;
    font-size: 0.58rem;
    font-weight: 800;
}

.module-function-item summary > strong {
    color: #24292f;
    font-size: 0.8rem;
}

.module-function-item summary > i {
    position: relative;
    width: 24px;
    height: 24px;
    border: 1px solid #d6dade;
    border-radius: 4px;
}

.module-function-item summary > i::before,
.module-function-item summary > i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 1px;
    background: #555f69;
    transform: translate(-50%, -50%);
}

.module-function-item summary > i::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 220ms ease;
}

.module-function-item[open] summary {
    background: #f6f7f8;
}

.module-function-item[open] summary > span,
.module-function-item[open] summary > strong {
    color: #ff7411;
}

.module-function-item[open] summary > i::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.module-function-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    gap: 52px;
    padding: 28px 58px 34px;
    border-top: 1px solid #e4e7e9;
    background: #f6f7f8;
}

.module-function-body small {
    color: #ff7411;
    font-size: 0.55rem;
    font-weight: 850;
}

.module-function-body p {
    max-width: 820px;
    margin: 9px 0 0;
    color: #58616b;
    font-size: 0.74rem;
    line-height: 1.78;
}

.module-function-body ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.module-function-body li {
    min-height: 34px;
    padding: 9px 10px;
    border: 1px solid #dfe3e6;
    color: #5c6670;
    background: #ffffff;
    font-size: 0.55rem;
    font-weight: 700;
}

.module-kpi-section {
    background: #eef1f3;
}

.module-kpi-section .page-frame {
    display: grid;
    grid-template-columns: minmax(0, 0.68fr) minmax(620px, 1.32fr);
    gap: 90px;
    align-items: end;
}

.module-kpi-copy h2 {
    margin: 17px 0 20px;
    color: #1f2429;
    font-size: 2.75rem;
    line-height: 1.12;
}

.module-kpi-copy p {
    margin: 0;
    color: #6d7680;
    font-size: 0.76rem;
    line-height: 1.8;
}

.module-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #d4dade;
    border-left: 1px solid #d4dade;
}

.module-kpi-grid article {
    min-height: 150px;
    padding: 22px;
    border-right: 1px solid #d4dade;
    border-bottom: 1px solid #d4dade;
    background: rgba(255, 255, 255, 0.66);
}

.module-kpi-grid span,
.module-kpi-grid strong,
.module-kpi-grid small {
    display: block;
}

.module-kpi-grid span {
    color: #ff7411;
    font-size: 0.55rem;
    font-weight: 850;
}

.module-kpi-grid strong {
    margin-top: 38px;
    color: #24292f;
    font-size: 0.77rem;
}

.module-kpi-grid small {
    margin-top: 7px;
    color: #8a939c;
    font-size: 0.53rem;
}

.module-detail-contract .dark-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.module-detail-contract .dark-cell {
    min-height: 330px;
}

.related-modules-section {
    background: #ffffff;
}

.related-modules-section .content-heading {
    align-items: end;
}

.related-module-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #dce0e3;
    border-left: 1px solid #dce0e3;
}

.related-module-grid a {
    position: relative;
    display: grid;
    grid-template-rows: 48px 20px minmax(54px, auto) 20px;
    min-height: 240px;
    padding: 26px;
    border-right: 1px solid #dce0e3;
    border-bottom: 1px solid #dce0e3;
    transition: color 260ms ease, background 260ms ease;
}

.related-module-grid a:hover {
    color: #ffffff;
    background: #171c21;
}

.related-module-grid img {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(52%) sepia(89%) saturate(2709%) hue-rotate(348deg) brightness(104%) contrast(102%);
}

.related-module-grid span {
    color: #8a939d;
    font-size: 0.53rem;
    font-weight: 800;
    text-transform: uppercase;
}

.related-module-grid strong {
    align-self: center;
    font-size: 0.82rem;
    line-height: 1.45;
}

.related-module-grid small {
    color: #8a939d;
    font-size: 0.56rem;
}

.related-module-grid i {
    position: absolute;
    right: 24px;
    bottom: 22px;
    color: #ff7815;
    font-style: normal;
}

.module-not-found {
    min-height: 720px;
    padding: 190px 0 100px;
    color: #ffffff;
    background: #101419;
}

.module-not-found > .page-frame > span {
    color: #ff7815;
    font-size: 0.62rem;
    font-weight: 850;
}

.module-not-found h1 {
    max-width: 720px;
    margin: 28px 0 18px;
    font-size: 4rem;
}

.module-not-found p {
    max-width: 620px;
    margin: 0 0 30px;
    color: #a7afb8;
    line-height: 1.8;
}

@media (max-width: 1200px) {
    .module-directory-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .module-detail-hero-grid { grid-template-columns: 1fr; }
    .module-detail-title h1 { max-width: 850px; }
    .module-kpi-section .page-frame { grid-template-columns: 1fr; gap: 46px; }
}

@media (max-width: 960px) {
    .module-directory-toolbar { grid-template-columns: 1fr 1fr; }
    .module-directory-count { grid-column: 1 / 3; padding: 15px 0 0; border-top: 1px solid rgba(24, 29, 34, 0.13); border-left: 0; }
    .module-directory-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .module-detail-intro-band .page-frame { grid-template-columns: 1fr; border-bottom: 1px solid #e0e4e7; }
    .module-detail-intro-band article { min-height: 150px; }
    .module-detail-intro-band p { margin-top: 24px; }
    .module-detail-contract .dark-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
    .module-directory-toolbar { grid-template-columns: 1fr; }
    .module-directory-count { grid-column: auto; }
    .module-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .module-directory-item { min-height: 160px; padding: 17px 14px; }
    .module-detail-hero { min-height: 0; padding: 126px 0 70px; }
    .module-detail-hero-grid { gap: 46px; }
    .module-detail-title h1 { font-size: 2.75rem; }
    .module-detail-title > p { font-size: 0.8rem; }
    .module-detail-brief-grid { grid-template-columns: 1fr; }
    .module-detail-brief-grid article { min-height: 126px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .module-detail-brief-grid article:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .module-detail-brief-grid article:last-child { border-bottom: 0; }
    .module-detail-brief-grid strong { margin-top: 24px; }
    .module-process-section,
    .module-function-section,
    .module-kpi-section,
    .related-modules-section { padding: 82px 0; }
    .module-process-flow { grid-template-columns: 1fr; }
    .module-process-flow article { min-height: 160px; }
    .module-process-flow strong { margin-top: 44px; }
    .module-function-item summary { grid-template-columns: 38px minmax(0, 1fr) 28px; min-height: 72px; padding-inline: 5px; }
    .module-function-body { grid-template-columns: 1fr; gap: 24px; padding: 24px 15px 30px; }
    .module-function-body ul { grid-template-columns: 1fr; }
    .module-kpi-copy h2 { font-size: 2.25rem; }
    .module-kpi-grid { grid-template-columns: 1fr; }
    .module-detail-contract .dark-grid { grid-template-columns: 1fr; }
    .related-module-grid { grid-template-columns: 1fr; }
    .module-not-found h1 { font-size: 2.7rem; }
}

/* 2026 navigation and editorial page system */
.aq-site-header {
    top: 18px;
    z-index: 12;
    width: min(1420px, calc(100% - 48px));
    min-height: 70px;
    padding: 10px 12px 10px 18px;
    border-color: rgba(17, 22, 27, 0.09);
    border-radius: 8px;
    background: rgba(250, 251, 252, 0.96);
    box-shadow: 0 18px 56px rgba(10, 13, 16, 0.13), inset 0 1px 0 #ffffff;
}

.aq-site-header::after {
    content: none;
}

.aq-site-header .brand { min-width: 148px; }
.aq-site-header .brand img { width: 138px; }

.aq-desktop-nav {
    height: 40px;
    align-items: center;
    gap: 2px;
    color: #5f6974;
}

.aq-desktop-nav > a,
.nav-menu-trigger {
    display: inline-flex;
    height: 40px;
    min-height: 40px;
    padding: 0 12px;
    align-items: center;
    justify-content: center;
    align-self: center;
    border: 0;
    border-radius: 5px;
    color: inherit;
    background: transparent;
    font: inherit;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: color 480ms cubic-bezier(0.32, 0.72, 0, 1), background 480ms cubic-bezier(0.32, 0.72, 0, 1), transform 480ms cubic-bezier(0.32, 0.72, 0, 1);
}

.nav-menu-trigger {
    gap: 7px;
}

.nav-menu-trigger > i {
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 480ms cubic-bezier(0.32, 0.72, 0, 1);
}

.nav-menu-trigger[aria-expanded="true"] > i { transform: translateY(2px) rotate(225deg); }
.aq-desktop-nav > a:hover,
.aq-desktop-nav > a[aria-current="page"],
.nav-menu-trigger:hover,
.nav-menu-trigger[aria-expanded="true"],
.nav-menu-trigger.current { color: #171c21; background: #eceff1; transform: none; }
.aq-desktop-nav .language-link { margin-left: 6px; color: #0867bc; }

body.mega-menu-open .aq-site-header {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 0 24px 70px rgba(10, 13, 16, 0.18), inset 0 1px 0 #ffffff;
}

.mega-panel {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: calc(100vh - 108px);
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid #ff7815;
    border-radius: 0 0 8px 8px;
    color: #edf1f4;
    background-color: #12171c;
    background-image: linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
    background-size: 52px 52px;
    box-shadow: 0 42px 110px rgba(4, 7, 9, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.035);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.995);
    transform-origin: top center;
    transition: opacity 420ms cubic-bezier(0.32, 0.72, 0, 1), transform 520ms cubic-bezier(0.32, 0.72, 0, 1);
}

.mega-panel[aria-hidden="false"] { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.mega-panel-intro,
.mega-sectors-head {
    display: flex;
    min-height: 92px;
    padding: 22px 30px;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(9, 13, 16, 0.9);
}
.mega-panel-intro > div { min-width: 0; }
.mega-panel-intro .mega-label,
.mega-sectors-head .mega-label { margin-bottom: 7px; color: #ff6f08; }
.mega-panel-intro strong,
.mega-sectors-head strong { display: block; max-width: 760px; color: #f4f6f7; font-size: 0.92rem; line-height: 1.45; }
.mega-panel-intro > small {
    display: inline-flex;
    min-width: max-content;
    align-items: center;
    gap: 9px;
    color: #8e99a3;
    font-size: 0.56rem;
    font-weight: 700;
}
.mega-panel-intro > small i { width: 7px; height: 7px; border-radius: 50%; background: #10a998; box-shadow: 0 0 0 5px rgba(16, 169, 152, 0.1); }
.mega-panel-grid { display: grid; gap: 28px; padding: 28px 30px 30px; background: transparent; }
.mega-products-grid { grid-template-columns: 0.9fr 0.9fr 1fr 1.15fr; }
.mega-resources-grid { grid-template-columns: 1fr 1fr 1.2fr; }
.mega-column { min-width: 0; padding-right: 26px; border-right: 1px solid rgba(255, 255, 255, 0.08); }
.mega-column:last-of-type { border-right: 0; }
.mega-label { display: block; margin-bottom: 12px; color: #89949d; font-size: 0.5rem; font-weight: 800; letter-spacing: 0; }
.mega-link {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 16px;
    min-height: 60px;
    margin-inline: -8px;
    padding: 8px;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    color: #e9edf0;
    transition: color 360ms cubic-bezier(0.32, 0.72, 0, 1), background 420ms cubic-bezier(0.32, 0.72, 0, 1), transform 420ms cubic-bezier(0.32, 0.72, 0, 1);
}
.mega-link:hover { color: #ffffff; background: #1a2025; transform: translateX(3px); }
.mega-link-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 120, 21, 0.28);
    border-radius: 5px;
    background: rgba(255, 120, 21, 0.08);
    transition: background 420ms cubic-bezier(0.32, 0.72, 0, 1), transform 420ms cubic-bezier(0.32, 0.72, 0, 1);
}
.mega-link-icon img { width: 18px; height: 18px; filter: invert(49%) sepia(97%) saturate(2814%) hue-rotate(353deg) brightness(102%) contrast(102%); }
.mega-link:hover .mega-link-icon { background: #ff7815; transform: scale(1.04); }
.mega-link:hover .mega-link-icon img { filter: brightness(0) invert(1); }
.mega-link-copy { min-width: 0; }
.mega-link-copy > strong { display: block; color: inherit; font-size: 0.66rem; line-height: 1.35; }
.mega-link-copy > small { display: block; margin-top: 3px; color: #7f8a93; font-size: 0.51rem; line-height: 1.4; }
.mega-link > i { color: #6f7981; font-size: 0.72rem; font-style: normal; opacity: 0; transform: translateX(-5px); transition: opacity 360ms cubic-bezier(0.32, 0.72, 0, 1), transform 360ms cubic-bezier(0.32, 0.72, 0, 1); }
.mega-link:hover > i { color: #ff6f08; opacity: 1; transform: translateX(0); }

.mega-feature {
    position: relative;
    display: flex;
    min-height: 246px;
    padding: 26px;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 6px;
    border: 1px solid rgba(255, 120, 21, 0.3);
    color: #f4f6f7;
    background-color: #090d10;
    background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 34px 34px;
    transition: transform 520ms cubic-bezier(0.32, 0.72, 0, 1), background-color 520ms cubic-bezier(0.32, 0.72, 0, 1);
}
.mega-feature:hover { color: #ffffff; background-color: #0f1519; border-color: rgba(255, 120, 21, 0.68); transform: translateY(-3px); }
.mega-feature-mark { position: absolute; top: 24px; left: 24px; width: 34px; height: 34px; object-fit: contain; }
.mega-feature > span { color: #ff8730; font-size: 0.52rem; font-weight: 800; }
.mega-feature > strong { max-width: 280px; margin-top: 18px; font-size: 1rem; line-height: 1.45; }
.mega-feature > small { margin-top: 12px; color: #84909b; font-size: 0.56rem; }
.mega-feature > i { position: absolute; top: 22px; right: 22px; color: #ff7815; font-size: 1.1rem; font-style: normal; }
.mega-feature.compact { min-height: 210px; }

.mega-sectors-head { align-items: center; }
.mega-sectors-head a { display: inline-flex; min-width: max-content; min-height: 42px; padding: 0 15px; align-items: center; border: 1px solid rgba(255, 120, 21, 0.35); border-radius: 5px; color: #ff8a38; background: rgba(255, 120, 21, 0.08); font-size: 0.62rem; font-weight: 800; }
.mega-sectors-head a i { margin-left: 6px; font-style: normal; }
.mega-sector-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; padding: 24px 30px 30px; background: transparent; }
.mega-sector-grid a { display: grid; grid-template-columns: 38px minmax(0, 1fr) 15px; align-items: center; min-height: 68px; padding: 10px; gap: 10px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 5px; color: #e5e9ec; background: #171d22; transition: color 360ms cubic-bezier(0.32, 0.72, 0, 1), border-color 360ms cubic-bezier(0.32, 0.72, 0, 1), background 420ms cubic-bezier(0.32, 0.72, 0, 1), transform 420ms cubic-bezier(0.32, 0.72, 0, 1); }
.mega-sector-grid a:hover { color: #ffffff; border-color: rgba(255, 120, 21, 0.55); background: #1b2228; transform: translateY(-2px); }
.mega-sector-copy { min-width: 0; }
.mega-sector-copy strong { display: block; color: inherit; font-size: 0.61rem; line-height: 1.35; }
.mega-sector-copy small { display: block; margin-top: 4px; color: #77828b; font-size: 0.46rem; font-weight: 600; }
.mega-sector-grid a > i { color: #68737c; font-size: 0.65rem; font-style: normal; }

.aq-mobile-menu { overflow-y: auto; justify-content: flex-start; gap: 26px; padding: 104px 20px 32px; }
.aq-mobile-menu section { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
.aq-mobile-menu section > span { grid-column: 1 / -1; margin: 0 0 6px; color: #ff7411; font-size: 0.58rem; font-weight: 800; }
.aq-mobile-menu section a,
.aq-mobile-menu > a { min-height: 54px; padding: 15px; border: 1px solid #e0e4e7; border-radius: 6px; box-shadow: none; font-size: 0.76rem; font-weight: 700; }
.aq-mobile-menu .mobile-cta { display: flex; justify-content: space-between; color: #ffffff; background: #ff7815; }
.aq-mobile-menu .mobile-cta i { font-style: normal; }

.module-page-hero { min-height: 760px; }
.aq-home-hero .module-page-copy h1 { max-width: 670px; }

.aq-domain-section,
.aq-capability-section,
.aq-sector-section,
.aq-industry-directory,
.aq-status-section,
.aq-principle-section,
.aq-engagement-section,
.aq-operating-section { padding: 112px 0; background: #eef1f3; }
.aq-capability-section,
.aq-industry-directory,
.aq-principle-section,
.aq-operating-section { background: #ffffff; }

.aq-domain-list,
.aq-industry-directory-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid #d9dee2; border-left: 1px solid #d9dee2; }
.aq-domain-list a,
.aq-industry-directory-grid a { position: relative; display: grid; grid-template-rows: 28px 44px auto 1fr; min-height: 228px; padding: 22px; border-right: 1px solid #d9dee2; border-bottom: 1px solid #d9dee2; color: #252b31; background: rgba(255,255,255,0.7); transition: color 480ms cubic-bezier(0.32,0.72,0,1), background 480ms cubic-bezier(0.32,0.72,0,1), transform 480ms cubic-bezier(0.32,0.72,0,1); }
.aq-domain-list a:hover,
.aq-industry-directory-grid a:hover { z-index: 1; color: #ffffff; background: #171c21; transform: translateY(-4px); }
.aq-domain-list a > span,
.aq-industry-directory-grid a > span { color: #ff7411; font-size: 0.54rem; font-weight: 800; }
.aq-domain-list img,
.aq-industry-directory-grid img,
.aq-capability-rows img,
.aq-studio-grid img { width: 26px; height: 26px; filter: brightness(0) saturate(100%) invert(53%) sepia(94%) saturate(2841%) hue-rotate(348deg) brightness(103%) contrast(103%); }
.aq-domain-list strong,
.aq-industry-directory-grid strong { align-self: end; font-size: 0.8rem; line-height: 1.45; }
.aq-domain-list small,
.aq-industry-directory-grid small { margin-top: 9px; color: #7b858f; font-size: 0.59rem; line-height: 1.6; }
.aq-domain-list a:hover small,
.aq-industry-directory-grid a:hover small { color: #99a3ad; }
.aq-domain-list a > i,
.aq-industry-directory-grid a > i { position: absolute; right: 20px; bottom: 18px; color: #ff7815; font-style: normal; opacity: 0; transform: translateX(-8px); transition: opacity 360ms cubic-bezier(0.32,0.72,0,1), transform 360ms cubic-bezier(0.32,0.72,0,1); }
.aq-domain-list a:hover > i,
.aq-industry-directory-grid a:hover > i { opacity: 1; transform: translateX(0); }

.aq-platform-section { padding-block: 126px; }
.aq-platform-grid,
.aq-operating-grid { display: grid; grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1.28fr); gap: 100px; align-items: start; }
.aq-platform-copy h2,
.aq-operating-grid h2 { max-width: 580px; margin: 18px 0 22px; color: #ffffff; font-size: 3.2rem; line-height: 1.08; }
.aq-platform-copy p,
.aq-operating-grid > div:first-child > p { max-width: 560px; margin: 0; color: #9fa8b1; font-size: 0.8rem; line-height: 1.85; }
.aq-platform-copy .text-link { display: inline-flex; margin-top: 28px; color: #ff8730; }
.aq-platform-rows { border-top: 1px solid rgba(255,255,255,0.12); }
.aq-platform-rows article { display: grid; grid-template-columns: 145px 220px minmax(0, 1fr); gap: 22px; align-items: center; min-height: 105px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.aq-platform-rows span { color: #ff8730; font-size: 0.54rem; font-weight: 800; }
.aq-platform-rows strong { color: #f3f5f6; font-size: 0.75rem; }
.aq-platform-rows p { margin: 0; color: #89939d; font-size: 0.64rem; line-height: 1.65; }

.aq-sector-links { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid #d9dee2; border-left: 1px solid #d9dee2; }
.aq-sector-links a { display: flex; min-height: 92px; padding: 18px; align-items: flex-end; justify-content: space-between; gap: 12px; border-right: 1px solid #d9dee2; border-bottom: 1px solid #d9dee2; color: #30373e; font-size: 0.67rem; font-weight: 750; transition: color 400ms cubic-bezier(0.32,0.72,0,1), background 400ms cubic-bezier(0.32,0.72,0,1); }
.aq-sector-links a:hover { color: #ffffff; background: #171c21; }
.aq-sector-links span { color: #ff7411; font-size: 0.5rem; }
.aq-wide-link { display: flex; min-height: 78px; margin-top: 22px; padding: 0 24px; align-items: center; justify-content: space-between; border: 1px solid #d9dee2; color: #252b31; font-size: 0.73rem; font-weight: 800; background: #ffffff; transition: color 400ms cubic-bezier(0.32,0.72,0,1), background 400ms cubic-bezier(0.32,0.72,0,1); }
.aq-wide-link:hover { color: #ffffff; background: #171c21; }
.aq-wide-link i { color: #ff7411; font-style: normal; }

.aq-contact-section { padding: 118px 0; color: #f5f7f8; background: #161b20; }
.aq-contact-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr); gap: 120px; align-items: end; }
.aq-contact-grid .subpage-kicker { color: #ff8730; }
.aq-contact-grid h2 { max-width: 760px; margin: 18px 0 0; color: #ffffff; font-size: 3.35rem; font-weight: 800; line-height: 1.08; }
.aq-contact-copy p { max-width: 580px; margin: 0 0 28px; color: #aeb7c0; font-size: 0.8rem; line-height: 1.85; }
.aq-contact-copy small { display: block; margin-top: 18px; color: #78838d; font-size: 0.55rem; }
.aq-contact-links,
.cta-contact-links { display: grid; gap: 9px; margin: 0 0 24px; }
.aq-contact-links { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 580px; }
.aq-contact-links a,
.cta-contact-links a { border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.035); transition: border-color 420ms cubic-bezier(0.32,0.72,0,1), background 420ms cubic-bezier(0.32,0.72,0,1), transform 420ms cubic-bezier(0.32,0.72,0,1); }
.aq-contact-links a { min-height: 74px; padding: 15px; }
.aq-contact-links span,
.aq-contact-links strong { display: block; }
.aq-contact-links span { color: #ff8730; font-size: 0.52rem; font-weight: 800; }
.aq-contact-links strong { margin-top: 7px; color: #f5f7f8; font-size: 0.72rem; overflow-wrap: anywhere; }
.aq-contact-links a:hover,
.cta-contact-links a:hover { border-color: rgba(255,120,21,0.48); background: rgba(255,120,21,0.08); transform: translateY(-2px); }
.cta-contact-links { max-width: 310px; }
.cta-contact-links a { min-height: 44px; padding: 13px 14px; color: #dbe1e6; font-size: 0.62rem; font-weight: 800; overflow-wrap: anywhere; }

.aq-control-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.aq-control-grid article { position: relative; min-height: 190px; padding: 24px; border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); background: #151a1f; }
.aq-control-grid article:nth-child(2n) { border-right: 0; }
.aq-control-grid article:nth-last-child(-n+2) { border-bottom: 0; }
.aq-control-grid span { color: #ff8730; font-size: 0.52rem; font-weight: 800; }
.aq-control-grid strong,
.aq-control-grid small,
.aq-control-grid b { display: block; }
.aq-control-grid strong { margin-top: 38px; color: #f0f3f5; font-size: 0.9rem; }
.aq-control-grid small { margin-top: 8px; color: #74808b; font-size: 0.56rem; }
.aq-control-grid b { position: absolute; right: 22px; bottom: 20px; color: #43c6b7; font-size: 0.52rem; }

.aq-capability-rows { border-top: 1px solid #dbe0e3; }
.aq-capability-rows article { display: grid; grid-template-columns: 44px 42px minmax(0, 1fr) 245px; gap: 22px; align-items: center; min-height: 128px; border-bottom: 1px solid #dbe0e3; }
.aq-capability-rows article > span { color: #ff7411; font-size: 0.57rem; font-weight: 800; }
.aq-capability-rows strong { color: #22282e; font-size: 0.82rem; }
.aq-capability-rows p { max-width: 760px; margin: 8px 0 0; color: #727c85; font-size: 0.66rem; line-height: 1.65; }
.aq-capability-rows article > small { color: #8b949d; font-size: 0.56rem; text-align: right; }

.aq-studio-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,0.11); border-left: 1px solid rgba(255,255,255,0.11); }
.aq-studio-grid article { min-height: 330px; padding: 26px; border-right: 1px solid rgba(255,255,255,0.11); border-bottom: 1px solid rgba(255,255,255,0.11); background: rgba(255,255,255,0.018); }
.aq-studio-grid article > span { display: block; color: #ff8730; font-size: 0.52rem; font-weight: 800; }
.aq-studio-grid img { margin-top: 48px; }
.aq-studio-grid h3 { margin: 28px 0 12px; color: #f2f4f5; font-size: 1.05rem; }
.aq-studio-grid p { margin: 0; color: #929ca6; font-size: 0.66rem; line-height: 1.7; }
.aq-studio-grid small { display: block; margin-top: 28px; color: #65717c; font-size: 0.54rem; }

.aq-operating-section { background: #eef1f3; }
.aq-operating-grid h2 { color: #20262c; }
.aq-operating-grid > div:first-child > p { color: #6d7781; }
.aq-operating-flow { border-top: 1px solid #d8dde1; }
.aq-operating-flow article { display: grid; grid-template-columns: 52px minmax(150px, 0.58fr) minmax(0, 1fr); gap: 18px; align-items: center; min-height: 100px; border-bottom: 1px solid #d8dde1; }
.aq-operating-flow span { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid #f7c49f; border-radius: 4px; color: #ff7411; background: #fff6ef; font-size: 0.55rem; font-weight: 800; }
.aq-operating-flow strong { color: #252b31; font-size: 0.74rem; }
.aq-operating-flow small { color: #78828c; font-size: 0.62rem; line-height: 1.6; }

.aq-industry-map-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.aq-industry-map-grid > div { min-height: 150px; padding: 24px; border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); background: #151a1f; }
.aq-industry-map-grid > div:nth-child(2n) { border-right: 0; }
.aq-industry-map-grid span { color: #ff8730; font-size: 0.5rem; font-weight: 800; }
.aq-industry-map-grid strong,
.aq-industry-map-grid small { display: block; }
.aq-industry-map-grid strong { margin-top: 42px; color: #f1f3f5; font-size: 0.8rem; }
.aq-industry-map-grid small { margin-top: 7px; color: #727e89; font-size: 0.55rem; }
.aq-industry-signal { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 64px; border-top: 1px solid rgba(255,255,255,0.08); }
.aq-industry-signal span { display: flex; align-items: center; justify-content: center; gap: 8px; border-right: 1px solid rgba(255,255,255,0.08); color: #89949f; font-size: 0.51rem; }
.aq-industry-signal span:last-child { border-right: 0; }
.aq-industry-signal i { width: 5px; height: 5px; border-radius: 50%; background: #35b9ab; }
.aq-industry-directory-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.aq-industry-directory-grid a { min-height: 210px; }

.aq-trust-summary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.aq-trust-summary article { min-height: 130px; padding: 22px; border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); background: #151a1f; }
.aq-trust-summary article:last-child { border-right: 0; }
.aq-trust-summary span { color: #ff8730; font-size: 0.5rem; font-weight: 800; }
.aq-trust-summary strong,
.aq-trust-summary small { display: block; }
.aq-trust-summary strong { margin-top: 28px; color: #f3f5f6; font-size: 1rem; }
.aq-trust-summary small { margin-top: 4px; color: #72808b; font-size: 0.52rem; }
.aq-trust-events { padding: 12px 20px; background: #151a1f; }
.aq-trust-events > span { display: grid; grid-template-columns: 20px minmax(0, 1fr) auto; align-items: center; min-height: 52px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.aq-trust-events > span:last-child { border-bottom: 0; }
.aq-trust-events i { width: 6px; height: 6px; border-radius: 50%; background: #35b9ab; box-shadow: 0 0 0 5px rgba(53,185,171,0.09); }
.aq-trust-events strong { color: #aeb6bd; font-size: 0.62rem; }
.aq-trust-events b { color: #43c6b7; font-size: 0.52rem; }

.aq-boundary-board { display: grid; grid-template-columns: 1fr 42px 1fr; align-items: stretch; }
.aq-boundary-board article { min-height: 300px; padding: 28px; border: 1px solid rgba(255,255,255,0.12); background: #171c21; }
.aq-boundary-board > i { display: grid; place-items: center; color: #ff7815; font-size: 1.2rem; font-style: normal; }
.aq-boundary-board span { color: #ff8730; font-size: 0.52rem; font-weight: 800; }
.aq-boundary-board strong { display: block; margin-top: 70px; color: #f2f4f5; font-size: 1.1rem; }
.aq-boundary-board p { margin: 14px 0 0; color: #909aa4; font-size: 0.64rem; line-height: 1.7; }
.aq-boundary-board small { display: block; margin-top: 30px; color: #68747f; font-size: 0.52rem; }

.aq-status-list { border-top: 1px solid #d9dee2; }
.aq-status-list article { display: grid; grid-template-columns: 240px minmax(0, 1fr) 150px; gap: 30px; align-items: center; min-height: 88px; border-bottom: 1px solid #d9dee2; }
.aq-status-list strong { font-size: 0.72rem; }
.aq-status-list p { margin: 0; color: #727c85; font-size: 0.64rem; line-height: 1.6; }
.aq-status-list span { justify-self: end; min-width: 96px; padding: 8px 10px; border-radius: 4px; color: #177e70; background: #dff7f1; font-size: 0.53rem; font-weight: 800; text-align: center; }
.aq-status-list span.roadmap { color: #9b5b19; background: #fff0d7; }

.aq-principles-core { display: grid; min-height: 250px; place-items: center; text-align: center; background: #151a1f; }
.aq-principles-core div > span { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 18px; border: 1px solid rgba(255,120,21,0.5); border-radius: 7px; color: #ffffff; background: #ff7815; font-size: 1.2rem; font-weight: 800; box-shadow: 0 0 0 8px rgba(255,120,21,0.08); }
.aq-principles-core small { color: #ff8730; font-size: 0.5rem; font-weight: 800; }
.aq-principles-core strong { display: block; margin-top: 15px; color: #f2f4f5; font-size: 1.15rem; line-height: 1.45; }
.aq-principles-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.aq-principles-list span { min-height: 62px; padding: 20px; border-right: 1px solid rgba(255,255,255,0.08); border-top: 1px solid rgba(255,255,255,0.08); color: #a2abb4; font-size: 0.58rem; }
.aq-principles-list b { margin-right: 12px; color: #ff7815; font-size: 0.5rem; }
.aq-principle-rows { border-top: 1px solid #d9dee2; }
.aq-principle-rows article { display: grid; grid-template-columns: 58px minmax(250px, 0.72fr) minmax(0, 1fr); gap: 30px; align-items: center; min-height: 132px; border-bottom: 1px solid #d9dee2; }
.aq-principle-rows span { color: #ff7411; font-size: 0.57rem; font-weight: 800; }
.aq-principle-rows h3 { margin: 0; font-size: 0.88rem; line-height: 1.5; }
.aq-principle-rows p { margin: 0; color: #727c85; font-size: 0.66rem; line-height: 1.72; }
.aq-position-board { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 340px; border: 1px solid rgba(255,255,255,0.11); }
.aq-position-board article { display: flex; padding: 28px; flex-direction: column; justify-content: flex-end; border-right: 1px solid rgba(255,255,255,0.11); background: rgba(255,255,255,0.02); }
.aq-position-board article:last-child { border-right: 0; }
.aq-position-board article.active { background: #ff7815; }
.aq-position-board span { color: #ff8730; font-size: 0.52rem; font-weight: 800; }
.aq-position-board .active span { color: #ffffff; }
.aq-position-board p { color: #929ca5; font-size: 0.65rem; line-height: 1.7; }
.aq-position-board strong { color: #ffffff; font-size: 1rem; line-height: 1.5; }
.module-function-item { scroll-margin-top: 108px; }

.release-hero,
.privacy-hero,
.document-page,
.english-hero {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    color: #f5f7f8;
    background: #101419;
}

.release-hero::before,
.privacy-hero::before,
.document-page::before,
.english-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 56px 56px;
}

.release-hero::after,
.privacy-hero::after,
.document-page::after,
.english-hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 3px;
    background: #ff7815;
}

.release-hero .page-frame,
.privacy-hero .page-frame,
.document-page .page-frame,
.english-hero .page-frame { position: relative; }
.release-hero .breadcrumb,
.privacy-hero .breadcrumb,
.document-page .breadcrumb,
.english-hero .breadcrumb,
.release-hero .breadcrumb a,
.privacy-hero .breadcrumb a,
.document-page .breadcrumb a,
.english-hero .breadcrumb a { color: #8e99a4; }
.release-hero h1,
.privacy-hero h1,
.document-page h1,
.english-hero h1 { color: #ffffff; }
.release-hero .subpage-hero-copy > p,
.privacy-hero .subpage-hero-copy > p,
.document-page .subpage-hero-copy > p,
.english-hero .subpage-hero-copy > p { color: #a4adb6; }
.release-hero .secondary-button,
.privacy-hero .secondary-button,
.document-page .secondary-button,
.english-hero .secondary-button { border-color: rgba(255,255,255,0.16); color: #ffffff; background: rgba(255,255,255,0.04); }

.module-faq-section {
    padding: 112px 0;
    background: #f4f7f9;
}

.module-faq-list {
    display: grid;
    gap: 12px;
    margin-top: 34px;
}

.module-faq-list details {
    border: 1px solid rgba(31, 38, 46, 0.11);
    background: #ffffff;
}

.module-faq-list summary {
    cursor: pointer;
    padding: 22px 24px;
    color: var(--heading);
    font-weight: 800;
}

.module-faq-list p {
    margin: 0;
    padding: 0 24px 24px;
    max-width: 920px;
    color: var(--muted);
    line-height: 1.78;
}

@media (max-width: 1180px) {
    .mega-products-grid { grid-template-columns: repeat(3, 1fr); }
    .mega-products-grid .mega-feature { grid-column: 1 / -1; min-height: 170px; }
    .aq-domain-list,
    .aq-industry-directory-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .aq-sector-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .aq-studio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1041px) and (max-height: 780px) {
    .module-page-hero { min-height: 680px; padding: 106px 0 44px; }
    .module-page-copy h1 { margin-block: 16px 18px; font-size: 3.45rem; }
    .module-page-copy > p { font-size: 0.78rem; line-height: 1.72; }
    .module-page-copy .subpage-actions { margin-top: 24px; }
    .module-domain-grid > div { min-height: 104px; padding: 15px; }
    .module-hero-map > header { min-height: 58px; }
    .module-hero-map > footer { min-height: 44px; }
    .aq-control-grid article { min-height: 154px; padding: 20px; }
    .aq-control-grid strong { margin-top: 24px; }
    .aq-industry-map-grid > div { min-height: 124px; padding: 20px; }
    .aq-industry-map-grid strong { margin-top: 28px; }
    .aq-industry-signal { min-height: 54px; }
    .aq-trust-summary article { min-height: 105px; }
    .aq-trust-summary strong { margin-top: 18px; }
    .aq-trust-events > span { min-height: 44px; }
    .aq-principles-core { min-height: 210px; }
}

@media (max-width: 1040px) {
    .aq-site-header { width: calc(100% - 32px); }
    .aq-site-header .desktop-nav,
    .aq-site-header .nav-action { display: none; }
    .aq-site-header .menu-toggle { display: block; }
    .aq-platform-grid,
    .aq-contact-grid,
    .aq-operating-grid { grid-template-columns: 1fr; gap: 58px; }
    .aq-platform-rows article { grid-template-columns: 120px 190px 1fr; }
    .aq-contact-copy { max-width: 680px; }
}

@media (max-width: 760px) {
    .aq-site-header { top: 10px; width: calc(100% - 20px); min-height: 60px; padding: 8px 9px 8px 14px; }
    .aq-site-header .brand img { width: 118px; }
    .module-page-hero { min-height: 0; padding: 116px 0 66px; }
    .aq-domain-section,
    .aq-capability-section,
    .aq-sector-section,
    .aq-industry-directory,
    .aq-status-section,
    .aq-principle-section,
    .aq-engagement-section,
    .aq-operating-section { padding: 82px 0; }
    .aq-domain-list,
    .aq-industry-directory-grid { grid-template-columns: 1fr; }
    .aq-domain-list a,
    .aq-industry-directory-grid a { min-height: 174px; }
    .aq-platform-section { padding-block: 88px; }
    .aq-platform-copy h2,
    .aq-operating-grid h2,
    .aq-contact-grid h2 { font-size: 2.35rem; }
    .aq-platform-rows article { grid-template-columns: 1fr; gap: 9px; min-height: 155px; padding: 24px 0; }
    .aq-sector-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .aq-contact-section { padding: 86px 0; }
    .aq-contact-links { grid-template-columns: 1fr; }
    .aq-control-grid,
    .aq-industry-map-grid,
    .aq-trust-summary,
    .aq-principles-list { grid-template-columns: 1fr; }
    .aq-control-grid article,
    .aq-industry-map-grid > div,
    .aq-trust-summary article { border-right: 0; }
    .aq-control-grid article:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .aq-control-grid article:last-child { border-bottom: 0; }
    .aq-industry-signal { grid-template-columns: repeat(2, 1fr); }
    .aq-industry-signal span { min-height: 54px; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .aq-capability-rows article { grid-template-columns: 34px 34px minmax(0, 1fr); gap: 14px; padding: 24px 0; }
    .aq-capability-rows article > small { grid-column: 3; text-align: left; }
    .aq-studio-grid { grid-template-columns: 1fr; }
    .aq-studio-grid article { min-height: 270px; }
    .aq-operating-flow article { grid-template-columns: 44px minmax(0, 1fr); padding: 20px 0; }
    .aq-operating-flow small { grid-column: 2; }
    .aq-boundary-board { grid-template-columns: 1fr; }
    .aq-boundary-board > i { min-height: 48px; }
    .aq-boundary-board article { min-height: 240px; }
    .aq-status-list article { grid-template-columns: 1fr; gap: 10px; padding: 22px 0; }
    .aq-status-list span { justify-self: start; }
    .aq-principle-rows article { grid-template-columns: 38px minmax(0, 1fr); gap: 14px; padding: 24px 0; }
    .aq-principle-rows p { grid-column: 2; }
    .aq-position-board { grid-template-columns: 1fr; }
    .aq-position-board article { min-height: 190px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.11); }
    .aq-position-board article:last-child { border-bottom: 0; }
    .module-domain-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .module-domain-grid > div { min-height: 110px; padding: 16px; border-right: 1px solid rgba(255, 255, 255, 0.08); }
    .module-domain-grid > div:nth-child(2n) { border-right: 0; }
    .module-domain-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
    .module-domain-grid strong { font-size: 0.57rem; line-height: 1.45; }
    .module-domain-grid small { font-size: 0.48rem; }
}

@media (max-width: 460px) {
    .aq-mobile-menu section { grid-template-columns: 1fr; }
    .aq-sector-links { grid-template-columns: 1fr; }
    .aq-industry-signal { grid-template-columns: 1fr; }
}
