@font-face {
    font-family: 'Public Sans';
    src: url('../fonts/PublicSans-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Public Sans';
    src: url('../fonts/PublicSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Public Sans';
    src: url('../fonts/PublicSans-SB.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Beirut';
    src: url('../fonts/BeirutTextWeb-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --paper: #fff;
    --ink: #222;
    --ink-soft: #62625f;
    --line: #d6d7d0;
    --line-dark: #b8baae;
    --surface: #f5f5f2;
    --metal: #e2e3db;
    --metal-deep: #bec0af;
    --green: #84bd00;
    --tegossuite-blue: #376d9f;
    --tegossuite-blue-deep: #1f486f;
    --tegossuite-blue-dark: #173a5a;
    --tegossuite-blue-soft: #dce8f2;
    --tegossuite-blue-gradient: radial-gradient(145% 215% at 5% 8%, #4279ad 0%, var(--tegossuite-blue) 38%, var(--tegossuite-blue-deep) 100%);
    --metal-gradient: radial-gradient(198.03% 328.36% at 91.02% 23.73%, #f7f5f5 0%, #bec0af 100%);
    --container: 1280px;
    --wide-container: 1440px;
    --gutter: 40px;
    --section-y: 120px;
    --radius: 32px;
    --radius-small: 16px;
    --font-body: 'Public Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-display: 'Beirut', Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

button,
summary {
    color: inherit;
    font: inherit;
}

img,
svg {
    flex: 0 0 auto;
}

:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 4px;
}

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

.container,
.wide-container {
    width: 100%;
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.container {
    max-width: var(--container);
}

.wide-container {
    max-width: var(--wide-container);
}

.site-header {
    position: sticky;
    z-index: 80;
    top: 0;
    border-bottom: 1px solid #ededeb;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    min-height: 98px;
    align-items: center;
    gap: 38px;
}

.brand-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.brand-logo {
    display: block;
    width: 210px;
    height: 42px;
    background-image: url('./tegos-logo-source.png');
    background-repeat: no-repeat;
    background-position: -39px -87px;
    background-size: 292px auto;
}

.desktop-nav {
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 36px;
    white-space: nowrap;
}

.desktop-nav a {
    position: relative;
    padding: 8px 0;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 1px;
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    background: var(--ink);
    transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-cta {
    display: inline-flex;
    min-height: 48px;
    padding: 0 27px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--paper);
    background: var(--ink);
    font-weight: 600;
    white-space: nowrap;
    transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover {
    transform: translateY(-1px);
    background: #000;
}

.header-icon {
    display: grid;
    width: 28px;
    height: 40px;
    border-radius: 999px;
    place-items: center;
    transition: background 160ms ease;
}

.language-menu {
    position: relative;
}

.language-menu summary {
    display: grid;
    width: 28px;
    height: 40px;
    cursor: pointer;
    list-style: none;
    border-radius: 999px;
    place-items: center;
    transition: background 160ms ease;
}

.header-icon:hover,
.language-menu summary:hover,
.language-menu[open] summary {
    background: rgba(34, 34, 34, 0.07);
}

.language-menu summary::-webkit-details-marker {
    display: none;
}

.language-menu nav {
    position: absolute;
    z-index: 120;
    top: 50px;
    right: 0;
    display: grid;
    width: 190px;
    padding: 9px 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: 0 18px 44px rgba(34, 34, 34, 0.14);
}

.language-menu nav a {
    position: relative;
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.language-menu nav a:last-child {
    border-bottom: 0;
}

.language-menu nav a[aria-current='page'] {
    font-weight: 600;
}

.language-menu nav a[aria-current='page']::before {
    position: absolute;
    top: 50%;
    left: -10px;
    width: 5px;
    height: 5px;
    content: '';
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--green);
}

.language-menu nav small {
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.mobile-menu {
    position: relative;
    display: none;
}

.mobile-menu summary {
    display: grid;
    width: 40px;
    height: 40px;
    cursor: pointer;
    list-style: none;
    border-radius: 999px;
    place-items: center;
    transition: background 160ms ease;
}

.mobile-menu summary:hover,
.mobile-menu[open] summary {
    background: rgba(34, 34, 34, 0.07);
}

.mobile-menu summary::-webkit-details-marker {
    display: none;
}

.mobile-menu nav {
    position: absolute;
    top: 53px;
    right: 0;
    display: grid;
    width: min(320px, calc(100vw - 32px));
    padding: 12px 22px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 22px 45px rgba(34, 34, 34, 0.12);
}

.mobile-menu nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.mobile-menu nav a:last-child {
    border: 0;
}

.breadcrumbs {
    border-bottom: 1px solid #ededeb;
    background: #fafafa;
    color: #7a7a77;
    font-size: 13px;
}

.breadcrumbs div {
    display: flex;
    min-height: 38px;
    align-items: center;
    gap: 10px;
}

.breadcrumbs a:hover {
    color: var(--ink);
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--metal-gradient);
}

.hero-inner {
    position: relative;
    display: flex;
    min-height: 568px;
    align-items: center;
    padding-block: 100px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    width: 66%;
    max-width: 760px;
}

.hero-motif {
    position: absolute;
    z-index: 1;
    top: 0;
    right: -360px;
    width: 864px;
    height: 864px;
    transform: rotate(50deg);
    transform-origin: 50% 50%;
    pointer-events: none;
}

.hero-module {
    position: absolute;
    display: block;
    border-radius: 66px;
}

.hero-module-one {
    top: 0;
    left: 0;
    width: 432px;
    height: 302px;
    background: radial-gradient(96.59% 83.77% at 19.89% 10.76%, #e2e3db 0%, #bec0af 100%);
}

.hero-module-two {
    top: 302px;
    left: 216px;
    width: 648px;
    height: 324px;
    background: radial-gradient(96.63% 96.63% at 23.51% 14.25%, #3d7b44 0%, #6aa871 100%);
}

.hero-module-three {
    top: 626px;
    left: 86px;
    width: 605px;
    height: 238px;
    background: radial-gradient(112.65% 54.94% at 162.3% 45.06%, #89c74d 13.09%, #c3ca6f 100%);
}

.hero-utility {
    position: relative;
    z-index: 10;
    display: flex;
    width: 100%;
    min-height: 42px;
    grid-area: utility;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(34, 34, 34, 0.14);
}

.hero-utility-label {
    color: #53544f;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero-utility .language-menu summary {
    width: 36px;
    height: 36px;
}

.hero-utility .language-menu nav {
    top: 42px;
}

.hero-inner-orbit-split {
    display: grid;
    min-height: 760px;
    padding-block: 28px 74px;
    grid-template-columns: minmax(0, 1.08fr) minmax(500px, 0.92fr);
    grid-template-areas:
        'utility utility'
        'copy orbit';
    gap: 24px 30px;
}

.hero-inner-orbit-split .hero-copy {
    width: 100%;
    max-width: 710px;
    grid-area: copy;
}

.site-shell-blue .hero-orbit-split {
    color: var(--paper);
    background: var(--tegossuite-blue-gradient);
}

@media (min-width: 761px) {
    .site-shell-blue.site-shell-blue-accent .hero-orbit-split {
        width: min(calc(100% - 64px), 1520px);
        margin: 28px auto 0;
        border-radius: 42px;
    }
}

.site-shell-blue .hero-utility {
    border-bottom-color: rgba(255, 255, 255, 0.24);
}

.site-shell-blue .hero-utility-label,
.site-shell-blue .hero-utility .language-menu summary {
    color: var(--paper);
}

.site-shell-blue .hero-utility .language-menu nav {
    color: var(--ink);
}

.site-shell-blue .hero-copy h1,
.site-shell-blue .hero-copy .hero-lead {
    color: var(--paper);
}

.site-shell-blue .hero-copy .button-solid {
    border-color: var(--paper);
    color: var(--tegossuite-blue-deep);
    background: var(--paper);
}

.site-shell-blue .hero-copy .button-solid:hover {
    color: var(--paper);
    background: transparent;
}

.site-shell-blue .hero-copy .text-link {
    border-bottom-color: rgba(255, 255, 255, 0.72);
    color: var(--paper);
}

.site-shell-blue .orbit-visual::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.17) 0%, rgba(255, 255, 255, 0.07) 47%, rgba(255, 255, 255, 0) 73%);
}

.site-shell-blue .orbit-ring-outer {
    border-color: rgba(255, 255, 255, 0.28);
}

.site-shell-blue .orbit-ring-inner {
    border-color: rgba(255, 255, 255, 0.32);
}

.site-shell-blue .orbit-spoke {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.05) 72%, transparent);
}

.site-shell-blue .orbit-node-card {
    border-color: rgba(255, 255, 255, 0.42);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 38px rgba(11, 40, 66, 0.2);
}

.site-shell-blue .orbit-node-card small {
    color: var(--ink-soft);
}

.site-shell-blue .orbit-hub {
    background: radial-gradient(circle at 33% 24%, #386f9f 0%, #1d456c 68%, #143653 100%);
    box-shadow: 0 22px 50px rgba(9, 35, 59, 0.28), 0 0 0 11px rgba(255, 255, 255, 0.18);
}

.site-shell-blue .orbit-hub-standard {
    color: rgba(255, 255, 255, 0.72);
}

.orbit-visual {
    --orbit-card-width: 130px;
    --orbit-duration: 84s;
    --orbit-radius: 180px;
    --orbit-size: 520px;
    position: relative;
    z-index: 2;
    display: grid;
    width: min(var(--orbit-size), 100%);
    aspect-ratio: 1;
    justify-self: end;
    place-items: center;
    isolation: isolate;
}

.orbit-visual::before {
    position: absolute;
    z-index: -1;
    width: 64%;
    aspect-ratio: 1;
    content: '';
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.62) 0%, rgba(226, 227, 219, 0.28) 46%, rgba(226, 227, 219, 0) 73%);
}

.orbit-ring {
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.orbit-ring-outer {
    width: calc(var(--orbit-radius) * 2);
    aspect-ratio: 1;
    border: 1px solid rgba(34, 34, 34, 0.2);
}

.orbit-ring-inner {
    width: calc(var(--orbit-radius) * 1.16);
    aspect-ratio: 1;
    border: 1px dashed rgba(61, 123, 68, 0.32);
}

.orbit-spinner {
    position: absolute;
    inset: 0;
    animation: orbit-spin var(--orbit-duration) linear infinite;
}

.orbit-node {
    position: absolute;
    bottom: 50%;
    left: 50%;
    width: 0;
    height: var(--orbit-radius);
    transform: rotate(calc(var(--orbit-index) * 60deg));
    transform-origin: 50% 100%;
}

.orbit-spoke {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(61, 123, 68, 0.3), rgba(34, 34, 34, 0.04) 70%, transparent);
}

.orbit-node-anchor {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%) rotate(calc(var(--orbit-index) * -60deg));
}

.orbit-node-counter {
    animation: orbit-counter-spin var(--orbit-duration) linear infinite;
}

.orbit-node-card {
    display: grid;
    width: var(--orbit-card-width);
    min-height: 76px;
    padding: 13px 14px;
    align-content: center;
    justify-items: center;
    gap: 4px;
    border: 1px solid rgba(34, 34, 34, 0.13);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 34px rgba(34, 34, 34, 0.08);
    text-align: center;
    backdrop-filter: blur(8px);
}

.orbit-node-card strong {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.18;
}

.orbit-node-card small {
    color: var(--ink-soft);
    font-size: 10px;
    line-height: 1.2;
}

.orbit-hub {
    position: relative;
    z-index: 3;
    display: flex;
    width: 174px;
    aspect-ratio: 1;
    padding: 24px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 13px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: var(--paper);
    background: radial-gradient(circle at 33% 24%, #454642 0%, #242523 68%, #191a18 100%);
    box-shadow: 0 22px 50px rgba(34, 34, 34, 0.2), 0 0 0 11px rgba(255, 255, 255, 0.25);
    text-align: center;
}

.orbit-hub-brand {
    display: block;
    width: 100%;
    font-size: 25px;
    font-weight: 300;
    letter-spacing: -0.045em;
    line-height: 1;
    text-align: center;
}

.orbit-hub-logo {
    display: none;
    width: 120px;
    height: auto;
}

.site-shell-blue:not(.site-shell-blue-accent) .orbit-hub-logo {
    display: block;
}

.site-shell-blue:not(.site-shell-blue-accent) .orbit-hub-brand {
    display: none;
}

.orbit-hub-standard {
    display: block;
    width: 100%;
    color: #cfd0ca;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.07em;
    line-height: 1.2;
    text-align: center;
}

.hero-inner-orbit-focus {
    display: grid;
    min-height: 950px;
    padding-block: 28px 62px;
    grid-template-rows: auto minmax(560px, 1fr) auto;
    grid-template-areas:
        'utility'
        'orbit'
        'dock';
    justify-items: center;
    gap: 18px;
}

.hero-focus-dock {
    position: relative;
    z-index: 4;
    display: grid;
    width: 100%;
    padding: 30px 34px;
    grid-area: dock;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 44px;
    border: 1px solid rgba(34, 34, 34, 0.13);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 52px rgba(34, 34, 34, 0.08);
    backdrop-filter: blur(12px);
}

.hero-focus-copy {
    position: relative;
    z-index: 3;
    width: 100%;
    min-width: 0;
    max-width: 690px;
    text-align: left;
}

.hero-focus-copy h1 {
    max-width: none;
    margin-bottom: 10px;
    font-size: clamp(34px, 3vw, 42px);
    line-height: 1.08;
}

.hero-focus-copy .hero-lead {
    max-width: 680px;
    font-size: 15px;
    line-height: 1.5;
}

.orbit-visual-split {
    grid-area: orbit;
}

.orbit-visual-focus {
    --orbit-card-width: 148px;
    --orbit-radius: 210px;
    --orbit-size: 600px;
    align-self: center;
    grid-area: orbit;
    justify-self: center;
}

.orbit-visual-focus .orbit-hub {
    width: 204px;
    padding: 28px;
}

.orbit-visual-focus .orbit-hub-brand {
    font-size: 29px;
}

.hero-focus-actions {
    position: relative;
    z-index: 3;
}

.hero-focus-actions .hero-actions {
    margin-top: 0;
    justify-content: flex-end;
}

@keyframes orbit-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit-counter-spin {
    to {
        transform: rotate(-360deg);
    }
}

.eyebrow {
    margin: 0 0 17px;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.09em;
    line-height: 1.2;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-size: clamp(48px, 4.4vw, 64px);
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

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

h2 {
    margin-bottom: 22px;
    font-size: clamp(36px, 3.3vw, 48px);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.12;
}

.hero-lead {
    max-width: 680px;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    margin-top: 38px;
    align-items: center;
    gap: 28px;
}

.button,
.text-link {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
}

.button {
    padding: 0 32px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-solid {
    color: var(--paper);
    background: var(--ink);
}

.button-solid:hover {
    background: #000;
}

.button-outline {
    background: transparent;
}

.button-outline:hover {
    color: var(--paper);
    background: var(--ink);
}

.text-link {
    border-bottom: 1px solid var(--ink);
}

.trust-facts {
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.trust-facts-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.trust-facts-inner > div {
    display: grid;
    min-height: 120px;
    align-content: center;
    gap: 7px;
    border-right: 1px solid var(--line);
}

.trust-facts-inner > div:not(:first-child) {
    padding-left: 42px;
}

.trust-facts-inner > div:last-child {
    border-right: 0;
}

.trust-facts-inner span,
.trust-facts-inner strong {
    display: block;
}

.trust-facts-inner span {
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.trust-facts-inner strong {
    font-size: 18px;
    font-weight: 600;
}

.valid-status {
    display: flex !important;
    align-items: center;
    gap: 9px;
}

.valid-status i,
.coverage-row i,
.certificate-status i {
    display: inline-block;
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--green);
}

.section {
    padding-block: var(--section-y);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 9%;
}

.split-layout h2 {
    max-width: 540px;
    margin-bottom: 0;
}

.lead-copy {
    max-width: 620px;
    padding-top: 34px;
    color: #3d3d3b;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
}

.lead-copy p:last-child {
    margin-bottom: 0;
}

.scope-intro-aligned .split-layout {
    align-items: start;
}

.scope-intro-aligned .lead-copy {
    padding-top: 0;
}

.scope-intro-aligned .lead-copy p:first-child {
    margin-top: 0;
}

.scope-stage-section {
    background: var(--metal-gradient);
}

.scope-stage-heading {
    max-width: 760px;
    margin-bottom: 58px;
}

.scope-stage-heading h2 {
    margin-bottom: 18px;
}

.scope-stage-heading > p:last-child {
    max-width: 680px;
    margin-bottom: 0;
    color: #4f4f4c;
    font-size: 18px;
    font-weight: 300;
}

.scope-stage-heading-aligned {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 9%;
}

.scope-stage-heading-aligned h2 {
    max-width: 540px;
    margin: 0;
}

.scope-stage-heading-aligned > p:last-child {
    max-width: 620px;
    margin: 0;
    line-height: 1.6;
}

.system-map {
    margin: 0;
    padding: 54px 48px 48px;
    border: 1px solid rgba(34, 34, 34, 0.13);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 20px 70px rgba(34, 34, 34, 0.07);
}

.system-group {
    display: grid;
    width: min(470px, 100%);
    min-height: 138px;
    margin-inline: auto;
    padding: 26px 30px;
    align-content: center;
    justify-items: center;
    gap: 3px;
    border: 1px solid var(--ink);
    border-radius: var(--radius-small);
    background: var(--paper);
    text-align: center;
}

.system-group span {
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.system-group strong {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 300;
    line-height: 1.15;
}

.system-group small {
    color: var(--ink-soft);
    font-size: 12px;
}

.system-owner-mark {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    place-items: center;
}

.system-isms {
    display: grid;
    width: min(760px, 100%);
    min-height: 104px;
    margin-inline: auto;
    padding: 22px 26px;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-small);
    background: var(--surface);
}

.system-isms > div:nth-child(2) {
    display: grid;
    gap: 3px;
}

.system-isms > div:nth-child(2) span,
.system-isms > small {
    color: var(--ink-soft);
    font-size: 11px;
}

.system-isms > div:nth-child(2) span {
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.system-isms strong {
    font-size: 20px;
    font-weight: 600;
}

.system-isms > small {
    max-width: 135px;
    text-align: right;
}

.system-line {
    position: relative;
    height: 40px;
}

.system-line::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    content: '';
    background: var(--line-dark);
}

.system-line-wide {
    height: 58px;
}

.entity-layer {
    position: relative;
    display: grid;
    padding-top: 28px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.entity-layer::before {
    position: absolute;
    top: 0;
    right: calc((100% - 60px) / 12);
    left: calc((100% - 60px) / 12);
    height: 1px;
    content: '';
    background: var(--line-dark);
}

.entity-card,
.entity-primary {
    position: relative;
    display: grid;
    min-height: 130px;
    padding: 24px 16px 18px;
    align-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    text-align: center;
}

.entity-card::before,
.entity-primary::before {
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 1px;
    height: 29px;
    content: '';
    background: var(--line-dark);
}

.entity-primary {
    border-color: var(--ink);
}

.entity-card-link {
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.entity-card-link:hover,
.entity-card-link:focus-visible {
    transform: translateY(-2px);
    border-color: var(--ink);
    background: #fafaf8;
}

.entity-link-icon {
    position: absolute;
    top: 11px;
    right: 13px;
    color: #92938c;
}

.entity-number {
    position: absolute;
    top: 11px;
    left: 13px;
    color: #92938c;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.entity-layer strong {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
}

.entity-layer small {
    color: var(--ink-soft);
    font-size: 11px;
}

.entity-role {
    justify-self: center;
    margin-top: 3px;
    padding: 3px 8px;
    border-radius: 999px;
    color: var(--paper);
    background: var(--ink);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.system-map-layered {
    position: relative;
    padding: 16px 18px 24px;
    border: 0;
    background: transparent;
    box-shadow: none;
    isolation: isolate;
}

.system-map-layered::before,
.system-map-layered::after {
    position: absolute;
    border: 1px solid rgba(34, 34, 34, 0.12);
    border-radius: var(--radius);
    content: '';
    pointer-events: none;
}

.system-map-layered::before {
    z-index: -2;
    inset: 42px 4px 0 42px;
    background: #c8c9c1;
    transform: rotate(0.75deg);
}

.system-map-layered::after {
    z-index: -1;
    inset: 27px 34px 11px 7px;
    background: #e2e3dd;
    transform: rotate(-0.45deg);
}

.scope-layer-surface {
    position: relative;
    padding: 38px;
    border: 1px solid rgba(34, 34, 34, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 24px 60px rgba(34, 34, 34, 0.1);
}

.scope-layer-header {
    display: grid;
    padding-bottom: 30px;
    grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
    align-items: stretch;
    gap: 24px;
    border-bottom: 1px solid var(--line-dark);
}

.scope-layer-title {
    display: grid;
    padding: 5px 0 4px;
    align-content: center;
    gap: 4px;
}

.scope-layer-title > span,
.scope-layer-foundation span,
.scope-layer-standard span {
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.085em;
    text-transform: uppercase;
}

.scope-layer-title strong {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 300;
    line-height: 1.08;
}

.scope-layer-brand-logo {
    display: block;
    width: 250px;
    max-width: 100%;
    height: auto;
}

.scope-layer-title small {
    color: var(--ink-soft);
    font-size: 12px;
}

.scope-layer-standard {
    display: grid;
    min-height: 108px;
    padding: 22px 26px;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 19px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-small);
    background: var(--metal-gradient);
}

.scope-layer-standard > div:last-child {
    display: grid;
    gap: 4px;
}

.scope-layer-standard strong {
    font-size: 21px;
    font-weight: 600;
}

.entity-layer-equal {
    padding-top: 30px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.entity-layer-equal::before,
.entity-layer-equal .entity-card::before,
.entity-layer-equal .entity-primary::before {
    display: none;
}

.entity-layer-equal .entity-card,
.entity-layer-equal .entity-primary {
    min-height: 124px;
    border-color: var(--line);
    background: #fbfbf9;
}

.entity-layer-equal .entity-primary {
    border-color: rgba(34, 34, 34, 0.25);
}

.entity-layer-equal .entity-role {
    color: var(--ink);
    background: var(--metal);
}

.entity-layer-equal .entity-card-logo,
.entity-layer-equal .entity-primary.entity-card-logo {
    min-height: 164px;
    padding: 24px 20px 20px;
    align-content: center;
    grid-template-rows: 52px minmax(30px, auto);
    gap: 8px;
}

.entity-logo {
    display: flex;
    width: 100%;
    min-height: 0;
    align-items: center;
    justify-content: center;
}

.entity-card-logo .entity-logo {
    grid-row: 1;
}

.entity-logo svg {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.entity-logo-tegos svg {
    width: 44px;
    height: 44px;
}

.entity-logo-simova svg {
    width: 150px;
    max-height: 32px;
}

.entity-logo-spots svg {
    width: 140px;
    max-height: 44px;
}

.entity-logo-nunq svg {
    width: 112px;
    max-height: 42px;
    transform: translateY(7px);
}

.entity-layer .entity-card-logo .entity-legal-name {
    align-self: center;
    grid-row: 2;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}

.entity-card-logo .entity-role {
    position: absolute;
    top: 11px;
    right: 13px;
    z-index: 1;
    margin: 0;
    white-space: nowrap;
}

.scope-layer-note {
    display: grid;
    margin: 22px 0 0;
    padding-top: 18px;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: baseline;
    gap: 20px;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.55;
}

.scope-layer-note span {
    color: var(--ink);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.085em;
    text-transform: uppercase;
}

.scope-layer-foundation {
    display: grid;
    min-height: 82px;
    margin-top: 14px;
    padding: 18px 22px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    border-radius: 12px;
    background: var(--ink);
    color: var(--paper);
}

.scope-layer-foundation > div {
    display: grid;
    gap: 4px;
}

.scope-layer-foundation span,
.scope-layer-foundation small {
    color: rgba(255, 255, 255, 0.63);
}

.scope-layer-foundation strong {
    font-size: 15px;
    font-weight: 500;
}

.scope-layer-foundation small {
    max-width: 180px;
    font-size: 11px;
    line-height: 1.45;
    text-align: right;
}

.scope-quote {
    display: grid;
    margin: 34px 0 0;
    padding: 38px 42px;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 48px;
    align-items: baseline;
    border-top: 1px solid rgba(34, 34, 34, 0.2);
    border-bottom: 1px solid rgba(34, 34, 34, 0.2);
}

.scope-quote figcaption {
    display: grid;
    align-content: start;
    gap: 5px;
}

.scope-quote .eyebrow {
    margin-bottom: 0;
}

.scope-quote figcaption small {
    color: var(--ink-soft);
    font-size: 12px;
}

.scope-quote blockquote {
    margin: 0;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
}

.certificate-section {
    background: var(--paper);
}

.certificate-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
    align-items: center;
    gap: 9%;
}

.certificate-intro {
    max-width: 470px;
}

.certificate-intro p:not(.eyebrow) {
    margin-bottom: 32px;
    color: #474745;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
}

.certificate-panel {
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: var(--metal-gradient);
    overflow: hidden;
}

.certificate-head {
    display: flex;
    min-height: 68px;
    padding: 18px 30px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line-dark);
}

.certificate-issuer {
    display: grid;
    justify-items: end;
    gap: 1px;
}

.certificate-issuer small {
    color: #74756f;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.certificate-issuer strong {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.15;
}

.certificate-status {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 600;
}

.certificate-title {
    display: grid;
    padding: 38px 32px 34px;
    gap: 7px;
    border-bottom: 1px solid var(--line-dark);
}

.certificate-title > span {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.certificate-title strong {
    font-family: var(--font-display);
    font-size: 43px;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.certificate-title small {
    color: var(--ink-soft);
    font-size: 12px;
    letter-spacing: 0.06em;
}

.certificate-data {
    display: grid;
    margin: 0;
    grid-template-columns: 1.35fr 0.8fr 0.8fr;
}

.certificate-data > div {
    display: block;
    min-height: 104px;
    padding: 24px 25px;
    border-right: 1px solid var(--line-dark);
}

.certificate-data > div:last-child {
    border-right: 0;
}

.certificate-data dt {
    color: var(--ink-soft);
    font-size: 12px;
}

.certificate-data dd {
    margin: 7px 0 0;
    font-size: 14px;
    font-weight: 600;
}

.certificate-data dd small {
    display: block;
    margin-top: 3px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 400;
}

.controls-section {
    background: var(--surface);
}

.controls-heading {
    margin-bottom: 58px;
}

.controls-heading > p {
    max-width: 600px;
    margin: 33px 0 0;
    color: #474745;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
}

.controls-heading-aligned {
    align-items: start;
}

.controls-heading-aligned > p {
    margin-top: 0;
}

.coverage-panel {
    display: grid;
    margin-bottom: 54px;
    grid-template-columns: 310px minmax(0, 1fr);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: var(--paper);
    overflow: hidden;
}

.coverage-total {
    display: grid;
    min-height: 265px;
    padding: 38px 42px;
    align-content: center;
    justify-items: center;
    border-right: 1px solid var(--line-dark);
    background: var(--metal-gradient);
    text-align: center;
}

.coverage-total span,
.coverage-total small {
    color: var(--ink-soft);
    font-size: 13px;
}

.coverage-total span {
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.coverage-total strong {
    margin-block: 8px;
    font-family: var(--font-display);
    font-size: 88px;
    font-weight: 300;
    line-height: 1;
}

.coverage-detail {
    display: grid;
    padding: 44px 54px 36px;
    align-content: center;
}

.coverage-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
}

.coverage-row span {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
    font-weight: 600;
}

.coverage-row strong {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
}

.coverage-row-muted {
    margin-top: 13px;
    color: var(--ink-soft);
}

.coverage-row-muted span {
    font-size: 14px;
    font-weight: 400;
}

.coverage-row-muted strong {
    font-size: 28px;
}

.coverage-bar {
    height: 13px;
    margin-top: 16px;
    border-radius: 999px;
    background: var(--metal);
    overflow: hidden;
}

.coverage-bar span {
    display: block;
    width: 87.1%;
    height: 100%;
    border-radius: inherit;
    background: var(--ink);
}

.coverage-detail > p {
    margin: 23px 0 0;
    color: #85867f;
    font-size: 11px;
}

.coverage-detail-distribution {
    padding: 34px 44px 30px;
}

.coverage-distribution-title {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.coverage-segments {
    display: grid;
    height: 82px;
    margin-top: 13px;
    grid-template-columns: minmax(0, 81fr) minmax(0, 12fr);
    border: 1px solid var(--line-dark);
    border-radius: 14px;
    overflow: hidden;
}

.coverage-segment {
    display: grid;
    min-width: 0;
    align-content: center;
    justify-items: center;
    gap: 1px;
    text-align: center;
}

.coverage-segment strong {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
}

.coverage-segment small {
    font-size: 10px;
    font-weight: 600;
}

.coverage-segment > span {
    font-size: 10px;
    font-weight: 500;
    line-height: 1.15;
}

.coverage-segment-applicable {
    background: var(--ink);
    color: var(--paper);
}

.coverage-segment-excluded {
    border-left: 1px solid var(--line-dark);
    background: var(--metal);
    color: var(--ink);
}

.coverage-legend {
    display: grid;
    margin-top: 16px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
}

.coverage-legend > div {
    display: grid;
    min-height: 48px;
    padding: 10px 12px;
    grid-template-columns: 9px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--line);
    border-radius: 10px;
}

.coverage-legend span {
    color: var(--ink-soft);
    font-size: 12px;
    line-height: 1.3;
}

.coverage-legend strong {
    font-family: var(--font-display);
    font-size: 23px;
    font-weight: 300;
}

.coverage-key {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.coverage-key-applicable {
    background: var(--ink);
}

.coverage-key-excluded {
    border: 1px solid rgba(34, 34, 34, 0.25);
    background: var(--metal);
}

.coverage-detail-distribution > p {
    margin-top: 17px;
}

.annex-table {
    border-top: 1px solid var(--ink);
}

.annex-table summary {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) 130px 42px;
    gap: 22px;
}

.annex-table details {
    border-bottom: 1px solid var(--line-dark);
}

.annex-table summary {
    min-height: 112px;
    padding: 22px 20px;
    align-items: center;
    cursor: pointer;
    list-style: none;
    transition: background 160ms ease;
}

.annex-table summary::-webkit-details-marker {
    display: none;
}

.annex-table summary:hover,
.annex-table details[open] summary {
    background: var(--paper);
}

.annex-code {
    font-family: var(--font-display);
    font-size: 28px;
}

.annex-title {
    display: grid;
    gap: 5px;
}

.annex-title strong {
    font-size: 18px;
    font-weight: 600;
}

.annex-title small {
    color: var(--ink-soft);
    font-size: 13px;
}

.annex-count {
    display: grid;
    justify-items: start;
}

.annex-count strong {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
}

.annex-count small {
    color: var(--ink-soft);
    font-size: 10px;
}

.annex-toggle {
    display: grid;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    place-items: center;
}

.annex-toggle svg {
    transition: transform 180ms ease;
}

.annex-table details[open] .annex-toggle svg {
    transform: rotate(180deg);
}

.annex-content {
    display: grid;
    padding: 0 194px 38px 152px;
    grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
    gap: 56px;
    background: var(--paper);
}

.annex-content > p {
    margin: 0;
    color: #3f3f3d;
    font-size: 15px;
    line-height: 1.65;
}

.annex-content > div {
    padding-left: 25px;
    border-left: 1px solid var(--line);
}

.annex-content > div > span,
.exclusions-note > span {
    display: block;
    margin-bottom: 8px;
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.annex-content > div p {
    margin: 0;
    color: #4f4f4c;
    font-size: 12px;
    line-height: 1.75;
}

.exclusions-note {
    display: grid;
    margin-top: 36px;
    padding: 29px 32px;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 32px;
    border: 1px solid var(--line-dark);
    background: transparent;
}

.exclusions-note > span {
    margin: 5px 0 0;
}

.exclusions-note p {
    max-width: 850px;
    margin: 0;
    color: #4b4b49;
    font-size: 14px;
    line-height: 1.65;
}

/* The blue variant uses white space for section rhythm and blue only for
content that carries hierarchy or status. */
.site-shell-blue .scope-stage-section,
.site-shell-blue .controls-section {
    background: radial-gradient(190% 300% at 92% 22%, #fbfbfa 0%, #f0f0ed 58%, #e6e7e1 100%);
}

.site-shell-blue .system-map-layered::before {
    border-color: rgba(31, 72, 111, 0.2);
    background: #a9bfd2;
}

.site-shell-blue .system-map-layered::after {
    border-color: rgba(31, 72, 111, 0.16);
    background: var(--tegossuite-blue-soft);
}

.site-shell-blue .scope-layer-standard {
    border-color: rgba(255, 255, 255, 0.24);
    color: var(--paper);
    background: var(--tegossuite-blue-gradient);
}

.site-shell-blue .scope-layer-standard span {
    color: rgba(255, 255, 255, 0.7);
}

.site-shell-blue .scope-layer-standard .system-owner-mark {
    border-color: rgba(255, 255, 255, 0.34);
}

.site-shell-blue .scope-layer-foundation {
    background: linear-gradient(112deg, var(--tegossuite-blue-deep), var(--tegossuite-blue));
}

.site-shell-blue .system-map-layered-logos .scope-layer-foundation {
    min-height: 76px;
    border: 1px solid rgba(31, 72, 111, 0.18);
    color: var(--tegossuite-blue-deep);
    background: linear-gradient(118deg, #f7f7f4 0%, #e8ecee 100%);
    box-shadow: inset 4px 0 0 var(--tegossuite-blue);
}

.site-shell-blue .system-map-layered-logos .scope-layer-foundation span {
    color: rgba(31, 72, 111, 0.68);
}

.site-shell-blue .system-map-layered-logos .scope-layer-foundation strong {
    color: var(--tegossuite-blue-deep);
}

.site-shell-blue .system-map-layered-logos .scope-layer-foundation small {
    color: rgba(31, 72, 111, 0.72);
}

.site-shell-blue .entity-layer-equal .entity-role {
    color: var(--tegossuite-blue-deep);
    background: var(--tegossuite-blue-soft);
}

.site-shell-blue .entity-layer-equal .entity-card-logo,
.site-shell-blue .entity-layer-equal .entity-primary.entity-card-logo {
    border-color: rgba(23, 58, 90, 0.32);
    color: var(--paper);
    background: var(--tegossuite-blue-gradient);
    box-shadow: 0 12px 26px rgba(31, 72, 111, 0.12);
}

.site-shell-blue .entity-layer-equal .entity-card-logo svg {
    filter: brightness(0) invert(1);
}

.site-shell-blue .entity-layer-equal .entity-card-logo .entity-legal-name {
    color: rgba(255, 255, 255, 0.94);
}

.site-shell-blue .entity-layer-equal .entity-card-logo .entity-number,
.site-shell-blue .entity-layer-equal .entity-card-logo .entity-link-icon {
    color: rgba(255, 255, 255, 0.72);
}

.site-shell-blue .entity-layer-equal .entity-card-logo .entity-role {
    color: var(--tegossuite-blue-deep);
    background: rgba(220, 232, 242, 0.96);
}

.site-shell-blue .entity-layer-equal .entity-card-logo.entity-card-link:hover,
.site-shell-blue .entity-layer-equal .entity-card-logo.entity-card-link:focus-visible {
    border-color: rgba(255, 255, 255, 0.56);
    background: radial-gradient(145% 215% at 5% 8%, #4b82b6 0%, #3d73a6 38%, #24527d 100%);
    box-shadow: 0 17px 34px rgba(31, 72, 111, 0.2);
}

.site-shell-blue .certificate-panel {
    border-color: rgba(31, 72, 111, 0.3);
    color: var(--paper);
    background: var(--tegossuite-blue-gradient);
    box-shadow: 0 24px 60px rgba(31, 72, 111, 0.16);
}

.site-shell-blue .certificate-head,
.site-shell-blue .certificate-title,
.site-shell-blue .certificate-data > div {
    border-color: rgba(255, 255, 255, 0.24);
}

.site-shell-blue .certificate-issuer small,
.site-shell-blue .certificate-title > span,
.site-shell-blue .certificate-title small,
.site-shell-blue .certificate-data dt,
.site-shell-blue .certificate-data dd small {
    color: rgba(255, 255, 255, 0.68);
}

.site-shell-blue .coverage-panel {
    border-color: rgba(31, 72, 111, 0.28);
    box-shadow: 0 24px 60px rgba(31, 72, 111, 0.1);
}

.site-shell-blue .coverage-total {
    border-color: rgba(255, 255, 255, 0.24);
    color: var(--paper);
    background: var(--tegossuite-blue-gradient);
}

.site-shell-blue .coverage-total span,
.site-shell-blue .coverage-total small {
    color: rgba(255, 255, 255, 0.72);
}

.site-shell-blue .coverage-segment-applicable {
    background: linear-gradient(112deg, var(--tegossuite-blue-deep), var(--tegossuite-blue));
}

.site-shell-blue .coverage-segment-excluded {
    border-color: rgba(31, 72, 111, 0.24);
    color: var(--tegossuite-blue-deep);
    background: var(--tegossuite-blue-soft);
}

.site-shell-blue .coverage-key-applicable {
    background: var(--tegossuite-blue);
}

.site-shell-blue .coverage-key-excluded {
    border-color: rgba(31, 72, 111, 0.3);
    background: var(--tegossuite-blue-soft);
}

.site-shell-blue .annex-table summary:hover,
.site-shell-blue .annex-table details[open] summary,
.site-shell-blue .download-row:hover {
    background: rgba(220, 232, 242, 0.42);
}

/* Comparison variant: retain the metallic information surfaces and use blue
only for a small number of navigational and data accents. */
.site-shell-blue.site-shell-blue-accent .system-map-layered::before {
    border-color: rgba(34, 34, 34, 0.12);
    background: #c8c9c1;
}

.site-shell-blue.site-shell-blue-accent .system-map-layered::after {
    border-color: rgba(34, 34, 34, 0.12);
    background: #e2e3dd;
}

.site-shell-blue.site-shell-blue-accent .scope-layer-standard {
    border-color: var(--line-dark);
    color: var(--ink);
    background: var(--metal-gradient);
}

.site-shell-blue.site-shell-blue-accent .scope-layer-standard span {
    color: var(--ink-soft);
}

.site-shell-blue.site-shell-blue-accent .scope-layer-standard .system-owner-mark {
    border-color: rgba(55, 109, 159, 0.45);
    color: var(--tegossuite-blue);
}

.site-shell-blue.site-shell-blue-accent .scope-layer-foundation {
    background: linear-gradient(112deg, var(--tegossuite-blue-deep), var(--tegossuite-blue));
}

.site-shell-blue.site-shell-blue-accent .certificate-panel {
    border-color: var(--line-dark);
    color: var(--ink);
    background: var(--metal-gradient);
    box-shadow: 0 20px 55px rgba(34, 34, 34, 0.08);
}

.site-shell-blue.site-shell-blue-accent .certificate-head,
.site-shell-blue.site-shell-blue-accent .certificate-title,
.site-shell-blue.site-shell-blue-accent .certificate-data > div {
    border-color: var(--line-dark);
}

.site-shell-blue.site-shell-blue-accent .certificate-issuer small,
.site-shell-blue.site-shell-blue-accent .certificate-title > span,
.site-shell-blue.site-shell-blue-accent .certificate-data dt,
.site-shell-blue.site-shell-blue-accent .certificate-data dd small {
    color: var(--ink-soft);
}

.site-shell-blue.site-shell-blue-accent .certificate-issuer strong,
.site-shell-blue.site-shell-blue-accent .certificate-title small {
    color: var(--tegossuite-blue-deep);
}

.site-shell-blue.site-shell-blue-accent .certificate-status i {
    background: var(--tegossuite-blue);
}

.site-shell-blue.site-shell-blue-accent .coverage-panel {
    border-color: var(--line-dark);
    box-shadow: 0 20px 55px rgba(34, 34, 34, 0.07);
}

.site-shell-blue.site-shell-blue-accent .coverage-total {
    border-color: var(--line-dark);
    color: var(--ink);
    background: var(--metal-gradient);
}

.site-shell-blue.site-shell-blue-accent .coverage-total span,
.site-shell-blue.site-shell-blue-accent .coverage-total small {
    color: var(--ink-soft);
}

.site-shell-blue.site-shell-blue-accent .coverage-total strong {
    color: var(--tegossuite-blue-deep);
}

.site-shell-blue.site-shell-blue-accent .coverage-segment-applicable {
    background: linear-gradient(112deg, var(--tegossuite-blue-deep), var(--tegossuite-blue));
}

.site-shell-blue.site-shell-blue-accent .coverage-segment-excluded {
    border-color: var(--line-dark);
    color: var(--ink);
    background: var(--metal);
}

.site-shell-blue.site-shell-blue-accent .coverage-key-excluded {
    border-color: rgba(34, 34, 34, 0.25);
    background: var(--metal);
}

.documents-section {
    background: var(--paper);
}

.documents-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
    gap: 9%;
}

.documents-heading {
    max-width: 430px;
}

.documents-heading > p:last-child {
    margin-bottom: 0;
    color: #4b4b49;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;
}

.download-list {
    border-top: 1px solid var(--ink);
}

.download-row {
    display: grid;
    min-height: 108px;
    padding: 22px 16px 22px 4px;
    grid-template-columns: 48px minmax(0, 1fr) 32px;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid var(--line-dark);
    transition: padding 180ms ease, background 180ms ease;
}

.download-row:hover {
    padding-left: 16px;
    background: var(--surface);
}

.document-icon {
    display: grid;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    place-items: center;
}

.document-copy {
    display: grid;
    gap: 5px;
}

.document-copy strong {
    font-size: 16px;
    font-weight: 600;
}

.document-copy small {
    color: var(--ink-soft);
    font-size: 12px;
}

.contact-section {
    padding-block: 100px;
    background: var(--paper);
}

.contact-card {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    padding: clamp(58px, 6vw, 84px);
    border-radius: 48px;
    color: var(--paper);
    background: radial-gradient(77.77% 689.42% at 89.34% 23.58%, #3d3d3d 0%, #000 100%);
}

.site-shell-blue .contact-card {
    background: radial-gradient(118% 310% at 6% 8%, #4279ad 0%, var(--tegossuite-blue) 42%, var(--tegossuite-blue-deep) 100%);
}

.site-shell-blue .contact-card::before,
.site-shell-blue .contact-card::after {
    display: none;
}

.site-shell-blue .contact-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
}

.site-shell-blue .contact-details,
.site-shell-blue .contact-details > div {
    border-color: rgba(255, 255, 255, 0.25);
}

.site-shell-blue .contact-details small {
    color: rgba(255, 255, 255, 0.62);
}

.contact-card::before,
.contact-card::after {
    position: absolute;
    z-index: 0;
    display: block;
    content: '';
    transform: rotate(-42deg);
    border-radius: 38px;
    pointer-events: none;
}

.contact-card::before {
    top: -190px;
    right: -28px;
    width: 132px;
    height: 365px;
    background: radial-gradient(112.65% 54.94% at 162.3% 45.06%, #329573 13.09%, #82c341 100%);
}

.contact-card::after {
    right: 105px;
    bottom: -310px;
    width: 138px;
    height: 390px;
    opacity: 0.72;
    background: var(--metal-gradient);
}

.contact-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
    align-items: center;
    gap: 10%;
}

.eyebrow-light {
    color: #b7b7b2;
}

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

.contact-copy h2 {
    max-width: 620px;
}

.contact-copy > p:not(.eyebrow) {
    max-width: 590px;
    margin-bottom: 34px;
    color: #d0d0cc;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
}

.button-light {
    border-color: var(--paper);
    color: var(--ink);
    background: var(--paper);
}

.button-light:hover {
    color: var(--paper);
    background: transparent;
}

.contact-details {
    border-top: 1px solid #53534f;
}

.contact-details > div {
    display: grid;
    min-height: 88px;
    padding: 19px 4px;
    grid-template-columns: 30px 1fr;
    align-items: center;
    gap: 17px;
    border-bottom: 1px solid #53534f;
}

.contact-details span {
    display: grid;
    gap: 3px;
}

.contact-details small {
    color: #aaa9a5;
    font-size: 11px;
}

.contact-details a,
.contact-details strong {
    font-size: 14px;
    font-weight: 600;
}

.site-footer {
    color: var(--ink);
    background: var(--metal);
}

.site-shell-blue .site-footer {
    color: var(--paper);
    background: var(--tegossuite-blue-gradient);
}

.site-shell-blue .footer-column > strong {
    color: var(--paper);
}

.site-shell-blue .footer-column address,
.site-shell-blue .footer-bottom {
    color: rgba(255, 255, 255, 0.68);
}

.site-shell-blue .footer-column a:hover,
.site-shell-blue .footer-bottom a:hover {
    color: var(--paper);
}

.site-shell-blue .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.24);
}

.site-shell-blue .footer-bottom div::before,
.site-shell-blue .footer-bottom a + a::before {
    color: rgba(255, 255, 255, 0.45);
}

.footer-main {
    display: grid;
    padding-top: 76px;
    padding-bottom: 72px;
    grid-template-columns: minmax(390px, 1.8fr) repeat(3, minmax(120px, 0.68fr)) minmax(110px, 0.58fr);
    gap: clamp(22px, 2.5vw, 36px);
}

.footer-claim p {
    max-width: 400px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(32px, 2.8vw, 42px);
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.07;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
}

.footer-column > strong {
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 14px;
}

.footer-column address {
    margin: 0;
    color: var(--ink-soft);
    font-style: normal;
}

.footer-column a:hover,
.footer-bottom a:hover {
    color: #000;
}

.footer-column a,
.footer-bottom a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.footer-nav {
    display: grid;
    align-content: start;
    gap: 25px;
}

.footer-bottom {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    border-top: 1px solid var(--line-dark);
    color: var(--ink-soft);
    font-size: 11px;
}

.footer-bottom div {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-bottom div::before,
.footer-bottom a + a::before {
    margin-inline: 8px;
    color: var(--ink-soft);
    content: '|';
}

@media (max-width: 1180px) {
    .footer-main {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-claim {
        grid-column: 1 / -1;
    }

    .desktop-nav {
        gap: 22px;
    }

    .header-actions {
        gap: 13px;
    }

    .header-cta {
        padding-inline: 22px;
    }

    .entity-layer {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .entity-card::before,
    .entity-primary::before,
    .entity-layer::before {
        display: none;
    }

    .certificate-layout,
    .documents-layout {
        gap: 6%;
    }

    .annex-content {
        padding-right: 90px;
    }

    .hero-motif {
        right: -430px;
    }

    .hero-inner-orbit-split {
        grid-template-columns: minmax(0, 1fr) minmax(440px, 0.9fr);
    }

    .orbit-visual-split {
        --orbit-card-width: 118px;
        --orbit-radius: 158px;
        --orbit-size: 460px;
    }

    .orbit-visual-focus {
        --orbit-radius: 210px;
        --orbit-size: 600px;
    }
}

@media (max-width: 1020px) {
    :root {
        --gutter: 28px;
        --section-y: 92px;
    }

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

    .brand-logo {
        width: 185px;
        height: 38px;
    }

    .brand-logo {
        background-position: -34px -76px;
        background-size: 256px auto;
    }

    .desktop-nav,
    .header-icon,
    .header-cta {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .mobile-menu {
        display: block;
    }

    .split-layout,
    .certificate-layout,
    .documents-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .scope-stage-heading-aligned {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lead-copy,
    .controls-heading > p {
        padding-top: 0;
        margin-top: 0;
    }

    .certificate-intro,
    .documents-heading {
        max-width: 680px;
    }

    .certificate-panel {
        max-width: 760px;
    }

    .documents-layout {
        gap: 54px;
    }

    .contact-layout {
        gap: 60px;
    }

    .contact-details {
        max-width: 620px;
    }

    .hero-inner-orbit-split {
        padding-block: 26px 72px;
        grid-template-columns: 1fr;
        grid-template-areas:
            'utility'
            'copy'
            'orbit';
        gap: 36px;
    }

    .hero-inner-orbit-split .hero-copy {
        max-width: 760px;
    }

    .orbit-visual-split {
        --orbit-card-width: 132px;
        --orbit-radius: 184px;
        --orbit-size: 530px;
        justify-self: center;
    }

    .hero-inner-orbit-focus {
        min-height: 930px;
    }

    .orbit-visual-focus {
        --orbit-card-width: 138px;
        --orbit-radius: 198px;
        --orbit-size: 570px;
    }
}

@media (max-width: 760px) {
    :root {
        --gutter: 20px;
        --section-y: 74px;
        --radius: 24px;
    }

    body {
        font-size: 15px;
    }

    .breadcrumbs {
        display: none;
    }

    .hero-inner {
        display: block;
        min-height: 0;
        padding-top: 350px;
        padding-bottom: 74px;
    }

    .hero-copy {
        width: 100%;
    }

    .hero-motif {
        top: -55px;
        right: -105px;
        display: block;
        width: 371px;
        height: 371px;
        transform: rotate(30deg);
    }

    .hero-module {
        border-radius: 29px;
    }

    .hero-module-one {
        width: 241px;
        height: 130px;
    }

    .hero-module-two {
        top: 130px;
        left: 93px;
        width: 278px;
        height: 111px;
    }

    .hero-module-three {
        top: 241px;
        left: 0;
        width: 260px;
        height: 85px;
    }

    .hero-inner-orbit-split,
    .hero-inner-orbit-focus {
        display: grid;
        min-height: 0;
        padding-top: 20px;
        padding-bottom: 68px;
        gap: 38px;
    }

    .hero-inner-orbit-focus {
        grid-template-rows: auto auto auto;
    }

    .hero-focus-dock {
        padding: 26px 22px;
        grid-template-columns: 1fr;
        gap: 28px;
        border-radius: 20px;
    }

    .hero-focus-copy {
        text-align: left;
    }

    .hero-focus-copy h1 {
        font-size: clamp(38px, 10vw, 44px);
    }

    .hero-focus-copy .hero-lead {
        font-size: 16px;
    }

    .orbit-visual,
    .orbit-visual-focus,
    .orbit-visual-split {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        justify-self: stretch;
        gap: 28px;
    }

    .orbit-visual::before,
    .orbit-ring,
    .orbit-spoke {
        display: none;
    }

    .orbit-spinner {
        position: static;
        display: grid;
        width: 100%;
        grid-row: 2;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        animation: none;
    }

    .orbit-node {
        position: static;
        width: auto;
        height: auto;
        transform: none;
    }

    .orbit-node-anchor {
        position: static;
        transform: none;
    }

    .orbit-node-counter {
        animation: none;
    }

    .orbit-node-card {
        width: auto;
        min-height: 72px;
        padding: 12px;
        box-shadow: 0 8px 22px rgba(34, 34, 34, 0.06);
    }

    .orbit-hub,
    .orbit-visual-focus .orbit-hub {
        width: 170px;
        grid-row: 1;
    }

    .orbit-visual-focus .orbit-hub-brand {
        font-size: 26px;
    }

    .hero-focus-actions {
        width: 100%;
    }

    .hero-focus-actions .hero-actions {
        align-items: flex-start;
    }

    h1 {
        font-size: clamp(38px, 10vw, 44px);
        hyphens: manual;
    }

    .hero-security-full {
        display: none;
    }

    .hero-security-mobile {
        display: inline;
    }

    h2 {
        font-size: clamp(32px, 9vw, 42px);
    }

    .split-layout > *,
    .certificate-layout > *,
    .documents-layout > *,
    .contact-layout > * {
        min-width: 0;
    }

    .controls-heading h2 {
        hyphens: auto;
        overflow-wrap: break-word;
    }

    .contact-details a,
    .contact-details strong {
        overflow-wrap: anywhere;
    }

    .hero-lead {
        font-size: 18px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .trust-facts-inner {
        grid-template-columns: 1fr;
    }

    .trust-facts-inner > div,
    .trust-facts-inner > div:not(:first-child) {
        min-height: 94px;
        padding-left: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-facts-inner > div:last-child {
        border-bottom: 0;
    }

    .lead-copy,
    .controls-heading > p,
    .certificate-intro p:not(.eyebrow),
    .contact-copy > p:not(.eyebrow) {
        font-size: 16px;
    }

    .scope-stage-heading {
        margin-bottom: 38px;
    }

    .scope-stage-heading-aligned {
        gap: 26px;
    }

    .system-map {
        padding: 34px 20px;
    }

    .system-map-layered {
        padding: 10px 10px 18px;
    }

    .system-map-layered::before {
        inset: 38px 0 0 22px;
    }

    .system-map-layered::after {
        inset: 23px 19px 8px 2px;
    }

    .scope-layer-surface {
        padding: 24px 18px;
    }

    .scope-layer-header {
        padding-bottom: 22px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .scope-layer-title strong {
        font-size: 36px;
    }

    .scope-layer-standard {
        min-height: 96px;
        padding: 18px;
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px;
    }

    .scope-layer-standard strong {
        font-size: 17px;
    }

    .system-group {
        padding: 22px 18px;
    }

    .system-isms {
        padding: 20px;
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px;
    }

    .system-owner-mark {
        width: 46px;
        height: 46px;
    }

    .system-isms > small {
        max-width: none;
        grid-column: 2;
        text-align: left;
    }

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

    .entity-layer-equal {
        padding-top: 22px;
        gap: 10px;
    }

    .entity-card,
    .entity-primary {
        min-height: 110px;
    }

    .scope-layer-note {
        margin-top: 18px;
        padding-top: 15px;
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .scope-layer-foundation {
        padding: 17px 18px;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .scope-layer-foundation small {
        max-width: none;
        text-align: left;
    }

    .scope-quote {
        padding: 28px 0;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .scope-quote blockquote {
        font-size: 15px;
    }

    .certificate-panel {
        min-height: 0;
    }

    .certificate-head {
        padding: 16px 20px;
    }

    .certificate-title {
        padding: 32px 22px 29px;
    }

    .certificate-title strong {
        font-size: 34px;
    }

    .certificate-data {
        grid-template-columns: 1fr;
    }

    .certificate-data > div {
        min-height: 0;
        padding: 19px 22px;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .certificate-data > div:last-child {
        border-bottom: 0;
    }

    .coverage-panel {
        grid-template-columns: 1fr;
    }

    .coverage-total {
        min-height: 220px;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .coverage-total strong {
        font-size: 72px;
    }

    .coverage-detail {
        padding: 34px 28px;
    }

    .coverage-detail-distribution {
        padding: 30px 22px 27px;
    }

    .coverage-segments {
        height: 72px;
    }

    .coverage-segment strong {
        font-size: 25px;
    }

    .coverage-segment small {
        font-size: 8px;
    }

    .coverage-legend {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .annex-table summary {
        min-height: 116px;
        padding-inline: 6px;
        grid-template-columns: 58px minmax(0, 1fr) 42px;
        gap: 13px;
    }

    .annex-count {
        display: none;
    }

    .annex-title strong {
        font-size: 15px;
    }

    .annex-title small {
        font-size: 11px;
    }

    .annex-content {
        padding: 0 6px 30px 77px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .annex-content > div {
        padding: 0;
        border: 0;
    }

    .exclusions-note {
        padding: 24px;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .download-row {
        min-height: 98px;
        padding-right: 4px;
        grid-template-columns: 38px minmax(0, 1fr) 26px;
        gap: 12px;
    }

    .document-icon {
        width: 36px;
        height: 36px;
    }

    .contact-section {
        padding-block: 64px;
    }

    .contact-card {
        min-height: 0;
        padding: 58px 28px;
        border-radius: 28px;
    }

    .contact-card::before {
        top: -205px;
        right: -82px;
        opacity: 0.72;
    }

    .contact-card::after {
        display: none;
    }

    .footer-main {
        padding-top: 60px;
        padding-bottom: 50px;
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-claim {
        grid-column: auto;
    }

    .footer-bottom {
        padding-block: 22px;
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .footer-bottom div {
        flex-wrap: wrap;
        gap: 10px 20px;
    }

    .footer-bottom div::before,
    .footer-bottom a + a::before {
        content: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }

    .orbit-spinner,
    .orbit-node-counter {
        animation: none;
    }
}

/* Comparison variant: a white Security Center navigation bar separates the
utility navigation from the blue hero, echoing the main tegosgroup site. */
.trust-center-standalone-header {
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(34, 34, 34, 0.12);
    color: var(--ink);
    background: var(--paper);
}

.trust-center-standalone-header-inner {
    display: flex;
    min-height: 74px;
    align-items: center;
}

.trust-center-standalone-header .hero-utility {
    min-height: 74px;
    border-bottom: 0;
}

.site-shell-blue .trust-center-standalone-header .hero-utility-label,
.site-shell-blue .trust-center-standalone-header .language-menu summary {
    color: var(--ink);
}

.trust-center-standalone-header .hero-utility-label {
    font-size: 15px;
    letter-spacing: 0.01em;
    text-transform: none;
}

@media (min-width: 1021px) {
    .site-shell-blue-white-header .hero-inner-orbit-split {
        min-height: 686px;
        padding-block: 64px 72px;
        align-items: center;
        grid-template-areas: 'copy orbit';
    }
}

@media (max-width: 1020px) {
    .site-shell-blue-white-header .hero-inner-orbit-split {
        min-height: 0;
        padding-top: 58px;
        grid-template-areas:
            'copy'
            'orbit';
    }
}

@media (max-width: 760px) {

    .trust-center-standalone-header-inner,
    .trust-center-standalone-header .hero-utility {
        min-height: 64px;
    }

    .site-shell-blue-white-header .hero-inner-orbit-split {
        padding-top: 48px;
    }
}
