:root {
    --paper: #fff;
    --ink: #151719;
    --muted: #53585f;
    --faint: #757b83;
    --line: #d9dde2;
    --blue: #2e5bff;
    --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --wide: 1320px;
    --pad: clamp(22px, 4.5vw, 76px);
    --header: 90px;
    color-scheme: light;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
    background: #fff;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.locked {
    overflow: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input,
select,
textarea {
    font: inherit;
}
button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}
button {
    cursor: pointer;
    color: inherit;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 5px;
}
button {
    background: none;
    border: 0;
}
p,
h1,
h2,
h3,
h4 {
    margin: 0;
}
p {
    overflow-wrap: break-word;
}
h1,
h2,
h3,
h4 {
    font-weight: 500;
}
ul,
ol {
    padding: 0;
    list-style: none;
    margin: 0;
}
img {
    display: block;
    max-width: 100%;
}
a:not(.button):hover {
    color: var(--blue);
}
::selection {
    background: #dfe6ff;
    color: #111;
}
[hidden] {
    display: none !important;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 200;
    background: #fff;
    padding: 12px 20px;
    border: 1px solid var(--ink);
}
.skip:focus {
    top: 12px;
}
.container {
    width: min(var(--wide), calc(100% - 2 * var(--pad)));
    margin-inline: auto;
}
.micro,
.eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    line-height: 1.7;
    color: var(--muted);
}
.eyebrow {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 28px;
}
.eyebrow:before {
    content: "";
    height: 1px;
    width: 28px;
    background: var(--blue);
}
.index {
    font-size: 12px;
    font-variant-numeric: tabular-nums;
    color: var(--muted);
    letter-spacing: 0.04em;
}
.rule {
    border-top: 1px solid var(--line);
}
.muted {
    color: var(--muted);
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--ink);
    padding: 10px 0 9px;
    line-height: 1.45;
}
.text-link span {
    font-size: 21px;
    line-height: 1;
}
.button {
    min-height: 49px;
    padding: 13px 22px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transition:
        background 0.18s,
        color 0.18s,
        border-color 0.18s;
}
.button:hover {
    color: #fff;
    background: #35393e;
    border-color: #35393e;
}
.button.ghost {
    color: var(--ink);
    background: #fff;
}
.button.ghost:hover {
    color: var(--blue);
    border-color: var(--blue);
}
.button span {
    font-size: 18px;
}
.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 32px;
}
.link-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: #fff;
    border-bottom: 1px solid var(--line);
    height: var(--header);
}
.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}
.brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}
.brand img {
    width: 155px;
    height: auto;
}
.brand small {
    font-size: 8px;
    letter-spacing: 0.16em;
    line-height: 1.3;
    color: #595f66;
}
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-inline-start: auto;
}
.desktop-nav > a {
    font-size: 13px;
    white-space: nowrap;
    position: relative;
    padding: 10px 0;
    line-height: 1.5;
}
.desktop-nav > a[aria-current="page"]:after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--blue);
}
.header-tools {
    display: flex;
    align-items: center;
    gap: 20px;
}
.language {
    font-size: 13px;
    white-space: nowrap;
}
.menu-toggle {
    display: none;
    min-width: 44px;
    height: 44px;
    padding: 10px;
}
.menu-toggle i {
    display: block;
    height: 1px;
    width: 22px;
    background: var(--ink);
    margin: 6px 0;
}
.mobile-nav {
    position: fixed;
    top: var(--header);
    inset-inline: 0;
    bottom: 0;
    overflow: auto;
    background: #fff;
    z-index: 39;
    padding: 30px var(--pad);
}
.mobile-nav a {
    display: block;
    font-size: 24px;
    border-bottom: 1px solid var(--line);
    padding: 13px 0;
}
.hero {
    padding: 66px 0 56px;
}
.hero-meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 53px;
}
.hero-columns {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr;
    gap: 90px;
    align-items: start;
}
.hero h1 {
    font-size: clamp(65px, 7.7vw, 118px);
    letter-spacing: -0.067em;
    line-height: 1.035;
    font-weight: 500;
    max-width: 920px;
}
.hero h1 .last {
    color: var(--ink);
}
.hero-description {
    font-size: 20px;
    line-height: 1.65;
    letter-spacing: -0.015em;
    max-width: 655px;
    margin-top: 32px;
}
.owner-ledger {
    padding-top: 16px;
}
.owner-ledger > .micro {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}
.owner-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}
.owner-item h2 {
    font-size: 33px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}
.owner-item p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 320px;
    margin-top: 12px;
}
.owner-ledger > .text-link {
    margin-top: 22px;
    font-size: 13px;
}
.hero-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 68px;
    font-size: 12px;
    color: var(--muted);
}
.hero-bottom p:last-child {
    max-width: 250px;
    text-align: end;
}
.section {
    padding: 105px 0;
    border-top: 1px solid var(--line);
}
.section.small {
    padding: 62px 0;
}
.section-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 45px;
}
.section-top .text-link {
    align-self: end;
    flex-shrink: 0;
}
.section h2,
.editorial h2 {
    font-size: clamp(36px, 3.9vw, 60px);
    line-height: 1.12;
    letter-spacing: -0.05em;
    max-width: 940px;
}
.section-intro {
    max-width: 660px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    margin-top: 23px;
}
.six-chain {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin: 24px 0 6px;
    counter-reset: stage;
}
.six-chain a {
    display: block;
    position: relative;
    border-top: 1px solid var(--ink);
    padding: 20px 20px 6px 0;
}
.six-chain li:last-child a {
    padding-inline-end: 0;
}
.six-chain a:before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    top: -3px;
    inset-inline-start: 0;
    background: var(--ink);
}
.six-chain a:hover:before {
    background: var(--blue);
}
.six-chain strong {
    display: block;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
    margin-top: 17px;
    letter-spacing: -0.035em;
}
.six-chain small {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
    margin-top: 8px;
    max-width: 170px;
}
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}
.split.asymmetric {
    grid-template-columns: 0.85fr 1.15fr;
}
.section-copy {
    font-size: 18px;
    line-height: 1.75;
    color: var(--muted);
}
.section-copy p + p {
    margin-top: 20px;
}
.selected-solutions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 50px;
}
.solution-link {
    border-top: 0px solid var(--line);
    padding: 29px 0;
    display: grid;
    grid-template-columns: 32px 1fr 20px;
    gap: 18px;
}
.solution-link h3 {
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -0.035em;
    max-width: 380px;
}
.solution-link p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.65;
    margin-top: 12px;
    max-width: 425px;
}
.solution-link .arrow {
    font-size: 24px;
    transition: transform 0.2s;
}
.solution-link:hover .arrow {
    transform: translate(2px, -2px);
}
.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 34px;
}
.sector {
    border-top: 1px solid var(--line);
    padding: 23px 0;
    align-self: start;
}
.sector summary {
    cursor: pointer;
    list-style: none;
    display: block;
    position: relative;
    padding-inline-end: 20px;
}
.sector summary::-webkit-details-marker {
    display: none;
}
.sector summary:after {
    content: "+";
    position: absolute;
    inset-inline-end: 0;
    top: 0;
    font-size: 22px;
}
.sector[open] summary:after {
    content: "−";
}
.sector h3 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.03em;
}
.sector summary p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
    margin-top: 14px;
}
.sector .panel {
    padding-top: 20px;
    font-size: 14px;
    color: var(--muted);
}
.sector .text-link {
    font-size: 13px;
}
.pov-number {
    font-size: clamp(72px, 8vw, 120px);
    font-weight: 500;
    letter-spacing: -0.065em;
    line-height: 1;
}
.pov-number span {
    display: block;
    font-size: 30px;
    letter-spacing: -0.03em;
    margin-top: 10px;
}
.pov-aside {
    border-inline-start: 1px solid var(--line);
    padding-inline-start: 55px;
}
.pov-aside p {
    font-size: 20px;
    line-height: 1.65;
    color: var(--muted);
}
.fine-line {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 18px;
}
.control-words {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 37px;
}
.control-words > div {
    border-top: 1px solid var(--ink);
    padding-top: 20px;
}
.control-words h3 {
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.025em;
}
.control-words p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
    margin-top: 12px;
}
.partner-home {
    padding: 43px 0;
    border-top: 1px solid var(--ink);
    border-bottom: 0px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}
.partner-home p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.75;
}
.closing {
    padding: 100px 0 85px;
    border-top: 1px solid var(--line);
}
.closing h2 {
    font-size: clamp(42px, 5.4vw, 78px);
    line-height: 1.13;
    letter-spacing: -0.05em;
    max-width: 1050px;
}
.closing .bottom {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-top: 50px;
    align-items: end;
}
.closing p {
    max-width: 550px;
    color: var(--muted);
}
.closing .email {
    font-size: 25px;
    border-bottom: 1px solid var(--ink);
    line-height: 1.6;
}
.site-footer {
    border-top: 1px solid var(--line);
    padding: 42px 0 26px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 60px;
}
.footer-intro p {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 20px;
    color: var(--muted);
}
.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 25px;
}
.footer-nav a {
    font-size: 13px;
    line-height: 1.6;
}
.footer-end {
    border-top: 1px solid var(--line);
    padding-top: 22px;
    margin-top: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: var(--muted);
}
.footer-controls {
    display: flex;
    gap: 23px;
    align-items: center;
    flex-wrap: wrap;
}
.footer-controls button {
    font-size: 12px;
    line-height: 1.5;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
}
.footer-controls button:hover {
    border-color: var(--blue);
    color: var(--blue);
}
.footer-controls .motion:before {
    content: "Ⅱ";
    margin-inline-end: 6px;
}
.footer-controls .motion[aria-pressed="true"]:before {
    content: "▷";
}
.page-hero {
    padding: 67px 0 60px;
}
.breadcrumb {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    gap: 12px;
    margin-bottom: 47px;
}
.page-hero h1 {
    font-size: clamp(49px, 5.8vw, 88px);
    line-height: 1.08;
    letter-spacing: -0.055em;
    max-width: 1070px;
}
.page-hero .lede {
    max-width: 760px;
    font-size: 20px;
    line-height: 1.75;
    color: var(--muted);
    margin-top: 28px;
}
.page-tabs {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    font-size: 13px;
}
.page-tabs a[aria-current="page"] {
    color: var(--blue);
}
.chapter {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 95px;
    padding: 57px 0;
    border-top: 0px solid var(--line);
}
.chapter h2 {
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: -0.05em;
}
.chapter p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
}
.chapter .takeaway {
    font-size: 15px;
    color: var(--ink);
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}
.delivery-model {
    border-top: 0px solid var(--ink);
}
.delivery-row {
    display: grid;
    grid-template-columns: 62px 0.7fr 1.1fr;
    gap: 35px;
    border-bottom: 1px solid var(--line);
    padding: 37px 0;
}
.delivery-row:last-child{ border-bottom: none !important;}
.delivery-row > .index {
    padding-top: 10px;
}
.delivery-row h2 {
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -0.035em;
}
.substeps {
    color: var(--blue);
    font-size: 13px;
    line-height: 1.8;
    margin-top: 14px;
}
.delivery-row p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--muted);
}
.delivery-row .output {
    border-inline-start: 2px solid var(--ink);
    padding-inline-start: 20px;
    margin-top: 23px;
    font-size: 14px;
    color: var(--ink);
}
.solutions-list {
    border-top: 0px solid var(--ink);
}
.solution-panel {
    border-bottom: 1px solid var(--line);
}
.solution-panel summary {
    list-style: none;
    cursor: pointer;
    display: grid;
    grid-template-columns: 62px 1fr 28px;
    gap: 24px;
    padding: 29px 0;
    align-items: center;
}
.solution-panel summary::-webkit-details-marker {
    display: none;
}
.solution-panel summary h2 {
    font-size: 29px;
    letter-spacing: -0.035em;
    line-height: 1.2;
}
.solution-panel summary p {
    font-size: 15px;
    color: var(--muted);
    margin-top: 9px;
}
.plus {
    font-size: 27px;
    text-align: center;
}
.solution-panel[open] .plus {
    transform: rotate(45deg);
}
.solution-body {
    padding: 10px 0 45px 86px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 50px;
}
.solution-field {
    border-top: 1px solid var(--line);
    padding-top: 20px;
}
.solution-field h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
    margin-bottom: 10px;
}
.solution-field p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
}
.solution-field:first-child {
    grid-column: 1/-1;
}
.solution-body > .actions {
    grid-column: 1/-1;
    margin-top: 4px;
}
.timeline {
    display: grid;
    grid-template-columns: 2fr 3fr 5fr 2fr;
    gap: 18px;
    margin: 44px 0;
}
.timeline > div {
    border-top: 2px solid var(--ink);
    padding-top: 18px;
}
.timeline h3 {
    font-size: 19px;
    line-height: 1.4;
    margin-top: 12px;
    letter-spacing: -0.02em;
}
.gates {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 35px;
}
.gate {
    border-top: 1px solid var(--line);
    padding: 28px 0;
}
.gate h3 {
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.025em;
    margin: 14px 0;
}
.gate p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
}
.decision-line {
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--line);
    padding: 27px 0;
    margin-top: 20px;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: -0.02em;
}
.outcomes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 34px;
}
.outcomes h3 {
    font-size: 26px;
    letter-spacing: -0.03em;
}
.outcomes p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    margin-top: 12px;
}
.method-note {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 75px;
    align-items: start;
}
.document-cover {
    border: 1px solid var(--line);
    padding: 32px 30px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.document-cover:before {
    position: absolute;
    content: "";
    top: 10px;
    bottom: 10px;
    inset-inline-start: 8px;
    border-inline-start: 0px solid var(--line);
}
.document-cover img {
    width: 100%;
}
.document-cover h3 {
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -0.04em;
    max-width: 330px;
}
.document-cover small {
    font-size: 11px;
    color: var(--muted);
}
.reference-architecture {
    border: 1px solid var(--ink);
    padding: 35px;
    margin-top: 40px;
    position: relative;
}
.architecture-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px;
    margin-bottom: 25px;
}
.architecture-head strong {
    font-weight: 500;
    font-size: 21px;
    letter-spacing: -0.02em;
}
.architecture-level {
    padding: 23px;
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 30px;
    align-items: start;
}
.architecture-level.aeaix {
    border: 1px solid var(--ink);
}
.architecture-level h3 {
    font-size: 19px;
    letter-spacing: -0.025em;
}
.architecture-level p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
}
.architecture-level .items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 25px;
    font-size: 14px;
    line-height: 1.7;
}
.connector {
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    line-height: 1;
    color: var(--muted);
}
.architecture-evidence {
    border-top: 1px solid var(--line);
    margin-top: 25px;
    padding-top: 20px;
    font-size: 14px;
    color: var(--muted);
}
.reference-caption {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
    margin-top: 17px;
}
.control-row {
    display: grid;
    grid-template-columns: 170px 1fr 1fr 1fr;
    gap: 30px;
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
}
.control-row:last-child{ border-bottom:inherit;}
.control-row h2 {
    font-size: 21px;
    line-height: 1.4;
    letter-spacing: -0.025em;
}
.control-item h3 {
    font-size: 19px;
    line-height: 1.35;
    letter-spacing: -0.025em;
    margin-top: 12px;
}
.control-item p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-top: 12px;
}
.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 55px;
}
.legal-card {
    border-top: 1px solid var(--line);
    padding-top: 24px;
}
.legal-card h3 {
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: -0.025em;
}
.legal-card p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    margin-top: 18px;
}
.source-link {
    font-size: 12px;
    line-height: 1.65;
    display: inline-block;
    border-bottom: 1px solid var(--line);
    margin-top: 14px;
    color: var(--blue);
}
.operating-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 55px;
}
.operating-item {
    border-top: 1px solid var(--line);
    padding: 28px 0;
}
.operating-item h3 {
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: -0.03em;
}
.operating-item p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    margin-top: 16px;
}
.partner-chapter {
    border-top: 1px solid var(--ink);
    padding: 50px 0;
    display: grid;
    grid-template-columns: 0.68fr 1.32fr;
    gap: 90px;
}
.partner-chapter h2 {
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.04em;
    margin-top: 16px;
}
.partner-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
}
.partner-field {
    border-top: 1px solid var(--line);
    padding-top: 19px;
}
.partner-field h3 {
    font-size: 13px;
    margin-bottom: 13px;
    letter-spacing: 0.015em;
}
.partner-field p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
}
.partner-fields .actions {
    grid-column: 1/-1;
    margin-top: 0;
}
.company-facts {
    border-top: 1px solid var(--line);
    margin-top: 40px;
}
.company-facts > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
    font-size: 16px;
}
.company-facts span {
    color: var(--muted);
}
.contact-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 95px;
}
.contact-aside h2 {
    font-size: 38px;
    line-height: 1.15;
    letter-spacing: -0.035em;
}
.contact-aside p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin-top: 22px;
}
.contact-aside .email {
    display: inline-block;
    font-size: 24px;
    border-bottom: 1px solid var(--ink);
    margin-top: 30px;
}
.form-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: start;
    border-top: 0px solid var(--ink);
    padding-top: 21px;
    margin-bottom: 26px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.field.full {
    grid-column: 1/-1;
}
.field label {
    font-size: 14px;
    font-weight: 500;
}
.field input,
.field select,
.field textarea {
    background: #fff;
    color: var(--ink);
    border: 1px solid #adb3bb;
    border-radius: 0;
    padding: 13px 14px;
    font-size: 16px;
    line-height: 1.5;
    min-height: 52px;
    width: 100%;
    max-width: 100%;
}
.field textarea {
    min-height: 150px;
    resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--blue);
    outline: 1px solid var(--blue);
    outline-offset: 0;
}
.form-help {
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
    grid-column: 1/-1;
}
.form-help a {
    text-decoration: underline;
}
.form-message {
    font-size: 14px;
    margin-top: 18px;
    white-space: pre-wrap;
}
.policy-layout {
    display: grid;
    grid-template-columns: 225px 1fr;
    gap: 90px;
}
.policy-nav {
    position: sticky;
    top: 130px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    font-size: 14px;
    align-self: start;
}
.policy-nav a[aria-current="page"] {
    color: var(--blue);
}
.policy-content {
    max-width: 770px;
}
.policy-block {
    margin-bottom: 38px;
}
.policy-block h2 {
    font-size: 28px;
    letter-spacing: -0.035em;
    line-height: 1.3;
    margin-bottom: 14px;
}
.policy-block p,
.policy-block li {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.85;
}
.policy-block p + p {
    margin-top: 14px;
}
.policy-block ul {
    list-style: disc;
    padding-inline-start: 22px;
}
.policy-block a {
    color: var(--blue);
    text-decoration: underline;
}
.cookie-storage {
    border-collapse: collapse;
    width: 100%;
    font-size: 14px;
}
.cookie-storage th,
.cookie-storage td {
    text-align: start;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
    padding: 15px 12px 15px 0;
    line-height: 1.75;
}
.cookie-storage th {
    font-weight: 500;
}
.cookie-banner {
    position: fixed;
    bottom: 20px;
    inset-inline: var(--pad);
    margin: auto;
    width: min(1150px, calc(100% - 2 * var(--pad)));
    background: #fff;
    border: 1px solid #adb3bb;
    box-shadow: 0 12px 48px #0000000d;
    z-index: 80;
    padding: 25px 28px;
}
.cookie-banner-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}
.cookie-banner h2 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.4;
}
.cookie-banner p {
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 550px;
    margin-top: 7px;
}
.cookie-banner p a {
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.cookie-actions button {
    border: 1px solid var(--ink);
    background: #fff;
    color: var(--ink);
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.5;
    min-height: 43px;
    transition:
        border-color 0.18s,
        color 0.18s;
}
.cookie-actions button:hover {
    border-color: var(--blue);
    color: var(--blue);
}
dialog {
    border: 1px solid #adb3bb;
    background: #fff;
    color: var(--ink);
    width: min(670px, calc(100% - 32px));
    max-height: 85vh;
    overflow: auto;
    padding: 34px;
}
dialog::backdrop {
    background: rgba(0, 0, 0, 0.23);
}
.dialog-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 25px;
    margin-bottom: 18px;
}
.dialog-head h2 {
    font-size: 29px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}
.close-dialog {
    width: 35px;
    height: 35px;
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
}
.dialog-copy {
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}
.preference-row {
    border-top: 1px solid var(--line);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.preference-row label,
.preference-row strong {
    font-size: 16px;
    font-weight: 500;
}
.preference-row p {
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
    margin-top: 6px;
}
.preference-row small {
    font-size: 12px;
    white-space: nowrap;
}
.review-body {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    font-size: 14px;
    line-height: 1.7;
    border: 1px solid var(--line);
    padding: 20px;
    max-height: 280px;
    overflow: auto;
    margin: 20px 0;
}
.empty-page {
    padding: 120px 0;
}
.nojs {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    padding-top: 15px;
}
.reveal {
    opacity: 1;
    transform: none;
}
.js.motion-enabled .reveal.pending {
    opacity: 0;
    transform: translateY(10px);
}
.js.motion-enabled .reveal {
    transition:
        opacity 0.38s ease,
        transform 0.38s ease;
}
.motion-paused *,
.motion-paused *:before,
.motion-paused *:after {
    animation: none !important;
    transition: none !important;
}
.back-top {
    font-size: 12px;
}
:lang(ar) {
    --font: "Noto Sans Arabic", "Geeza Pro", Tahoma, Arial, sans-serif;
    letter-spacing: 0 !important;
}
:lang(ar) body {
    font-family: var(--font);
    line-height: 1.9;
}
:lang(ar) .micro,
:lang(ar) .eyebrow {
    letter-spacing: 0;
    text-transform: none;
    font-size: 12px;
}
:lang(ar) h1,
:lang(ar) h2,
:lang(ar) h3 {
    letter-spacing: 0;
    line-height: 1.45;
    font-weight: 500;
}
:lang(ar) .hero h1 {
    font-size: clamp(52px, 6.1vw, 90px);
    line-height: 1.4;
}
:lang(ar) .hero-description {
    font-size: 19px;
    line-height: 1.95;
}
:lang(ar) .hero-columns {
    grid-template-columns: 1.45fr 0.8fr;
}
:lang(ar) .desktop-nav {
    gap: 22px;
}
:lang(ar) .desktop-nav > a {
    font-size: 13px;
}
:lang(ar) .owner-item h2 {
    font-size: 28px;
}
:lang(ar) .six-chain a {
    padding-inline: 0 18px;
}
:lang(ar) .six-chain strong {
    font-size: 21px;
}
:lang(ar) .page-hero h1 {
    font-size: clamp(40px, 4.9vw, 70px);
}
:lang(ar) .section h2 {
    font-size: clamp(32px, 3.4vw, 48px);
}
:lang(ar) .solution-body {
    padding: 10px 86px 45px 0;
}
:lang(ar) .arrow,
:lang(ar) .button > span,
:lang(ar) .text-link > span {
    transform: scaleX(-1);
}
:lang(ar) .brand small {
    letter-spacing: 0.13em;
}
:lang(ar) .footer-grid {
    gap: 40px;
}
:lang(ar) .contact-aside .email {
    font-family: Arial, sans-serif;
}
:lang(ar) .cookie-actions button {
    font-size: 12px;
}
@media (min-width: 1600px) {
    .hero h1 {
        font-size: 120px;
    }
    .hero {
        padding-top: 75px;
    }
    .hero-columns {
        gap: 130px;
    }
    .hero-bottom {
        margin-top: 80px;
    }
}
@media (max-width: 1200px) {
    .desktop-nav {
        gap: 16px;
    }
    .desktop-nav > a {
        font-size: 12px;
    }
    .header-inner {
        gap: 20px;
    }
    .hero-columns {
        gap: 50px;
        grid-template-columns: 1.4fr 0.7fr;
    }
    .owner-item h2 {
        font-size: 29px;
    }
    .hero h1 {
        font-size: clamp(65px, 7.6vw, 105px);
    }
    .hero-description {
        font-size: 18px;
    }
    .split,
    .chapter,
    .partner-chapter,
    .contact-layout {
        gap: 50px;
    }
    .footer-grid {
        gap: 35px;
    }
    .cookie-banner-inner {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .policy-layout {
        gap: 45px;
    }
}
@media (max-width: 1050px) {
    .desktop-nav {
        display: none;
    }
    .header-tools {
        margin-inline-start: auto;
    }
    .menu-toggle {
        display: block;
    }
    .hero-columns {
        grid-template-columns: 1fr 0.6fr;
        gap: 38px;
    }
    .hero h1 {
        font-size: 74px;
    }
    .owner-ledger {
        padding-top: 4px;
    }
    .owner-item h2 {
        font-size: 25px;
    }
    .owner-item p {
        font-size: 14px;
    }
    .six-chain strong {
        font-size: 18px;
    }
    .six-chain small {
        font-size: 12px;
    }
    .sector-grid {
        grid-template-columns: 1fr 1fr;
    }
    .control-row {
        grid-template-columns: 140px 1fr 1fr 1fr;
        gap: 18px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid > .footer-nav:last-child {
        grid-column: 2;
    }
    .footer-intro {
        grid-row: span 2;
    }
    .contact-layout {
        grid-template-columns: 0.7fr 1.3fr;
        gap: 40px;
    }
    .delivery-row {
        gap: 25px;
        grid-template-columns: 40px 0.7fr 1.2fr;
    }
    :lang(ar) .hero-columns {
        grid-template-columns: 1.25fr 0.8fr;
    }
    :lang(ar) .hero h1 {
        font-size: 62px;
    }
}
@media (max-width: 800px) {
    :root {
        --header: 78px;
    }
    .brand img {
        width: 138px;
    }
    .hero {
        padding: 36px 0 42px;
    }
    .hero-meta {
        margin-bottom: 35px;
    }
    .hero-meta .micro:last-child {
        display: none;
    }
    .hero-columns {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: clamp(58px, 10vw, 83px);
        max-width: 680px;
    }
    .hero-description {
        max-width: 610px;
    }
    .owner-ledger {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 16px;
    }
    .owner-ledger > .micro {
        grid-column: 1/-1;
        padding-bottom: 15px;
    }
    .owner-item {
        padding: 0 0 18px;
    }
    .owner-ledger > .text-link {
        grid-column: 1/-1;
        justify-self: start;
        margin-top: 0;
    }
    .hero-bottom {
        margin-top: 35px;
    }
    .section {
        padding: 74px 0;
    }
    .section-top {
        gap: 30px;
        margin-bottom: 34px;
    }
    .section-top .text-link {
        font-size: 13px;
    }
    .six-chain {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 0;
    }
    .six-chain strong {
        font-size: 21px;
    }
    .six-chain small {
        max-width: 200px;
        font-size: 13px;
    }
    .split,
    .split.asymmetric,
    .partner-home,
    .contact-layout,
    .method-note {
        grid-template-columns: 1fr;
        gap: 38px;
    }
    .selected-solutions {
        gap: 0 30px;
    }
    .solution-link {
        grid-template-columns: 25px 1fr 16px;
        gap: 12px;
    }
    .solution-link h3 {
        font-size: 23px;
    }
    .pov-aside {
        padding-inline-start: 0;
        border-inline-start: 0;
    }
    .pov-number {
        font-size: 90px;
    }
    .partner-home {
        gap: 30px;
    }
    .closing {
        padding: 70px 0;
    }
    .closing .bottom {
        align-items: start;
    }
    .page-hero {
        padding: 46px 0 40px;
    }
    .breadcrumb {
        margin-bottom: 34px;
    }
    .chapter {
        gap: 35px;
    }
    .chapter h2 {
        font-size: 44px;
    }
    .delivery-row {
        grid-template-columns: 36px 1fr;
        gap: 20px;
    }
    .delivery-row .stage-main {
        grid-column: 2;
    }
    .delivery-row h2 {
        font-size: 34px;
    }
    .gates {
        grid-template-columns: 1fr 1fr;
    }
    .control-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .control-row > h2 {
        grid-column: 1/-1;
    }
    .partner-chapter {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .partner-chapter h2 {
        font-size: 38px;
    }
    .policy-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }
    .policy-nav {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .architecture-level {
        grid-template-columns: 1fr;
        gap: 13px;
    }
    .reference-architecture {
        padding: 24px;
    }
    .contact-aside {
        max-width: 650px;
    }
    .contact-aside h2 {
        font-size: 36px;
    }
    .policy-block h2 {
        font-size: 26px;
    }
    :lang(ar) .hero-columns {
        grid-template-columns: 1fr;
    }
    :lang(ar) .hero h1 {
        font-size: clamp(49px, 9vw, 72px);
    }
    :lang(ar) .six-chain strong {
        font-size: 19px;
    }
    :lang(ar) .hero-meta .micro {
        font-size: 11px;
    }
}
@media (max-width: 540px) {
    body {
        font-size: 16px;
    }
    .header-tools {
        gap: 12px;
    }
    .brand img {
        width: 128px;
    }
    .brand small {
        font-size: 7px;
    }
    .hero h1 {
        font-size: clamp(51px, 13.6vw, 74px);
        line-height: 1.06;
        letter-spacing: -0.055em;
    }
    .hero-description {
        font-size: 17px;
        line-height: 1.8;
        margin-top: 25px;
    }
    .actions {
        gap: 10px;
    }
    .actions .button {
        font-size: 13px;
        padding: 12px 16px;
        gap: 20px;
    }
    .owner-ledger {
        gap: 14px;
    }
    .owner-item h2 {
        font-size: 23px;
    }
    .owner-item p {
        font-size: 13px;
        line-height: 1.75;
        margin-top: 10px;
    }
    .hero-bottom {
        display: block;
        font-size: 12px;
    }
    .hero-bottom p:last-child {
        text-align: start;
        margin-top: 14px;
        max-width: none;
    }
    .section-top {
        display: block;
    }
    .section-top .text-link {
        margin-top: 19px;
    }
    .section h2,
    .editorial h2 {
        font-size: 36px;
        line-height: 1.18;
    }
    .section-intro {
        font-size: 17px;
    }
    .section.small {
        padding: 46px 0;
    }
    .six-chain {
        gap: 24px 0;
    }
    .six-chain a {
        padding-inline-end: 11px;
    }
    .six-chain strong {
        font-size: 18px;
    }
    .six-chain small {
        font-size: 12px;
        line-height: 1.6;
    }
    .selected-solutions,
    .sector-grid,
    .legal-grid,
    .operating-list {
        grid-template-columns: 1fr;
    }
    .solution-link h3 {
        font-size: 25px;
    }
    .sector h3 {
        font-size: 23px;
    }
    .control-words {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .closing h2 {
        font-size: 40px;
    }
    .closing .bottom {
        flex-direction: column;
        align-items: start;
        gap: 25px;
        margin-top: 35px;
    }
    .closing .email {
        font-size: 23px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-intro {
        grid-row: auto;
    }
    .footer-grid > .footer-nav:last-child {
        grid-column: auto;
    }
    .footer-end {
        flex-direction: column;
        align-items: start;
        gap: 22px;
    }
    .footer-controls {
        gap: 16px;
    }
    .page-hero h1 {
        font-size: 48px;
        line-height: 1.12;
    }
    .page-hero .lede {
        font-size: 18px;
        line-height: 1.8;
    }
    .page-tabs {
        gap: 10px 24px;
        font-size: 12px;
    }
    .chapter {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 38px 0;
    }
    .chapter h2 {
        font-size: 44px;
    }
    .chapter p {
        font-size: 17px;
    }
    .delivery-row {
        grid-template-columns: 28px 1fr;
        gap: 16px;
    }
    .delivery-row h2 {
        font-size: 32px;
    }
    .delivery-row p {
        font-size: 16px;
    }
    .solution-panel summary {
        grid-template-columns: 30px 1fr 20px;
        gap: 13px;
        padding: 26px 0;
    }
    .solution-panel summary h2 {
        font-size: 24px;
        line-height: 1.3;
    }
    .solution-panel summary p {
        font-size: 14px;
    }
    .solution-body {
        padding: 0 0 35px;
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .solution-field:first-child {
        grid-column: auto;
    }
    .solution-body > .actions {
        grid-column: auto;
    }
    .timeline {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .timeline h3 {
        font-size: 18px;
    }
    .gates {
        gap: 0 22px;
    }
    .gate h3 {
        font-size: 20px;
        line-height: 1.3;
    }
    .gate p {
        font-size: 14px;
    }
    .decision-line {
        font-size: 21px;
    }
    .outcomes {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .outcomes > div {
        border-bottom: 1px solid var(--line);
        padding-bottom: 22px;
    }
    .document-cover {
        min-height: 350px;
    }
    .document-cover h3 {
        font-size: 35px;
    }
    .control-row {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 26px 0;
    }
    .control-row > h2 {
        font-size: 24px;
    }
    .control-item {
        display: grid;
        grid-template-columns: 38px 1fr;
        gap: 3px 13px;
    }
    .control-item > .index {
        grid-row: span 2;
        margin-top: 3px;
    }
    .control-item h3 {
        margin: 0;
    }
    .control-item p {
        margin-top: 4px;
        grid-column: 2;
    }
    .reference-architecture {
        padding: 18px;
    }
    .architecture-head {
        flex-direction: column;
        gap: 10px;
    }
    .architecture-level {
        padding: 18px;
    }
    .architecture-level .items {
        gap: 8px 18px;
    }
    .partner-fields {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .partner-fields .actions {
        grid-column: auto;
    }
    .partner-chapter h2 {
        font-size: 34px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .field.full,
    .form-help {
        grid-column: auto;
    }
    .form-top {
        flex-wrap: wrap;
    }
    .form-help {
        font-size: 13px;
    }
    .cookie-banner {
        bottom: 10px;
        inset-inline: 12px;
        width: calc(100% - 24px);
        padding: 18px;
    }
    .cookie-banner-inner {
        gap: 15px;
    }
    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .cookie-actions button:last-child {
        grid-column: 1/-1;
    }
    .cookie-banner h2 {
        font-size: 17px;
    }
    .cookie-banner p {
        font-size: 12px;
    }
    .cookie-actions button {
        padding: 10px 8px;
        font-size: 12px;
    }
    .policy-block p,
    .policy-block li {
        font-size: 15px;
    }
    .cookie-storage {
        font-size: 12px;
        word-break: break-word;
    }
    dialog {
        padding: 23px;
    }
    .dialog-head h2 {
        font-size: 25px;
    }
    :lang(ar) .hero h1 {
        font-size: 48px;
        line-height: 1.4;
    }
    :lang(ar) .section h2 {
        font-size: 32px;
        line-height: 1.55;
    }
    :lang(ar) .owner-item h2 {
        font-size: 22px;
    }
    :lang(ar) .owner-item p {
        font-size: 12px;
    }
    :lang(ar) .page-hero h1 {
        font-size: 38px;
        line-height: 1.5;
    }
    :lang(ar) .solution-body {
        padding: 0 0 35px;
    }
    :lang(ar) .six-chain strong {
        font-size: 18px;
    }
    :lang(ar) .six-chain small {
        font-size: 11px;
    }
    :lang(ar) .button {
        font-size: 12px;
        gap: 14px;
    }
    :lang(ar) .solution-panel summary h2 {
        font-size: 21px;
    }
    :lang(ar) .closing h2 {
        font-size: 34px;
    }
    :lang(ar) .hero-description {
        font-size: 17px;
    }
    :lang(ar) .footer-grid {
        gap: 27px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
    *,
    *:before,
    *:after {
        animation-duration: 0s !important;
        transition-duration: 0s !important;
    }
}
@media print {
    .site-header,
    .site-footer,
    .cookie-banner,
    dialog,
    .actions,
    .page-tabs,
    .policy-nav {
        display: none !important;
    }
    body {
        font-size: 12pt;
        color: #000;
    }
    .container {
        width: 100%;
    }
    .section {
        padding: 25px 0;
    }
    .page-hero h1 {
        font-size: 36pt;
    }
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
    a {
        color: #000;
    }
    .solution-panel > summary {
        display: block;
    }
    .solution-panel .solution-body {
        display: grid;
    }
    h1,
    h2,
    h3 {
        break-after: avoid;
    }
    .gate,
    .control-row,
    .partner-chapter {
        break-inside: avoid;
    }
}

html:not(.js) #enquiry-form .form-grid {
    display: none;
}
.motion-paused {
    scroll-behavior: auto !important;
}
@media (prefers-reduced-motion: reduce) {
    html.user-motion-on .reveal {
        transition:
            opacity 0.38s ease,
            transform 0.38s ease;
    }
    html.user-motion-on .button {
        transition:
            background 0.18s,
            color 0.18s,
            border-color 0.18s;
    }
}

html.motion-paused {
    scroll-behavior: auto;
}

/* AEAIX R10. White editorial system, portable outlined display typography. */
:root {
    --paper: #fff;
    --ink: #171820;
    --muted: #555865;
    --faint: #767985;
    --line: #e0e1e7;
    --blue: #405fde;
    --violet: #8548d6;
    --cyan: #269bd1;
    --gradient: linear-gradient(110deg, #8945cd 0%, #6752df 40%, #3b73de 72%, #249fd1 100%);
    --font: "Aptos", "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --wide: 1440px;
    --pad: clamp(24px, 4.7vw, 82px);
    --header: 94px;
    color-scheme: light;
}
html {
    scroll-padding-top: 118px;
}
body {
    font-size: 17px;
    line-height: 1.72;
    color: var(--ink);
    letter-spacing: -0.015em;
}
.container {
    width: min(var(--wide), calc(100% - 2 * var(--pad)));
}
.micro,
.eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: #636675;
}
.eyebrow {
    margin-bottom: 25px;
    gap: 15px;
}
.eyebrow:before {
    width: 18px;
    height: 2px;
    background: var(--gradient);
}
.index {
    font-size: 12px;
    font-weight: 500;
    color: #777b88;
}
.site-header {
    height: var(--header);
    border-bottom: 1px solid #ebebf0;
    background: #fff;
}
.header-inner {
    gap: 30px;
}
.brand img {
    width: 155px;
}
.brand {
    gap: 9px;
}
.brand small {
    font-size: 8px;
    color: #6b6d77;
    letter-spacing: 0.18em;
}
.desktop-nav {
    gap: 27px;
}
.desktop-nav > a {
    font-size: 13px;
    font-weight: 500;
}
.desktop-nav > a:last-child {
    padding: 10px 20px;
    border: 1px solid #22232b;
    border-radius: 3px;
}
.header-tools {
    gap: 22px;
}
.language {
    font-size: 13px;
    border-inline-start: 1px solid var(--line);
    padding-inline-start: 22px;
}
.header-signal {
    position: absolute;
    inset-inline-start: 0;
    bottom: -1px;
    height: 1px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--gradient);
    pointer-events: none;
}
.menu-toggle {
    border: 1px solid var(--line);
    border-radius: 3px;
}
.button {
    min-height: 52px;
    border-radius: 3px;
    padding: 14px 22px;
    font-size: 14px;
    letter-spacing: 0;
    background: #1b1c24;
    color: #fff;
    border: 1px solid #1b1c24;
    gap: 26px;
    transition:
        background 0.2s,
        border-color 0.2s,
        transform 0.2s;
}
.button:hover {
    background: #373445;
    transform: translateY(-2px);
    border-color: #373445;
    color: #fff;
}
.button.ghost {
    background: #fff;
    border-color: #c5c6cf;
    color: #242631;
}
.button.ghost:hover {
    border-color: #6954d4;
    color: #6954d4;
}
.text-link {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    gap: 20px;
    border-color: #b5b7c3;
}
.text-link:hover {
    border-color: var(--blue);
}
.actions {
    gap: 12px;
    margin-top: 28px;
}
.hero-title {
    color: var(--ink);
}
.studio-type {
    font-weight: 500 !important;
    letter-spacing: -0.035em;
    line-height: 1.2;
    max-width: 100%;
}
.outline-type {
    display: block;
    font-size: inherit;
    line-height: 1.08;
    word-spacing: -0.09em;
}
.word-art {
    display: inline-block;
    max-width: 100%;
    vertical-align: -0.19em;
    color: inherit;
    overflow: visible;
    flex-shrink: 0;
}
.studio-type .word-art {
    display: inline-block;
}
.type-reading {
    font-size: 16px !important;
}
.accent-type {
    color: #6250cf;
}
.headline-line {
    display: block;
    white-space: nowrap;
    line-height: 1.07;
}
.studio-hero {
    padding: 38px 0 0;
    background: #fff;
    overflow: hidden;
}
.studio-overline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
}
.studio-overline .edition {
    color: #7e7f88;
    font-size: 10px;
}
.studio-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 38px;
    align-items: center;
    min-height: 627px;
    padding: 36px 0 22px;
}
.hero-copy {
    padding: 4px 0 26px;
    position: relative;
    z-index: 2;
}
.studio-hero .hero-title {
    font-size: clamp(65px, 6.8vw, 108px);
    line-height: 1.07;
    max-width: 700px;
    margin: 0;
    letter-spacing: 0;
}
.studio-hero .hero-description {
    font-size: 18px;
    line-height: 1.75;
    max-width: 540px;
    margin: 28px 0 0;
    color: #505461;
    letter-spacing: -0.01em;
}
.hero-support {
    font-size: 12px;
    color: #747784;
    margin-top: 24px;
}
.hero-foot {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding: 21px 0 25px;
    font-size: 12px;
}
.hero-foot .micro {
    color: #554c75;
    font-size: 10px;
}
.hero-foot p {
    color: #6b6d79;
}
.hero-foot a {
    font-weight: 500;
    display: flex;
    gap: 24px;
}
.hero-foot a:hover {
    color: #694fd8;
}
.hero-instrument {
    position: relative;
    min-width: 0;
    align-self: center;
    padding: 0 0 20px;
}
.instrument-eyebrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0 9px;
}
.instrument-eyebrow .micro {
    font-size: 10px;
}
.specimen {
    color: #8b8998;
}
.canvas-stage {
    position: relative;
    width: calc(100% + 42px);
    margin-inline-start: -21px;
    aspect-ratio: 1.23;
}
.system-canvas {
    display: block;
    width: 100%;
    height: 100%;
}
.canvas-callout {
    position: absolute;
    font-size: 10px;
    letter-spacing: 0.02em;
    background: #fff;
    padding: 6px 9px;
    white-space: nowrap;
    color: #565563;
    line-height: 1.35;
    z-index: 1;
}
.canvas-callout > span {
    position: absolute;
    height: 1px;
    top: 50%;
    background: #c0bdcd;
    width: 34px;
}
.callout-top {
    top: 18%;
    inset-inline-end: 0;
}
.callout-top > span {
    inset-inline-end: 100%;
}
.callout-middle {
    top: 58%;
    inset-inline-start: 0;
}
.callout-middle > span {
    inset-inline-start: 100%;
}
.callout-bottom {
    bottom: 12%;
    inset-inline-end: 0;
}
.callout-bottom > span {
    inset-inline-end: 100%;
}
.instrument-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.instrument-tabs button {
    text-align: start;
    padding: 16px 0 14px;
    position: relative;
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: -0.035em;
}
.instrument-tabs small {
    color: #8b8d98;
    font-size: 9px;
    margin-inline-end: 12px;
    vertical-align: middle;
    letter-spacing: 0.08em;
}
.instrument-tabs button:after {
    content: "";
    position: absolute;
    bottom: -1px;
    inset-inline-start: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.35s;
}
.instrument-tabs button[aria-selected="true"]:after {
    width: 75%;
}
.instrument-tabs button[aria-selected="true"] {
    color: #664dcc;
}
.instrument-detail {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    min-height: 54px;
    padding-top: 13px;
}
.instrument-detail p {
    font-size: 12px;
    line-height: 1.6;
    color: #656672;
}
.sequence-resume {
    font-size: 10px;
    color: #6551cf;
    border-bottom: 1px solid #9b8bdd;
    align-self: flex-start;
    white-space: nowrap;
    padding: 0;
}
.instrument-note {
    font-size: 10px;
    color: #8a8c96;
    letter-spacing: 0;
    line-height: 1.6;
    margin-top: 2px;
    max-width: 480px;
}
.section {
    padding: 110px 0;
    border-color: #e6e6ec;
    background: #fff;
}
.section.small {
    padding: 50px 0;
}
.section h2,
.editorial h2 {
    font-size: clamp(36px, 3.45vw, 59px);
    line-height: 1.14;
    max-width: 770px;
}
.section-top {
    gap: 70px;
    margin-bottom: 48px;
}
.section-top > div:first-child {
    flex: 1;
}
.section-top > .section-intro {
    max-width: 420px;
    margin: 47px 0 0;
    flex: 0 1 37%;
}
.section-intro {
    font-size: 17px;
    line-height: 1.85;
    max-width: 690px;
    color: #5e606e;
}
.section-copy {
    font-size: 17px;
    line-height: 1.85;
    color: #5e606e;
}
.ownership-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}
.ownership {
    padding: 29px 34px 12px 0;
    border-top: 1px solid #21232f;
    position: relative;
}
.ownership + .ownership {
    border-inline-start: 1px solid var(--line);
    padding-inline-start: 34px;
}
.ownership-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    height: 36px;
}
.ownership-icon {
    width: 38px;
    height: 34px;
    position: relative;
    display: block;
    opacity: 0.9;
}
.ownership-icon:before,
.ownership-icon:after {
    content: "";
    position: absolute;
    border: 1px solid #7b63cf;
    width: 20px;
    height: 18px;
    inset-inline-start: 7px;
    top: 7px;
    transform: skewY(-22deg);
}
.ownership-icon:after {
    top: 1px;
    inset-inline-start: 13px;
    border-color: #4568bc;
}
.ownership-icon[data-icon="1"]:before {
    transform: rotate(45deg);
    width: 15px;
    height: 15px;
}
.ownership-icon[data-icon="1"]:after {
    transform: rotate(45deg);
    width: 15px;
    height: 15px;
    inset-inline-start: 21px;
    top: 7px;
}
.ownership-icon[data-icon="2"]:before {
    transform: none;
    width: 27px;
    height: 20px;
}
.ownership-icon[data-icon="2"]:after {
    transform: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 13px;
    height: 1px;
    inset-inline-start: 14px;
    top: 17px;
}
.ownership h3 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 18px;
}
.ownership > p {
    font-size: 16px;
    line-height: 1.8;
    min-height: 114px;
    color: #616371;
    max-width: 365px;
}
.ownership .text-link {
    font-size: 12px;
    margin-top: 26px;
    border: 0;
    color: #636173;
}
.experience-section {
    padding-top: 100px;
    padding-bottom: 108px;
}
.experience-board {
    border: 1px solid #dddde6;
    border-radius: 7px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 22px 65px -50px #9389b1;
}
.demo-controls {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
}
.demo-controls button {
    font-size: 14px;
    padding: 20px 30px;
    min-width: 200px;
    text-align: start;
    border-inline-end: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 45px;
    position: relative;
}
.demo-controls button[aria-selected="true"] {
    color: #5e48ba;
    background: #fcfbff;
}
.demo-controls button[aria-selected="true"]:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
}
.demo-controls button span {
    color: #8c81ac;
}
.demo-panel {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1.1fr;
    gap: 0;
    padding: 42px 48px 34px;
    align-items: center;
    min-height: 390px;
}
.demo-source {
    max-width: 250px;
    width: 100%;
}
.demo-source > .micro,
.demo-output > .micro {
    font-size: 9px;
    letter-spacing: 0.13em;
}
.demo-source > .micro:last-child {
    display: block;
    margin-top: 18px;
    color: #817e8d;
}
.demo-paper {
    position: relative;
    margin-top: 20px;
    background: #fff;
    border: 1px solid #d1cfda;
    border-radius: 4px;
    padding: 26px 24px;
    width: 230px;
    max-width: 100%;
    box-shadow:
        7px 7px 0 #f6f6f9,
        8px 8px 0 #e1dfe7;
    overflow: hidden;
    transform-origin: center;
}
.paper-mark {
    width: 23px;
    height: 6px;
    background: var(--gradient);
    margin-bottom: 24px;
}
.demo-paper strong {
    display: block;
    font-size: 13px;
    letter-spacing: 0;
    margin-bottom: 20px;
    font-weight: 600;
}
.paper-row {
    display: block;
    height: 3px;
    background: #dcdae4;
    margin-top: 8px;
}
.w80 {
    width: 80%;
}
.w55 {
    width: 55%;
}
.w90 {
    width: 90%;
}
.paper-table {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    margin-top: 22px;
}
.paper-table span {
    height: 16px;
    border-top: 1px solid #e6e3eb;
    border-bottom: 1px solid #e6e3eb;
}
.paper-table span:nth-child(even) {
    border-inline-start: 1px solid #e6e3eb;
}
.scan-bar {
    position: absolute;
    inset-inline: 12px;
    height: 28px;
    top: 34px;
    background: linear-gradient(transparent, rgba(116, 86, 194, 0.065));
    border-bottom: 1px solid rgba(115, 83, 199, 0.55);
    opacity: 0;
}
.demo-processor {
    position: relative;
    width: 100%;
    direction: ltr;
    padding: 40px 0 10px;
}
.demo-processor svg {
    width: 100%;
    overflow: visible;
}
.demo-processor svg path {
    stroke: #ebe8f2;
    stroke-width: 1.3;
}
.demo-processor svg .flow-run {
    stroke: url(#flowGradient);
    stroke-width: 2;
    stroke-dasharray: 8 220;
    stroke-linecap: round;
}
.demo-processor svg .flow-secondary {
    stroke: #968bc2;
    stroke-dasharray: 4 50;
}
.demo-processor svg rect {
    fill: white;
    stroke: #cec9df;
}
.demo-processor svg rect + path {
    stroke: #77738b;
    stroke-width: 1.3;
}
.demo-processor svg circle {
    fill: #a294c4;
    stroke: white;
    stroke-width: 2;
}
.demo-processor > span {
    position: absolute;
    top: 38%;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 9px;
    letter-spacing: 0.23em;
    color: #5c5675;
}
.demo-processor > small {
    display: block;
    text-align: center;
    position: relative;
    margin-top: 22px;
    font-size: 11px;
    color: #777183;
    letter-spacing: 0.03em;
}
.demo-output {
    padding-inline-start: 35px;
    align-self: center;
}
.demo-output h3 {
    font-size: 29px;
    line-height: 1.25;
    letter-spacing: -0.045em;
    margin-top: 25px;
    margin-bottom: 26px;
}
.output-row {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 15px 0;
    font-size: 13px;
    line-height: 1.5;
    color: #77717d;
}
.mini-check {
    width: 14px;
    height: 14px;
    border: 1px solid #b7b0c6;
    flex-shrink: 0;
    border-radius: 3px;
    position: relative;
}
.mini-check:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 3px;
    border-inline-start: 1.3px solid #77629f;
    border-bottom: 1.3px solid #77629f;
    transform: rotate(-45deg);
    left: 3px;
    top: 3px;
}
.demo-output .text-link {
    font-size: 12px;
    margin-top: 14px;
}
.demo-footer {
    border-top: 1px solid var(--line);
    padding: 15px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}
.demo-footer .micro {
    font-size: 9px;
    color: #898592;
    letter-spacing: 0.09em;
}
.demo-timer {
    width: 90px;
    height: 2px;
    background: #e4e0ed;
    overflow: hidden;
}
.demo-timer i {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gradient);
}
html.motion-enabled .experience-board.is-active .scan-bar {
    animation: scanDocument 5s infinite ease-in-out;
}
html.motion-enabled .experience-board.is-active .demo-paper {
    animation: paperDock 5s infinite ease-in-out;
}
html.motion-enabled .experience-board.is-active .flow-run {
    animation: routeSignal 4s linear infinite;
}
html.motion-enabled .experience-board.is-active .flow-secondary {
    animation: routeSignal 7s linear infinite;
}
html.motion-enabled .experience-board.is-active .output-row {
    animation: confirmField 5s ease-in-out infinite;
}
html.motion-enabled .experience-board.is-active .output-row:nth-of-type(2) {
    animation-delay: 0.35s;
}
html.motion-enabled .experience-board.is-active .output-row:nth-of-type(3) {
    animation-delay: 0.7s;
}
html.motion-enabled .experience-board.is-active .demo-timer i {
    animation: timeSignal 5s ease-in-out infinite;
}
@keyframes scanDocument {
    0%,
    12% {
        top: 26px;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    74% {
        top: 205px;
        opacity: 1;
    }
    88%,
    100% {
        top: 205px;
        opacity: 0;
    }
}
@keyframes paperDock {
    0%,
    100% {
        transform: translateY(0);
    }
    35% {
        transform: translateY(-5px);
    }
    75% {
        transform: translateY(0);
    }
}
@keyframes routeSignal {
    to {
        stroke-dashoffset: -460;
    }
}
@keyframes confirmField {
    0%,
    22% {
        color: #88828f;
        transform: translateX(0);
    }
    45%,
    78% {
        color: #3d334b;
        transform: translateX(3px);
    }
    100% {
        color: #88828f;
        transform: translateX(0);
    }
}
@keyframes timeSignal {
    0% {
        transform: translateX(-25px);
    }
    100% {
        transform: translateX(100px);
    }
}
.selected-solutions {
    gap: 0 46px;
}
.solution-link {
    padding: 32px 0;
    grid-template-columns: 42px 1fr 24px;
    gap: 18px;
    transition: background 0.2s;
}
.solution-link h3 {
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: -0.04em;
    font-weight: 500;
}
.solution-link p {
    font-size: 15px;
    line-height: 1.75;
    color: #6d6d78;
    max-width: 440px;
}
.solution-link > .index {
    padding-top: 3px;
    color: #9789b4;
}
.solution-link .arrow {
    color: #8b819d;
}
.solution-link:hover {
    background: #fdfcff;
}
.six-chain {
    margin: 50px 0 3px;
    gap: 0;
}
.six-chain a {
    border-color: #c7c6d2;
    padding: 29px 25px 15px 0;
}
.six-chain a:before {
    background: #fff;
    border: 1px solid #8f84b0;
    width: 8px;
    height: 8px;
    top: -4px;
    border-radius: 50%;
    z-index: 1;
}
.six-chain strong {
    font-size: 23px;
    line-height: 1.3;
    color: #25212e;
    font-weight: 500;
}
.six-chain small {
    font-size: 13px;
    line-height: 1.7;
    color: #7c7988;
}
.six-chain li {
    position: relative;
}
.six-chain li:after {
    content: "";
    height: 2px;
    position: absolute;
    inset-inline-start: 0;
    top: -1px;
    width: 0;
    background: var(--gradient);
}
html.motion-enabled .six-chain.is-active li:after {
    animation: stageTravel 15s infinite;
    animation-delay: calc(var(--stage-index, 0) * 2.3s);
}
html.motion-enabled .six-chain.is-active li:nth-child(2) {
    --stage-index: 1;
}
html.motion-enabled .six-chain.is-active li:nth-child(3) {
    --stage-index: 2;
}
html.motion-enabled .six-chain.is-active li:nth-child(4) {
    --stage-index: 3;
}
html.motion-enabled .six-chain.is-active li:nth-child(5) {
    --stage-index: 4;
}
html.motion-enabled .six-chain.is-active li:nth-child(6) {
    --stage-index: 5;
}
@keyframes stageTravel {
    0%,
    100% {
        width: 0;
        opacity: 0;
    }
    2% {
        opacity: 1;
    }
    14%,
    21% {
        width: 100%;
        opacity: 1;
    }
    24%,
    99% {
        width: 100%;
        opacity: 0;
    }
}
.studio-proof .split {
    gap: 100px;
    align-items: center;
}
.pov-number {
    font-size: 114px;
    line-height: 1;
    color: #22212a;
    letter-spacing: -0.065em;
}
.pov-number span {
    font-size: 22px;
    color: #797685;
    margin-top: 18px;
}
.pov-aside {
    padding-inline-start: 45px;
    border-color: #d1c9e1;
}
.pov-aside p {
    font-size: 19px;
    line-height: 1.8;
    max-width: 550px;
}
.fine-line {
    font-size: 12px;
    line-height: 1.85;
    color: #888390;
}
.sector-grid {
    gap: 0 38px;
}
.sector {
    padding: 27px 0;
}
.sector h3 {
    font-size: 21px;
    font-weight: 500;
}
.sector summary p {
    font-size: 14px;
    line-height: 1.8;
}
.sector summary:after {
    color: #8a7b9e;
    font-size: 24px;
    font-weight: 300;
}
.sector .panel {
    font-size: 14px;
}
.control-words {
    gap: 30px;
}
.control-words > div {
    border-color: #b5b0c7;
}
.control-words h3 {
    font-size: 22px;
}
.control-words p {
    font-size: 14px;
    color: #777280;
}
.partner-home {
    border-color: #dfdae9;
    gap: 60px;
}
.partner-home p {
    font-size: 17px;
}
.studio-closing {
    position: relative;
    overflow: hidden;
    padding: 105px 0 93px;
}
.studio-closing:before {
    content: "";
    position: absolute;
    width: 26%;
    height: 1px;
    top: 0;
    inset-inline-start: var(--pad);
    background: var(--gradient);
}
.closing h2 {
    font-size: clamp(40px, 4.6vw, 76px);
    max-width: 1130px;
}
.closing .email {
    font-size: 23px;
    border-color: #aaa2bd;
}
.closing .bottom {
    margin-top: 38px;
}
.closing .bottom p {
    font-size: 16px;
}
.closing .outline-type {
    line-height: 1.15;
}
.footer-grid {
    gap: 70px;
}
.site-footer {
    padding: 50px 0 27px;
    background: #fff;
}
.footer-nav a,
.footer-intro p {
    font-size: 13px;
    color: #656171;
}
.footer-end {
    font-size: 11px;
}
.footer-controls {
    gap: 20px;
}
.footer-controls button {
    font-size: 11px;
}
.footer-controls .motion:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #7057be;
    border-radius: 50%;
    margin-inline-end: 7px;
    vertical-align: middle;
}
.motion-paused .footer-controls .motion:before {
    background: #888;
}
/* Inner pages use the same type scale and editorial rules. */
.page-hero {
    padding: 54px 0 66px;
}
.page-hero h1 {
    font-size: clamp(45px, 5.2vw, 84px);
    line-height: 1.13;
    max-width: 1050px;
}
.page-hero .lede {
    max-width: 780px;
    font-size: 20px;
    line-height: 1.85;
    color: #686373;
}
.breadcrumb {
    font-size: 11px;
    color: #8a8692;
    margin-bottom: 36px;
    letter-spacing: 0.03em;
}
.chapter {
    gap: 90px;
    border-color: #e4deec;
    padding: 42px 0;
}
.chapter h2 {
    font-size: 49px;
}
.chapter p {
    font-size: 17px;
    line-height: 1.9;
}
.chapter .index {
    color: #8062bd;
}
.solution-panel summary {
    padding: 29px 0;
}
.solution-panel summary h2 {
    font-size: 26px;
    font-weight: 500;
}
.solution-body {
    gap: 30px 50px;
}
.solution-field p {
    font-size: 16px;
    line-height: 1.85;
}
.delivery-row h2 {
    font-size: 29px;
}
.delivery-row p {
    font-size: 17px;
}
.gate h3 {
    font-size: 22px;
}
.gate p {
    font-size: 15px;
}
.gate {
    padding: 28px 0;
    border-color: #c9c1d9;
}
.gate .index {
    color: #7d5eaa;
}
.timeline {
    margin-top: 46px;
}
.timeline > div {
    border-color: #c7bfd3;
}
.timeline h3 {
    font-size: 20px;
}
.document-cover {
    background: #fff;
    border-color: #d0c9dc;
    box-shadow: 10px 10px 0 #f9f7fc;
}
.reference-architecture {
    background: #fff;
    border: 1px solid #cbc4d8;
    border-radius: 5px;
}
.architecture-level {
    background: #fff !important;
}
.architecture-level.selected {
    border-color: #9380ba;
}
.partner-chapter h2 {
    font-size: 43px;
}
.partner-fields p {
    font-size: 16px;
    line-height: 1.85;
}
.contact-layout {
    gap: 90px;
}
.contact-aside h2 {
    font-size: 40px;
}
.field label {
    font-size: 13px;
    color: #625c71;
}
.field input,
.field textarea,
.field select {
    border-color: #d7d0e0;
    border-radius: 3px;
    background: #fff;
    min-height: 52px;
}
.field textarea {
    min-height: 155px;
}
.policy-block p,
.policy-block li {
    font-size: 16px;
    line-height: 1.9;
}
.policy-block h2 {
    font-size: 25px;
    font-weight: 500;
}
.policy-nav a {
    font-size: 13px;
}
.cookie-banner {
    width: calc(100% - 48px);
    max-width: 1300px;
    bottom: 16px;
    inset-inline: 0;
    margin-inline: auto;
    padding: 19px 24px;
    border: 1px solid #ccc8d7;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 7px 40px #2823320d;
}
.cookie-banner-inner {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: space-between;
}
.cookie-banner-inner > div:first-child {
    max-width: 605px;
}
.cookie-banner h2 {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}
.cookie-banner p {
    font-size: 12px;
    line-height: 1.7;
    margin-top: 6px;
}
.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.cookie-actions button {
    border: 1px solid #888394;
    border-radius: 3px;
    padding: 11px 12px;
    font-size: 11px;
    background: #fff;
    color: #35313e;
    white-space: nowrap;
}
.cookie-actions button:hover {
    border-color: #605279;
    color: #605279;
}
.cookie-banner a {
    text-decoration: underline;
    text-underline-offset: 3px;
}
dialog {
    border-radius: 6px;
    border: 1px solid #d8cfe4;
}
.dialog-head h2 {
    font-size: 26px;
}
.reveal {
    transition:
        opacity 0.35s,
        transform 0.35s;
}
.reveal.pending {
    transform: translateY(14px);
}
/* Arabic is independently composed. Architecture keeps LTR physical coordinates; labels remain RTL. */
html[lang="ar"] {
    --font: "Noto Sans Arabic", "Geeza Pro", Tahoma, Arial, sans-serif;
}
html[lang="ar"] body {
    line-height: 1.95;
}
html[lang="ar"] .micro,
html[lang="ar"] .eyebrow {
    letter-spacing: 0;
    font-size: 12px;
}
html[lang="ar"] .studio-type {
    line-height: 1.6 !important;
    font-weight: 500;
}
html[lang="ar"] .outline-type {
    line-height: 1.5;
    word-spacing: 0;
}
html[lang="ar"] .word-art {
    vertical-align: -0.42em;
}
html[lang="ar"] .studio-hero .hero-title {
    font-size: clamp(47px, 4.4vw, 72px) !important;
    line-height: 1.5 !important;
}
html[lang="ar"] .headline-line {
    line-height: 1.55;
}
html[lang="ar"] .hero-description {
    font-size: 18px;
    line-height: 2.1;
    max-width: 545px;
}
html[lang="ar"] .hero-support {
    font-size: 12px;
    line-height: 1.9;
}
html[lang="ar"] .studio-hero-grid {
    min-height: 630px;
}
html[lang="ar"] .hero-foot {
    font-size: 11px;
}
html[lang="ar"] .instrument-tabs button {
    font-size: 21px;
}
html[lang="ar"] .instrument-tabs small {
    margin-inline-end: 10px;
}
html[lang="ar"] .instrument-detail p {
    font-size: 12px;
    line-height: 1.9;
}
html[lang="ar"] .instrument-note {
    font-size: 10px;
    line-height: 1.9;
}
html[lang="ar"] .canvas-stage {
    direction: ltr;
}
html[lang="ar"] .canvas-callout {
    direction: rtl;
    font-size: 10px;
}
html[lang="ar"] .section h2 {
    font-size: clamp(31px, 2.9vw, 46px);
}
html[lang="ar"] .ownership {
    padding-inline: 0 28px;
}
html[lang="ar"] .ownership + .ownership {
    padding-inline-start: 28px;
}
html[lang="ar"] .ownership > p {
    font-size: 15px;
    line-height: 2.05;
    min-height: 150px;
}
html[lang="ar"] .ownership h3 {
    font-size: 29px;
}
html[lang="ar"] .section-intro {
    font-size: 16px;
    line-height: 2.1;
}
html[lang="ar"] .demo-paper strong {
    font-size: 16px;
}
html[lang="ar"] .demo-processor > small {
    direction: rtl;
}
html[lang="ar"] .demo-output h3 {
    font-size: 25px;
}
html[lang="ar"] .output-row {
    font-size: 13px;
}
html[lang="ar"] .demo-controls button {
    font-size: 15px;
}
html[lang="ar"] .demo-footer .micro {
    font-size: 10px;
}
html[lang="ar"] .hero-title .outline-type {
    white-space: normal;
}
html[lang="ar"] .page-hero h1 {
    font-size: clamp(37px, 4.3vw, 65px);
}
html[lang="ar"] .page-hero .lede {
    font-size: 18px;
    line-height: 2.1;
}
html[lang="ar"] .closing h2 {
    font-size: clamp(32px, 3.7vw, 56px);
}
html[lang="ar"] .cookie-banner p {
    font-size: 12px;
}
html[lang="ar"] .cookie-banner h2 {
    font-size: 16px;
}
html[lang="ar"] .cookie-actions button {
    font-size: 11px;
}
html[lang="ar"] .header-tools {
    gap: 16px;
}
html[lang="ar"] .desktop-nav {
    gap: 22px;
}
html[lang="ar"] .desktop-nav > a {
    font-size: 12px;
}
html[lang="ar"] .sector h3 {
    font-size: 20px;
}
html[lang="ar"] .sector summary p {
    font-size: 14px;
}
html[lang="ar"] .partner-chapter h2 {
    font-size: 36px;
}
@media (min-width: 1700px) {
    .studio-hero-grid {
        min-height: 720px;
    }
    .studio-hero .hero-title {
        font-size: 111px;
    }
    .canvas-stage {
        aspect-ratio: 1.18;
    }
}
@media (max-width: 1220px) {
    .desktop-nav {
        gap: 17px;
    }
    .desktop-nav > a {
        font-size: 12px;
    }
    .header-inner {
        gap: 20px;
    }
    .brand img {
        width: 135px;
    }
    .studio-hero-grid {
        gap: 28px;
        min-height: 570px;
    }
    .studio-hero .hero-title {
        font-size: clamp(62px, 6.4vw, 90px);
    }
    .hero-description {
        font-size: 17px !important;
    }
    .instrument-tabs button {
        font-size: 17px;
    }
    .instrument-note {
        font-size: 9px;
    }
    .canvas-callout {
        font-size: 9px;
        padding: 4px;
    }
    .canvas-callout > span {
        width: 22px;
    }
    .demo-panel {
        padding: 40px 32px;
    }
    .section-top {
        gap: 45px;
    }
    .cookie-banner-inner {
        display: grid;
        grid-template-columns: 1fr auto;
    }
    .cookie-actions {
        max-width: 440px;
    }
    .cookie-actions button {
        font-size: 10px;
        padding: 11px 9px;
    }
    html[lang="ar"] .desktop-nav {
        gap: 16px;
    }
    .ownership > p {
        font-size: 15px;
    }
}
@media (max-width: 1050px) {
    .desktop-nav {
        display: none;
    }
    .studio-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        min-height: 560px;
    }
    .studio-hero .hero-title {
        font-size: clamp(52px, 6.2vw, 73px);
    }
    .instrument-eyebrow .micro {
        font-size: 9px;
    }
    .canvas-callout {
        font-size: 8px;
    }
    .hero-description {
        font-size: 16px !important;
    }
    .instrument-detail p {
        font-size: 11px;
    }
    .instrument-note {
        font-size: 9px;
    }
    .instrument-tabs small {
        margin-inline-end: 6px;
    }
    .demo-controls button {
        min-width: 180px;
    }
    .demo-panel {
        grid-template-columns: 1fr 1.1fr 1fr;
        padding: 40px 28px;
    }
    .demo-output {
        padding-inline-start: 20px;
    }
    .demo-output h3 {
        font-size: 24px;
    }
    .demo-paper {
        padding: 20px 19px;
    }
    .hero-support {
        font-size: 11px;
    }
    .section-top > .section-intro {
        flex-basis: 40%;
        font-size: 16px;
    }
    .cookie-banner-inner {
        grid-template-columns: 1fr;
    }
    .cookie-banner-inner > div:first-child {
        max-width: none;
    }
    .cookie-actions {
        max-width: none;
        justify-content: flex-start;
    }
    .cookie-actions button {
        font-size: 11px;
    }
    .cookie-banner {
        max-width: 720px;
    }
    .ownership > p {
        min-height: 145px;
    }
    .ownership {
        padding-inline-end: 22px;
    }
    .ownership + .ownership {
        padding-inline-start: 22px;
    }
    html[lang="ar"] .studio-hero .hero-title {
        font-size: 42px !important;
    }
    html[lang="ar"] .hero-description {
        font-size: 16px !important;
    }
    html[lang="ar"] .canvas-callout {
        font-size: 8px;
    }
    html[lang="ar"] .ownership > p {
        font-size: 14px;
    }
}
@media (max-width: 800px) {
    :root {
        --header: 80px;
        --pad: 26px;
    }
    .brand img {
        width: 137px;
    }
    .studio-hero {
        padding-top: 25px;
    }
    .studio-overline {
        padding-bottom: 21px;
    }
    .studio-overline .micro {
        font-size: 10px;
    }
    .edition {
        display: none;
    }
    .studio-hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-top: 34px;
        gap: 28px;
    }
    .studio-hero .hero-title {
        font-size: clamp(64px, 10.5vw, 89px);
        max-width: 610px;
    }
    .hero-copy {
        padding-bottom: 6px;
    }
    .hero-description {
        font-size: 18px !important;
        max-width: 590px !important;
        line-height: 1.8 !important;
    }
    .hero-support {
        font-size: 12px;
    }
    .hero-instrument {
        max-width: 580px;
        width: 100%;
        margin-inline: auto;
        padding-bottom: 8px;
    }
    .canvas-stage {
        aspect-ratio: 1.3;
        width: calc(100% + 20px);
        margin-inline-start: -10px;
    }
    .instrument-eyebrow .micro {
        font-size: 10px;
    }
    .canvas-callout {
        font-size: 10px;
    }
    .instrument-tabs button {
        font-size: 20px;
    }
    .instrument-detail p {
        font-size: 12px;
    }
    .instrument-note {
        font-size: 10px;
        max-width: none;
    }
    .hero-foot {
        font-size: 11px;
        flex-wrap: wrap;
        gap: 15px;
    }
    .hero-foot p {
        display: none;
    }
    .section {
        padding: 80px 0;
    }
    .section-top {
        display: block;
        margin-bottom: 34px;
    }
    .section-top > .section-intro {
        max-width: 600px;
        margin-top: 24px;
    }
    .ownership-grid {
        grid-template-columns: 1fr;
    }
    .ownership {
        padding: 25px 0 30px !important;
        border-inline-start: 0 !important;
        display: grid;
        grid-template-columns: 140px 1fr;
        gap: 8px 30px;
    }
    .ownership-top {
        grid-column: 1;
        margin: 0;
        height: 36px;
    }
    .ownership h3 {
        grid-column: 1;
        grid-row: 2;
        font-size: 32px;
    }
    .ownership > p {
        grid-column: 2;
        grid-row: 1 / span 3;
        min-height: 0 !important;
        max-width: none;
        font-size: 16px;
    }
    .ownership .text-link {
        grid-column: 2;
        margin: 0;
    }
    .ownership-icon {
        display: none;
    }
    .experience-section {
        padding-block: 75px;
    }
    .demo-controls button {
        min-width: 0;
        flex: 1;
        padding: 18px 22px;
    }
    .demo-panel {
        grid-template-columns: 1fr 1fr;
        padding: 32px;
        gap: 24px;
    }
    .demo-source {
        max-width: 260px;
        justify-self: center;
    }
    .demo-processor {
        grid-column: 1;
        grid-row: 2;
        padding: 0 0 0;
        max-width: 260px;
        justify-self: center;
    }
    .demo-output {
        grid-column: 2;
        grid-row: 1 / span 2;
        padding-inline-start: 0;
    }
    .demo-processor svg {
        height: 105px;
    }
    .demo-processor > span {
        top: 36%;
    }
    .demo-processor > small {
        margin-top: 0;
    }
    .demo-footer .micro {
        font-size: 8px;
    }
    .six-chain {
        gap: 35px 0;
        grid-template-columns: repeat(3, 1fr);
    }
    .six-chain strong {
        font-size: 22px;
    }
    .studio-proof .split {
        gap: 38px;
    }
    .pov-number {
        font-size: 102px;
    }
    .pov-aside {
        padding-inline-start: 0;
    }
    .selected-solutions {
        gap: 0 26px;
    }
    .solution-link {
        grid-template-columns: 28px 1fr 18px;
        gap: 10px;
    }
    .solution-link h3 {
        font-size: 23px;
    }
    .solution-link p {
        font-size: 14px;
    }
    .closing {
        padding: 76px 0;
    }
    .site-footer {
        padding-top: 35px;
    }
    .cookie-banner {
        padding: 18px 21px;
        bottom: 12px;
    }
    .cookie-banner-inner {
        gap: 14px;
    }
    .footer-grid {
        gap: 35px;
    }
    .page-hero {
        padding: 44px 0 47px;
    }
    .page-hero h1 {
        font-size: 52px;
    }
    .chapter {
        gap: 42px;
    }
    .hero-instrument {
        min-height: 0;
    }
    html[lang="ar"] .studio-hero-grid {
        min-height: 0;
    }
    html[lang="ar"] .studio-hero .hero-title {
        font-size: clamp(40px, 7.5vw, 65px) !important;
    }
    html[lang="ar"] .hero-description {
        font-size: 18px !important;
        line-height: 2.05 !important;
    }
    html[lang="ar"] .canvas-callout {
        font-size: 10px;
    }
    html[lang="ar"] .ownership {
        grid-template-columns: 120px 1fr;
        gap: 0 28px;
    }
    html[lang="ar"] .ownership > p {
        font-size: 15px;
    }
    html[lang="ar"] .instrument-note {
        font-size: 10px;
    }
}
@media (max-width: 540px) {
    :root {
        --pad: 22px;
        --header: 75px;
    }
    .brand img {
        width: 126px;
    }
    .brand small {
        font-size: 7px;
    }
    .header-inner {
        gap: 15px;
    }
    .header-tools {
        gap: 15px;
    }
    .language {
        padding-inline-start: 0;
        border: 0;
        font-size: 12px;
    }
    .menu-toggle {
        width: 39px;
        min-width: 39px;
        height: 39px;
        padding: 8px;
    }
    .studio-overline .micro {
        font-size: 8px;
        letter-spacing: 0.09em;
    }
    .studio-hero .hero-title {
        font-size: clamp(45px, 11.55vw, 63px);
        line-height: 1.08;
    }
    .studio-hero .hero-description {
        font-size: 16px !important;
        margin-top: 23px;
        line-height: 1.85 !important;
    }
    .hero-copy .actions {
        margin-top: 25px;
        gap: 9px;
        flex-wrap: nowrap;
    }
    .hero-copy .button {
        font-size: 11px;
        min-height: 48px;
        padding: 12px 13px;
        gap: 12px;
    }
    .hero-support {
        font-size: 10px;
        margin-top: 18px;
    }
    .hero-instrument {
        margin-top: 2px;
    }
    .instrument-eyebrow .micro {
        font-size: 8px;
        letter-spacing: 0.11em;
    }
    .canvas-stage {
        aspect-ratio: 1.17;
        width: calc(100% + 20px);
    }
    .canvas-callout {
        font-size: 8px;
    }
    .canvas-callout > span {
        width: 14px;
    }
    .callout-top {
        top: 14%;
    }
    .callout-middle {
        top: 62%;
    }
    .callout-bottom {
        bottom: 9%;
    }
    .instrument-tabs button {
        font-size: 18px;
        padding: 13px 0 12px;
    }
    .instrument-tabs small {
        font-size: 8px;
        margin-inline-end: 7px;
    }
    .instrument-detail {
        min-height: 51px;
        padding-top: 11px;
    }
    .instrument-detail p {
        font-size: 11px;
        max-width: 95%;
    }
    .instrument-note {
        font-size: 9px;
        line-height: 1.65;
    }
    .hero-foot .micro {
        font-size: 8px;
    }
    .hero-foot > a {
        font-size: 10px;
        gap: 13px;
    }
    .hero-foot {
        padding-top: 16px;
        padding-bottom: 20px;
    }
    .section,
    .section.small {
        padding: 67px 0;
    }
    .section h2 {
        font-size: 32px;
    }
    .eyebrow {
        font-size: 9px;
        margin-bottom: 21px;
    }
    .section-top > .section-intro,
    .section-intro {
        font-size: 16px;
        line-height: 1.85;
    }
    .ownership {
        grid-template-columns: 1fr;
        gap: 7px !important;
        display: block;
        padding: 22px 0 30px !important;
    }
    .ownership-top {
        margin-bottom: 17px;
    }
    .ownership-top .index {
        font-size: 11px;
    }
    .ownership h3 {
        font-size: 31px;
        margin-bottom: 15px;
    }
    .ownership > p {
        font-size: 15px;
        line-height: 1.9;
    }
    .ownership .text-link {
        font-size: 11px;
        margin-top: 13px;
    }
    .ownership-grid {
        gap: 0;
    }
    .demo-controls button {
        font-size: 12px;
        padding: 17px 15px;
        gap: 14px;
    }
    .demo-panel {
        padding: 25px 21px 30px;
        grid-template-columns: 1fr;
        gap: 0;
    }
    .demo-source {
        max-width: 230px;
        width: 100%;
        grid-column: 1;
        grid-row: 1;
    }
    .demo-paper {
        width: 202px;
        margin-inline: auto;
        margin-top: 14px;
        padding: 20px 22px;
    }
    .demo-source > .micro {
        display: block;
        text-align: center;
        font-size: 8px;
    }
    .demo-source > .micro:last-child {
        margin-top: 16px;
    }
    .demo-processor {
        grid-column: 1;
        grid-row: 2;
        transform: rotate(90deg);
        height: 130px;
        width: 220px;
        padding: 0;
        margin-top: 0;
    }
    .demo-processor svg {
        height: 116px;
    }
    .demo-processor > span {
        display: none;
    }
    .demo-processor > small {
        display: none;
    }
    .demo-output {
        grid-column: 1;
        grid-row: 3;
        padding: 8px 0 0;
        width: 100%;
        max-width: 275px;
        justify-self: center;
    }
    .demo-output > .micro {
        font-size: 8px;
    }
    .demo-output h3 {
        font-size: 28px;
        margin-top: 14px;
        margin-bottom: 20px;
    }
    .output-row {
        font-size: 13px;
        margin-top: 13px;
    }
    .demo-output .text-link {
        font-size: 12px;
        margin-top: 15px;
    }
    .demo-footer {
        padding: 14px 17px;
        gap: 10px;
    }
    .demo-footer .micro {
        font-size: 7px;
        max-width: 230px;
        line-height: 1.8;
    }
    .demo-timer {
        width: 45px;
        flex-shrink: 0;
    }
    .selected-solutions {
        grid-template-columns: 1fr;
    }
    .solution-link {
        padding: 25px 0;
        gap: 14px;
        grid-template-columns: 31px 1fr 20px;
    }
    .solution-link h3 {
        font-size: 24px;
    }
    .solution-link p {
        font-size: 14px;
    }
    .six-chain {
        gap: 28px 0;
        margin-top: 36px;
    }
    .six-chain a {
        padding: 21px 10px 7px 0;
    }
    .six-chain strong {
        font-size: 18px;
    }
    .six-chain small {
        font-size: 11px;
        line-height: 1.8;
    }
    .six-chain .index {
        font-size: 10px;
    }
    .pov-number {
        font-size: 90px;
    }
    .pov-aside p {
        font-size: 18px;
    }
    .sector summary p {
        font-size: 14px;
    }
    .control-words h3 {
        font-size: 20px;
    }
    .control-words p {
        font-size: 13px;
    }
    .partner-home {
        padding: 25px 0;
        gap: 25px;
    }
    .partner-home p {
        font-size: 16px;
    }
    .closing h2 {
        font-size: 33px;
        line-height: 1.15;
    }
    .closing .bottom {
        gap: 24px;
    }
    .closing .bottom p {
        font-size: 15px;
    }
    .closing .email {
        font-size: 21px;
    }
    .footer-grid {
        gap: 30px;
    }
    .footer-nav a {
        font-size: 12px;
    }
    .cookie-banner {
        width: calc(100% - 24px);
        padding: 15px 16px;
    }
    .cookie-banner-inner {
        display: block;
    }
    .cookie-banner h2 {
        font-size: 15px;
    }
    .cookie-banner p {
        font-size: 11px;
        margin-top: 5px;
    }
    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 13px;
        gap: 7px;
    }
    .cookie-actions button {
        font-size: 11px;
        padding: 10px 7px;
    }
    .cookie-actions button:last-child {
        grid-column: 1 / -1;
    }
    .page-hero h1 {
        font-size: 42px;
        line-height: 1.15;
    }
    .page-hero .lede {
        font-size: 17px;
        line-height: 1.9;
    }
    .chapter h2 {
        font-size: 37px;
    }
    .partner-chapter h2 {
        font-size: 34px;
    }
    .contact-layout {
        gap: 32px;
    }
    .solution-panel summary h2 {
        font-size: 23px;
    }
    .field label {
        font-size: 12px;
    }
    .reference-architecture {
        padding: 20px;
    }
    .architecture-level {
        padding: 15px;
    }
    .gate h3 {
        font-size: 20px;
    }
    .gate p {
        font-size: 14px;
    }
    html[lang="ar"] .studio-overline .micro {
        font-size: 9px;
        letter-spacing: 0;
    }
    html[lang="ar"] .studio-hero .hero-title {
        font-size: clamp(32px, 8.6vw, 43px) !important;
    }
    html[lang="ar"] .studio-hero .hero-description {
        font-size: 15px !important;
        line-height: 2.1 !important;
    }
    html[lang="ar"] .hero-copy .button {
        font-size: 11px;
        padding: 12px 14px;
    }
    html[lang="ar"] .hero-support {
        font-size: 10px;
    }
    html[lang="ar"] .instrument-tabs button {
        font-size: 18px;
    }
    html[lang="ar"] .instrument-detail p {
        font-size: 11px;
    }
    html[lang="ar"] .instrument-note {
        font-size: 9px;
    }
    html[lang="ar"] .instrument-eyebrow .micro {
        font-size: 9px;
    }
    html[lang="ar"] .canvas-callout {
        font-size: 8px;
    }
    html[lang="ar"] .hero-foot .micro {
        font-size: 9px;
    }
    html[lang="ar"] .section h2 {
        font-size: 28px;
    }
    html[lang="ar"] .section-intro {
        font-size: 15px;
    }
    html[lang="ar"] .eyebrow {
        font-size: 11px;
    }
    html[lang="ar"] .ownership h3 {
        font-size: 29px;
    }
    html[lang="ar"] .demo-controls button {
        font-size: 12px;
    }
    html[lang="ar"] .demo-footer .micro {
        font-size: 8px;
    }
    html[lang="ar"] .demo-output h3 {
        font-size: 25px;
    }
    html[lang="ar"] .six-chain strong {
        font-size: 17px;
    }
    html[lang="ar"] .six-chain small {
        font-size: 11px;
    }
    html[lang="ar"] .closing h2 {
        font-size: 29px;
    }
    html[lang="ar"] .page-hero h1 {
        font-size: 33px;
    }
    html[lang="ar"] .cookie-banner h2 {
        font-size: 15px;
    }
    html[lang="ar"] .cookie-banner p {
        font-size: 11px;
    }
    html[lang="ar"] .cookie-actions button {
        font-size: 10px;
    }
    html[lang="ar"] .partner-chapter h2 {
        font-size: 28px;
    }
}
@media (max-width: 355px) {
    .hero-copy .actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-copy .button {
        width: 100%;
        font-size: 12px;
    }
    .studio-hero .hero-title {
        font-size: 41px;
    }
    .instrument-tabs button {
        font-size: 16px;
    }
    .hero-foot .micro {
        font-size: 7px;
    }
    .hero-foot > a {
        font-size: 9px;
    }
    .demo-controls button {
        padding-inline: 10px;
    }
    .six-chain strong {
        font-size: 16px;
    }
    .header-tools {
        gap: 8px;
    }
    .brand img {
        width: 114px;
    }
    html[lang="ar"] .studio-hero .hero-title {
        font-size: 30px !important;
    }
}
html.motion-paused *,
html.motion-paused *:before,
html.motion-paused *:after {
    animation-play-state: paused !important;
}
html.motion-paused .reveal {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    html:not(.user-motion-on) *,
    html:not(.user-motion-on) *:before,
    html:not(.user-motion-on) *:after {
        animation: none !important;
        transition: none !important;
    }
    html:not(.user-motion-on) {
        scroll-behavior: auto;
    }
    html.user-motion-on .scan-bar {
        animation-duration: 5s !important;
    }
    html.user-motion-on .demo-paper {
        animation-duration: 5s !important;
    }
    html.user-motion-on .flow-run {
        animation-duration: 4s !important;
    }
    html.user-motion-on .flow-secondary {
        animation-duration: 7s !important;
    }
    html.user-motion-on .output-row {
        animation-duration: 5s !important;
    }
    html.user-motion-on .demo-timer i {
        animation-duration: 5s !important;
    }
    html.user-motion-on .six-chain li:after {
        animation-duration: 15s !important;
    }
}
@media (min-width: 801px) {
    .canvas-stage {
        aspect-ratio: 1.48;
    }
    .studio-hero-grid {
        padding-top: 22px;
        padding-bottom: 20px;
    }
    .hero-instrument {
        padding-top: 8px;
    }
    .canvas-callout.callout-top {
        top: 15%;
    }
    .canvas-callout.callout-middle {
        top: 59%;
    }
    .canvas-callout.callout-bottom {
        bottom: 8%;
    }
}
html[lang="ar"] .demo-processor svg {
    transform: scaleX(-1);
}
@media (max-width: 540px) {
    html[lang="ar"] .demo-processor svg {
        transform: none;
    }
}

/* AEAIX R10. Final presentation layer. All layout values use logical axes for RTL. */
:root {
    --ink: #14151c;
    --muted: #535765;
    --faint: #737887;
    --line: #dedfe7;
    --blue: #4a56cb;
    --violet: #7944c7;
    --cyan: #258ac2;
    --font: "Avenir Next", "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --header: 88px;
    --wide: 1440px;
    --pad: clamp(24px, 4.6vw, 84px);
    --gradient: linear-gradient(110deg, #8743c6 0%, #664bc9 45%, #3c73cf 78%, #238ebf 100%);
}
html {
    scroll-padding-top: calc(var(--header) + 28px);
}
body {
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.75;
    letter-spacing: -0.012em;
    background: #fff;
    color: var(--ink);
}
::selection {
    background: #e5ddf6;
    color: #181523;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 2px solid #6946b5;
    outline-offset: 5px;
}
.header-inner {
    gap: 26px;
}
.site-header {
    background: #fff;
    border-bottom: 1px solid #e8e8ef;
    transition:
        box-shadow 0.2s,
        height 0.2s;
}
.site-header.is-scrolled {
    box-shadow: 0 8px 30px -26px #4d4561;
}
.brand img {
    width: 154px;
}
.brand small {
    font-size: 8px;
    letter-spacing: 0.18em;
    color: #656570;
}
.desktop-nav {
    gap: clamp(14px, 1.65vw, 26px);
}
.desktop-nav > a {
    font-size: 13px;
    letter-spacing: -0.01em;
    padding-block: 14px;
}
.desktop-nav > a:last-child {
    border: 1px solid #20212a;
    border-radius: 3px;
    padding: 10px 22px;
}
.desktop-nav a[aria-current="page"] {
    color: #6147bc;
}
.desktop-nav a[aria-current="page"]:after {
    background: var(--gradient);
}
.header-tools .language {
    font-size: 13px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
.menu-toggle {
    border: 0;
    border-radius: 0;
    width: 44px;
    height: 44px;
}
.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}
.menu-toggle span {
    transition: transform 0.2s;
}
.header-signal {
    height: 2px;
    transform-origin: inline-start;
}
/* Finite text outlines preserve the display cut. Body copy remains native text. */
.r9-type {
    font-weight: 600 !important;
    letter-spacing: -0.035em !important;
    line-height: 1.15 !important;
    font-family: var(--font);
}
.r9-outline {
    display: block;
    word-spacing: -0.08em;
    line-height: 1.12;
}
.r9-word {
    display: inline-block !important;
    max-width: 100%;
    height: auto !important;
    vertical-align: -0.19em;
    overflow: visible;
    flex-shrink: 1;
}
.r9-heading-line {
    display: block;
    white-space: nowrap;
    line-height: 1.12;
    word-spacing: -0.1em;
}
.r9-heading-line.accent-type {
    color: #6950c1;
}
.r9-type .sr-only {
    font-family: var(--font);
}
.studio-hero {
    padding-top: 34px;
    overflow: hidden;
}
.studio-overline {
    padding-bottom: 24px;
    border-color: var(--line);
}
.studio-overline .micro {
    font-size: 10px;
    letter-spacing: 0.17em;
    line-height: 1.8;
    max-width: 650px;
}
.studio-overline .edition {
    font-size: 10px;
    white-space: nowrap;
}
.studio-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.07fr);
    gap: 42px;
    min-height: 650px;
    padding-top: 35px;
    padding-bottom: 36px;
}
.studio-hero .hero-title {
    font-size: clamp(62px, 6.22vw, 99px) !important;
    letter-spacing: 0 !important;
    line-height: 1.12 !important;
}
.hero-copy {
    padding: 8px 0 22px;
}
.studio-hero .hero-description {
    font-size: 18px !important;
    line-height: 1.83 !important;
    max-width: 550px;
    margin-top: 27px;
    letter-spacing: -0.012em;
    color: #4e5260;
}
.hero-support {
    font-size: 12px;
    color: #676b79;
    margin-top: 22px;
    line-height: 1.6;
}
.hero-foot {
    padding-block: 21px;
    gap: 20px;
}
.hero-foot p {
    font-size: 12px;
    color: #646673;
}
.hero-foot > a {
    font-size: 12px;
    text-decoration: underline;
    text-decoration-color: #c1bbd1;
    text-underline-offset: 7px;
    transition:
        color 0.2s,
        text-decoration-color 0.2s;
}
.hero-foot > a:hover {
    color: #684abd;
    text-decoration-color: #684abd;
}
.button {
    border-radius: 3px;
    padding: 15px 24px;
    min-height: 54px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
    font-weight: 600;
    gap: 0;
    transition:
        color 0.18s,
        background 0.18s,
        border-color 0.18s,
        transform 0.18s;
}
.button:hover {
    transform: translateY(-1px);
    background: #302b40;
    border-color: #302b40;
    box-shadow: none;
}
.button.ghost {
    border-color: #b9bac7;
    background: #fff;
    color: #22242e;
}
.button.ghost:hover {
    color: #5f45b4;
    border-color: #6951ba;
    background: #fdfcff;
}
.actions {
    gap: 12px;
    align-items: center;
}
.text-link {
    display: inline-flex;
    gap: 0;
    max-width: 100%;
    font-size: 15px;
    font-weight: 500;
    border: 0;
    line-height: 1.65;
    text-decoration: underline;
    text-decoration-color: #b0a9c3;
    text-decoration-thickness: 1px;
    text-underline-offset: 7px;
    padding-block: 10px;
    transition:
        color 0.18s,
        text-decoration-color 0.18s;
}
.text-link:hover {
    color: #5d45af;
    text-decoration-color: currentColor;
}
.text-link:after {
    content: none !important;
}
.solution-link .arrow {
    display: none;
}
/* Architecture: a contained, high-resolution operating illustration, never a live claim. */
.hero-instrument {
    padding: 0;
    align-self: center;
    min-width: 0;
}
.instrument-eyebrow {
    padding-block: 0 5px;
}
.instrument-eyebrow .micro {
    font-size: 10px;
    letter-spacing: 0.16em;
}
.specimen {
    font-size: 9px;
}
.canvas-stage {
    aspect-ratio: 1.38;
    width: calc(100% + 40px);
    margin-inline-start: -20px;
    margin-block: 8px 0;
}
.system-canvas {
    width: 100%;
    height: 100%;
    display: block;
}
.architecture-key {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 3px 0 21px;
    font-size: 10px;
    color: #565563;
    line-height: 1.5;
}
.architecture-key > span {
    display: flex;
    gap: 7px;
    align-items: center;
}
.architecture-key i {
    display: inline-block;
    width: 7px;
    height: 7px;
    border: 1px solid #999aaa;
    flex-shrink: 0;
}
.architecture-key i.key-1 {
    background: #7d54bd;
    border-color: #7d54bd;
}
.architecture-key i.key-2 {
    background: #407abd;
    border-color: #407abd;
}
.instrument-tabs {
    border-block: 1px solid var(--line);
}
.instrument-tabs button {
    font-size: 20px;
    font-weight: 500;
    padding: 15px 0 16px;
}
.instrument-tabs button small {
    font-size: 9px;
    margin-inline-end: 12px;
}
.instrument-tabs button:after {
    height: 2px;
    width: 0;
    transition: width 0.35s ease;
}
.instrument-tabs button[aria-selected="true"]:after {
    width: 82%;
}
.instrument-tabs button[aria-selected="true"] {
    color: #6143b5;
}
.instrument-detail {
    min-height: 54px;
    padding-top: 12px;
    gap: 10px;
}
.instrument-detail p {
    font-size: 12px;
    color: #4f5360;
    line-height: 1.8;
}
.sequence-resume {
    font-size: 11px;
    color: #6143b5;
    min-height: 32px;
    border: 0;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.instrument-note {
    font-size: 10px !important;
    line-height: 1.7 !important;
    max-width: 100%;
    color: #747987 !important;
    margin-top: 11px !important;
}
.flow-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #616071;
    line-height: 1.6;
    min-height: 26px;
}
.flow-dot-marker {
    width: 5px;
    height: 5px;
    background: #7d55bb;
    flex-shrink: 0;
    border-radius: 50%;
}
.flow-meter {
    width: 48px;
    height: 2px;
    background: #e6e1ef;
    margin-inline-start: auto;
    overflow: hidden;
    flex-shrink: 0;
}
.flow-meter i {
    display: block;
    height: 100%;
    width: 100%;
    background: var(--gradient);
    transform: scaleX(var(--flow-progress, 0));
    transform-origin: left;
}
.hero-instrument[data-mode-state="1"] .key-2 {
    outline: 2px solid #dbe7f5;
    outline-offset: 2px;
}
.hero-instrument[data-mode-state="0"] .key-1 {
    outline: 2px solid #e5d9f5;
    outline-offset: 2px;
}
/* Editorial rhythm: retain the information structure; remove artificial whitespace. */
.section {
    padding: clamp(78px, 7.8vw, 125px) 0;
}
.section.small {
    padding: 50px 0;
}
.section-top {
    gap: 70px;
    margin-bottom: 42px;
}
.section h2 {
    font-size: clamp(35px, 3.1vw, 51px) !important;
    max-width: 810px;
}
.section-intro {
    font-size: 17px;
    line-height: 1.9;
    color: #535866;
}
.section-top > .section-intro {
    margin-top: 42px;
    max-width: 425px;
}
.eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
    margin-bottom: 25px;
    line-height: 1.7;
    color: #616473;
}
.eyebrow:before {
    height: 2px;
    width: 18px;
    background: var(--gradient);
}
.ownership {
    padding-block: 27px 16px;
}
.ownership h3 {
    font-weight: 550 !important;
    font-size: 33px;
}
.ownership > p {
    font-size: 16px;
    line-height: 1.88;
    color: #535967;
    min-height: 122px;
}
.ownership .text-link {
    font-size: 13px;
    margin-top: 15px;
    color: #514269;
}
.ownership .text-link:hover {
    color: #6751b9;
}
.experience-board {
    border: 1px solid #dcdce6;
    border-radius: 4px;
    box-shadow: none;
}
.demo-controls {
    border-bottom: 1px solid var(--line);
}
.demo-controls button {
    font-size: 14px;
    min-height: 54px;
    gap: 0;
}
.demo-controls button[aria-selected="true"] {
    color: #6846b9;
    background: #fff;
}
.demo-panel {
    min-height: 320px;
    gap: 35px;
    padding: 38px;
}
.demo-paper {
    border-radius: 3px;
    box-shadow: 0 12px 24px -22px #625571;
    transform-origin: center;
}
.demo-output h3 {
    font-size: 33px;
    letter-spacing: -0.035em;
}
.demo-output .text-link {
    margin-top: 24px;
    font-size: 14px;
}
.demo-footer {
    border-color: var(--line);
    padding-block: 15px;
}
.demo-footer .micro {
    font-size: 9px;
    color: #717583;
}
.demo-timer {
    height: 2px;
}
.scan-bar {
    background: linear-gradient(90deg, transparent, #9870cd, #377fc9, transparent);
    opacity: 0.7;
}
.demo-controls button span {
    display: none;
}
.selected-solutions {
    column-gap: 48px;
}
.solution-link {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 26px 0;
    min-height: 142px;
}
.solution-link h3 {
    font-size: 24px;
    letter-spacing: -0.027em;
    line-height: 1.3;
}
.solution-link p {
    font-size: 15px;
    line-height: 1.8;
    color: #606573;
    margin-top: 9px;
}
.solution-link:hover {
    background: #fff;
}
.solution-link:hover h3 {
    color: #6245b3;
}
.six-chain {
    margin-top: 44px;
    gap: 0;
}
.six-chain a {
    min-height: 144px;
    padding: 24px 16px 12px 0;
}
.six-chain strong {
    font-size: 22px;
    line-height: 1.35;
}
.six-chain small {
    font-size: 12px;
    line-height: 1.8;
}
.six-chain li:before {
    height: 1px;
    background: #c9cbd5;
}
.six-chain li:after {
    height: 2px;
    background: var(--gradient);
}
.six-chain a:hover strong {
    color: #6546b3;
}
.pov-number {
    font-size: 117px !important;
    letter-spacing: -0.07em;
    font-weight: 400 !important;
    color: #181923;
    line-height: 1.08;
}
.pov-aside {
    border-inline-start: 0px solid #dcdde6;
    padding-inline-start: 42px;
}
.pov-aside p {
    font-size: 19px;
    line-height: 1.85;
}
.pov-aside .text-link {
    font-size: 14px;
}
.sector summary {
    padding-block: 24px;
}
.sector summary strong {
    font-size: 18px;
}
.sector summary p {
    font-size: 15px;
    line-height: 1.8;
}
.sector summary:after,
.solution-panel summary:after {
    content: "" !important;
    width: 15px;
    height: 15px;
    background:
        linear-gradient(#5a5370, #5a5370) center/12px 1px no-repeat,
        linear-gradient(#5a5370, #5a5370) center/1px 12px no-repeat;
    flex-shrink: 0;
}
.sector[open] summary:after,
.solution-panel[open] summary:after {
    background: linear-gradient(#5a5370, #5a5370) center/12px 1px no-repeat;
}
.sector-content .text-link {
    font-size: 13px;
}
.control-words {
    gap: 28px 38px;
}
.control-entry {
    display: block;
    border-top: 1px solid #26232f;
    padding: 24px 0 21px;
    min-height: 125px;
}
.control-entry h3 {
    font-size: 23px;
    font-weight: 500;
}
.control-entry p {
    font-size: 15px;
    line-height: 1.75;
    color: #5a616e;
}
.control-entry:after,
.control-entry:before {
    content: none !important;
}
.control-entry:hover h3 {
    color: #6846b9;
}
.partner-home {
    padding: 25px 0 0;
}
.partner-home p {
    font-size: 18px;
    line-height: 1.85;
}
.closing {
    padding: 85px 0;
    background: #fff;
}
.closing h2 {
    font-size: clamp(34px, 3.45vw, 57px) !important;
    max-width: 1080px;
    line-height: 1.18 !important;
}
.closing .bottom {
    margin-top: 32px;
    gap: 36px;
}
.closing .bottom p {
    font-size: 17px;
    line-height: 1.85;
}
.closing .email {
    font-size: 25px;
    letter-spacing: -0.025em;
}
.page-hero {
    padding: 58px 0 64px;
}
.page-hero h1 {
    font-size: clamp(42px, 4.45vw, 70px) !important;
    max-width: 1110px;
    line-height: 1.15 !important;
}
.page-hero .lede {
    font-size: 19px;
    line-height: 1.85;
    max-width: 820px;
    margin-top: 26px;
}
.chapter {
    gap: 58px;
    padding-block: 45px;
}
.chapter h2 {
    font-size: clamp(33px, 3.1vw, 51px) !important;
}
.chapter p,
.editorial p {
    font-size: 17px;
    line-height: 1.9;
}
.solution-panel summary {
    min-height: 95px;
    padding-block: 25px;
}
.solution-panel summary h2 {
    font-size: clamp(21px, 2.2vw, 32px) !important;
    max-width: 85%;
}
.solution-body h3 {
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.02em;
}
.solution-body p {
    font-size: 16px;
    line-height: 1.9;
}
.model-stage {
    scroll-margin-top: 110px;
}
.model-stage h2 {
    font-size: 30px !important;
}
.gate h3 {
    font-size: 22px;
    line-height: 1.45;
}
.gate p {
    font-size: 15px;
    line-height: 1.85;
}
.gate,
.reference-architecture,
.note-card {
    border-radius: 4px;
}
.reference-architecture {
    border-color: #c7c1d4;
    background: #fff;
}
.architecture-level {
    border-radius: 2px;
}
.reference-architecture h3 {
    font-size: 20px;
}
.field label {
    font-size: 14px;
    font-weight: 500;
    color: #363743;
    letter-spacing: 0;
}
.field input,
.field select,
.field textarea {
    font-size: 16px !important;
    border-radius: 3px;
    min-height: 54px;
    padding: 14px 15px;
    line-height: 1.5;
    border-color: #bfc1ce;
    background: #fff;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: #7653b7;
    box-shadow: 0 0 0 1px #7653b7;
}
.contact-layout {
    gap: 68px;
}
.contact-layout .email {
    font-size: 29px;
}
.form-notice {
    font-size: 13px !important;
    line-height: 1.85;
}
.dialog-card h2 {
    font-family: var(--font);
    font-size: 26px !important;
    font-weight: 550;
}
.dialog-card {
    border-radius: 5px;
}
.close-dialog {
    min-width: 44px;
    min-height: 44px;
}
.site-footer {
    padding-top: 50px;
    background: #fff;
}
.footer-nav a {
    font-size: 13px;
    min-height: 32px;
}
.footer-intro p {
    font-size: 13px;
    line-height: 1.8;
}
.footer-controls {
    gap: 22px;
    flex-wrap: wrap;
}
.footer-controls button,
.footer-controls a {
    font-size: 12px;
    min-height: 44px;
    padding: 8px 0;
}
.footer-end {
    font-size: 11px;
    gap: 18px;
}
.footer-end > span {
    line-height: 1.8;
}
.cookie-banner {
    border-radius: 5px;
    border-color: #c9c6d2;
    box-shadow: 0 18px 60px -35px #3b2f51;
    background: #fff;
}
.cookie-banner h2 {
    font-size: 18px;
    font-weight: 600;
}
.cookie-banner p {
    font-size: 13px;
    line-height: 1.75;
}
.cookie-actions button {
    font-size: 12px;
    min-height: 44px;
    padding: 11px 16px;
    border-radius: 3px;
    background: #fff;
    color: #282630;
    border: 1px solid #aaa6b6;
}
.cookie-actions button:hover {
    color: #6545ac;
    border-color: #6545ac;
    background: #faf8fc;
}
/* Arabic is shaped independently, with relaxed joining and no Latin tracking. */
html[lang="ar"] body {
    font-family: "Geeza Pro", "Noto Sans Arabic", Tahoma, Arial, sans-serif;
    letter-spacing: 0;
    line-height: 1.95;
}
html[lang="ar"] .r9-type,
html[lang="ar"] .r9-outline,
html[lang="ar"] .r9-heading-line {
    letter-spacing: 0 !important;
    word-spacing: 0.03em;
    line-height: 1.43 !important;
}
html[lang="ar"] .r9-word {
    vertical-align: -0.37em;
}
html[lang="ar"] .studio-hero .hero-title {
    font-size: clamp(36px, 3.7vw, 61px) !important;
}
html[lang="ar"] .studio-hero .hero-description {
    font-size: 18px !important;
    line-height: 2.05 !important;
    margin-top: 24px;
}
html[lang="ar"] .studio-hero-grid {
    min-height: 660px;
}
html[lang="ar"] .section h2 {
    font-size: clamp(28px, 2.6vw, 42px) !important;
    line-height: 1.43 !important;
}
html[lang="ar"] .page-hero h1 {
    font-size: clamp(34px, 3.3vw, 55px) !important;
}
html[lang="ar"] .closing h2 {
    font-size: clamp(30px, 2.8vw, 45px) !important;
}
html[lang="ar"] .r9-outline {
    line-height: 1.45 !important;
}
html[lang="ar"] .eyebrow {
    font-size: 12px;
    letter-spacing: 0;
    line-height: 1.8;
}
html[lang="ar"] .desktop-nav > a {
    font-size: 13px;
}
html[lang="ar"] .section-intro {
    font-size: 17px;
    line-height: 2.1;
}
html[lang="ar"] .chapter p,
html[lang="ar"] .editorial p {
    font-size: 17px;
    line-height: 2.15;
}
html[lang="ar"] .architecture-key {
    font-size: 11px;
    letter-spacing: 0;
}
html[lang="ar"] .instrument-tabs button {
    font-size: 22px;
}
html[lang="ar"] .instrument-detail p {
    font-size: 13px;
    line-height: 1.9;
}
html[lang="ar"] .instrument-note {
    font-size: 11px !important;
}
html[lang="ar"] .flow-status {
    font-size: 11px;
    letter-spacing: 0;
}
html[lang="ar"] .ownership h3 {
    font-size: 33px;
}
html[lang="ar"] .ownership > p {
    font-size: 16px;
    line-height: 2.1;
    min-height: 135px;
}
html[lang="ar"] .text-link {
    font-size: 15px;
    line-height: 1.8;
}
html[lang="ar"] .six-chain a {
    padding: 24px 0 12px 16px;
}
html[lang="ar"] .six-chain strong {
    font-size: 21px;
}
html[lang="ar"] .six-chain small {
    font-size: 13px;
}
html[lang="ar"] .control-entry p {
    font-size: 16px;
}
html[lang="ar"] .partner-home p {
    font-size: 18px;
    line-height: 2;
}
html[lang="ar"] .solution-panel summary h2 {
    font-size: clamp(19px, 1.95vw, 28px) !important;
}
html[lang="ar"] .button {
    font-size: 14px;
    letter-spacing: 0;
}
@media (max-width: 1150px) and (min-width: 801px) {
    .studio-hero .hero-title {
        font-size: 5.6vw !important;
    }
    .studio-hero-grid {
        gap: 30px;
        min-height: 580px;
    }
    .studio-hero .hero-description {
        font-size: 17px !important;
    }
    .hero-copy .button {
        font-size: 13px;
        padding: 14px 16px;
    }
    .architecture-key {
        font-size: 9px;
        gap: 7px;
    }
    .instrument-note {
        font-size: 9px !important;
    }
    .section h2 {
        font-size: 39px !important;
    }
    .section-top {
        gap: 40px;
    }
    html[lang="ar"] .studio-hero .hero-title {
        font-size: 3.6vw !important;
    }
    .instrument-tabs button {
        font-size: 18px;
    }
    .pov-aside {
        padding-inline-start: 28px;
    }
}
@media (max-width: 800px) {
    :root {
        --pad: 28px;
        --header: 80px;
    }
    .brand img {
        width: 145px;
    }
    .studio-hero {
        padding-top: 26px;
    }
    .studio-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 33px 0 29px;
        min-height: 0;
    }
    .hero-copy {
        padding-bottom: 0;
    }
    .studio-hero .hero-title {
        font-size: clamp(49px, 8.8vw, 75px) !important;
        max-width: 650px;
    }
    .studio-hero .hero-description {
        font-size: 18px !important;
        max-width: 580px;
        margin-top: 25px;
    }
    .hero-support {
        font-size: 12px;
        margin-top: 19px;
    }
    .hero-instrument {
        width: 100%;
        max-width: 600px;
        margin-inline: auto;
    }
    .canvas-stage {
        aspect-ratio: 1.4;
        width: calc(100% + 16px);
        margin-inline-start: -8px;
    }
    .architecture-key {
        font-size: 10px;
        padding-bottom: 18px;
        gap: 9px;
    }
    .hero-foot {
        gap: 16px;
    }
    .hero-foot p {
        display: none;
    }
    .section {
        padding: 77px 0;
    }
    .section-top {
        display: block;
        margin-bottom: 34px;
    }
    .section-top > .section-intro {
        margin-top: 25px;
        max-width: 600px;
    }
    .section h2 {
        font-size: 39px !important;
        max-width: 680px;
    }
    .ownership h3 {
        font-size: 32px;
    }
    .ownership > p {
        min-height: 0;
    }
    .pov-aside {
        border-inline-start: 0;
        padding-inline-start: 0;
    }
    .pov-number {
        font-size: 100px !important;
    }
    .six-chain {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 23px 0;
    }
    .six-chain a {
        min-height: 130px;
    }
    .section.small {
        padding: 72px 0;
    }
    .control-entry {
        min-height: 118px;
    }
    .closing h2 {
        font-size: 39px !important;
    }
    .footer-grid {
        gap: 35px;
    }
    .footer-end {
        align-items: flex-start;
    }
    .page-hero h1 {
        font-size: 50px !important;
    }
    .page-hero {
        padding: 40px 0 45px;
    }
    .page-hero .lede {
        font-size: 18px;
    }
    .chapter {
        gap: 30px;
    }
    .contact-layout {
        gap: 36px;
    }
    html[lang="ar"] .studio-hero-grid {
        min-height: 0;
    }
    html[lang="ar"] .studio-hero .hero-title {
        font-size: clamp(35px, 6.3vw, 48px) !important;
    }
    html[lang="ar"] .section h2 {
        font-size: 32px !important;
    }
    html[lang="ar"] .page-hero h1 {
        font-size: 39px !important;
    }
    html[lang="ar"] .closing h2 {
        font-size: 33px !important;
    }
    html[lang="ar"] .ownership > p {
        min-height: 0;
    }
}
@media (max-width: 540px) {
    :root {
        --pad: 22px;
        --header: 74px;
    }
    .brand img {
        width: 127px;
    }
    .brand small {
        font-size: 7px;
    }
    .header-inner {
        gap: 15px;
    }
    .header-tools {
        gap: 12px;
    }
    .header-tools .language {
        font-size: 12px;
        min-width: 49px;
        justify-content: center;
    }
    .studio-overline {
        padding-bottom: 18px;
    }
    .studio-overline .micro {
        font-size: 8px;
        letter-spacing: 0.09em;
        max-width: 260px;
    }
    .studio-overline .edition {
        display: none;
    }
    .studio-hero {
        padding-top: 19px;
    }
    .studio-hero-grid {
        gap: 29px;
        padding-top: 27px;
        padding-bottom: 26px;
    }
    .studio-hero .hero-title {
        font-size: clamp(40px, 11.3vw, 59px) !important;
    }
    .studio-hero .hero-description {
        font-size: 16px !important;
        line-height: 1.85 !important;
        margin-top: 22px;
        max-width: 440px;
    }
    .hero-copy .actions {
        gap: 10px;
        flex-wrap: wrap;
        align-items: stretch;
        margin-top: 24px;
    }
    .hero-copy .button {
        flex: 1;
        min-width: 135px;
        padding: 13px 10px;
        font-size: 12px;
        min-height: 50px;
        white-space: normal;
        text-align: center;
    }
    .hero-support {
        font-size: 11px;
        margin-top: 18px;
    }
    .hero-instrument {
        max-width: 100%;
        margin-top: 0;
    }
    .instrument-eyebrow .micro {
        font-size: 9px;
        letter-spacing: 0.1em;
    }
    .instrument-eyebrow .specimen {
        font-size: 8px;
    }
    .canvas-stage {
        aspect-ratio: 1.23;
        width: calc(100% + 16px);
        margin-block: 5px 0;
    }
    .architecture-key {
        font-size: 9px;
        line-height: 1.5;
        padding: 0 0 16px;
        align-items: flex-start;
        gap: 6px;
    }
    .architecture-key > span {
        max-width: 34%;
        gap: 5px;
    }
    .architecture-key i {
        margin-top: 4px;
        width: 5px;
        height: 5px;
    }
    .instrument-tabs button {
        font-size: 18px;
        min-height: 48px;
        padding: 11px 0;
    }
    .instrument-tabs button small {
        font-size: 8px;
        margin-inline-end: 6px;
    }
    .instrument-detail {
        min-height: 62px;
        gap: 6px;
        padding-top: 12px;
    }
    .instrument-detail p {
        font-size: 12px;
        line-height: 1.7;
    }
    .sequence-resume {
        font-size: 10px;
        white-space: normal;
        line-height: 1.5;
        max-width: 90px;
        min-width: 90px;
    }
    .flow-status {
        font-size: 10px;
        line-height: 1.7;
    }
    .flow-meter {
        width: 33px;
    }
    .instrument-note {
        font-size: 9px !important;
        line-height: 1.75 !important;
        margin-top: 10px !important;
    }
    .hero-foot {
        padding-block: 17px;
    }
    .hero-foot .micro {
        font-size: 8px;
        letter-spacing: 0.08em;
    }
    .hero-foot > a {
        font-size: 10px;
    }
    .section,
    .section.small {
        padding: 63px 0;
    }
    .section h2 {
        font-size: 31px !important;
    }
    .section-intro,
    .section-top > .section-intro {
        font-size: 16px;
        line-height: 1.85;
        margin-top: 22px;
    }
    .eyebrow {
        font-size: 9px;
        margin-bottom: 20px;
    }
    .ownership {
        padding: 21px 0 27px !important;
    }
    .ownership h3 {
        font-size: 30px;
    }
    .ownership > p {
        font-size: 15px;
        line-height: 1.9;
    }
    .ownership .text-link {
        font-size: 13px;
        margin-top: 13px;
    }
    .ownership-top {
        margin-bottom: 14px;
    }
    .demo-controls button {
        padding-inline: 14px;
        font-size: 12px;
        min-height: 50px;
    }
    .demo-panel {
        padding: 26px 22px;
        gap: 0;
        min-height: 0;
    }
    .demo-paper {
        width: 212px;
        max-width: 100%;
    }
    .demo-output h3 {
        font-size: 28px;
    }
    .demo-output .text-link {
        font-size: 13px;
        margin-top: 20px;
    }
    .demo-footer {
        padding: 14px 16px;
    }
    .demo-footer .micro {
        font-size: 8px;
        letter-spacing: 0.06em;
        max-width: 230px;
    }
    .demo-processor {
        height: 122px;
        margin-block: 0;
    }
    .solution-link {
        grid-template-columns: 31px minmax(0, 1fr);
        padding: 23px 0;
        min-height: 120px;
    }
    .solution-link h3 {
        font-size: 23px;
    }
    .solution-link p {
        font-size: 14px;
        line-height: 1.85;
    }
    .six-chain {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 19px 20px;
        margin-top: 33px;
    }
    .six-chain a {
        min-height: 119px;
        padding: 20px 8px 8px 0;
    }
    .six-chain strong {
        font-size: 21px;
    }
    .six-chain small {
        font-size: 12px;
    }
    .six-chain .index {
        font-size: 10px;
    }
    .pov-number {
        font-size: 94px !important;
    }
    .pov-aside p {
        font-size: 17px;
        line-height: 1.85;
    }
    .sector summary {
        padding-block: 20px;
    }
    .sector summary strong {
        font-size: 17px;
    }
    .sector summary p {
        font-size: 14px;
        line-height: 1.85;
    }
    .control-words {
        grid-template-columns: 1fr 1fr;
        gap: 20px 24px;
    }
    .control-entry {
        padding: 20px 0 15px;
        min-height: 120px;
    }
    .control-entry h3 {
        font-size: 21px;
    }
    .control-entry p {
        font-size: 14px;
    }
    .section .actions {
        gap: 12px 24px;
        flex-wrap: wrap;
    }
    .section .actions > .text-link {
        font-size: 14px;
        width: auto;
        min-height: 44px;
    }
    .partner-home p {
        font-size: 16px;
        line-height: 1.9;
    }
    .closing {
        padding: 62px 0;
    }
    .closing h2 {
        font-size: 31px !important;
    }
    .closing .bottom {
        margin-top: 24px;
        gap: 25px;
    }
    .closing .email {
        font-size: 24px;
    }
    .closing .bottom p {
        font-size: 16px;
    }
    .site-footer {
        padding-top: 39px;
    }
    .footer-nav a {
        font-size: 13px;
        min-height: 35px;
    }
    .footer-controls {
        gap: 12px 22px;
    }
    .footer-controls button,
    .footer-controls a {
        font-size: 11px;
    }
    .footer-end > span {
        font-size: 10px;
    }
    .cookie-banner {
        padding: 16px 18px;
        width: calc(100% - 24px);
        bottom: 12px;
    }
    .cookie-banner h2 {
        font-size: 17px;
    }
    .cookie-banner p {
        font-size: 12px;
        line-height: 1.75;
    }
    .cookie-actions {
        gap: 8px;
    }
    .cookie-actions button {
        font-size: 11px;
        min-height: 44px;
    }
    .cookie-actions button:last-child {
        grid-column: 1 / -1;
    }
    .page-hero h1 {
        font-size: 38px !important;
    }
    .page-hero .lede {
        font-size: 17px;
        line-height: 1.95;
    }
    .page-hero {
        padding: 34px 0 39px;
    }
    .chapter h2 {
        font-size: 32px !important;
    }
    .chapter p,
    .editorial p {
        font-size: 16px;
        line-height: 1.95;
    }
    .solution-panel summary {
        min-height: 90px;
        gap: 16px;
    }
    .solution-panel summary h2 {
        font-size: 22px !important;
        max-width: 100%;
    }
    .solution-body p {
        font-size: 15px;
    }
    .gate h3 {
        font-size: 21px;
    }
    .gate p {
        font-size: 15px;
    }
    .contact-layout .email {
        font-size: 26px;
    }
    .field label {
        font-size: 13px;
    }
    .reference-architecture {
        padding: 22px 17px;
    }
    .architecture-level {
        padding: 18px 15px;
    }
    .reference-architecture h3 {
        font-size: 20px;
    }
    .text-link {
        font-size: 14px;
    }
    html[lang="ar"] .studio-overline .micro {
        font-size: 10px;
        letter-spacing: 0;
    }
    html[lang="ar"] .studio-hero .hero-title {
        font-size: clamp(29px, 8.2vw, 40px) !important;
    }
    html[lang="ar"] .studio-hero .hero-description {
        font-size: 16px !important;
        line-height: 2.05 !important;
    }
    html[lang="ar"] .hero-copy .button {
        font-size: 13px;
    }
    html[lang="ar"] .hero-support {
        font-size: 11px;
    }
    html[lang="ar"] .section h2 {
        font-size: 27px !important;
    }
    html[lang="ar"] .section-intro {
        font-size: 16px;
        line-height: 2.05;
    }
    html[lang="ar"] .instrument-tabs button {
        font-size: 19px;
    }
    html[lang="ar"] .instrument-detail p {
        font-size: 12px;
    }
    html[lang="ar"] .instrument-note {
        font-size: 10px !important;
    }
    html[lang="ar"] .architecture-key {
        font-size: 10px;
    }
    html[lang="ar"] .eyebrow {
        font-size: 11px;
    }
    html[lang="ar"] .hero-foot > a {
        font-size: 11px;
    }
    html[lang="ar"] .hero-foot .micro {
        font-size: 10px;
    }
    html[lang="ar"] .ownership > p {
        font-size: 16px;
        line-height: 2.05;
    }
    html[lang="ar"] .six-chain strong {
        font-size: 20px;
    }
    html[lang="ar"] .six-chain small {
        font-size: 12px;
    }
    html[lang="ar"] .six-chain a {
        padding: 20px 0 8px 8px;
    }
    html[lang="ar"] .closing h2 {
        font-size: 27px !important;
    }
    html[lang="ar"] .page-hero h1 {
        font-size: 29px !important;
    }
    html[lang="ar"] .chapter h2 {
        font-size: 27px !important;
    }
    html[lang="ar"] .chapter p,
    html[lang="ar"] .editorial p {
        font-size: 16px;
    }
    html[lang="ar"] .solution-panel summary h2 {
        font-size: 21px !important;
    }
    html[lang="ar"] .control-entry h3 {
        font-size: 22px;
    }
    html[lang="ar"] .control-entry p {
        font-size: 14px;
    }
}
@media (max-width: 355px) {
    :root {
        --pad: 20px;
    }
    .studio-hero .hero-title {
        font-size: 39px !important;
    }
    .hero-copy .actions {
        flex-direction: column;
    }
    .hero-copy .button {
        width: 100%;
        font-size: 13px;
    }
    .instrument-tabs button {
        font-size: 17px;
    }
    .architecture-key {
        font-size: 8px;
    }
    .section h2 {
        font-size: 28px !important;
    }
    .hero-foot {
        gap: 10px;
    }
    .hero-foot > a {
        font-size: 9px;
    }
    html[lang="ar"] .studio-hero .hero-title {
        font-size: 28px !important;
    }
    .header-tools {
        gap: 8px;
    }
    .brand img {
        width: 116px;
    }
    .flow-status {
        font-size: 9px;
    }
    .page-hero h1 {
        font-size: 34px !important;
    }
}
html.motion-paused .flow-meter i {
    transition: none;
}
html.motion-paused .r9-word {
    animation: none !important;
}
@media (prefers-reduced-motion: reduce) {
    html:not(.user-motion-on) {
        scroll-behavior: auto;
    }
    html:not(.user-motion-on) *,
    html:not(.user-motion-on) *:before,
    html:not(.user-motion-on) *:after {
        animation: none !important;
        transition: none !important;
    }
}
@media print {
    .site-header,
    .cookie-banner,
    .footer-controls,
    .hero-instrument,
    .experience-board {
        display: none !important;
    }
    .section {
        break-inside: avoid;
        padding: 20px 0;
    }
    .r9-type {
        color: #000 !important;
    }
    .sr-only {
        position: static !important;
        width: auto !important;
        height: auto !important;
        clip: auto !important;
        overflow: visible !important;
    }
    .r9-outline,
    .r9-heading-line {
        display: none !important;
    }
    body {
        color: #000;
        background: #fff;
    }
}
/* Optical word spacing is independent of path geometry. */
.r9-outline,
.r9-heading-line {
    letter-spacing: 0 !important;
    word-spacing: 0.07em;
}
html[lang="ar"] .r9-outline,
html[lang="ar"] .r9-heading-line {
    word-spacing: 0.025em;
}
@media (min-width: 1051px) and (max-height: 820px) {
    .studio-hero {
        padding-top: 20px;
    }
    .studio-overline {
        padding-bottom: 17px;
    }
    .studio-hero-grid {
        min-height: 0;
        padding-top: 24px;
        padding-bottom: 23px;
    }
    .studio-hero .hero-title {
        font-size: clamp(61px, 5.8vw, 89px) !important;
    }
    .studio-hero .hero-description {
        font-size: 17px !important;
        margin-top: 20px;
    }
    .hero-copy .actions {
        margin-top: 23px;
    }
    .hero-support {
        margin-top: 16px;
    }
    .canvas-stage {
        aspect-ratio: 1.7;
    }
    .architecture-key {
        padding-bottom: 15px;
    }
    .instrument-detail {
        min-height: 47px;
    }
    .instrument-note {
        margin-top: 6px !important;
    }
    .hero-foot {
        padding-block: 17px;
    }
    html[lang="ar"] .studio-hero .hero-title {
        font-size: clamp(38px, 3.35vw, 52px) !important;
    }
    html[lang="ar"] .studio-hero-grid {
        min-height: 0;
    }
}
/* Small reading labels retain sufficient separation from the white ground. */
.instrument-note,
.specimen,
.studio-overline .edition,
.index,
.instrument-tabs small,
.instrument-eyebrow .specimen {
    color: #666b78 !important;
}
.instrument-note {
    color: #69707d !important;
}

/* R10: production studio. White, typographic, open, bilingual. */
:root {
    --paper: #fff;
    --ink: #101218;
    --muted: #4d5260;
    --faint: #687080;
    --line: #e0e2e9;
    --blue: #4b55c5;
    --violet: #8245bc;
    --cyan: #2b88bf;
    --wide: 1480px;
    --pad: clamp(24px, 4.5vw, 84px);
    --header: 88px;
    --font: "Avenir Next", "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --spectrum: linear-gradient(110deg, #8544c6 0%, #6553cf 46%, #387dcc 78%, #258dbd 100%);
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header) + 24px);
}
body {
    background: #fff;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: -0.018em;
    color: var(--ink);
}
h1,
h2,
h3,
h4 {
    color: var(--ink);
    text-wrap: balance;
}
p {
    overflow-wrap: break-word;
}
a,
button,
input,
select,
textarea {
    touch-action: manipulation;
}
.container {
    width: min(var(--wide), calc(100% - 2 * var(--pad)));
    margin-inline: auto;
}
.eyebrow,
.micro {
    font-size: 10px;
    letter-spacing: 0.17em;
    color: #626879;
    font-weight: 600;
}
.eyebrow {
    margin-bottom: 24px;
}
.eyebrow:before {
    display: none;
}
.index {
    color: #685291;
    font-size: 11px;
    letter-spacing: 0.08em;
}
.section {
    padding: 112px 0;
    border-color: var(--line);
}
.section.small {
    padding: 50px 0;
}
.section h2 {
    font-size: clamp(37px, 3.65vw, 60px);
    line-height: 1.2;
    letter-spacing: -0.046em;
}
.section-top {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 8%;
    align-items: end;
    margin-bottom: 52px;
}
.section-top > div {
    min-width: 0;
}
.section-top .section-intro {
    margin-top: 20px;
    max-width: 620px;
}
.section-top > p {
    margin: 0 0 7px;
}
.section-intro {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
    max-width: 610px;
}
.section a.text-link,
.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    gap: 0;
    font-size: 14px;
    font-weight: 600;
    border: 0;
    border-bottom: 1px solid #9e91b9;
    padding: 2px 0;
    color: #282133;
    text-decoration: none;
    transition:
        color 0.2s,
        border-color 0.2s;
    transform: none !important;
}
.text-link:after {
    display: none !important;
}
.text-link:hover {
    color: #7949b4;
    border-color: #7949b4;
}
.button {
    border-radius: 3px;
    padding: 15px 24px;
    min-height: 54px;
    background: #15151d;
    color: #fff;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: -0.01em;
    border: 1px solid #15151d;
    transition:
        background 0.2s,
        box-shadow 0.2s,
        border-color 0.2s;
    transform: none !important;
}
.button:hover {
    background: #383040;
    box-shadow: 0 5px 18px -13px #46345f;
}
.button.ghost {
    background: #fff;
    border-color: #c2bed0;
    color: #20202c;
}
.button.ghost:hover {
    border-color: #795bb1;
    background: #fff;
}
.actions {
    gap: 12px;
}
.r9-word {
    max-width: 100%;
}
.r9-type .r9-heading-line {
    line-height: 1.07;
}
.r9-type .accent-type {
    color: #6951c1;
}
.r9-type .accent-type .r9-word {
    color: inherit;
}
.r9-type .r9-outline {
    line-height: 1.14;
}
/* Header is navigation, not a control panel. */
.site-header {
    height: var(--header);
    background: #fff;
    border-bottom: 1px solid #e6e7ed;
    box-shadow: none;
    z-index: 50;
}
.header-inner {
    height: 100%;
    gap: 28px;
}
.brand img {
    width: 156px;
}
.brand small {
    font-size: 7px;
    letter-spacing: 0.2em;
    color: #535765;
    margin-top: 7px;
}
.desktop-nav {
    gap: clamp(15px, 1.6vw, 26px);
}
.desktop-nav a {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: -0.005em;
    color: #292b33;
}
.desktop-nav > a:last-child {
    padding: 10px 22px;
    border-color: #393945;
    border-radius: 3px;
}
.header-tools {
    gap: 20px;
}
.header-tools .language {
    font-size: 12px;
    border-inline-start: 1px solid #e2e3eb;
    padding-inline-start: 23px;
}
.menu-toggle {
    width: 44px;
    height: 44px;
}
.menu-toggle i {
    width: 25px;
    transition: transform 0.2s;
}
.menu-toggle[aria-expanded="true"] i:first-child {
    transform: translateY(3px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] i:last-child {
    transform: translateY(-3px) rotate(-45deg);
}
.site-header.is-scrolled {
    box-shadow: 0 12px 28px -28px #16191f;
}
.mobile-menu {
    background: #fff;
}
.mobile-menu a {
    font-size: 25px;
    line-height: 1.6;
}
.header-signal {
    display: none;
}
/* The opening tells the business first. The diagram illustrates it. */
.r10-hero {
    padding-top: var(--header);
    background: #fff;
    overflow: hidden;
}
.hero-kicker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 26px;
    padding: 27px 0 25px;
    border-bottom: 1px solid var(--line);
    font-size: 9px;
    font-weight: 650;
    letter-spacing: 0.16em;
    color: #67677b;
}
.hero-kicker p {
    margin: 0;
}
.hero-kicker > span {
    white-space: nowrap;
    color: #66616f;
}
.r10-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.12fr;
    align-items: center;
    gap: 0;
    min-height: 650px;
    padding: 34px 0 35px;
}
.r10-hero .hero-copy {
    z-index: 2;
    min-width: 0;
    padding: 0 20px 0 0;
}
.r10-title {
    font-size: clamp(70px, 6.65vw, 108px) !important;
    max-width: 740px;
    line-height: 1.04 !important;
    letter-spacing: -0.06em;
    margin: 0;
}
.r10-title .r9-heading-line {
    display: block;
    white-space: normal;
}
.r10-hero .hero-description {
    max-width: 525px;
    font-size: 17px;
    line-height: 1.8;
    margin-top: 24px;
    color: #4c5060;
    letter-spacing: -0.012em;
}
.r10-hero .actions {
    margin-top: 27px;
}
.r10-hero .hero-explore {
    display: inline-block;
    font-size: 12px;
    margin-top: 22px;
    border-bottom: 1px solid #b5aec7;
    padding: 1px 0;
    line-height: 1.8;
    color: #656072;
}
.hero-explore:hover {
    color: #7146ad;
}
.production-instrument {
    min-width: 0;
    width: 100%;
    position: relative;
    align-self: center;
    --phase: 0;
    --mode: 0;
    --elapsed: 0;
}
.instrument-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 -7px 54px;
}
.instrument-heading .eyebrow {
    margin: 0;
    font-size: 9px;
    letter-spacing: 0.18em;
}
.instrument-caption {
    font-size: 10px;
    color: #777585;
}
.architecture-stage {
    position: relative;
    aspect-ratio: 1.26;
    width: calc(100% + 14px);
    margin-left: -7px;
    isolation: isolate;
}
.production-architecture {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    will-change: transform;
}
.architecture-label {
    position: absolute;
    font-size: 11px;
    line-height: 1.45;
    max-width: 200px;
    pointer-events: none;
}
.architecture-label strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: #33313b;
}
.architecture-label span {
    display: block;
    font-size: 9px;
    color: #777584;
    margin-top: 4px;
}
.label-technology {
    left: 8%;
    top: 4%;
}
.label-operating {
    right: 1%;
    top: 52.5%;
    max-width: 160px;
}
.label-operating strong {
    color: #7754ae;
}
.label-customer {
    left: 7%;
    bottom: 6%;
}
.system-description {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: #675c77;
    padding: 4px 20px 0 47px;
    margin-top: -10px;
    min-height: 32px;
}
.status-point {
    width: 5px;
    height: 5px;
    background: #8152bd;
    flex-shrink: 0;
    border-radius: 50%;
}
.system-progress {
    margin-inline-start: auto;
    width: 45px;
    height: 2px;
    background: #e7dff0;
    flex-shrink: 0;
    overflow: hidden;
}
.system-progress i {
    display: block;
    height: 100%;
    background: var(--spectrum);
    transform: scaleX(var(--phase));
    transform-origin: left;
    width: 100%;
}
.system-disclosure {
    margin: 7px 20px 0 47px;
    font-size: 10px;
    color: #797483;
}
.responsibility-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #d7d9e1;
    border-bottom: 1px solid #d7d9e1;
    gap: 36px;
}
.responsibility-selector button {
    position: relative;
    text-align: start;
    padding: 20px 0 22px;
    min-height: 105px;
    background: none;
    border: 0;
    overflow: hidden;
    color: var(--ink);
}
.responsibility-name {
    display: block;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -0.04em;
}
.responsibility-summary {
    display: block;
    font-size: 12px;
    color: #626676;
    margin-top: 6px;
}
.responsibility-selector button[aria-selected="true"] .responsibility-name {
    color: #7850b2;
}
.responsibility-progress {
    height: 2px;
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 100%;
    background: var(--spectrum);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}
.responsibility-selector button[aria-selected="true"] .responsibility-progress {
    transform: scaleX(1);
}
.hero-lastline {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    font-size: 11px;
    color: #6b6878;
    padding: 16px 0 23px;
    margin: 0;
}
.hero-lastline a {
    border-bottom: 1px solid #d7cbe5;
    padding-bottom: 1px;
}
.sequence-resume {
    margin: 12px 0 0;
    font-size: 11px;
    color: #7353a6;
    border-bottom: 0px solid #c3b5d5;
    min-height: 28px;
}
.mobile-system {
    display: none;
}
/* Ownership is precise, editorial and intentionally unnumbered. */
.r10-ownership {
    padding-top: 94px;
}
.r10-ownership .section-top {
    grid-template-columns: 1.3fr 1fr;
}
.r10-ownership .section-intro {
    font-size: 18px;
}
.ownership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 46px;
    border-top: 1px solid #d7d9e2;
}
.ownership {
    display: block !important;
    position: relative;
    border: 0 !important;
    padding: 29px 0 0 !important;
    min-width: 0;
    background: none;
}
.ownership h3 {
    font-size: 32px;
    margin: 0 0 18px;
    font-weight: 500;
    letter-spacing: -0.035em;
}
.ownership > p {
    font-size: 16px;
    line-height: 1.9;
    min-height: 115px;
    max-width: 400px;
    color: #555967;
}
.ownership .text-link {
    margin-top: 20px;
    font-size: 12px;
}
.ownership:before {
    display: none;
}
/* An application behaves like the process it explains. No fake operational metrics. */
.r10-applications {
    padding-top: 105px;
}
.r10-applications .section-top {
    grid-template-columns: 1fr 1fr;
}
.experience-board {
    background: #fff;
    border: 0;
    position: relative;
    --demo-progress: 0;
}
.demo-controls {
    display: flex;
    gap: 42px;
    border-top: 0;
    border-bottom: 1px solid #d8dae3;
    background: #fff;
}
.demo-controls button {
    min-width: 0;
    position: relative;
    background: none;
    border: 0;
    padding: 18px 0;
    font-size: 18px;
    letter-spacing: -0.025em;
    line-height: 1.4;
    color: #696774;
    flex: initial;
}
.demo-controls button:before {
    display: none;
}
.demo-controls button:after {
    content: "";
    position: absolute;
    bottom: -1px;
    inset-inline-start: 0;
    height: 2px;
    width: 100%;
    background: var(--spectrum);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
}
.demo-controls button[aria-selected="true"] {
    color: #26212e;
}
.demo-controls button[aria-selected="true"]:after {
    transform: scaleX(1);
}
.demo-panel {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    align-items: center;
    gap: 0;
    min-height: 450px;
    padding: 48px 0 42px;
    position: relative;
    overflow: visible;
    background: #fff;
}
.demo-source {
    width: 100%;
    max-width: 275px;
    margin-inline: auto;
    position: relative;
}
.demo-source > .micro {
    font-size: 10px;
    letter-spacing: 0.13em;
}
.demo-source > .micro:last-child {
    font-size: 9px;
    margin-top: 20px;
    display: block;
}
.demo-paper {
    position: relative;
    width: 235px;
    margin: 22px 0 0;
    padding: 26px 26px 30px;
    border: 1px solid #cfd1dd;
    background: #fff;
    border-radius: 1px;
    box-shadow:
        8px 8px 0 #faf9fd,
        8px 8px 0 1px #dfdce7;
    transform: translateY(var(--paper-shift, 0px));
    animation: none !important;
    transition: transform 0.4s;
    overflow: hidden;
}
.demo-paper strong {
    font-size: 19px;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: -0.025em;
}
.paper-mark {
    width: 32px;
    height: 3px;
    background: var(--spectrum);
    margin-bottom: 26px;
}
.paper-row {
    display: block;
    height: 2px;
    margin: 16px 0;
    background: #dedfe7;
}
.paper-table {
    height: 47px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin-top: 20px;
    border-top: 1px solid #e5e3ed;
    border-inline-start: 1px solid #e5e3ed;
}
.paper-table span {
    border-inline-end: 1px solid #e5e3ed;
    border-bottom: 1px solid #e5e3ed;
}
.scan-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: var(--spectrum);
    box-shadow: 0 0 0 transparent;
    animation: r10-document-scan 7s linear infinite;
    opacity: 0.8;
}
.demo-processor {
    position: relative;
    width: 100%;
    padding: 0;
    align-self: center;
}
.demo-processor svg {
    width: 100%;
    height: 230px;
    display: block;
    overflow: visible;
    transform: none;
}
.demo-processor > span {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 550;
    letter-spacing: -0.035em;
    line-height: 1;
}
.demo-processor > small {
    display: block;
    position: relative;
    text-align: center;
    top: auto;
    margin-top: -21px;
    font-size: 10px;
    color: #797283;
    line-height: 1.6;
}
.example-trace {
    stroke-dasharray: 20 530;
    stroke-dashoffset: 0;
    animation: r10-signal-flow 5.8s linear infinite;
}
.example-trace.second {
    animation-delay: -2.9s;
    opacity: 0.6;
}
.demo-output {
    padding-inline-start: 38px;
    position: relative;
}
.demo-output > .micro {
    font-size: 9px;
    letter-spacing: 0.13em;
}
.demo-output h3 {
    font-size: 36px;
    line-height: 1.25;
    margin: 20px 0 28px;
    letter-spacing: -0.055em;
    font-weight: 500;
    max-width: 320px;
}
.output-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    animation: none !important;
    opacity: 1;
    transform: none !important;
}
.output-row p {
    font-size: 14px;
    line-height: 1.5;
    color: #5e5869;
    margin: 0;
}
.evidence-mark {
    width: 7px;
    height: 7px;
    display: block;
    border: 1px solid #9479ba;
    flex-shrink: 0;
    position: relative;
}
.evidence-mark:before {
    content: "";
    position: absolute;
    inset: 1px;
    background: #835bbc;
    animation: r10-evidence 7s linear infinite;
    transform: scale(0);
}
.output-row:nth-of-type(2) .evidence-mark:before {
    animation-delay: 0.8s;
}
.output-row:nth-of-type(3) .evidence-mark:before {
    animation-delay: 1.6s;
}
.demo-output .text-link {
    font-size: 12px;
    margin-top: 25px;
}
.demo-footer {
    border-top: 1px solid #dcdfe7;
    padding: 18px 0;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}
.demo-footer > .micro {
    font-size: 8px;
    letter-spacing: 0.16em;
    color: #8b8096;
}
.demo-timer {
    width: 78px;
    height: 2px;
    background: #ebe6f2;
    overflow: hidden;
    flex-shrink: 0;
}
.demo-timer i {
    height: 100%;
    display: block;
    background: var(--spectrum);
    width: 100%;
    animation: r10-demo-timer 7s linear infinite;
    transform-origin: left;
}
.experience-board:not(.is-active) * {
    animation-play-state: paused !important;
}
.experience-board[data-demo="1"] .demo-paper {
    border-radius: 30px 30px 30px 2px;
}
.experience-board[data-demo="1"] .paper-table {
    display: none;
}
.experience-board[data-demo="1"] .paper-row {
    height: 3px;
}
.experience-board[data-demo="2"] .paper-table {
    grid-template-columns: 1fr;
    gap: 5px;
    border: 0;
    height: 50px;
}
.experience-board[data-demo="2"] .paper-table span {
    height: 3px;
    border: 0;
    background: #e0dae9;
    width: 75%;
}
.experience-board[data-demo="2"] .paper-table span:nth-child(n + 4) {
    display: none;
}
@keyframes r10-signal-flow {
    to {
        stroke-dashoffset: -550;
    }
}
@keyframes r10-document-scan {
    0% {
        top: 18%;
        opacity: 0;
    }
    12% {
        opacity: 1;
    }
    72% {
        top: 90%;
        opacity: 1;
    }
    88%,
    100% {
        top: 90%;
        opacity: 0;
    }
}
@keyframes r10-evidence {
    0%,
    35% {
        transform: scale(0);
    }
    45%,
    90% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes r10-demo-timer {
    0% {
        transform: scaleX(0);
    }
    95%,
    100% {
        transform: scaleX(1);
    }
}
/* Solution index: a direct route to scope, not an enquiry wall. */
.r10-solutions .section-top {
    max-width: 1060px;
    display: block;
}
.r10-solutions .section-top h2 {
    max-width: 840px;
}
.r10-solutions .section-intro {
    max-width: 750px;
}
.selected-solutions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 64px;
}
.solution-link {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 21px;
    padding: 30px 0 34px;
    border-bottom: 1px solid #d8dbe5;
    align-items: start;
    position: relative;
    min-width: 0;
}
.solution-link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    background: var(--spectrum);
    width: 100%;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.35s;
}
.solution-link:hover:after {
    transform: scaleX(1);
}
.solution-link h3 {
    font-size: 27px;
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.3;
    max-width: 420px;
}
.solution-link p {
    font-size: 15px;
    line-height: 1.8;
    color: #606171;
    margin-top: 15px;
    max-width: 415px;
}
.solution-link .index {
    padding-top: 6px;
}
.solution-link:hover h3 {
    color: #7451a8;
}
.r10-solutions .text-link {
    margin-top: 22px;
}
.solution-link:hover {
    background: none;
    transform: none;
}
/* Six stages, six real acceptance gates. Animation is emphasis, never acceptance. */
.r10-delivery {
    padding: 102px 0;
}
.r10-delivery .section-top {
    display: block;
    max-width: 1000px;
}
.six-chain {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    margin-top: 42px;
    position: relative;
    border-top: 1px solid #ced1de;
    --read-progress: 0;
}
.six-chain:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--spectrum);
    transform: scaleX(var(--read-progress));
    transform-origin: left;
    transition: transform 0.18s linear;
}
.six-chain li:after {
    display: none !important;
}
.six-chain a {
    display: block;
    padding: 25px 18px 0 0;
    min-height: 120px;
    position: relative;
}
.six-chain .index {
    display: block;
    margin-bottom: 20px;
    color: #8b87a1;
}
.six-chain strong {
    font-size: 23px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.03em;
    transition: color 0.2s;
}
.six-chain small {
    font-size: 12px;
    line-height: 1.7;
    color: #747182;
    display: block;
    margin-top: 8px;
    max-width: 150px;
}
.six-chain li[data-highlight="true"] strong {
    color: #7952b4;
}
.six-chain a:hover strong {
    color: #7952b4;
}
.six-chain a:after {
    content: "";
    position: absolute;
    left: 0;
    top: -5px;
    width: 8px;
    height: 8px;
    border-radius: 0;
    background: #fff;
    border: 1px solid #b0a9c4;
    transition: background 0.2s;
}
.six-chain li[data-highlight="true"] a:after {
    background: #7952b4;
    border-color: #7952b4;
}
.r10-proof .section-top {
    display: block;
    max-width: 930px;
}
.r10-proof .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
    align-items: center;
}
.pov-number {
    font-size: clamp(120px, 16vw, 240px);
    line-height: 1;
    letter-spacing: -0.065em;
    color: #16151e;
    font-weight: 400;
    white-space: nowrap;
}
.pov-number span {
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.02em;
    color: #777180;
    margin: 18px 0 0;
    display: block;
}
.pov-aside {
    padding: 0;
}
.pov-aside > p:first-child {
    font-size: 22px;
    line-height: 1.8;
    max-width: 510px;
}
.pov-aside .text-link {
    margin-top: 25px;
}
.pov-aside .fine-line {
    font-size: 12px;
    line-height: 1.9;
    color: #7d7789;
    margin-top: 25px;
}
.proof-timebar {
    margin-top: 45px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #d6d5e1;
    padding-top: 10px;
    font-size: 10px;
    color: #8a8396;
    position: relative;
}
.proof-timebar i {
    position: absolute;
    top: -1px;
    left: 0;
    width: 18%;
    height: 2px;
    background: var(--spectrum);
    animation: r10-timepath 15s linear infinite;
}
.proof-timebar:not(.is-active) i {
    animation-play-state: paused;
}
@keyframes r10-timepath {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateX(455%);
        opacity: 0;
    }
}
/* Below the fold, information has room to breathe. */
.r10-sectors .section-top {
    display: block;
    max-width: 900px;
}
.sector-grid {
    gap: 0 45px;
}
.sector {
    border: 0;
    border-top: 1px solid #d3d5de;
    border-radius: 0;
    background: #fff;
    padding: 0;
    min-width: 0;
}
.sector summary {
    padding: 26px 25px 28px 0;
    min-height: 177px;
}
.sector summary h3 {
    font-size: 23px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.035em;
}
.sector summary p {
    font-size: 14px;
    line-height: 1.85;
    margin-top: 13px;
    color: #6a6675;
    max-width: 370px;
}
.sector summary:after {
    top: 30px;
    right: 0;
}
.sector .panel {
    padding: 0 0 27px;
    font-size: 14px;
    color: #5d566a;
}
.sector[open] {
    background: #fff;
}
.control-words {
    gap: 40px;
    padding: 26px 0 13px;
}
.control-entry {
    border: 0;
    border-top: 1px solid #d3d4df;
    padding: 23px 0 30px;
    display: block;
    position: relative;
    min-width: 0;
}
.control-entry h3 {
    font-size: 23px;
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.4;
}
.control-entry p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.8;
    color: #676574;
}
.control-entry:before,
.control-entry:after {
    display: none !important;
}
.control-entry:hover h3 {
    color: #7650ac;
}
.r10-partners {
    position: relative;
}
.r10-partners .section-top {
    display: block;
    max-width: 1000px;
}
.r10-partners .section-top h2 {
    max-width: 1040px;
    font-size: clamp(35px, 4vw, 68px);
}
.partner-home {
    padding: 28px 0 0;
    border-top: 1px solid #d9d3e3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
    position: relative;
}
.partner-home:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 2px;
    top: -1px;
    left: 0;
    background: var(--spectrum);
}
.partner-home p {
    font-size: 19px;
    line-height: 1.9;
    color: #555064;
}
.partner-home > p {
    font-size: 15px;
    color: #716b7d;
}
.partner-home .text-link {
    margin-top: 28px;
}
.closing {
    padding: 110px 0 90px;
    background: #fff;
    border-top: 1px solid #d8d9e1;
}
.closing h2 {
    font-size: clamp(38px, 4.7vw, 76px);
    max-width: 1180px;
    line-height: 1.15;
}
.closing .bottom {
    margin-top: 45px;
    gap: 30px;
}
.closing .bottom p {
    color: #696575;
    max-width: 430px;
    font-size: 16px;
}
.closing .email {
    font-size: 24px;
    letter-spacing: -0.02em;
}
.site-footer {
    border-top: 1px solid var(--line);
    padding-top: 50px;
    background: #fff;
}
.footer-grid {
    gap: 9%;
    grid-template-columns: 1.25fr 1fr 1fr;
}
.footer-nav a {
    font-size: 13px;
    min-height: 32px;
}
.footer-intro p {
    font-size: 13px;
    color: #65616e;
}
.footer-controls {
    gap: 22px;
    flex-wrap: wrap;
}
.footer-end {
    border-top: 1px solid #e3e3eb;
    margin-top: 40px;
    padding-block: 23px;
    font-size: 10px;
    line-height: 1.9;
    color: #736b80;
}
.footer-controls button,
.footer-controls a {
    font-size: 10px;
    min-height: 32px;
    color: #5f586e;
}
.footer-controls .motion:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #8460b0;
    margin-inline-end: 7px;
}
.motion-paused .footer-controls .motion:before {
    background: #bbb7c2;
}
/* Inner pages inherit the same typography, rhythm, real controls and scope. */
.page-hero {
    padding: 64px 0 66px;
}
.page-hero h1 {
    font-size: clamp(47px, 5.2vw, 80px);
    max-width: 1040px;
}
.page-hero .lede {
    font-size: 19px;
    line-height: 1.9;
    max-width: 750px;
    margin-top: 26px;
}
.breadcrumb {
    font-size: 11px;
    margin-bottom: 40px;
}
.page-tabs {
    gap: 25px;
    font-size: 13px;
    overflow: auto;
}
.page-tabs a {
    white-space: nowrap;
}
.chapter,
.partner-chapter {
    border-top: 0px solid #d4d5df;
    padding: 45px 0;
    gap: 8%;
    grid-template-columns: 1fr 1.65fr;
    background: #fff;
}
.chapter h2,
.partner-chapter h2 {
    font-size: clamp(30px, 3.8vw, 52px);
}
.chapter p,
.partner-chapter p {
    font-size: 16px;
    line-height: 1.9;
}
.solution-panel {
    border: 0;
    border-bottom: 1px solid #d3d4df;
    border-radius: 0;
    background: #fff;
}
.solution-panel summary {
    padding: 29px 0;
}
.solution-panel summary h2 {
    font-size: 29px;
    line-height: 1.4;
}
.solution-panel[open] {
    background: #fff;
}
.solution-panel .panel {
    padding: 14px 0 38px;
}
.solution-panel .panel h3 {
    font-size: 18px;
    font-weight: 550;
}
.solution-panel .panel p {
    font-size: 16px;
    line-height: 1.85;
}
.gate,
.control-card {
    border-radius: 1px;
    background: #fff;
}
.gate h3 {
    font-size: 24px;
    line-height: 1.4;
}
.gate p {
    line-height: 1.8;
}
.reference-architecture {
    border: 1px solid #d6d4df;
    border-radius: 0;
    background: #fff;
    padding: 35px;
}
.architecture-level {
    border-color: #dcd7e6;
    border-radius: 2px;
}
.contact-layout {
    gap: 9%;
}
.contact-aside h2 {
    font-size: 29px;
}
.contact-aside p {
    font-size: 15px;
    line-height: 1.9;
}
.form-grid {
    gap: 24px;
}
.field label {
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 550;
    color: #383442;
}
.field input,
.field select,
.field textarea {
    font-size: 16px;
    line-height: 1.65;
    min-height: 54px;
    background: #fff;
    border: 1px solid #c9c6d2;
    border-radius: 2px;
    padding: 13px 15px;
}
.field textarea {
    min-height: 150px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #8760b7;
    box-shadow: none;
}
.form-heading {
    margin-bottom: 30px;
}
.cookie-banner {
    background: #fff;
    border: 1px solid #cecbd8;
    border-radius: 3px;
    box-shadow: 0 14px 50px -32px #24202f;
    bottom: 18px;
    padding: 20px 24px;
}
.cookie-banner h2 {
    font-family: var(--font);
    font-size: 17px;
    letter-spacing: -0.02em;
}
.cookie-banner p {
    font-size: 12px;
    line-height: 1.8;
}
.cookie-actions {
    gap: 9px;
}
.cookie-actions button {
    font-size: 12px;
    border-radius: 2px;
    min-height: 44px;
    border-color: #a7a0b4;
}
.cookie-actions button:first-child {
    background: #fff;
    color: #19171e;
}
.cookie-actions button:hover {
    background: #f8f6fb;
}
.cookie-banner a {
    color: #705199;
}
.cookie-dialog,
dialog {
    border-color: #c9c3d4;
    border-radius: 3px;
    background: #fff;
}
dialog::backdrop {
    background: rgba(21, 17, 30, 0.25);
    backdrop-filter: none;
}
.close-dialog {
    font-size: 13px;
}
.reveal.pending {
    opacity: 0;
    transform: translateY(10px);
}
.reveal {
    transition:
        opacity 0.45s,
        transform 0.45s;
}
/* Arabic has its own reading rhythm. Do not apply Latin tracking to joined glyphs. */
html[lang="ar"] body {
    font-family: "Geeza Pro", "Noto Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
    letter-spacing: 0;
    font-size: 17px;
    line-height: 2;
}
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] p,
html[lang="ar"] .eyebrow,
html[lang="ar"] .micro {
    letter-spacing: 0;
}
html[lang="ar"] .r9-type {
    line-height: 1.7 !important;
}
html[lang="ar"] .r10-title {
    font-size: clamp(46px, 4.8vw, 73px) !important;
    line-height: 1.68 !important;
}
html[lang="ar"] .r10-hero .hero-copy {
    padding: 0 0 0 28px;
}
html[lang="ar"] .hero-description {
    font-size: 17px !important;
    line-height: 2.1 !important;
}
html[lang="ar"] .hero-kicker {
    letter-spacing: 0;
    font-size: 11px;
}
html[lang="ar"] .architecture-stage {
    direction: ltr;
}
html[lang="ar"] .architecture-label {
    direction: rtl;
    text-align: right;
}
html[lang="ar"] .label-technology {
    left: 1%;
    max-width: 185px;
}
html[lang="ar"] .label-operating {
    right: 0%;
    top: 54%;
    max-width: 180px;
}
html[lang="ar"] .label-customer {
    left: 1%;
    bottom: 5%;
}
html[lang="ar"] .architecture-label strong {
    font-size: 12px;
}
html[lang="ar"] .architecture-label span {
    font-size: 9px;
}
html[lang="ar"] .instrument-heading .eyebrow {
    font-size: 11px;
}
html[lang="ar"] .system-description {
    font-size: 11px;
}
html[lang="ar"] .system-disclosure {
    font-size: 10px;
}
html[lang="ar"] .responsibility-name {
    font-size: 27px;
    letter-spacing: 0;
}
html[lang="ar"] .responsibility-summary {
    font-size: 12px;
}
html[lang="ar"] .responsibility-progress,
html[lang="ar"] .six-chain:before {
    transform-origin: right;
}
html[lang="ar"] .six-chain a {
    padding: 25px 0 0 18px;
}
html[lang="ar"] .six-chain a:after {
    left: auto;
    right: 0;
}
html[lang="ar"] .section h2 {
    font-size: clamp(32px, 3vw, 49px);
}
html[lang="ar"] .r10-partners h2 {
    font-size: clamp(34px, 3.4vw, 52px);
}
html[lang="ar"] .ownership > p {
    font-size: 16px;
    line-height: 2.05;
}
html[lang="ar"] .demo-output h3 {
    font-size: 31px;
    letter-spacing: 0;
}
html[lang="ar"] .demo-processor > span {
    font-family: var(--font);
}
html[lang="ar"] .demo-processor svg {
    transform: scaleX(-1);
}
html[lang="ar"] .output-row p {
    font-size: 14px;
}
html[lang="ar"] .demo-paper strong {
    font-size: 19px;
}
html[lang="ar"] .sector summary {
    padding: 26px 0 28px 25px;
}
html[lang="ar"] .sector summary:after {
    right: auto;
    left: 0;
}
html[lang="ar"] .r10-proof .pov-number {
    direction: ltr;
    text-align: right;
    font-family: var(--font);
}
html[lang="ar"] .proof-timebar {
    direction: ltr;
}
html[lang="ar"] .partner-home:before {
    right: 0;
    left: auto;
}
html[lang="ar"] .closing h2 {
    font-size: clamp(36px, 4vw, 63px);
}
html[lang="ar"] .page-hero h1 {
    font-size: clamp(37px, 4.1vw, 61px);
}
html[lang="ar"] .page-hero .lede {
    font-size: 18px;
    line-height: 2.05;
}
html[lang="ar"] .section-intro {
    font-size: 17px;
    line-height: 2.05;
}
html[lang="ar"] .solution-panel summary h2 {
    font-size: 25px;
}
html[lang="ar"] .chapter p,
html[lang="ar"] .partner-chapter p {
    font-size: 16px;
    line-height: 2.1;
}
html[lang="ar"] .cookie-actions button {
    font-size: 11px;
}
html[lang="ar"] .cookie-banner p {
    font-size: 12px;
    line-height: 1.95;
}
@media (min-width: 1600px) {
    .r10-hero-grid {
        min-height: 710px;
    }
    .architecture-stage {
        aspect-ratio: 1.24;
    }
    .r10-title {
        font-size: 111px !important;
    }
}
@media (max-width: 1200px) {
    :root {
        --pad: 40px;
    }
    .desktop-nav {
        gap: 15px;
    }
    .desktop-nav a {
        font-size: 11px;
    }
    .header-inner {
        gap: 20px;
    }
    .brand img {
        width: 140px;
    }
    .r10-title {
        font-size: 7.05vw !important;
    }
    .r10-hero-grid {
        min-height: 610px;
        grid-template-columns: 1fr 1.04fr;
    }
    .r10-hero .hero-description {
        font-size: 16px;
    }
    .architecture-label strong {
        font-size: 10px;
    }
    .architecture-label span {
        font-size: 8px;
    }
    .label-operating {
        max-width: 140px;
        right: -1%;
        top: 54%;
    }
    .instrument-heading .eyebrow {
        font-size: 8px;
    }
    .instrument-caption {
        font-size: 8px;
    }
    .section h2 {
        font-size: 45px;
    }
    .ownership > p {
        min-height: 145px;
    }
    .demo-panel {
        grid-template-columns: 0.95fr 0.9fr 1fr;
    }
    .demo-source {
        max-width: 240px;
    }
    .demo-paper {
        width: 213px;
    }
    .demo-output {
        padding-inline-start: 18px;
    }
    .demo-output h3 {
        font-size: 31px;
    }
    .output-row p {
        font-size: 12px;
    }
    .six-chain strong {
        font-size: 20px;
    }
    .six-chain small {
        font-size: 11px;
    }
    .partner-home p {
        font-size: 18px;
    }
}
@media (max-width: 1050px) {
    .r10-hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 22px;
        padding: 35px 0 25px;
    }
    .r10-hero .hero-copy {
        max-width: 720px;
        padding: 0;
    }
    .r10-title {
        font-size: clamp(65px, 9vw, 88px) !important;
    }
    .r10-title .r9-heading-line {
        display: inline;
    }
    .r10-title .r9-heading-line:after {
        content: " ";
    }
    .r10-title .r9-heading-line:nth-last-child(1) {
        display: block;
    }
    .r10-hero .hero-description {
        max-width: 650px;
        font-size: 17px;
    }
    .production-instrument {
        max-width: 710px;
        margin-inline: auto;
    }
    .architecture-stage {
        aspect-ratio: 1.4;
        width: 100%;
        margin: 0;
    }
    .architecture-label strong {
        font-size: 12px;
    }
    .architecture-label span {
        font-size: 9px;
    }
    .label-technology {
        top: 2%;
    }
    .label-operating {
        right: 0%;
        top: 54%;
    }
    .label-customer {
        bottom: 3%;
    }
    .instrument-heading {
        margin: 16px 0 0;
    }
    .instrument-heading .eyebrow {
        font-size: 9px;
    }
    .instrument-caption {
        font-size: 10px;
    }
    .system-description {
        padding: 0;
        margin-top: 0;
    }
    .system-disclosure {
        margin: 6px 0 20px;
    }
    .responsibility-selector {
        gap: 25px;
    }
    .responsibility-name {
        font-size: 26px;
    }
    .responsibility-summary {
        font-size: 11px;
    }
    .section-top {
        gap: 6%;
        grid-template-columns: 1fr 1fr;
    }
    .section {
        padding: 80px 0;
    }
    .section h2 {
        font-size: 41px;
    }
    .ownership-grid {
        gap: 32px;
    }
    .ownership > p {
        font-size: 14px;
        min-height: 153px;
    }
    .ownership h3 {
        font-size: 28px;
    }
    .demo-panel {
        grid-template-columns: 1fr 1fr;
        gap: 0 35px;
        padding: 35px 0 30px;
    }
    .demo-source {
        max-width: 275px;
    }
    .demo-paper {
        width: 230px;
    }
    .demo-processor {
        grid-column: 1;
        grid-row: 2;
        max-width: 265px;
        justify-self: center;
    }
    .demo-processor svg {
        height: 130px;
    }
    .demo-processor > span {
        font-size: 19px;
    }
    .demo-processor > small {
        margin-top: -1px;
    }
    .demo-output {
        grid-column: 2;
        grid-row: 1 / span 2;
        padding: 0;
    }
    .demo-output h3 {
        font-size: 34px;
    }
    .output-row p {
        font-size: 14px;
    }
    .selected-solutions {
        gap: 0 35px;
    }
    .solution-link h3 {
        font-size: 25px;
    }
    .six-chain {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 0;
    }
    .six-chain a {
        min-height: 120px;
        padding-top: 21px;
    }
    .six-chain:before {
        max-width: 100%;
    }
    .r10-proof .split {
        gap: 8%;
    }
    .pov-number {
        font-size: 125px;
    }
    .pov-aside > p:first-child {
        font-size: 19px;
    }
    .sector-grid {
        gap: 0 30px;
    }
    .r10-partners h2 {
        font-size: 43px;
    }
    .closing h2 {
        font-size: 49px;
    }
    html[lang="ar"] .r10-hero .hero-copy {
        max-width: 800px;
        padding: 0;
    }
    html[lang="ar"] .r10-title {
        font-size: 54px !important;
        max-width: 780px;
    }
    html[lang="ar"] .r10-title .r9-heading-line {
        display: block;
    }
    html[lang="ar"] .architecture-label strong {
        font-size: 12px;
    }
    html[lang="ar"] .label-operating {
        max-width: 165px;
    }
    html[lang="ar"] .ownership > p {
        font-size: 15px;
    }
}


@media (max-width: 700px) {
    :root {
        --pad: 24px;
        --header: 78px;
    }
    .brand img {
        width: 135px;
    }
    .brand small {
        font-size: 6.5px;
        letter-spacing: 0.15em;
    }
    .header-tools .language {
        border: 0;
        padding: 0;
    }
    .header-inner {
        gap: 15px;
    }
    .header-tools {
        gap: 16px;
    }
    .hero-kicker {
        font-size: 8px;
        padding: 21px 0 19px;
        letter-spacing: 0.095em;
    }
    .hero-kicker > span {
        display: none;
    }
    .r10-hero-grid {
        padding-top: 28px;
        gap: 27px;
    }
    .r10-title {
        font-size: clamp(46px, 11.8vw, 72px) !important;
        max-width: 100%;
    }
    .r10-title .r9-heading-line {
        display: block;
    }
    .r10-hero .hero-description {
        font-size: 16px;
        margin-top: 22px;
        line-height: 1.85;
    }
    .r10-hero .actions {
        gap: 9px;
        margin-top: 24px;
        flex-wrap: wrap;
    }
    .r10-hero .button {
        font-size: 12px;
        padding: 13px 16px;
        min-height: 48px;
        flex: 1;
        white-space: normal;
    }
    .r10-hero .hero-explore {
        margin-top: 17px;
        font-size: 11px;
    }
    .production-instrument {
        max-width: 470px;
        margin-inline: auto;
    }
    .instrument-heading {
        margin: 0 0 18px;
        gap: 15px;
    }
    .instrument-heading .eyebrow {
        font-size: 8px;
    }
    .instrument-caption {
        font-size: 8px;
        max-width: 112px;
        text-align: end;
        line-height: 1.5;
    }
    .architecture-stage {
        display: none;
    }
    .mobile-system {
        display: block;
        position: relative;
        padding: 10px 27px 10px 0;
        margin-bottom: 15px;
    }
    .mobile-lane {
        position: relative;
        width: 100%;
        background: #fff;
        border: 1px solid #d5d2e2;
        border-radius: 3px;
        min-height: 62px;
        padding: 13px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        z-index: 2;
    }
    .mobile-lane > span {
        font-size: 13px;
        font-weight: 600;
        color: #4e485e;
        line-height: 1.4;
    }
    .mobile-lane > small {
        font-size: 9px;
        color: #807589;
        max-width: 120px;
        line-height: 1.65;
        text-align: end;
    }
    .mobile-lane.aeaix-lane {
        border: 1.2px solid #9c79c0;
        box-shadow: 5px 5px 0 #f4f0f9;
    }
    .mobile-lane.aeaix-lane > span {
        color: #7855a5;
    }
    .lane-connector {
        position: relative;
        height: 29px;
        margin-inline: 45px;
        border-inline-start: 1px solid #c4b5d5;
        z-index: 1;
    }
    .lane-connector:after {
        content: "";
        position: absolute;
        inset-inline-start: -3px;
        top: 0;
        width: 5px;
        height: 5px;
        background: #8957bc;
        border-radius: 50%;
        animation: r10-mobile-signal 3s linear infinite;
    }
    .lane-connector:nth-of-type(4):after {
        animation-delay: -1.5s;
        background: #567ac5;
    }
    .mobile-return {
        position: absolute;
        right: 9px;
        top: 42px;
        bottom: 40px;
        width: 38px;
        border: 1px solid #b6cae0;
        border-left: 0;
        border-radius: 0 12px 12px 0;
        z-index: 0;
    }
    .mobile-return i {
        position: absolute;
        right: -3px;
        top: 0;
        width: 5px;
        height: 5px;
        background: #3e82bc;
        border-radius: 50%;
        animation: r10-mobile-return 5s linear infinite;
    }
    .component-line {
        display: flex;
        gap: 8px;
    }
    .component-line i {
        width: 19px;
        height: 17px;
        border: 1px solid #d4c2e2;
        transform: translateY(0);
        animation: r10-component 4s ease-in-out infinite;
    }
    .component-line i:nth-child(2) {
        border-color: #c3c0dd;
        animation-delay: -1.3s;
    }
    .component-line i:nth-child(3) {
        border-color: #a9c2dd;
        animation-delay: -2.6s;
    }
    .mobile-circuit {
        display: flex;
        gap: 7px;
        align-items: center;
    }
    .mobile-circuit i {
        width: 6px;
        height: 6px;
        border: 1px solid #a282c1;
        animation: r10-core 3s ease-in-out infinite;
    }
    .mobile-circuit i:nth-child(2) {
        width: 21px;
        height: 1px;
        border: 0;
        background: #c3addb;
    }
    .mobile-circuit i:nth-child(3) {
        animation-delay: -1.5s;
    }
    .system-description {
        font-size: 10px;
        min-height: 24px;
        line-height: 1.8;
        padding: 0;
    }
    .system-disclosure {
        font-size: 10px;
        line-height: 1.85;
        margin-bottom: 0;
    }
    .system-progress {
        width: 35px;
    }
    .responsibility-selector {
        gap: 8px;
    }
    .responsibility-selector button {
        min-height: 115px;
        padding: 16px 0 19px;
    }
    .responsibility-name {
        font-size: 22px;
        line-height: 1.4;
    }
    .responsibility-summary {
        font-size: 10px;
        line-height: 1.7;
        margin-top: 8px;
    }
    .hero-lastline {
        font-size: 9px;
        padding: 16px 0 21px;
        gap: 20px;
    }
    .hero-lastline a {
        white-space: nowrap;
    }
    .section,
    .section.small,
    .r10-ownership,
    .r10-applications,
    .r10-delivery {
        padding: 64px 0;
    }
    .section h2 {
        font-size: 34px !important;
    }
    .section-top,
    .r10-ownership .section-top,
    .r10-applications .section-top {
        display: block;
        max-width: 100%;
        margin-bottom: 30px;
    }
    .section-top > .section-intro,
    .section-top .section-intro {
        font-size: 16px;
        line-height: 1.9;
        margin-top: 21px;
    }
    .eyebrow {
        font-size: 9px;
        margin-bottom: 18px;
    }
    .ownership-grid {
        grid-template-columns: 1fr;
        gap: 0;
        border: 0;
    }
    .ownership {
        border-top: 1px solid #d7d8e1 !important;
        padding: 25px 0 30px !important;
    }
    .ownership h3 {
        font-size: 28px;
        margin-bottom: 13px;
    }
    .ownership > p {
        min-height: 0;
        max-width: none;
        font-size: 16px;
        line-height: 1.9;
    }
    .ownership .text-link {
        margin-top: 15px;
    }
    .demo-controls {
        gap: 25px;
    }
    .demo-controls button {
        font-size: 15px;
        padding: 17px 0;
        flex: 1;
        text-align: start;
    }
    .demo-panel {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 28px 0 32px;
        min-height: 0;
    }
    .demo-source {
        grid-column: 1;
        grid-row: 1;
        max-width: 235px;
    }
    .demo-source > .micro {
        font-size: 9px;
    }
    .demo-source > .micro:last-child {
        text-align: center;
        margin-top: 15px;
    }
    .demo-paper {
        width: 210px;
        margin-inline: auto;
        margin-top: 16px;
        padding: 22px 24px;
    }
    .demo-paper strong {
        font-size: 18px;
    }
    .paper-mark {
        margin-bottom: 20px;
    }
    .paper-row {
        margin-top: 14px;
        margin-bottom: 14px;
    }
    .paper-table {
        height: 36px;
    }
    .demo-processor {
        grid-column: 1;
        grid-row: 2;
        transform: rotate(90deg);
        height: 154px;
        width: 250px;
        max-width: 250px;
        justify-self: center;
        margin: 3px 0 0;
        padding: 0;
    }
    .demo-processor svg {
        height: 154px;
    }
    .demo-processor > span {
        display: block;
        top: 46%;
        font-size: 18px;
        transform: translate(-50%, -50%) rotate(-90deg);
    }
    .demo-processor > small {
        display: none;
    }
    .demo-output {
        grid-column: 1;
        grid-row: 3;
        max-width: 310px;
        width: 100%;
        justify-self: center;
        padding: 0;
    }
    .demo-output > .micro {
        font-size: 9px;
    }
    .demo-output h3 {
        font-size: 30px;
        margin: 16px 0 22px;
    }
    .output-row p {
        font-size: 14px;
    }
    .output-row {
        margin-top: 14px;
    }
    .demo-footer {
        padding: 16px 0;
    }
    .demo-footer > .micro {
        font-size: 7px;
        letter-spacing: 0.07em;
        line-height: 1.8;
        max-width: 255px;
    }
    .demo-timer {
        width: 40px;
    }
    .selected-solutions {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .solution-link {
        grid-template-columns: 29px 1fr;
        padding: 26px 0;
        gap: 18px;
    }
    .solution-link h3 {
        font-size: 24px;
    }
    .solution-link p {
        font-size: 14px;
        margin-top: 11px;
    }
    .six-chain {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 16px;
        margin-top: 33px;
    }
    .six-chain a {
        padding: 20px 10px 0 0;
        min-height: 117px;
    }
    .six-chain strong {
        font-size: 22px;
    }
    .six-chain .index {
        margin-bottom: 13px;
    }
    .six-chain small {
        font-size: 12px;
        line-height: 1.7;
        max-width: 130px;
    }
    .r10-proof .split {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .pov-number {
        font-size: 136px;
        line-height: 1.1;
    }
    .pov-number span {
        font-size: 13px;
        margin-top: 8px;
    }
    .pov-aside > p:first-child {
        font-size: 18px;
        line-height: 1.95;
    }
    .pov-aside .fine-line {
        font-size: 12px;
        margin-top: 22px;
    }
    .proof-timebar {
        margin-top: 35px;
    }
    .sector-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .sector summary {
        padding: 23px 30px 24px 0;
        min-height: 0;
    }
    .sector summary h3 {
        font-size: 22px;
    }
    .sector summary p {
        font-size: 14px;
        line-height: 1.9;
    }
    .sector .panel {
        font-size: 14px;
    }
    .control-words {
        grid-template-columns: 1fr 1fr;
        gap: 10px 26px;
    }
    .control-entry h3 {
        font-size: 22px;
    }
    .control-entry p {
        font-size: 14px;
    }
    .partner-home {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-top: 25px;
    }
    .partner-home p {
        font-size: 17px;
        line-height: 1.95;
    }
    .partner-home > p {
        font-size: 14px;
    }
    .closing {
        padding: 66px 0;
    }
    .closing h2 {
        font-size: 36px;
    }
    .closing .bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-top: 28px;
    }
    .closing .email {
        font-size: 22px;
    }
    .closing .bottom p {
        font-size: 15px;
    }
    .site-footer {
        padding-top: 35px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 22px;
    }
    .footer-intro {
        grid-column: 1 / -1;
    }
    .footer-nav a {
        font-size: 12px !important;
        min-height: 32px;
    }
    .footer-nav {
    gap: 10px 4px;
}
    .footer-end {
        display: block;
        padding-block: 22px;
    }
    .footer-controls {
        gap: 18px;
        margin-top: 13px;
    }
    .page-hero {
        padding: 36px 0 43px;
    }
    .page-hero h1 {
        font-size: 44px;
    }
    .page-hero .lede {
        font-size: 17px;
        line-height: 1.9;
        margin-top: 23px;
    }
    .breadcrumb {
        margin-bottom: 30px;
    }
    .chapter,
    .partner-chapter {
        display: block;
        padding: 31px 0;
    }
    .chapter h2,
    .partner-chapter h2 {
        font-size: 34px !important;
        margin-bottom: 22px;
    }
    .chapter p,
    .partner-chapter p {
        font-size: 15px;
    }
    .solution-panel summary h2 {
        font-size: 24px !important;
    }
    .solution-panel summary {
        padding: 23px 0;
    }
    .solution-panel .panel {
        padding-bottom: 26px;
    }
    .solution-panel .panel h3 {
        font-size: 17px;
    }
    .solution-panel .panel p {
        font-size: 15px;
    }
    .reference-architecture {
        padding: 20px;
    }
    .architecture-level {
        padding: 18px;
    }
    .contact-layout {
        display: block;
    }
    .contact-aside {
        margin-bottom: 35px;
    }
    .form-grid {
        gap: 22px;
    }
    .form-heading {
        margin-top: 0;
    }
    .field label {
        font-size: 12px;
    }
    .cookie-banner {
        width: calc(100% - 24px);
        bottom: 12px;
        padding: 15px 16px;
    }
    .cookie-banner-inner {
        display: block;
    }
    .cookie-banner h2 {
        font-size: 16px;
    }
    .cookie-banner p {
        font-size: 11px;
        line-height: 1.8;
    }
    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
        margin-top: 12px;
    }
    .cookie-actions button {
        font-size: 11px;
        padding: 9px 6px;
        min-height: 42px;
    }
    .cookie-actions button:last-child {
        grid-column: 1 / -1;
    }
    .mobile-menu a {
        font-size: 22px;
    }
    .mobile-menu {
        padding: 26px var(--pad) 35px;
    }
    html[lang="ar"] .r10-title {
        font-size: clamp(32px, 8.7vw, 48px) !important;
        line-height: 1.6 !important;
    }
    html[lang="ar"] .hero-description {
        font-size: 16px !important;
        line-height: 2.05 !important;
    }
    html[lang="ar"] .hero-kicker {
        font-size: 9px;
    }
    html[lang="ar"] .hero-copy .button {
        font-size: 12px;
    }
    html[lang="ar"] .instrument-caption {
        font-size: 9px;
    }
    html[lang="ar"] .instrument-heading .eyebrow {
        font-size: 10px;
    }
    html[lang="ar"] .mobile-system {
        padding: 10px 0 10px 27px;
    }
    html[lang="ar"] .mobile-return {
        left: 9px;
        right: auto;
        border: 1px solid #b6cae0;
        border-right: 0;
        border-radius: 12px 0 0 12px;
    }
    html[lang="ar"] .mobile-return i {
        left: -3px;
        right: auto;
    }
    html[lang="ar"] .mobile-lane > span {
        font-size: 13px;
    }
    html[lang="ar"] .mobile-lane > small {
        font-size: 10px;
    }
    html[lang="ar"] .responsibility-name {
        font-size: 23px;
    }
    html[lang="ar"] .responsibility-summary {
        font-size: 10px;
        line-height: 1.9;
    }
    html[lang="ar"] .hero-lastline {
        font-size: 10px;
    }
    html[lang="ar"] .section h2 {
        font-size: 29px !important;
    }
    html[lang="ar"] .section-intro {
        font-size: 16px;
        line-height: 2.05;
    }
    html[lang="ar"] .ownership > p {
        font-size: 16px;
    }
    html[lang="ar"] .demo-processor svg {
        transform: none;
    }
    html[lang="ar"] .demo-output h3 {
        font-size: 28px;
    }
    html[lang="ar"] .demo-controls button {
        font-size: 15px;
    }
    html[lang="ar"] .demo-footer > .micro {
        font-size: 8px;
    }
    html[lang="ar"] .six-chain strong {
        font-size: 22px;
    }
    html[lang="ar"] .six-chain small {
        font-size: 12px;
    }
    html[lang="ar"] .sector summary {
        padding: 23px 0 24px 30px;
    }
    html[lang="ar"] .closing h2 {
        font-size: 30px;
    }
    html[lang="ar"] .page-hero h1 {
        font-size: 34px;
    }
    html[lang="ar"] .page-hero .lede {
        font-size: 17px;
    }
    html[lang="ar"] .cookie-banner p {
        font-size: 11px;
    }
    html[lang="ar"] .cookie-actions button {
        font-size: 11px;
    }
}
@media (max-width: 390px) {
   .responsibility-selector {
        gap: 8px;
    }  

}

@keyframes r10-mobile-signal {
    0% {
        top: -3px;
    }
    100% {
        top: 28px;
    }
}
@keyframes r10-mobile-return {
    0% {
        top: 0;
    }
    100% {
        top: 100%;
    }
}
@keyframes r10-component {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}
@keyframes r10-core {
    0%,
    100% {
        background: #fff;
    }
    50% {
        background: #ad8cce;
    }
}

@media (max-width: 360px) {
    
    :root {
        --pad: 20px;
    }
    .r10-title {
        font-size: 42px !important;
    }
    .brand img {
        width: 120px;
    }
    .header-tools {
        gap: 11px;
    }
    .responsibility-name {
        font-size: 19px;
    }
    .responsibility-summary {
        font-size: 9px;
    }
    .r10-hero .button {
        font-size: 11px;
        padding: 12px 10px;
    }
    .hero-lastline {
        font-size: 8px;
    }
    .hero-lastline a {
        font-size: 8px;
    }
    .instrument-caption {
        max-width: 105px;
    }
    .mobile-lane {
        padding-inline: 13px;
    }
    .mobile-lane > span {
        font-size: 12px;
    }
    .mobile-lane > small {
        font-size: 8px;
    }
    .component-line {
        gap: 5px;
    }
    .component-line i {
        width: 15px;
    }
    .section h2 {
        font-size: 30px !important;
    }
    .six-chain strong {
        font-size: 20px;
    }
    .pov-number {
        font-size: 118px;
    }
    html[lang="ar"] .r10-title {
        font-size: 29px !important;
    }
    html[lang="ar"] .hero-lastline,
    html[lang="ar"] .hero-lastline a {
        font-size: 8px;
    }
}
html.motion-paused *,
html.motion-paused *:before,
html.motion-paused *:after {
    animation-play-state: paused !important;
}
html.motion-paused .reveal {
    opacity: 1;
    transform: none;
}
html.motion-paused {
    scroll-behavior: auto;
}
.offscreen * {
    animation-play-state: paused !important;
}
html.page-hidden *,
html.page-hidden *:before,
html.page-hidden *:after {
    animation-play-state: paused !important;
}
@media (prefers-reduced-motion: reduce) {
    html:not(.user-motion-on) {
        scroll-behavior: auto;
    }
    html:not(.user-motion-on) *,
    html:not(.user-motion-on) *:before,
    html:not(.user-motion-on) *:after {
        animation: none !important;
        transition: none !important;
    }
    .reveal.pending {
        opacity: 1;
        transform: none;
    }
}
/* Final hero proportions: the fixed header is already accounted for by the document. */
.r10-hero {
    padding-top: 0;
}
.r10-title {
    font-size: clamp(66px, 6.05vw, 100px) !important;
}
.r10-hero-grid {
    grid-template-columns: 1fr 1.12fr;
    min-height: 608px;
}
.hero-kicker {
    font-size: 10px;
    letter-spacing: 0.135em;
}
.architecture-label strong {
    font-size: 13px;
}
.architecture-label span {
    font-size: 10px;
}
.label-operating {
    right: 0;
    top: 29%;
    max-width: 183px;
    background: #fff;
    padding: 4px 0 5px 10px;
}
.instrument-heading .eyebrow {
    font-size: 10px;
}
.instrument-caption {
    font-size: 10px;
}
.system-description {
    font-size: 12px;
}
.system-disclosure {
    font-size: 11px;
}
.hero-description {
    font-size: 18px !important;
}
.desktop-nav a {
    font-size: 13px;
}
.r10-title .r9-heading-line {
    white-space: nowrap;
}
.r10-hero .hero-copy {
    padding-right: 8px;
}
@media (min-width: 1600px) {
    .r10-title {
        font-size: 99px !important;
    }
    .r10-hero-grid {
        min-height: 685px;
    }
}
@media (max-width: 1200px) {
    .r10-title {
        font-size: 6.25vw !important;
    }
    .r10-hero-grid {
        min-height: 580px;
    }
    .desktop-nav a {
        font-size: 11px;
    }
    .architecture-label strong {
        font-size: 11px;
    }
    .architecture-label span {
        font-size: 9px;
    }
    .label-operating {
        top: 29%;
        max-width: 157px;
    }
    .hero-description {
        font-size: 16px !important;
    }
    .hero-kicker {
        font-size: 9px;
    }
}
@media (max-width: 1050px) {
    .r10-hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .r10-title {
        font-size: clamp(65px, 9vw, 88px) !important;
    }
    .r10-title .r9-heading-line {
        white-space: normal;
        display: block;
    }
    .architecture-label strong {
        font-size: 13px;
    }
    .architecture-label span {
        font-size: 10px;
    }
    .label-operating {
        top: 25%;
        max-width: 183px;
    }
    .r10-hero .hero-copy {
        padding-right: 0;
    }
    .r10-hero .hero-description {
        font-size: 17px !important;
    }
}
@media (max-width: 700px) {
    .r10-title {
        font-size: clamp(44px, 11.6vw, 71px) !important;
    }
    .r10-title .r9-heading-line {
        white-space: nowrap;
    }
    .r10-hero .hero-description {
        font-size: 16px !important;
    }
    .hero-kicker {
        font-size: 8px;
    }
    .system-description {
        font-size: 10px;
    }
    .system-disclosure {
        font-size: 10px;
    }
}
html[lang="ar"] .label-operating {
    top: 29%;
    right: 0;
    background: #fff;
    padding: 4px 0 5px 7px;
}
html[lang="ar"] .architecture-label strong {
    font-size: 13px;
}
html[lang="ar"] .architecture-label span {
    font-size: 10px;
}
@media (max-width: 1200px) {
    html[lang="ar"] .label-operating {
        max-width: 168px;
    }
    html[lang="ar"] .architecture-label strong {
        font-size: 11px;
    }
    html[lang="ar"] .architecture-label span {
        font-size: 9px;
    }
}
@media (max-width: 700px) {
    html[lang="ar"] .r10-title .r9-heading-line {
        white-space: normal;
    }
}
.label-operating {
    top: 57%;
    right: 0;
    background: none;
    padding: 0;
}
.architecture-label strong {
    line-height: 1.35;
}
.label-operating span {
    max-width: 173px;
}
html[lang="ar"] .label-operating {
    top: 57%;
    right: 0;
    background: none;
    padding: 0;
}
.production-instrument[data-state="select"] .label-technology strong {
    color: #6854b8;
}
.production-instrument[data-state="implement"] .label-customer strong {
    color: #467bbc;
}
@media (max-width: 1200px) {
    .label-operating {
        top: 58%;
        font-size: 10px;
        max-width: 146px;
    }
    .label-operating strong {
        font-size: 10px;
    }
    .label-operating span {
        font-size: 8px;
    }
    html[lang="ar"] .label-operating {
        top: 57%;
        max-width: 150px;
    }
}
@media (max-width: 1050px) {
    .label-operating {
        top: 58%;
        max-width: 174px;
    }
    .label-operating strong {
        font-size: 12px;
    }
    .label-operating span {
        font-size: 9px;
    }
    html[lang="ar"] .label-operating {
        top: 57%;
    }
}
