:root {
    color-scheme: light;
    --root-blue: #0b528c;
    --root-blue-deep: #073b68;
    --root-blue-soft: #e8f2f8;
    --root-orange: #f39216;
    --ink: #122333;
    --muted: #73808c;
    --line: #e1e8ec;
    --surface: #ffffff;
    --surface-soft: #f7fafc;
    --canvas: #f5f7f8;
    --success: #159b71;
    --danger: #d74f4f;
    --shadow: 0 12px 38px rgba(20, 54, 80, 0.07);
    --container: 1180px;
}

html[data-theme="dark"] {
    color-scheme: dark;
    --ink: #eef7fb;
    --muted: #9eb1bc;
    --line: #234455;
    --surface: #0d2735;
    --surface-soft: #102f3f;
    --canvas: #071b28;
    --root-blue-soft: #143b4d;
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--canvas);
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    background-color: var(--canvas);
    background-image:
        linear-gradient(rgba(11, 82, 140, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 82, 140, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    color: var(--ink);
    font-family: "Cairo", "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

img,
video,
iframe {
    display: block;
    max-width: 100%;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(243, 146, 22, 0.35);
    outline-offset: 3px;
}

.page-aura {
    position: fixed;
    inset: 0 0 auto;
    z-index: 90;
    height: 3px;
    background: linear-gradient(90deg, var(--root-orange) 0 28%, var(--root-blue) 28% 100%);
    pointer-events: none;
}

.logo-dark {
    display: none !important;
}

html[data-theme="dark"] .logo-light {
    display: none !important;
}

html[data-theme="dark"] .logo-dark {
    display: block !important;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface) 95%, transparent);
    box-shadow: 0 5px 24px rgba(13, 63, 91, 0.045);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: grid;
    width: min(calc(100% - 32px), var(--container));
    min-height: 78px;
    grid-template-columns: 178px minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    margin: auto;
    direction: ltr;
}

.header-inner > * {
    direction: rtl;
}

[dir="ltr"] .header-inner > * {
    direction: ltr;
}

.brand {
    display: inline-flex;
    width: 154px;
    align-items: center;
}

.brand img {
    width: 146px;
    height: 58px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.main-nav a {
    position: relative;
    padding: 9px 13px;
    border-radius: 10px;
    color: var(--muted);
    font-size: 0.79rem;
    font-weight: 800;
    line-height: 1.25;
    white-space: nowrap;
    transition: background 0.18s ease, color 0.18s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
    background: var(--root-blue-soft);
    color: var(--root-blue);
}

.main-nav a[aria-current="page"]::after {
    position: absolute;
    inset: auto 14px -16px;
    height: 3px;
    border-radius: 4px;
    background: var(--root-orange);
    content: "";
}

.nav-more {
    position: relative;
}

.nav-more-toggle {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-size: 0.79rem;
    font-weight: 800;
    white-space: nowrap;
}

.nav-more-toggle i {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.18s ease;
}

.nav-more:hover .nav-more-toggle,
.nav-more.is-current .nav-more-toggle,
.nav-more.is-open .nav-more-toggle {
    background: var(--root-blue-soft);
    color: var(--root-blue);
}

.nav-more.is-current::after {
    position: absolute;
    inset: auto 14px -16px;
    height: 3px;
    border-radius: 4px;
    background: var(--root-orange);
    content: "";
}

.nav-more.is-open .nav-more-toggle i {
    transform: translateY(2px) rotate(225deg);
}

.nav-more-menu {
    position: absolute;
    inset: calc(100% + 14px) auto auto 50%;
    z-index: 12;
    display: grid;
    width: 260px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 22px 54px rgba(9, 48, 73, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -7px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-more.is-open .nav-more-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-more-menu a {
    display: flex;
    min-height: 45px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 11px;
}

.nav-more-menu a[aria-current="page"]::after {
    display: none;
}

.nav-more-menu a i {
    color: var(--root-orange);
    font-style: normal;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
}

.header-contact,
.language-link,
.icon-button,
.menu-button {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    color: #4c5e6b;
    font-size: 0.72rem;
    font-weight: 800;
}

html[data-theme="dark"] :is(.header-contact, .language-link, .icon-button, .menu-button) {
    color: var(--ink);
}

.header-contact {
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    border-color: var(--root-blue);
    background: var(--root-blue);
    color: #fff;
    box-shadow: 0 8px 20px rgba(11, 82, 140, 0.15);
}

.header-contact:hover {
    background: var(--root-blue-deep);
}

.language-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
}

.icon-button,
.menu-button {
    display: grid;
    width: 40px;
    place-items: center;
    padding: 0;
    cursor: pointer;
}

.icon-button:hover,
.language-link:hover,
.menu-button:hover {
    border-color: #a9cce0;
    background: var(--root-blue-soft);
    color: var(--root-blue);
}

.theme-icon {
    display: grid;
    place-items: center;
}

.theme-icon-dark {
    display: none;
}

html[data-theme="dark"] .theme-icon-light {
    display: none;
}

html[data-theme="dark"] .theme-icon-dark {
    display: grid;
}

.menu-button {
    display: none;
    width: auto;
    grid-template-columns: 24px auto;
    gap: 7px;
    padding: 0 11px;
}

.menu-lines {
    display: grid;
    width: 22px;
    gap: 5px;
}

.menu-lines i {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 3px;
    background: currentColor;
    transition: transform 0.2s ease;
}

.menu-button.is-open .menu-lines i:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-button.is-open .menu-lines i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
    position: absolute;
    inset: 100% 0 auto;
    display: none;
    height: calc(100dvh - 78px);
    overflow-y: auto;
    padding: 28px max(18px, calc((100vw - var(--container)) / 2));
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.mobile-nav.is-open {
    display: block;
    animation: menu-in 0.2s ease-out;
}

.mobile-nav-head {
    padding: 0 4px 20px;
    border-bottom: 1px solid var(--line);
}

.mobile-nav-head strong,
.mobile-nav-head span {
    display: block;
}

.mobile-nav-head strong {
    color: var(--ink);
    font-size: 1.25rem;
}

.mobile-nav-head span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.78rem;
}

.mobile-nav-links {
    display: grid;
    margin-top: 8px;
}

.mobile-nav-links a {
    display: grid;
    min-height: 62px;
    grid-template-columns: 1fr 24px;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--line);
}

.mobile-nav-links a > strong {
    font-size: 1rem;
}

.mobile-nav-links a > i {
    color: var(--root-blue);
    font-style: normal;
}

.mobile-nav-links a[aria-current="page"] {
    color: var(--root-blue);
}

.mobile-nav-links a[aria-current="page"] > strong::before {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-inline-end: 9px;
    border-radius: 50%;
    background: var(--root-orange);
    content: "";
}

.mobile-nav-contact {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0 17px;
    border-radius: 10px;
    background: var(--root-blue);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 900;
}

main {
    min-height: 58vh;
}

.section {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
    padding: 68px 0 84px;
}

.first-section {
    padding-top: 62px;
}

.after-cover {
    padding-top: 34px;
}

.section-cover {
    --cover-bg: #073b68;
    --cover-overlay: #031d30;
    --cover-opacity: 0.68;
    --cover-accent: #f39216;
    --cover-text: #fff;
    position: relative;
    display: flex;
    width: min(calc(100% - 32px), var(--container));
    min-height: 340px;
    align-items: center;
    overflow: hidden;
    margin: 24px auto 0;
    padding: 58px 68px;
    border: 1px solid color-mix(in srgb, var(--cover-text) 14%, transparent);
    border-radius: 16px;
    background-color: var(--cover-bg);
    color: var(--cover-text);
    isolation: isolate;
}

.section-cover::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--cover-overlay);
    content: "";
    opacity: 0;
}

.section-cover.has-cover-image::before {
    opacity: var(--cover-opacity);
}

.section-cover-media,
.section-cover-media img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.section-cover-media img {
    object-fit: cover;
}

.section-cover-content {
    position: relative;
    z-index: 2;
    width: min(790px, 100%);
}

.section-cover.align-start .section-cover-content {
    margin-inline-end: auto;
    text-align: start;
}

.section-cover.align-center .section-cover-content {
    margin-inline: auto;
    text-align: center;
}

.section-cover.align-end .section-cover-content {
    margin-inline-start: auto;
    text-align: end;
}

.section-cover-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--cover-accent);
    font-size: 0.74rem;
    font-weight: 900;
}

.section-cover-kicker::before {
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    content: "";
}

.section-cover h1 {
    max-width: 740px;
    margin: 13px auto 11px;
    color: var(--cover-text);
    font-size: 2.45rem;
    font-weight: 800;
    line-height: 1.4;
}

.section-cover.align-start h1,
.section-cover.align-start p,
.section-cover.align-end h1,
.section-cover.align-end p {
    margin-inline: 0;
}

.section-cover p {
    max-width: 650px;
    margin: 0 auto;
    color: color-mix(in srgb, var(--cover-text) 76%, transparent);
    font-size: 0.86rem;
    line-height: 1.9;
}

.section-cover-action {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 18px;
    margin-top: 21px;
    padding: 0 17px;
    border: 0;
    border-radius: 10px;
    background: var(--cover-accent);
    color: #17212a;
    font-size: 0.76rem;
    font-weight: 900;
}

.section-cover-action i {
    font-size: 1rem;
    font-style: normal;
}

.section-cover-action:hover {
    transform: translateY(-2px);
}

.section-heading {
    width: min(820px, 100%);
    margin: 0 auto 34px;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--root-orange);
    font-size: 0.72rem;
    font-weight: 900;
}

.eyebrow::after {
    width: 28px;
    height: 2px;
    border-radius: 3px;
    background: currentColor;
    content: "";
}

[dir="ltr"] .eyebrow::after {
    order: -1;
}

.section-heading h2 {
    margin: 11px 0 10px;
    color: var(--ink);
    font-size: clamp(2rem, 4.3vw, 3.15rem);
    font-weight: 800;
    line-height: 1.35;
}

.section-heading p {
    max-width: 710px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.95;
}

.solutions-panel {
    overflow: visible;
}

.solutions-panel-head {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    padding: 0 2px 11px;
    border-bottom: 1px solid var(--line);
}

.solutions-panel-head > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(21, 155, 113, 0.1);
}

.solutions-panel-head strong {
    font-size: 0.9rem;
}

.solutions-panel-head small {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
}

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

.solution-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.solution-card:hover {
    border-color: color-mix(in srgb, var(--accent, var(--root-blue)) 45%, var(--line));
    box-shadow: none;
    transform: translateY(-3px);
}

.solution-card > a {
    display: flex;
    min-height: 286px;
    flex-direction: column;
}

.solution-visual {
    position: relative;
    display: flex;
    min-height: 142px;
    flex-direction: column;
    justify-content: space-between;
    padding: 17px 18px 18px;
    overflow: hidden;
    background-color: color-mix(in srgb, var(--accent, var(--root-blue)) 90%, var(--root-blue-deep));
    color: #fff;
}

.solution-identity {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.card-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.card-icon img {
    width: 34px;
    height: 34px;
    padding: 3px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.9);
    object-fit: contain;
}

.card-icon .content-icon {
    width: 23px;
    height: 23px;
}

.solution-copy {
    position: relative;
    z-index: 1;
    min-width: 0;
    margin-top: 17px;
}

.solution-type {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.58rem;
    font-weight: 800;
}

.solution-copy h3 {
    margin: 0;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.58;
}

.solution-title-line {
    display: block;
    width: 38px;
    height: 4px;
    margin-top: 10px;
    border-radius: 4px;
    background: var(--root-orange);
}

.solution-body {
    display: flex;
    min-height: 144px;
    flex: 1;
    flex-direction: column;
    padding: 16px 18px 17px;
}

.solution-body > p {
    display: -webkit-box;
    min-height: 49px;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.85;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.solution-action {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding: 0 12px;
    border: 1px solid color-mix(in srgb, var(--accent, var(--root-blue)) 26%, var(--line));
    border-radius: 10px;
    background: color-mix(in srgb, var(--accent, var(--root-blue)) 7%, var(--surface));
    color: color-mix(in srgb, var(--accent, var(--root-blue)) 78%, var(--ink));
    font-size: 0.66rem;
    font-weight: 900;
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.solution-action i {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 8px;
    background: color-mix(in srgb, var(--accent, var(--root-blue)) 12%, var(--surface));
    font-style: normal;
    font-size: 0.9rem;
    transition: background 0.18s ease, color 0.18s ease;
}

.solution-card:hover .solution-action {
    border-color: var(--accent, var(--root-blue));
    background: var(--accent, var(--root-blue));
    color: #fff;
}

.solution-card:hover .solution-action i {
    background: rgba(255, 255, 255, 0.16);
}

html[data-theme="dark"] .solution-action {
    color: color-mix(in srgb, var(--accent, var(--root-blue)) 58%, #ffffff);
}

html[data-theme="dark"] .solution-card:hover .solution-action {
    color: #fff;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 11px;
}

.partner-card {
    display: grid;
    min-height: 145px;
    place-items: center;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: 0 8px 24px rgba(20, 54, 80, 0.045);
    color: var(--root-blue);
    font-weight: 900;
    transition: border-color 0.18s ease, transform 0.18s ease;
}

.partner-card:hover {
    border-color: #a9cce0;
    transform: translateY(-3px);
}

.partner-card img {
    width: 150px;
    height: 76px;
    object-fit: contain;
}

.about-hero {
    overflow: hidden;
    padding: clamp(30px, 5vw, 54px);
    border-radius: 18px;
    background: linear-gradient(125deg, var(--root-blue-deep), #0b619e);
    box-shadow: 0 16px 42px rgba(11, 82, 140, 0.16);
    color: #fff;
}

.about-hero .eyebrow {
    color: #ffc26f;
}

.about-hero h1 {
    max-width: 760px;
    margin: 13px 0 10px;
    font-size: clamp(2.1rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.35;
}

.about-hero > p {
    max-width: 790px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 2;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-top: 30px;
}

.about-stats > span {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.08);
}

.about-stats strong {
    color: #ffc26f;
    font-size: 1.25rem;
    direction: ltr;
}

.about-stats small {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.66rem;
    line-height: 1.6;
}

.about-stats-standalone {
    margin-top: 0;
    margin-bottom: 14px;
}

.about-stats-standalone > span {
    border-color: var(--line);
    background: var(--surface);
}

.about-stats-standalone strong {
    color: var(--root-orange);
}

.about-stats-standalone small {
    color: var(--ink);
}

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

.about-card {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--surface);
    box-shadow: 0 8px 24px rgba(20, 54, 80, 0.045);
}

.about-card > div {
    padding: 22px;
}

.about-card > div > span {
    color: var(--root-orange);
    font-size: 0.62rem;
    font-weight: 900;
    text-transform: uppercase;
}

.about-card h3 {
    margin: 7px 0;
    font-size: 1.2rem;
}

.about-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 2;
}

.about-media,
.about-card .video-frame {
    width: 100%;
    height: 230px;
    border: 0;
    object-fit: cover;
}

.detail-hero {
    position: relative;
    width: min(calc(100% - 32px), var(--container));
    margin: 36px auto 0;
    padding: 24px 28px 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-top: 4px solid var(--accent, var(--root-blue));
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.back-link {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 7px;
    padding: 0 10px;
    border-radius: 9px;
    background: var(--root-blue-soft);
    color: var(--root-blue);
    font-size: 0.73rem;
    font-weight: 900;
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(270px, 0.55fr);
    align-items: center;
    gap: clamp(28px, 5vw, 68px);
    margin-top: 25px;
}

.detail-copy h1 {
    max-width: 790px;
    margin: 10px 0 8px;
    font-size: clamp(2.25rem, 5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.28;
}

.detail-copy > p {
    max-width: 770px;
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 2;
}

.detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 20px;
}

.detail-badges span {
    padding: 7px 10px;
    border: 1px solid #d9e5ec;
    border-radius: 9px;
    background: var(--surface-soft);
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 800;
}

.detail-actions,
.development-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 900;
}

.button-primary {
    border-color: var(--root-blue);
    background: var(--root-blue);
    color: #fff;
    box-shadow: 0 8px 20px rgba(11, 82, 140, 0.15);
}

.button-primary:hover {
    background: var(--root-blue-deep);
}

.button-ghost {
    background: var(--surface);
    color: var(--root-blue);
}

.detail-showcase {
    display: grid;
    gap: 10px;
    justify-items: stretch;
}

.detail-icon {
    display: grid;
    min-height: 265px;
    place-items: center;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--accent, var(--root-blue)) 44%, var(--line));
    border-radius: 16px;
    background: color-mix(in srgb, var(--accent, var(--root-blue)) 9%, var(--surface));
    color: var(--accent, var(--root-blue));
    font-size: 2.3rem;
    font-weight: 900;
}

.detail-icon.has-cover {
    position: relative;
}

.detail-icon.has-cover > .detail-cover-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-icon.has-cover > img:not(.detail-cover-preview),
.detail-icon.has-cover > span,
.detail-icon.has-cover > .content-icon {
    position: relative;
    z-index: 2;
    max-width: 90px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
}

.detail-icon > .content-icon {
    width: 82px;
    height: 82px;
}

.detail-icon.has-cover > .content-icon {
    width: 76px;
    height: 76px;
    color: var(--accent, var(--root-blue));
}

.detail-showcase > small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 700;
}

.detail-showcase > small i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
}

.detail-layout {
    display: grid;
    width: min(calc(100% - 32px), var(--container));
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.42fr);
    align-items: start;
    gap: 14px;
    margin: 14px auto 84px;
}

.detail-content,
.media-panel,
.links-panel {
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--surface);
    box-shadow: 0 8px 24px rgba(20, 54, 80, 0.045);
}

.detail-content {
    min-height: 250px;
    padding: clamp(24px, 4vw, 42px);
}

.detail-content p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 2.15;
}

.detail-content p:last-child {
    margin-bottom: 0;
}

.detail-media-stack {
    display: grid;
    gap: 11px;
}

.media-panel {
    margin: 0;
    overflow: hidden;
}

.media-panel figcaption,
.links-panel h2 {
    margin: 0;
    padding: 13px 15px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 900;
}

.detail-image,
.video-frame {
    width: 100%;
    border: 0;
    background: #061522;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

.video-frame.portrait {
    max-height: 580px;
    aspect-ratio: 9 / 16;
}

.links-panel {
    overflow: hidden;
}

.links-panel a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 15px;
    border-bottom: 1px solid var(--line);
    color: var(--root-blue);
    font-size: 0.72rem;
    font-weight: 900;
}

.links-panel a:last-child {
    border-bottom: 0;
}

.empty-state,
.not-found {
    width: min(calc(100% - 32px), 720px);
    margin: 70px auto;
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow);
    color: var(--muted);
    text-align: center;
}

.not-found h1 {
    margin: 10px 0;
    color: var(--ink);
    font-size: 2.2rem;
}

.not-found p {
    line-height: 1.9;
}

.site-footer {
    --footer-bg: #073b68;
    --footer-accent: #f39216;
    position: relative;
    overflow: hidden;
    margin-top: 18px;
    background: var(--footer-bg);
    color: #fff;
}

.site-footer::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--footer-accent) 0 28%, #1482c1 28% 100%);
    content: "";
}

.footer-shell {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 32px), var(--container));
    margin: auto;
    padding: 42px 0 0;
}

.footer-callout {
    display: grid;
    grid-template-columns: 0.82fr minmax(0, 1.55fr) minmax(210px, 0.7fr);
    align-items: center;
    gap: 32px;
    padding-bottom: 34px;
}

.footer-brand-mark {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 10px;
}

.footer-brand-mark img {
    width: 142px;
    height: 60px;
    padding: 7px 9px;
    border-radius: 10px;
    background: #fff;
    object-fit: contain;
}

.footer-brand-mark > span {
    max-width: 260px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.66rem;
    font-weight: 700;
    line-height: 1.8;
}

.footer-pitch small {
    color: var(--footer-accent);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.footer-pitch h2 {
    max-width: 560px;
    margin: 8px 0 6px;
    color: #fff;
    font-size: 1.42rem;
    font-weight: 800;
    line-height: 1.55;
}

.footer-pitch p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.7rem;
    line-height: 1.85;
}

.footer-primary-action {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 17px;
    border-radius: 10px;
    background: var(--footer-accent);
    color: #17212a;
    font-size: 0.72rem;
    font-weight: 900;
}

.footer-primary-action i {
    font-size: 1rem;
    font-style: normal;
}

.footer-primary-action:hover {
    transform: translateY(-2px);
}

.footer-directory {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 17px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 10px 24px;
}

.footer-navigation a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.7rem;
    font-weight: 800;
}

.footer-navigation a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.64rem;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.footer-socials a {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 7px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 9px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-socials a:hover {
    border-color: var(--root-orange);
    color: var(--root-orange);
}

.footer-socials span {
    font-size: 0.56rem;
    font-weight: 800;
}

.footer-contact-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-contact-meta a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.61rem;
    direction: ltr;
}

.footer-contact-meta svg {
    color: var(--footer-accent);
}

.development-page-body {
    min-height: 100vh;
    overflow-x: hidden;
}

.development-grid {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(11, 82, 140, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 82, 140, 0.055) 1px, transparent 1px);
    background-size: 72px 72px;
}

.development-page {
    width: min(calc(100% - 32px), var(--container));
    margin: auto;
    padding: 20px 0;
}

.development-topbar {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.development-brand img {
    width: 134px;
    height: 50px;
    object-fit: contain;
}

.development-toolbar {
    display: flex;
    gap: 7px;
}

.development-language,
.development-theme-button {
    display: grid;
    min-height: 40px;
    place-items: center;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface-soft);
    color: var(--root-blue);
    font-size: 0.7rem;
    font-weight: 900;
}

.development-theme-button {
    width: 40px;
    padding: 0;
}

.development-main {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.65fr);
    align-items: stretch;
    gap: 14px;
    margin-top: 14px;
}

.development-copy,
.development-blueprint {
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.development-copy {
    display: flex;
    min-height: 590px;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 6vw, 72px);
    background: linear-gradient(125deg, var(--root-blue-deep), #0b619e);
    color: #fff;
}

.development-status,
.development-code {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 900;
}

.development-status {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.08);
}

.development-status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--root-orange);
    box-shadow: 0 0 0 5px rgba(243, 146, 22, 0.13);
}

.development-code {
    margin-top: 20px;
    color: #ffc26f;
    direction: ltr;
}

.development-copy h1 {
    margin: 12px 0;
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.25;
}

.development-message {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 2;
}

.development-primary-action,
.development-secondary-action {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 0.74rem;
    font-weight: 900;
}

.development-primary-action {
    background: var(--root-orange);
    color: #342000;
}

.development-secondary-action {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    direction: ltr;
}

.development-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.development-signals span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.66rem;
    font-weight: 700;
}

.development-signals i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4bd5a8;
}

.development-blueprint {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: var(--surface);
}

.development-blueprint-head,
.development-progress > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.development-blueprint-head > span {
    color: var(--root-orange);
    font-size: 0.66rem;
    font-weight: 900;
}

.development-blueprint-head > strong {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 0.65rem;
}

.development-blueprint-head i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
}

.development-blueprint-mark {
    display: grid;
    min-height: 185px;
    place-items: center;
    align-content: center;
    margin: 20px 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-soft);
}

.development-blueprint-mark strong {
    color: var(--root-blue);
    font-size: 3rem;
    line-height: 1;
}

.development-blueprint-mark span {
    margin-top: 7px;
    font-weight: 900;
}

.development-blueprint-mark small {
    color: var(--muted);
    font-size: 0.55rem;
}

.development-steps {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.development-steps li {
    display: grid;
    grid-template-columns: 34px 1fr 20px;
    align-items: center;
    gap: 9px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
}

.development-steps li > span {
    color: var(--root-blue);
    font-size: 0.65rem;
    font-weight: 900;
    direction: ltr;
}

.development-steps strong,
.development-steps small {
    display: block;
}

.development-steps strong {
    font-size: 0.72rem;
}

.development-steps small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.58rem;
}

.development-steps li > i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--line);
    color: var(--success);
    font-size: 0.65rem;
    font-style: normal;
}

.development-steps .is-active {
    border-color: #a9cce0;
    background: var(--root-blue-soft);
}

.development-steps .is-active > i {
    background: var(--root-orange);
    box-shadow: 0 0 0 5px rgba(243, 146, 22, 0.12);
}

.development-progress {
    margin-top: auto;
    padding-top: 20px;
}

.development-progress > div {
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 800;
}

.development-progress-track {
    display: block;
    height: 8px;
    margin-top: 8px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--line);
}

.development-progress-track i {
    display: block;
    width: 68%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--root-blue), var(--root-orange));
}

.development-footer {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: var(--muted);
    font-size: 0.62rem;
}

.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@keyframes menu-in {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: 150px minmax(0, 1fr) auto;
        gap: 12px;
    }

    .main-nav a {
        padding-inline: 9px;
        font-size: 0.7rem;
    }

    .header-contact {
        display: none;
    }

    .solutions-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .section-cover {
        padding-inline: 48px;
    }

    .footer-callout {
        grid-template-columns: minmax(190px, 0.75fr) minmax(0, 1.35fr);
        gap: 24px;
    }

    .footer-primary-action {
        grid-column: 1 / -1;
    }
}

@media (max-width: 920px) {
    .header-inner {
        grid-template-columns: 132px minmax(0, 1fr);
    }

    .brand,
    .brand img {
        width: 124px;
    }

    .main-nav {
        display: none;
    }

    .header-actions {
        min-width: 0;
    }

    .menu-button {
        display: grid;
    }
}

@media (max-width: 820px) {
    .header-inner {
        grid-template-columns: 132px 1fr;
    }

    .brand,
    .brand img {
        width: 124px;
    }

    .main-nav {
        display: none;
    }

    .header-actions {
        min-width: 0;
    }

    .menu-button {
        display: grid;
    }

    .detail-hero-grid,
    .detail-layout,
    .development-main {
        grid-template-columns: 1fr;
    }

    .detail-showcase {
        grid-template-columns: minmax(0, 320px);
        justify-content: center;
    }

    .detail-layout {
        margin-bottom: 64px;
    }

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

    .section-cover {
        min-height: 330px;
        padding-inline: 38px;
    }

    .footer-directory {
        align-items: stretch;
        flex-direction: column;
    }

    .footer-navigation {
        width: 100%;
        justify-content: space-between;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .development-copy {
        min-height: 500px;
    }
}

@media (max-width: 640px) {
    body {
        background-size: 54px 54px;
    }

    .site-header {
        min-height: 66px;
    }

    .header-inner {
        width: min(calc(100% - 18px), var(--container));
        min-height: 66px;
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 8px;
    }

    .brand,
    .brand img {
        width: 100px;
    }

    .brand img {
        height: 46px;
    }

    .header-actions {
        gap: 5px;
    }

    .language-link,
    .icon-button,
    .menu-button {
        min-height: 40px;
        border-radius: 10px;
    }

    .language-link {
        padding: 0 9px;
        font-size: 0.62rem;
    }

    .icon-button {
        width: 40px;
    }

    .menu-button {
        width: 40px;
        grid-template-columns: 1fr;
        padding: 0 8px;
    }

    .menu-button small {
        display: none;
    }

    .mobile-nav {
        height: calc(100dvh - 66px);
        padding: 20px 14px 28px;
    }

    .section {
        width: min(calc(100% - 20px), var(--container));
        padding: 48px 0 62px;
    }

    .first-section {
        padding-top: 42px;
    }

    .after-cover {
        padding-top: 24px;
    }

    .section-cover {
        width: min(calc(100% - 20px), var(--container));
        min-height: 350px;
        margin-top: 12px;
        padding: 48px 23px 42px;
        border-radius: 14px;
    }

    .section-cover.align-start .section-cover-content,
    .section-cover.align-center .section-cover-content,
    .section-cover.align-end .section-cover-content {
        margin-inline: auto;
        text-align: center;
    }

    .section-cover-kicker {
        justify-content: center;
        font-size: 0.66rem;
    }

    .section-cover h1,
    .section-cover.align-start h1,
    .section-cover.align-end h1 {
        margin: 13px auto 11px;
        font-size: 1.78rem;
        line-height: 1.48;
    }

    .section-cover p,
    .section-cover.align-start p,
    .section-cover.align-end p {
        margin-inline: auto;
        font-size: 0.78rem;
        line-height: 1.9;
    }

    .section-cover-action {
        min-height: 48px;
        margin-top: 20px;
        font-size: 0.7rem;
    }

    .section-heading {
        margin-bottom: 24px;
    }

    .section-heading h2 {
        margin-top: 8px;
        font-size: clamp(1.7rem, 8.6vw, 2.25rem);
        line-height: 1.38;
    }

    .section-heading p {
        font-size: 0.8rem;
        line-height: 1.85;
    }

    .solutions-panel {
        border-radius: 0;
    }

    .solutions-panel-head {
        min-height: 54px;
        padding: 10px 13px;
    }

    .solutions-panel-head strong {
        font-size: 0.76rem;
    }

    .solutions-panel-head small {
        font-size: 0.57rem;
    }

    .solutions-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .solution-card {
        border-radius: 15px;
    }

    .solution-card > a {
        min-height: 0;
        padding: 0;
    }

    .solution-visual {
        min-height: 134px;
        padding: 15px 16px 17px;
    }

    .card-icon {
        width: 44px;
        height: 44px;
        border-radius: 11px;
    }

    .card-icon img {
        width: 32px;
        height: 32px;
    }

    .card-icon .content-icon {
        width: 22px;
        height: 22px;
    }

    .solution-copy {
        margin-top: 16px;
    }

    .solution-copy h3 {
        font-size: 1.02rem;
        line-height: 1.58;
    }

    .solution-body {
        min-height: 136px;
        padding: 15px 16px 16px;
    }

    .solution-body > p {
        min-height: 48px;
        font-size: 0.69rem;
        line-height: 1.82;
        -webkit-line-clamp: 2;
    }

    .solution-type {
        font-size: 0.57rem;
    }

    .solution-action {
        min-height: 42px;
        padding: 0 11px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .partner-card {
        min-height: 110px;
        padding: 15px;
        border-radius: 12px;
    }

    .partner-card img {
        width: 105px;
        height: 58px;
    }

    .about-hero {
        padding: 28px 20px;
        border-radius: 15px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero > p {
        font-size: 0.78rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        margin-top: 22px;
    }

    .about-card > div {
        padding: 18px;
    }

    .detail-hero,
    .detail-layout {
        width: min(calc(100% - 20px), var(--container));
    }

    .detail-hero {
        margin-top: 16px;
        padding: 15px 15px 20px;
        border-radius: 15px;
    }

    .detail-hero-grid {
        gap: 24px;
        margin-top: 20px;
    }

    .detail-copy {
        text-align: center;
    }

    .detail-copy .eyebrow,
    .detail-badges,
    .detail-actions {
        justify-content: center;
    }

    .detail-copy h1 {
        margin-top: 8px;
        font-size: clamp(1.85rem, 8.5vw, 2.5rem);
        line-height: 1.42;
    }

    .detail-copy > p {
        font-size: 0.8rem;
        line-height: 1.9;
    }

    .detail-badges span {
        padding: 6px 8px;
        font-size: 0.58rem;
    }

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

    .detail-icon {
        min-height: 220px;
    }

    .detail-layout {
        gap: 10px;
        margin-top: 10px;
        margin-bottom: 58px;
    }

    .detail-content {
        padding: 21px 18px;
    }

    .detail-content p {
        font-size: 0.8rem;
        line-height: 2;
    }

    .footer-shell {
        width: min(calc(100% - 24px), var(--container));
        padding-top: 30px;
    }

    .footer-callout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 26px;
        text-align: center;
    }

    .footer-brand-mark {
        display: grid;
        justify-items: center;
    }

    .footer-brand-mark > span,
    .footer-pitch h2,
    .footer-pitch p {
        margin-inline: auto;
    }

    .footer-pitch h2 {
        font-size: 1.25rem;
    }

    .footer-primary-action {
        grid-column: auto;
        width: 100%;
    }

    .footer-directory {
        gap: 16px;
        padding: 19px 0;
    }

    .footer-navigation {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 8px;
        padding: 0;
        border: 0;
    }

    .footer-navigation a {
        min-height: 42px;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 9px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-socials a {
        width: 40px;
        min-height: 40px;
        justify-content: center;
        padding: 0;
    }

    .footer-socials span {
        display: none;
    }

    .footer-bottom {
        min-height: 106px;
        flex-direction: column-reverse;
        justify-content: center;
        padding: 18px 0;
        text-align: center;
    }

    .footer-contact-meta {
        justify-content: center;
    }

    .development-page {
        width: min(calc(100% - 20px), var(--container));
        padding-top: 10px;
    }

    .development-topbar {
        min-height: 62px;
        padding: 7px 9px;
        border-radius: 12px;
    }

    .development-brand img {
        width: 105px;
        height: 43px;
    }

    .development-copy {
        min-height: 520px;
        padding: 30px 21px;
        border-radius: 15px;
        text-align: center;
    }

    .development-status,
    .development-code {
        margin-inline: auto;
    }

    .development-copy h1 {
        font-size: clamp(2.1rem, 11vw, 3.25rem);
    }

    .development-copy .development-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .development-signals {
        justify-content: center;
    }

    .development-blueprint {
        padding: 17px;
        border-radius: 15px;
    }

    .development-footer {
        align-items: center;
        flex-direction: column;
        padding: 18px 0;
        text-align: center;
    }
}

/* Careers and administrator-created pages. */
.careers-page-hero {
    display: grid;
    width: min(1320px, calc(100% - 48px));
    min-height: 530px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
    align-items: center;
    gap: clamp(30px, 6vw, 90px);
    margin: 28px auto 0;
    padding: clamp(38px, 6vw, 86px);
    border-radius: 8px;
    background: var(--career-page-bg);
    color: #fff;
}

.careers-page-hero-copy > span {
    color: var(--career-page-accent);
    font-size: 0.72rem;
    font-weight: 900;
}

.careers-page-hero h1 {
    max-width: 780px;
    margin: 18px 0;
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.15;
}

.careers-page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(0.84rem, 1.3vw, 1.05rem);
    line-height: 2;
}

.careers-page-hero-copy > a {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    gap: 26px;
    margin-top: 28px;
    padding: 0 22px;
    border-radius: 7px;
    background: var(--career-page-accent);
    color: #102331;
    font-size: 0.72rem;
    font-weight: 900;
}

.careers-page-values {
    display: grid;
    gap: 9px;
}

.careers-page-values span {
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 13px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.07);
}

.careers-page-values svg {
    width: 24px;
    color: var(--career-page-accent);
}

.careers-page-values strong {
    font-size: 0.76rem;
}

.careers-page-section {
    padding-top: clamp(60px, 8vw, 110px);
}

.careers-page-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    gap: 40px;
    align-items: end;
    margin-bottom: 32px;
}

.careers-page-heading span {
    color: var(--root-orange);
    font-size: 0.67rem;
    font-weight: 900;
}

.careers-page-heading h2 {
    max-width: 820px;
    margin: 10px 0 0;
    font-size: clamp(1.8rem, 3.5vw, 3.3rem);
    line-height: 1.3;
}

.careers-page-heading > p {
    margin: 0;
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.9;
}

.careers-empty {
    display: grid;
    min-height: 360px;
    place-items: center;
    align-content: center;
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    text-align: center;
}

.careers-empty > span svg {
    width: 42px;
    color: var(--root-orange);
}

.careers-empty h2 {
    margin: 18px 0 8px;
}

.careers-empty p {
    color: var(--muted);
}

.careers-empty a {
    color: var(--root-blue);
    font-weight: 800;
}

.custom-code-page {
    width: 100%;
    min-height: calc(100vh - 96px);
    background: var(--surface);
}

.custom-code-page iframe {
    display: block;
    width: 100%;
    min-height: calc(100vh - 96px);
    border: 0;
    background: #fff;
}

.custom-structured-page {
    width: min(1180px, calc(100% - 48px));
    margin: 28px auto 90px;
}

.custom-page-hero {
    position: relative;
    display: grid;
    overflow: hidden;
    min-height: 430px;
    align-items: end;
    padding: clamp(34px, 6vw, 78px);
    border-radius: 8px;
    background: var(--root-blue);
    color: #fff;
}

.custom-page-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
}

.custom-page-hero > div {
    position: relative;
    z-index: 1;
}

.custom-page-hero span {
    color: var(--root-orange);
    font-size: 0.68rem;
    font-weight: 900;
}

.custom-page-hero h1 {
    max-width: 900px;
    margin: 16px 0;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1.18;
}

.custom-page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.9;
}

.custom-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(42px, 7vw, 90px) 0;
    color: var(--ink);
    font-size: 0.82rem;
    line-height: 2.1;
}

.custom-page-content p {
    margin: 0 0 1.4em;
}

@media (max-width: 900px) {
    .careers-page-hero,
    .careers-page-heading {
        grid-template-columns: 1fr;
    }

    .careers-page-hero {
        min-height: 0;
    }

    .careers-page-values {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .careers-page-values span {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .careers-page-hero,
    .custom-structured-page {
        width: calc(100% - 20px);
        margin-top: 10px;
    }

    .careers-page-hero {
        gap: 34px;
        padding: 32px 22px;
    }

    .careers-page-hero h1 {
        font-size: 2.55rem;
    }

    .careers-page-values {
        grid-template-columns: 1fr;
    }

    .careers-page-values span {
        min-height: 60px;
        align-items: center;
        flex-direction: row;
    }

    .careers-page-heading {
        gap: 15px;
        text-align: start;
    }

    .custom-page-hero {
        min-height: 390px;
        padding: 26px 20px;
    }

    .custom-page-hero h1 {
        font-size: 2.35rem;
    }

    .custom-page-content {
        padding-inline: 10px;
    }
}

@media (max-width: 390px) {
    .language-link {
        padding-inline: 7px;
    }

    .solutions-panel-head small {
        display: none;
    }

    .card-icon {
        width: 42px;
        height: 42px;
    }

    .solution-copy h3 {
        font-size: 0.96rem;
    }

    .solution-body > p {
        font-size: 0.66rem;
    }

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Homepage 2026 */
body {
    background-image: none;
    letter-spacing: 0;
}

.page-aura {
    background: var(--root-blue);
}

.page-aura::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 28%;
    background: var(--root-orange);
    content: "";
}

[dir="rtl"] .page-aura::before {
    inset: 0 0 0 auto;
}

.site-header {
    box-shadow: none;
}

.site-header :is(a, button),
.site-footer :is(a, button) {
    letter-spacing: 0;
}

.home-hero {
    position: relative;
    width: min(calc(100% - 32px), 1320px);
    min-height: 680px;
    overflow: hidden;
    margin: 22px auto 0;
    border-radius: 8px;
    background: var(--home-hero-bg, var(--root-blue-deep));
    color: #fff;
    isolation: isolate;
}

.home-hero::before,
.home-hero::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.home-hero::before {
    inset: 0;
    z-index: -1;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
    background-size: 72px 72px;
}

.home-hero::after {
    display: none;
}

.home-hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.home-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.has-home-image .home-hero-media::after {
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--home-hero-bg) 86%, transparent);
    content: "";
}

.home-hero-inner {
    display: grid;
    min-height: 680px;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    align-items: center;
    gap: 48px;
    padding: 74px 72px;
}

.has-home-image .home-hero-inner {
    grid-template-columns: minmax(0, 760px);
}

.home-hero-copy {
    position: relative;
    z-index: 3;
}

.home-hero-kicker,
.home-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--home-hero-accent, var(--root-orange));
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
}

.home-hero-kicker i {
    width: 28px;
    height: 2px;
    background: currentColor;
}

.home-hero h1 {
    max-width: 760px;
    margin: 18px 0 20px;
    color: #fff;
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.28;
    letter-spacing: 0;
}

.home-hero-copy > p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 2;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.home-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 900;
    transition: transform 0.2s ease, background 0.2s ease;
}

.home-button i,
.home-text-link i,
.golden-guarantee > a i {
    font-style: normal;
}

.home-button.is-primary {
    border-color: var(--home-hero-accent, var(--root-orange));
    background: var(--home-hero-accent, var(--root-orange));
    color: #102331;
}

.home-button.is-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

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

.home-hero-proofs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.home-hero-proofs li {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.63rem;
    font-weight: 700;
}

.home-hero-proofs svg {
    width: 16px;
    color: var(--home-hero-accent, var(--root-orange));
}

.home-hero-scene {
    position: relative;
    min-height: 480px;
    transform-style: preserve-3d;
    transition: transform 0.24s ease-out;
}

.scene-grid {
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.scene-core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    display: grid;
    width: 168px;
    height: 168px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    background: #fff;
    color: var(--home-hero-bg, var(--root-blue-deep));
    text-align: center;
    transform: translate(-50%, -50%);
    animation: scene-breathe 4s ease-in-out infinite;
}

.scene-core span {
    font-size: 2.25rem;
    font-weight: 900;
}

.scene-core small {
    color: #5f7080;
    font-size: 0.58rem;
    font-weight: 800;
}

.scene-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-one {
    width: 300px;
    height: 300px;
}

.orbit-two {
    width: 430px;
    height: 430px;
    border-style: dashed;
    animation: scene-spin 32s linear infinite;
}

.scene-node {
    position: absolute;
    z-index: 5;
    display: flex;
    min-width: 112px;
    min-height: 52px;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 8px;
    background: color-mix(in srgb, var(--home-hero-bg) 75%, #ffffff 25%);
    color: #fff;
}

.scene-node svg {
    width: 19px;
    color: var(--home-hero-accent, var(--root-orange));
}

.scene-node b {
    font-size: 0.64rem;
}

.node-systems { inset: 7% auto auto 2%; }
.node-ai { inset: 9% 1% auto auto; }
.node-growth { inset: auto 4% 7% auto; }
.node-content { inset: auto auto 9% 3%; }

.home-signal-bar {
    display: grid;
    width: min(calc(100% - 32px), 1180px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 18px auto 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.home-signal-bar > div {
    display: grid;
    min-width: 0;
    gap: 4px;
    padding: 18px 20px;
    border-inline-end: 1px solid var(--line);
}

.home-signal-bar > div:last-child {
    border-inline-end: 0;
}

.home-signal-bar strong {
    color: var(--root-blue);
    font-size: 0.76rem;
    font-weight: 900;
}

.home-signal-bar span {
    overflow: hidden;
    color: var(--muted);
    font-size: 0.59rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-section {
    width: min(calc(100% - 32px), 1180px);
    margin: 0 auto;
    padding: 92px 0 10px;
}

.home-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 32px;
}

.home-section-heading > div {
    max-width: 770px;
}

.home-section-kicker {
    color: var(--root-orange);
}

.home-section-heading h2,
.home-about h2,
.faq-heading h2,
.home-contact h2 {
    margin: 10px 0 8px;
    color: var(--ink);
    font-size: 2.35rem;
    font-weight: 900;
    line-height: 1.45;
    letter-spacing: 0;
}

.home-section-heading p,
.home-about-copy > p,
.faq-heading > p,
.home-contact-copy > p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.9;
}

.home-text-link {
    display: inline-flex;
    min-width: max-content;
    min-height: 44px;
    align-items: center;
    gap: 16px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--root-blue);
    font-size: 0.68rem;
    font-weight: 900;
}

.home-text-link:hover {
    border-color: var(--root-blue);
}

.home-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.home-solutions-grid .solution-card {
    border-radius: 8px;
}

.home-solutions-grid .solution-card > a {
    min-height: 314px;
}

.home-solutions-grid .solution-visual {
    min-height: 154px;
}

.golden-guarantee {
    display: grid;
    width: min(calc(100% - 32px), 1180px);
    min-height: 220px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    margin: 92px auto 0;
    padding: 36px 42px;
    border-radius: 8px;
    background: var(--root-orange);
    color: #102331;
}

.guarantee-icon {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border: 1px solid rgba(16, 35, 49, 0.24);
    border-radius: 50%;
}

.guarantee-icon svg {
    width: 36px;
    height: 36px;
}

.golden-guarantee span {
    font-size: 0.62rem;
    font-weight: 900;
}

.golden-guarantee h2 {
    margin: 7px 0 4px;
    font-size: 2rem;
    font-weight: 900;
}

.golden-guarantee p {
    max-width: 700px;
    margin: 0;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.9;
}

.golden-guarantee > a {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    gap: 18px;
    padding: 0 18px;
    border: 1px solid rgba(16, 35, 49, 0.3);
    border-radius: 8px;
    background: #fff;
    color: #102331;
    font-size: 0.68rem;
    font-weight: 900;
}

.home-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.home-feature {
    position: relative;
    min-height: 280px;
    padding: 26px 22px;
    border-inline-end: 1px solid var(--line);
}

.home-feature:last-child {
    border-inline-end: 0;
}

.home-feature > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 8px;
    background: color-mix(in srgb, var(--accent) 10%, var(--surface));
    color: var(--accent);
}

.home-feature > span svg {
    width: 22px;
}

.home-feature > small {
    position: absolute;
    inset: 28px 22px auto auto;
    color: var(--muted);
    font-size: 0.58rem;
    font-weight: 900;
}

[dir="ltr"] .home-feature > small {
    inset: 28px auto auto 22px;
}

.home-feature h3 {
    margin: 54px 0 8px;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.65;
}

.home-feature p {
    margin: 0;
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.9;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.comparison-board {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.comparison-board > header {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 24px 28px;
    border-bottom: 1px solid var(--line);
}

.comparison-board > header > span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 8px;
    background: var(--root-blue-soft);
    color: var(--root-blue);
}

.comparison-board > header svg {
    width: 21px;
}

.comparison-board > header small {
    color: var(--root-orange);
    font-size: 0.52rem;
    font-weight: 900;
}

.comparison-board h3 {
    margin: 2px 0 0;
    font-size: 1.15rem;
}

.comparison-labels {
    display: grid;
    grid-template-columns: minmax(150px, 0.52fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    padding: 14px 28px;
    background: var(--surface-soft);
    font-size: 0.62rem;
    font-weight: 900;
}

.comparison-labels strong {
    color: var(--success);
}

.comparison-labels span:first-child {
    color: var(--muted);
}

.comparison-labels span:last-child {
    color: #8a6870;
}

.comparison-row {
    display: grid;
    grid-template-columns: minmax(150px, 0.52fr) minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 18px;
    padding: 20px 28px;
    border-top: 1px solid var(--line);
}

.comparison-row h4 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    padding-top: 5px;
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1.75;
}

.comparison-row h4 small {
    color: var(--root-orange);
    font-size: 0.5rem;
    line-height: 2.6;
}

.comparison-value {
    min-width: 0;
    padding: 13px 14px;
    border: 1px solid transparent;
    border-radius: 7px;
}

.comparison-value > small {
    display: none;
}

.comparison-value p {
    display: flex;
    gap: 7px;
    margin: 0;
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.95;
}

.comparison-value.is-root {
    border-color: color-mix(in srgb, var(--success) 18%, var(--line));
    background: color-mix(in srgb, var(--success) 6%, var(--surface));
}

.comparison-value.is-other {
    border-color: color-mix(in srgb, #b56b79 13%, var(--line));
    background: color-mix(in srgb, #b56b79 4%, var(--surface));
}

.comparison-value p svg {
    width: 16px;
    min-width: 16px;
    margin-top: 2px;
    color: var(--success);
}

.comparison-value.is-other i {
    display: grid;
    width: 16px;
    min-width: 16px;
    height: 16px;
    place-items: center;
    margin-top: 2px;
    border-radius: 50%;
    background: color-mix(in srgb, #b56b79 12%, transparent);
    color: #a64e60;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 800;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-step {
    min-height: 270px;
    padding: 23px 20px;
    border-top: 3px solid var(--accent);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.process-step > span {
    color: var(--muted);
    font-size: 0.58rem;
    font-weight: 900;
}

.process-step > i {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-top: 30px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--accent) 10%, var(--surface));
    color: var(--accent);
}

.process-step svg {
    width: 21px;
}

.process-step h3 {
    margin: 18px 0 7px;
    font-size: 0.9rem;
    font-weight: 900;
}

.process-step p {
    margin: 0;
    color: var(--muted);
    font-size: 0.64rem;
    line-height: 1.9;
}

.home-about {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 46px;
    align-items: start;
    padding: clamp(26px, 4vw, 48px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.home-about-copy {
    position: sticky;
    top: 120px;
}

.home-about-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.home-about-points article {
    display: block;
    min-height: 210px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--surface-soft);
}

.home-about-points small {
    color: var(--root-orange);
    font-size: 0.58rem;
    font-weight: 900;
}

.home-about-points h3 {
    margin: 26px 0 8px;
    font-size: 0.82rem;
    line-height: 1.7;
}

.home-about-points p {
    margin: 0;
    color: var(--muted);
    font-size: 0.66rem;
    line-height: 1.9;
}

.home-about .home-text-link {
    margin-top: 24px;
}

.home-partner-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.home-partner-track a {
    display: grid;
    min-height: 118px;
    place-items: center;
    padding: 20px;
    border-inline-end: 1px solid var(--line);
}

.home-partner-track a:last-child {
    border-inline-end: 0;
}

.home-partner-track img {
    max-width: 130px;
    max-height: 58px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: filter 0.2s ease, opacity 0.2s ease;
}

.home-partner-track a:hover img {
    filter: none;
    opacity: 1;
}

.home-partner-track strong {
    color: var(--muted);
    font-size: 0.72rem;
}

.home-faq {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    gap: 70px;
    align-items: start;
}

.faq-heading {
    position: sticky;
    top: 120px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    display: grid;
    min-height: 80px;
    grid-template-columns: 38px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary > span {
    color: var(--root-orange);
    font-size: 0.55rem;
    font-weight: 900;
}

.faq-item summary > strong {
    font-size: 0.8rem;
    line-height: 1.7;
}

.faq-item summary > i {
    position: relative;
    width: 28px;
    height: 28px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.faq-item summary > i::before,
.faq-item summary > i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    background: var(--ink);
    content: "";
    transform: translate(-50%, -50%);
}

.faq-item summary > i::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.2s ease;
}

.faq-item[open] summary > i::after {
    transform: translate(-50%, -50%);
}

.faq-item > p {
    margin: -3px 50px 22px 38px;
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.95;
}

[dir="ltr"] .faq-item > p {
    margin-right: 38px;
    margin-left: 50px;
}

.home-contact-zone {
    width: min(calc(100% - 32px), 1180px);
    margin: 96px auto 88px;
}

.home-contact {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 24px 60px rgba(8, 47, 77, 0.08);
    color: var(--ink);
}

.home-contact-copy {
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 4vw, 48px);
    border-radius: 6px;
    background: var(--root-blue-deep);
    color: #fff;
}

.home-contact-copy > span {
    color: var(--root-orange);
    font-size: 0.6rem;
    font-weight: 900;
}

.home-contact h2 {
    max-width: 560px;
    margin: 10px 0 12px;
    color: #fff;
    font-size: clamp(1.7rem, 3.4vw, 2.55rem);
    line-height: 1.45;
}

.home-contact-copy > p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    line-height: 1.95;
}

.home-contact-direct {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 28px;
}

.home-contact-direct a {
    display: flex;
    min-width: 0;
    min-height: 62px;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 7px;
    padding: 9px 12px;
    color: #fff;
}

.home-contact-direct a > i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
}

.home-contact-direct svg {
    width: 18px;
}

.home-contact-direct a > span {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.home-contact-direct small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.53rem;
}

.home-contact-direct strong {
    max-width: 100%;
    overflow: hidden;
    font-size: 0.72rem;
    text-overflow: ellipsis;
}

.home-contact-form {
    min-width: 0;
    padding: clamp(26px, 4vw, 44px);
}

.home-contact-form > header span {
    color: var(--root-orange);
    font-size: 0.56rem;
    font-weight: 900;
}

.home-contact-form > header h3 {
    margin: 6px 0 5px;
    color: var(--ink);
    font-size: 1.22rem;
    line-height: 1.55;
}

.home-contact-form > header p {
    margin: 0;
    color: var(--muted);
    font-size: 0.64rem;
    line-height: 1.8;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin-top: 24px;
}

.contact-form-grid label {
    display: grid;
    min-width: 0;
    gap: 7px;
}

.contact-form-grid label > span {
    color: var(--ink);
    font-size: 0.58rem;
    font-weight: 800;
}

.contact-form-grid :is(input, select, textarea) {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 7px;
    outline: 0;
    background: var(--surface-soft);
    color: var(--ink);
    font: inherit;
    font-size: 0.68rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form-grid :is(input, select) {
    min-height: 50px;
    padding: 0 13px;
}

.contact-form-grid textarea {
    min-height: 120px;
    resize: vertical;
    padding: 12px 13px;
    line-height: 1.8;
}

.contact-form-grid :is(input, select, textarea):focus {
    border-color: var(--root-blue);
    background: var(--surface);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--root-blue) 11%, transparent);
}

.contact-form-message {
    grid-column: 1 / -1;
}

.contact-form-submit {
    display: flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
    border: 0;
    border-radius: 7px;
    padding: 0 18px;
    background: var(--root-blue);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 0.7rem;
    font-weight: 900;
}

.contact-form-submit i {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: var(--root-orange);
    color: #102331;
    font-style: normal;
}

.contact-form-note {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.52rem;
    line-height: 1.7;
}

.site-footer::before {
    background: var(--footer-accent);
}

.footer-shell {
    padding-top: 36px;
}

.footer-callout {
    padding-bottom: 28px;
}

html[data-theme="dark"] .home-hero {
    border: 1px solid #1c465d;
}

html[data-theme="dark"] .brand.uses-shared-logo {
    padding: 3px 7px;
    border-radius: 8px;
    background: #fff;
}

html[data-theme="dark"] .home-partner-track img {
    padding: 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.86);
}

@keyframes scene-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes scene-breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.035); }
}

@media (max-width: 1080px) {
    .home-hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
        gap: 24px;
        padding: 62px 46px;
    }

    .home-hero h1 {
        font-size: 3.35rem;
    }

    .home-hero-scene {
        min-height: 420px;
    }

    .orbit-two {
        width: 370px;
        height: 370px;
    }

    .home-feature-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-feature:nth-child(2) {
        border-inline-end: 0;
    }

    .home-feature:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 820px) {
    .home-hero {
        min-height: auto;
        margin-top: 12px;
    }

    .home-hero-inner,
    .has-home-image .home-hero-inner {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 56px 34px;
    }

    .home-hero-copy {
        text-align: center;
    }

    .home-hero-kicker,
    .home-hero-actions,
    .home-hero-proofs {
        justify-content: center;
    }

    .home-hero h1,
    .home-hero-copy > p {
        margin-inline: auto;
    }

    .home-hero-scene {
        width: min(100%, 480px);
        min-height: 430px;
        margin: 0 auto;
    }

    .home-signal-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-signal-bar > div:nth-child(2) {
        border-inline-end: 0;
    }

    .home-signal-bar > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .home-solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .golden-guarantee {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .golden-guarantee > a {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .comparison-grid,
    .home-about,
    .home-faq,
    .home-contact {
        grid-template-columns: 1fr;
    }

    .home-about,
    .home-faq,
    .home-contact {
        gap: 34px;
    }

    .home-contact {
        gap: 0;
    }

    .home-about-copy,
    .faq-heading {
        position: static;
    }

    .home-partner-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-hero,
    .home-signal-bar,
    .home-section,
    .golden-guarantee,
    .home-contact-zone {
        width: min(calc(100% - 20px), 1180px);
    }

    .home-hero {
        min-height: 640px;
        border-radius: 8px;
    }

    .home-hero::before {
        background-size: 54px 54px;
    }

    .home-hero-inner,
    .has-home-image .home-hero-inner {
        min-height: 640px;
        padding: 44px 20px 36px;
    }

    .home-hero-kicker {
        font-size: 0.64rem;
    }

    .home-hero h1 {
        margin-top: 15px;
        font-size: 2.35rem;
        line-height: 1.42;
    }

    .home-hero-copy > p {
        font-size: 0.76rem;
        line-height: 1.95;
    }

    .home-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .home-button {
        width: 100%;
    }

    .home-hero-proofs {
        display: grid;
        justify-items: start;
        max-width: 310px;
        margin: 25px auto 0;
        text-align: start;
    }

    .home-hero-scene {
        min-height: 320px;
        margin-top: 8px;
    }

    .scene-core {
        width: 118px;
        height: 118px;
    }

    .scene-core span {
        font-size: 1.6rem;
    }

    .orbit-one { width: 210px; height: 210px; }
    .orbit-two { width: 290px; height: 290px; }

    .scene-node {
        min-width: 88px;
        min-height: 43px;
        padding: 7px 9px;
    }

    .scene-node b {
        font-size: 0.52rem;
    }

    .scene-node svg {
        width: 16px;
    }

    .home-signal-bar > div {
        padding: 14px 12px;
    }

    .home-signal-bar span {
        font-size: 0.52rem;
    }

    .home-section {
        padding-top: 66px;
    }

    .home-section-heading {
        display: block;
        margin-bottom: 24px;
        text-align: center;
    }

    .home-section-heading h2,
    .home-about h2,
    .faq-heading h2,
    .home-contact h2 {
        font-size: 1.72rem;
        line-height: 1.5;
    }

    .home-section-heading p,
    .home-about-copy > p,
    .faq-heading > p,
    .home-contact-copy > p {
        font-size: 0.7rem;
    }

    .home-section-heading .home-text-link {
        margin-top: 17px;
    }

    .home-solutions-grid,
    .home-feature-grid,
    .process-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .home-solutions-grid .solution-card > a {
        min-height: 290px;
    }

    .home-feature-grid {
        border: 0;
        gap: 8px;
        background: transparent;
    }

    .home-feature,
    .home-feature:nth-child(2),
    .home-feature:nth-child(-n + 2) {
        min-height: 220px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--surface);
    }

    .home-feature h3 {
        margin-top: 32px;
    }

    .golden-guarantee {
        display: block;
        margin-top: 66px;
        padding: 28px 22px;
        text-align: center;
    }

    .guarantee-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 16px;
    }

    .golden-guarantee h2 {
        font-size: 1.55rem;
    }

    .golden-guarantee > a {
        justify-content: center;
        margin-top: 20px;
    }

    .comparison-labels {
        display: none;
    }

    .comparison-board > header {
        padding: 18px;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px;
    }

    .comparison-row h4 {
        padding: 0 2px 8px;
        border-bottom: 1px solid var(--line);
        font-size: 0.78rem;
    }

    .comparison-value {
        padding: 12px;
    }

    .comparison-value > small {
        display: block;
        margin-bottom: 7px;
        color: var(--muted);
        font-size: 0.53rem;
        font-weight: 900;
    }

    .comparison-value.is-root > small {
        color: var(--success);
    }

    .comparison-value.is-other > small {
        color: #a64e60;
    }

    .comparison-value p {
        font-size: 0.65rem;
        line-height: 1.9;
    }

    .process-step {
        min-height: 230px;
    }

    .home-about,
    .home-faq {
        text-align: center;
    }

    .home-about .home-text-link {
        justify-content: center;
    }

    .home-about-points article {
        min-height: 0;
        padding: 19px;
        text-align: start;
    }

    .home-about-points {
        grid-template-columns: 1fr;
    }

    .home-about-points h3 {
        margin-top: 15px;
    }

    .home-partner-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-partner-track a {
        min-height: 96px;
        border-bottom: 1px solid var(--line);
    }

    .faq-item summary {
        min-height: 72px;
        grid-template-columns: 28px minmax(0, 1fr) 26px;
        text-align: start;
    }

    .faq-item summary > strong {
        font-size: 0.7rem;
    }

    .faq-item > p,
    [dir="ltr"] .faq-item > p {
        margin: 0 38px 20px;
        text-align: start;
    }

    .home-contact-zone {
        margin-top: 66px;
        margin-bottom: 72px;
    }

    .home-contact {
        min-height: auto;
        padding: 7px;
        text-align: center;
    }

    .home-contact-copy {
        min-height: 0;
        padding: 30px 20px;
    }

    .home-contact-direct {
        margin-top: 22px;
        text-align: start;
    }

    .home-contact-form {
        padding: 27px 14px 20px;
        text-align: start;
    }

    .home-contact-form > header {
        text-align: center;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-form-message {
        grid-column: auto;
    }

    .contact-form-submit {
        min-height: 56px;
    }

    .footer-shell {
        width: min(calc(100% - 28px), var(--container));
        padding-top: 30px;
    }

    .footer-callout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: center;
    }

    .footer-brand-mark {
        justify-items: center;
    }

    .footer-pitch h2,
    .footer-pitch p {
        margin-inline: auto;
    }

    .footer-navigation {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .footer-navigation a {
        min-height: 42px;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
    }
}

/* Privacy-aware tracking consent */
.tracking-consent {
    position: fixed;
    z-index: 120;
    inset: auto 20px 20px;
    display: flex;
    width: min(calc(100% - 40px), 980px);
    margin-inline: auto;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px;
    border: 1px solid color-mix(in srgb, var(--root-blue) 34%, var(--line));
    border-radius: 8px;
    background: color-mix(in srgb, var(--surface) 95%, transparent);
    box-shadow: 0 18px 60px rgba(4, 32, 52, 0.2);
    backdrop-filter: blur(16px);
}

.tracking-consent[hidden] {
    display: none;
}

.tracking-consent-copy {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 13px;
}

.tracking-consent-copy > span {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    place-items: center;
    border-radius: 8px;
    background: var(--root-blue-soft);
    color: var(--root-blue);
}

.tracking-consent-copy strong,
.tracking-consent-copy p {
    display: block;
    margin: 0;
}

.tracking-consent-copy strong {
    font-size: 0.83rem;
}

.tracking-consent-copy p {
    max-width: 590px;
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.65rem;
    line-height: 1.8;
}

.tracking-consent-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
}

.tracking-consent-actions button,
.tracking-consent-actions a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 7px;
    font-size: 0.63rem;
    font-weight: 800;
}

.tracking-consent-actions button {
    border: 1px solid var(--line);
    cursor: pointer;
}

.tracking-consent-accept {
    border-color: var(--root-blue) !important;
    background: var(--root-blue);
    color: #fff;
}

.tracking-consent-reject {
    background: var(--surface-soft);
    color: var(--ink);
}

.tracking-consent-actions a {
    color: var(--root-blue);
}

@media (max-width: 760px) {
    .tracking-consent {
        inset: auto 10px 10px;
        width: calc(100% - 20px);
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        padding: 15px;
    }

    .tracking-consent-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .tracking-consent-actions a {
        grid-column: 1 / -1;
    }
}

@media (max-width: 420px) {
    .tracking-consent-actions {
        grid-template-columns: 1fr;
    }

    .tracking-consent-actions a {
        grid-column: auto;
    }
}

/* Homepage modules: ordered, editable, and mobile-first. */
.home-sections {
    display: flex;
    flex-direction: column;
}

.home-sections > section {
    order: var(--home-order, 500);
}

.scene-core {
    padding: 26px;
}

.scene-core img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.process-step > i {
    margin-top: 0;
}

.home-about-points h3 {
    margin-top: 0;
}

.faq-item summary {
    grid-template-columns: minmax(0, 1fr) 28px;
}

.faq-item > p,
[dir="ltr"] .faq-item > p {
    margin-inline: 0 40px;
}

.partner-sprite {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 90px;
    background-image: var(--sprite-image);
    background-repeat: no-repeat;
    background-position: var(--sprite-x) var(--sprite-y);
    background-size: 500% 400%;
}

.home-partner-track {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    border: 0;
    background: transparent;
}

.home-partner-track a {
    min-height: 132px;
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.home-partner-track a:hover {
    border-color: color-mix(in srgb, var(--root-blue) 45%, var(--line));
    transform: translateY(-2px);
}

.partners-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.partner-card {
    min-height: 150px;
    overflow: hidden;
    padding: 0;
    border-radius: 8px;
    box-shadow: none;
}

.partner-card .partner-sprite {
    min-height: 148px;
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.home-gallery-item {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    border-radius: 8px;
    background: var(--surface-soft);
}

.home-gallery-item > a {
    display: block;
    height: 100%;
}

.home-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.home-gallery-item:hover img {
    transform: scale(1.025);
}

.home-gallery-item > div,
.home-gallery-item > a > div {
    position: absolute;
    inset: auto 12px 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 7px;
    background: rgba(3, 29, 48, 0.78);
    color: #fff;
    backdrop-filter: blur(10px);
}

.home-gallery-item h3 {
    margin: 0;
    font-size: 0.78rem;
}

.home-gallery-item p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.61rem;
    line-height: 1.7;
}

.careers-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 12px;
    align-items: start;
}

.career-openings {
    display: grid;
    gap: 10px;
}

.career-card,
.career-application-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.career-card {
    padding: clamp(20px, 3vw, 30px);
    border-block-start: 3px solid var(--career-accent);
}

.career-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.career-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 0.58rem;
    font-weight: 700;
}

.career-card-meta svg {
    width: 16px;
    color: var(--career-accent);
}

.career-card h3 {
    margin: 18px 0 8px;
    font-size: 1.15rem;
}

.career-card > p,
.career-details > p {
    margin: 0;
    color: var(--muted);
    font-size: 0.67rem;
    line-height: 1.95;
}

.career-card details {
    margin-top: 18px;
    border-block: 1px solid var(--line);
}

.career-card summary {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 0.66rem;
    font-weight: 800;
    list-style: none;
}

.career-card summary::-webkit-details-marker {
    display: none;
}

.career-card summary i::before {
    content: "+";
    font-size: 1rem;
    font-style: normal;
}

.career-card details[open] summary i::before {
    content: "-";
}

.career-details {
    display: grid;
    gap: 20px;
    padding: 0 0 20px;
}

.career-details h4 {
    margin: 0 0 8px;
    font-size: 0.67rem;
}

.career-line-list {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.career-line-list li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: var(--muted);
    font-size: 0.61rem;
    line-height: 1.7;
}

.career-line-list svg {
    width: 15px;
    flex: 0 0 auto;
    color: var(--career-accent);
}

.career-apply-button,
.career-submit {
    display: flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding: 0 16px;
    border: 0;
    border-radius: 7px;
    background: var(--career-accent, var(--root-orange));
    color: #102331;
    cursor: pointer;
    font: inherit;
    font-size: 0.68rem;
    font-weight: 900;
}

.career-application-form {
    position: sticky;
    top: 112px;
    padding: clamp(20px, 3vw, 30px);
}

.career-application-form > header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.career-application-form > header > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 7px;
    background: color-mix(in srgb, var(--root-orange) 14%, var(--surface));
    color: var(--root-orange);
}

.career-application-form > header svg {
    width: 20px;
}

.career-application-form h3 {
    margin: 0;
    font-size: 0.95rem;
}

.career-application-form header p,
.career-application-form > small {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.58rem;
    line-height: 1.7;
}

.career-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.career-form-grid label {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.career-form-grid label > span {
    color: var(--muted);
    font-size: 0.57rem;
    font-weight: 700;
}

.career-form-grid .is-wide {
    grid-column: 1 / -1;
}

.career-form-grid input,
.career-form-grid select,
.career-form-grid textarea {
    width: 100%;
    min-height: 45px;
    border: 1px solid var(--line);
    border-radius: 7px;
    outline: 0;
    background: var(--surface-soft);
    color: var(--ink);
    font: inherit;
    font-size: 0.65rem;
}

.career-form-grid input,
.career-form-grid select {
    padding: 0 12px;
}

.career-form-grid textarea {
    min-height: 92px;
    padding: 12px;
    resize: vertical;
}

.career-form-grid input:focus,
.career-form-grid select:focus,
.career-form-grid textarea:focus {
    border-color: var(--root-blue);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--root-blue) 10%, transparent);
}

.career-file {
    position: relative;
    min-height: 92px;
    align-content: center;
    padding: 14px;
    border: 1px dashed color-mix(in srgb, var(--root-blue) 48%, var(--line));
    border-radius: 8px;
    background: color-mix(in srgb, var(--root-blue) 4%, var(--surface));
    cursor: pointer;
    text-align: center;
}

.career-file input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.career-file strong {
    color: var(--root-blue);
    font-size: 0.66rem;
}

.career-file small {
    color: var(--muted);
    font-size: 0.54rem;
}

.career-submit {
    background: var(--root-blue);
    color: #fff;
}

.career-honeypot {
    position: absolute !important;
    inset-inline-start: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.career-alert {
    margin-bottom: 14px;
    padding: 12px 14px;
    border: 1px solid;
    border-radius: 7px;
    font-size: 0.66rem;
    font-weight: 700;
}

.career-alert.is-success {
    border-color: #8ed8ba;
    background: #eaf8f2;
    color: #12654a;
}

.career-alert.is-error {
    border-color: #efb2b2;
    background: #fff0f0;
    color: #9b2929;
}

.career-optional-fields {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: color-mix(in srgb, var(--root-blue) 3%, var(--surface));
}

.career-optional-fields summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 14px;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    font-size: 0.62rem;
    font-weight: 800;
}

.career-optional-fields summary::-webkit-details-marker {
    display: none;
}

.career-optional-fields summary i::before {
    content: "+";
    font-style: normal;
}

.career-optional-fields[open] summary i::before {
    content: "−";
}

.career-optional-fields > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0 14px 14px;
}

.career-thank-you {
    position: sticky;
    top: 104px;
    display: grid;
    align-content: center;
    justify-items: start;
    min-height: 420px;
    padding: clamp(26px, 5vw, 54px);
    overflow: hidden;
    border-radius: 8px;
    background: var(--root-blue);
    color: #fff;
}

.career-thank-you::after {
    position: absolute;
    inset-inline-end: -80px;
    bottom: -110px;
    width: 280px;
    height: 280px;
    border: 70px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
}

.career-thank-you > span {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    place-items: center;
    border-radius: 8px;
    background: var(--root-orange);
    color: #09243a;
}

.career-thank-you > span svg {
    width: 26px;
    height: 26px;
}

.career-thank-you small {
    color: var(--root-orange);
    font-size: 0.62rem;
    font-weight: 900;
}

.career-thank-you h3 {
    max-width: 560px;
    margin: 10px 0;
    font-size: clamp(1.45rem, 3.2vw, 2.4rem);
    line-height: 1.35;
}

.career-thank-you p {
    max-width: 600px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 2;
}

.career-thank-you a {
    z-index: 1;
    margin-top: 24px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 7px;
    color: #fff;
    text-decoration: none;
    font-size: 0.66rem;
    font-weight: 800;
}

.careers-layout.has-no-openings .careers-empty {
    min-height: 360px;
}

.home-consultation-cta {
    order: var(--home-order);
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(16px, 3vw, 34px);
    width: min(100% - 36px, 1460px);
    margin: 0 auto;
    padding: clamp(22px, 4vw, 42px);
    border-radius: 8px;
    background: var(--root-blue);
    color: #fff;
}

.home-consultation-cta > span {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 8px;
    background: var(--root-orange);
    color: #09243a;
}

.home-consultation-cta > span svg {
    width: 26px;
    height: 26px;
}

.home-consultation-cta small {
    color: var(--root-orange);
    font-size: 0.6rem;
    font-weight: 900;
}

.home-consultation-cta h2 {
    margin: 4px 0 7px;
    font-size: clamp(1.25rem, 2.5vw, 2rem);
}

.home-consultation-cta p {
    max-width: 800px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
}

.home-consultation-cta > a {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 7px;
    background: var(--root-orange);
    color: #09243a;
    text-decoration: none;
    white-space: nowrap;
}

.home-consultation-cta > a b {
    font-size: 0.67rem;
}

.consultation-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
    gap: 34px;
    width: min(100% - 36px, 1460px);
    margin: 24px auto 0;
    padding: clamp(34px, 7vw, 90px);
    border-radius: 8px;
    background: var(--consult-bg);
    color: #fff;
}

.consultation-hero-copy > span {
    color: var(--consult-accent);
    font-size: 0.68rem;
    font-weight: 900;
}

.consultation-hero h1 {
    max-width: 880px;
    margin: 16px 0;
    font-size: clamp(2rem, 5vw, 4.4rem);
    line-height: 1.22;
}

.consultation-hero-copy > p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(0.88rem, 1.7vw, 1.18rem);
    line-height: 2;
}

.consultation-hero-copy > a {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
    padding: 13px 18px;
    border-radius: 7px;
    background: var(--consult-accent);
    color: #09243a;
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 900;
}

.consultation-steps {
    display: grid;
    align-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.consultation-steps li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.consultation-steps b {
    color: var(--consult-accent);
    font-size: 0.62rem;
}

.consultation-steps span {
    font-size: 0.69rem;
    font-weight: 800;
}

.consultation-booking-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: 22px;
    width: min(100% - 36px, 1320px);
    margin: 22px auto clamp(70px, 8vw, 120px);
    scroll-margin-top: 110px;
}

.consultation-outcome,
.consultation-form,
.consultation-thank-you {
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.consultation-outcome > span,
.consultation-form header > span,
.consultation-thank-you > small {
    color: var(--root-orange);
    font-size: 0.62rem;
    font-weight: 900;
}

.consultation-outcome h2,
.consultation-form h2,
.consultation-thank-you h2 {
    margin: 9px 0 14px;
    color: var(--ink);
    font-size: clamp(1.35rem, 3vw, 2.2rem);
    line-height: 1.42;
}

.consultation-outcome ul {
    display: grid;
    gap: 10px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.consultation-outcome li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 9px;
    color: var(--ink);
    line-height: 1.8;
}

.consultation-outcome li svg {
    width: 19px;
    color: var(--root-orange);
}

.consultation-outcome > small,
.consultation-form header p,
.consultation-form > small,
.consultation-thank-you p {
    color: var(--muted);
    line-height: 1.9;
}

.consultation-form header p {
    margin: 0 0 22px;
}

.consultation-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.consultation-form-grid label {
    display: grid;
    gap: 7px;
}

.consultation-form-grid label > span {
    color: var(--muted);
    font-size: 0.58rem;
    font-weight: 800;
}

.consultation-form-grid .is-wide {
    grid-column: 1 / -1;
}

.consultation-form-grid input,
.consultation-form-grid select,
.consultation-form-grid textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 7px;
    outline: 0;
    background: color-mix(in srgb, var(--surface) 96%, var(--root-blue));
    color: var(--ink);
    font: inherit;
}

.consultation-form-grid input,
.consultation-form-grid select {
    min-height: 50px;
    padding: 0 13px;
}

.consultation-form-grid textarea {
    min-height: 130px;
    padding: 13px;
    resize: vertical;
}

.consultation-form-grid :is(input, select, textarea):focus {
    border-color: var(--root-blue);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--root-blue) 11%, transparent);
}

.consultation-form > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    margin-top: 16px;
    padding: 0 18px;
    border: 0;
    border-radius: 7px;
    background: var(--root-blue);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 0.68rem;
    font-weight: 900;
}

.consultation-form > small {
    display: block;
    margin-top: 10px;
    font-size: 0.54rem;
}

.consultation-thank-you {
    display: grid;
    align-content: center;
    min-height: 500px;
    background: var(--root-blue);
}

.consultation-thank-you > span {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 8px;
    background: var(--root-orange);
    color: #09243a;
}

.consultation-thank-you h2 {
    color: #fff;
}

.consultation-thank-you p {
    color: rgba(255, 255, 255, 0.72);
}

.consultation-thank-you a {
    width: fit-content;
    margin-top: 18px;
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 7px;
    color: #fff;
    text-decoration: none;
    font-size: 0.62rem;
    font-weight: 800;
}

html[data-theme="dark"] .home-partner-track a,
html[data-theme="dark"] .partner-card {
    background: #fff;
}

html[data-theme="dark"] .career-alert.is-success {
    background: #123e32;
    color: #c3f3df;
}

html[data-theme="dark"] .career-alert.is-error {
    background: #4a2025;
    color: #ffd4d7;
}

/* Knowledge and regional agent network */
.articles-hero,
.agents-hero {
    position: relative;
    width: min(100% - 48px, 1380px);
    min-height: 480px;
    overflow: hidden;
    margin: 24px auto 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background-color: var(--root-blue);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-position: center;
    background-size: 72px 72px;
    color: #fff;
    isolation: isolate;
}

.articles-hero::before,
.agents-hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 38%;
    border-inline-end: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(3, 32, 55, 0.16);
    content: "";
    transform: skewX(-8deg) translateX(8%);
    transform-origin: bottom;
    animation: network-panel-drift 9s ease-in-out infinite alternate;
}

[dir="ltr"] .articles-hero::before,
[dir="ltr"] .agents-hero::before {
    animation-name: network-panel-drift-ltr;
    transform: skewX(8deg) translateX(-8%);
}

.articles-hero-copy,
.agents-hero-copy {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 480px;
    flex-direction: column;
    justify-content: center;
    padding: clamp(44px, 6vw, 82px);
    color: #fff;
}

.articles-hero-copy > span,
.agents-hero-copy > span,
.articles-library > header > span,
.agents-application-copy > span {
    color: var(--root-orange);
    font-size: 0.62rem;
    font-weight: 900;
}

.articles-hero h1,
.agents-hero h1 {
    max-width: 920px;
    margin: 14px 0;
    color: #fff;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1.28;
    text-wrap: balance;
}

.articles-hero p,
.agents-hero p {
    max-width: 800px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(0.78rem, 1.25vw, 1rem);
    line-height: 1.95;
}

.articles-hero-meta {
    display: flex;
    width: min(100%, 900px);
    align-items: stretch;
    gap: 24px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.articles-hero-count {
    display: flex;
    min-width: 230px;
    align-items: center;
    gap: 13px;
}

.articles-hero-count strong {
    color: var(--root-orange);
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1;
}

.articles-hero-count span {
    max-width: 165px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.58rem;
    font-weight: 800;
    line-height: 1.65;
}

.articles-hero-meta ul {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.articles-hero-meta li,
.agents-hero-signals span {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.56rem;
    font-weight: 800;
    white-space: nowrap;
}

@keyframes network-panel-drift {
    from { transform: skewX(-8deg) translateX(8%); }
    to { transform: skewX(-8deg) translateX(14%); }
}

@keyframes network-panel-drift-ltr {
    from { transform: skewX(8deg) translateX(-8%); }
    to { transform: skewX(8deg) translateX(-14%); }
}

.articles-library {
    width: min(100% - 48px, 1460px);
    margin: 64px auto 110px;
}

.articles-library > header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.articles-library > header p {
    margin: 0;
    color: var(--muted);
    font-size: 0.68rem;
}

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

.article-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.article-card-visual {
    position: relative;
    display: grid;
    min-height: 190px;
    padding: 22px;
    align-content: space-between;
    overflow: hidden;
    background: var(--article-accent);
    color: #fff;
    text-decoration: none;
}

.article-card-visual::after {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 44px 44px;
    content: "";
}

.article-card-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card-visual > span,
.article-card-visual > small {
    position: relative;
    z-index: 1;
}

.article-card-visual > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.13);
}

.article-card-visual svg {
    width: 24px;
    height: 24px;
}

.article-card-visual small {
    direction: ltr;
    width: fit-content;
    margin-inline-start: auto;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.article-card-copy {
    display: grid;
    min-height: 310px;
    padding: 24px;
}

.article-card-copy > span {
    color: var(--article-accent);
    font-size: 0.56rem;
    font-weight: 900;
}

.article-card h2 {
    margin: 10px 0;
    font-size: 1.05rem;
    line-height: 1.65;
}

.article-card h2 a {
    color: var(--ink);
    text-decoration: none;
}

.article-card-copy > p {
    margin: 0;
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.95;
}

.article-card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-self: end;
    gap: 12px;
    margin-top: 22px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.article-card time {
    color: var(--muted);
    font-size: 0.55rem;
}

.article-card footer a {
    display: flex;
    gap: 10px;
    color: var(--root-blue);
    font-size: 0.62rem;
    font-weight: 900;
    text-decoration: none;
}

.article-detail {
    width: min(100% - 48px, 1320px);
    margin: 24px auto 110px;
}

.article-detail-hero {
    padding: clamp(38px, 7vw, 92px);
    border-radius: 8px;
    background: var(--root-blue);
    color: #fff;
}

.article-detail-hero nav,
.article-detail-hero > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.article-detail-hero nav a,
.article-detail-hero nav span,
.article-detail-hero > div {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.6rem;
    font-weight: 800;
    text-decoration: none;
}

.article-detail-hero h1 {
    max-width: 1040px;
    margin: 36px 0 20px;
    color: #fff;
    font-size: clamp(2rem, 5.5vw, 4.8rem);
    line-height: 1.25;
}

.article-detail-hero > p {
    max-width: 900px;
    margin-bottom: 44px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 2;
}

.article-detail-cover {
    aspect-ratio: 16 / 7;
    margin: 18px 0 0;
    overflow: hidden;
    border-radius: 8px;
}

.article-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-reading-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 760px);
    justify-content: center;
    gap: 54px;
    margin-top: 64px;
}

.article-reading-aside {
    position: sticky;
    top: 110px;
    display: grid;
    align-content: start;
    gap: 14px;
    height: fit-content;
    padding: 22px;
    border-inline-start: 3px solid var(--root-orange);
    background: color-mix(in srgb, var(--root-blue) 5%, var(--surface));
}

.article-reading-aside > span {
    color: var(--root-orange);
    font-size: 0.55rem;
    font-weight: 900;
}

.article-reading-aside strong {
    font-size: 0.8rem;
    line-height: 1.8;
}

.article-reading-aside a {
    color: var(--root-blue);
    font-size: 0.6rem;
    font-weight: 900;
    text-decoration: none;
}

.article-prose h2 {
    margin: 48px 0 14px;
    color: var(--ink);
    font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.article-prose h2:first-child {
    margin-top: 0;
}

.article-prose > p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 2.25;
}

.article-keywords {
    margin-top: 54px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.article-keywords > span {
    color: var(--muted);
    font-size: 0.58rem;
}

.article-keywords > div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.article-keywords b {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    font-size: 0.55rem;
}

.agents-hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 30px;
}

.agents-hero-actions > a {
    display: flex;
    width: min(100%, 265px);
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    padding: 14px 17px;
    border-radius: 7px;
    background: var(--root-orange);
    color: #08233a;
    font-size: 0.65rem;
    font-weight: 900;
    text-decoration: none;
}

.agents-hero-actions > a:hover {
    background: #ffab3d;
    transform: translateY(-2px);
}

.agents-hero-actions > strong {
    color: rgba(255, 255, 255, 0.5);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.agents-hero-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.articles-hero-copy.is-visible .articles-hero-meta,
.agents-hero-copy.is-visible .agents-hero-signals {
    animation: network-meta-rise 0.55s 0.18s both ease-out;
}

@keyframes network-meta-rise {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
}

.agents-value-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100% - 48px, 1460px);
    margin: 14px auto 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.agents-value-strip > span {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 72px;
    padding: 16px;
    border-inline-end: 1px solid var(--line);
    font-size: 0.62rem;
}

.agents-value-strip > span:last-child {
    border-inline-end: 0;
}

.agents-value-strip svg {
    width: 20px;
    color: var(--root-orange);
}

.agents-application-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 18px;
    width: min(100% - 48px, 1260px);
    margin: 72px auto 110px;
}

.agents-application-copy,
.agent-application-form,
.agents-thank-you {
    padding: clamp(24px, 4vw, 48px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.agents-application-copy h2,
.agent-application-form h2,
.agents-thank-you h2 {
    margin: 12px 0;
    color: var(--ink);
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    line-height: 1.45;
}

.agents-application-copy > p,
.agent-application-form header p,
.agents-thank-you p {
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 2;
}

.agents-application-copy ol {
    display: grid;
    gap: 0;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.agents-application-copy li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    font-size: 0.65rem;
    font-weight: 800;
}

.agents-application-copy li b {
    color: var(--root-orange);
}

.agent-application-form header > span,
.agents-thank-you > small {
    color: var(--root-orange);
    font-size: 0.58rem;
    font-weight: 900;
}

.agent-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin-top: 24px;
}

.agent-form-grid label {
    display: grid;
    gap: 7px;
}

.agent-form-grid .is-wide {
    grid-column: 1 / -1;
}

.agent-form-grid label > span {
    color: var(--ink);
    font-size: 0.57rem;
    font-weight: 800;
}

.agent-form-grid input,
.agent-form-grid textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 7px;
    outline: 0;
    background: color-mix(in srgb, var(--surface) 96%, var(--root-blue));
    color: var(--ink);
    font: inherit;
}

.agent-form-grid input {
    min-height: 50px;
}

.agent-form-grid textarea {
    resize: vertical;
}

.agent-form-grid :is(input, textarea):focus {
    border-color: var(--root-blue);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--root-blue) 10%, transparent);
}

.agent-application-form > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    margin-top: 16px;
    padding: 0 18px;
    border: 0;
    border-radius: 7px;
    background: var(--root-blue);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 0.66rem;
    font-weight: 900;
}

.agent-application-form > small {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.54rem;
}

.agents-thank-you {
    display: grid;
    align-content: center;
    min-height: 520px;
    background: var(--root-blue);
}

.agents-thank-you > span {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 8px;
    background: var(--root-orange);
    color: #09243a;
}

.agents-thank-you h2 {
    color: #fff;
}

.agents-thank-you p {
    color: rgba(255, 255, 255, 0.72);
}

.agents-thank-you a {
    width: fit-content;
    margin-top: 20px;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 900;
}

@media (max-width: 980px) {
    .articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-reading-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .article-reading-aside {
        position: static;
    }

    .agents-application-section {
        grid-template-columns: 1fr;
    }

    .agents-value-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .consultation-hero,
    .consultation-booking-section {
        grid-template-columns: 1fr;
    }

    .consultation-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .home-partner-track,
    .partners-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .careers-layout {
        grid-template-columns: 1fr;
    }

    .career-application-form {
        position: static;
    }
}

@media (max-width: 640px) {
    .articles-hero,
    .agents-hero,
    .articles-library,
    .article-detail,
    .agents-value-strip,
    .agents-application-section {
        width: min(100% - 24px, 1460px);
    }

    .articles-hero,
    .agents-hero {
        min-height: 0;
        margin-top: 12px;
        background-size: 52px 52px;
    }

    .articles-hero::before,
    .agents-hero::before {
        width: 58%;
        opacity: 0.7;
    }

    .articles-hero-copy,
    .agents-hero-copy {
        min-height: 0;
        padding: 42px 20px 28px;
    }

    .articles-hero h1,
    .agents-hero h1 {
        margin-block: 12px;
        font-size: clamp(2rem, 9vw, 2.75rem);
        line-height: 1.35;
    }

    .articles-hero p,
    .agents-hero p {
        font-size: 0.76rem;
        line-height: 1.9;
    }

    .articles-hero-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        margin-top: 28px;
        padding-top: 18px;
    }

    .articles-hero-count {
        min-width: 0;
    }

    .articles-hero-meta ul {
        width: 100%;
    }

    .articles-hero-meta li,
    .agents-hero-signals span {
        white-space: normal;
    }

    .agents-hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
    }

    .agents-hero-actions > a {
        width: 100%;
    }

    .agents-hero-actions > strong {
        white-space: normal;
    }

    .agents-hero-signals {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 22px;
    }

    .articles-library {
        margin-top: 40px;
    }

    .articles-library > header {
        align-items: start;
        flex-direction: column;
    }

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

    .article-card-visual {
        min-height: 160px;
    }

    .article-card-copy {
        min-height: 275px;
        padding: 20px;
    }

    .article-detail {
        margin-top: 12px;
    }

    .article-detail-hero {
        padding: 32px 20px;
    }

    .article-detail-hero h1 {
        margin-top: 28px;
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .article-detail-hero nav,
    .article-detail-hero > div {
        align-items: start;
        flex-direction: column;
    }

    .article-reading-layout {
        margin-top: 34px;
    }

    .article-prose > p {
        font-size: 0.76rem;
    }

    .agents-value-strip {
        grid-template-columns: 1fr;
    }

    .agents-value-strip > span {
        min-height: 58px;
        border-inline-end: 0;
        border-bottom: 1px solid var(--line);
    }

    .agents-value-strip > span:last-child {
        border-bottom: 0;
    }

    .agents-application-section {
        margin-top: 34px;
    }

    .agents-application-copy,
    .agent-application-form,
    .agents-thank-you {
        padding: 24px 17px;
    }

    .agent-form-grid {
        grid-template-columns: 1fr;
    }

    .agent-form-grid .is-wide {
        grid-column: auto;
    }
    .home-consultation-cta {
        grid-template-columns: 46px minmax(0, 1fr);
        width: min(100% - 24px, 1460px);
        padding: 20px 16px;
    }

    .home-consultation-cta > span {
        width: 46px;
        height: 46px;
    }

    .home-consultation-cta > a {
        grid-column: 1 / -1;
        justify-content: space-between;
        width: 100%;
    }

    .consultation-hero,
    .consultation-booking-section {
        width: min(100% - 24px, 1460px);
    }

    .consultation-hero {
        gap: 24px;
        margin-top: 12px;
        padding: 30px 20px;
    }

    .consultation-hero h1 {
        font-size: clamp(1.9rem, 10vw, 2.75rem);
    }

    .consultation-steps {
        grid-template-columns: 1fr;
    }

    .consultation-booking-section {
        margin-top: 12px;
    }

    .consultation-outcome,
    .consultation-form,
    .consultation-thank-you {
        padding: 22px 16px;
    }

    .consultation-form-grid {
        grid-template-columns: 1fr;
    }

    .consultation-form-grid .is-wide {
        grid-column: auto;
    }
    .scene-core {
        padding: 20px;
    }

    .home-partner-track,
    .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .home-partner-track a,
    .partner-card,
    .partner-card .partner-sprite {
        min-height: 104px;
    }

    .partner-sprite {
        min-height: 102px;
    }

    .home-gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .home-gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .home-gallery-item {
        width: min(82vw, 330px);
        min-width: min(82vw, 330px);
        min-height: 390px;
        scroll-snap-align: start;
    }

    .home-gallery-item img {
        min-height: 390px;
    }

    .career-form-grid {
        grid-template-columns: 1fr;
    }

    .career-form-grid .is-wide {
        grid-column: auto;
    }

    .career-optional-fields > div {
        grid-template-columns: 1fr;
    }

    .career-thank-you {
        position: static;
        min-height: 360px;
        padding: 26px 20px;
    }

    .career-card,
    .career-application-form {
        padding: 18px;
    }

    .career-application-form > header {
        text-align: start;
    }

    .faq-item summary {
        grid-template-columns: minmax(0, 1fr) 26px;
    }

    .faq-item > p,
    [dir="ltr"] .faq-item > p {
        margin-inline: 0 34px;
    }
}
