* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    background: var(--cream);
    color-scheme: light;
}

@media (forced-colors: active) {
html, body, body * {
    forced-color-adjust: none;
}

body {
    background: var(--cream);
    color: var(--espresso);
}

}

@font-face {
    font-family: "Source Serif Pro";
    src: url("assets/fonts/Source_Serif_Pro/SourceSerifPro-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Source Serif Pro";
    src: url("assets/fonts/Source_Serif_Pro/SourceSerifPro-Italic.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Source Serif Pro";
    src: url("assets/fonts/Source_Serif_Pro/SourceSerifPro-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Source Serif Pro";
    src: url("assets/fonts/Source_Serif_Pro/SourceSerifPro-SemiBoldItalic.woff2") format("woff2");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Source Serif Pro";
    src: url("assets/fonts/Source_Serif_Pro/SourceSerifPro-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Source Serif Pro";
    src: url("assets/fonts/Source_Serif_Pro/SourceSerifPro-BoldItalic.woff2") format("woff2");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Source Serif Pro Display";
    src: url("assets/fonts/Source_Serif_4/SourceSerif4-Variable.woff2") format("woff2");
    font-weight: 200 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Source Serif Pro Display";
    src: url("assets/fonts/Source_Serif_4/SourceSerif4-Italic-Variable.woff2") format("woff2");
    font-weight: 200 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Neue Haas Grotesk Text Pro";
    src: url("assets/fonts/Neue_Haas_Grotesk/NHaasGroteskTXPro-55Rg.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Neue Haas Grotesk Text Pro";
    src: url("assets/fonts/Neue_Haas_Grotesk/NHaasGroteskTXPro-65Md.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --cream: #f6f4f0;
    --cream-soft: #ece3d5;
    --cream-elevated: #fbfaf6;
    --cream-65: rgba(246, 244, 240, 0.65);
    --cream-45: rgba(246, 244, 240, 0.45);
    --cream-25: rgba(246, 244, 240, 0.25);
    --cream-10: rgba(246, 244, 240, 0.10);
    --espresso: #1e1a16;
    --espresso-soft: #2c2620;
    --accent: #5a7fed;
    --accent-rgb: 90, 127, 237;
    --brand-blue: #1C369B;
    --font-sans: "Neue Haas Grotesk Text Pro", -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
    --text-body: 1.0625rem;
    --text-foot: 0.8125rem;
    --weight-regular: 400;
    --weight-medium: 500;
    --leading-tight: 1.05;
    --leading-normal: 1.5;
    --space-4: 1rem;
    --space-8: 2rem;
    --text-color: var(--espresso);
    --bg-color: var(--cream);
    --border-radius: 50px;
    --transition: all 0.3s ease;
    --page-max-width: 1200px;
    --page-gutter-x: 2rem;
    --design-width: 1920px;
    --page-scale: 1;
    --hero-title-size: clamp(41.8px, 5.17vw, 72.6px);
    --hero-subtitle-size: 19.8px;
    --hero-subtitle-line-height: 1.5;
    --hero-subtitle-color: #f6f4f0;
    --hero-subtitle-max-width: 32rem;
    --hero-subtitle-gap: 2rem;
}

@media (min-width: 1025px) {
:root {
    --page-scale: calc(100vw / 1920px);
}

}

@media (max-width: 1024px) {
:root {
    --page-scale: 1;
    --page-gutter-x: 1rem;
    --m-space-3xs: 4px;
    --m-space-2xs: 8px;
    --m-space-xs:  12px;
    --m-space-sm:  16px;
    --m-space-md:  24px;
    --m-space-lg:  32px;
    --m-space-xl:  48px;
    --m-space-2xl: 64px;
    --m-space-3xl: 96px;
}

}

html, body {
    overflow-x: clip;
    background: var(--cream);
}

.page-scale-outer {
    width: 100vw;
    overflow: hidden;
    background: var(--cream);
}

.page-canvas {
    width: var(--design-width);
    margin: 0;
    transform-origin: top left;
    transform: scale(var(--page-scale));
}

@media (max-width: 1024px) {
.page-canvas {
    width: 100%;
    transform: none;
}

.page-scale-outer {
    height: auto;
    overflow: visible;
}

}

body {
    font-family: var(--font-sans);
    font-size: var(--text-body);
    font-weight: var(--weight-regular);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: var(--leading-normal);
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 900;
    pointer-events: none;
    background: rgba(0, 69, 178, 0.10);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

body:has(.nav-menu.active)::before {
    opacity: 1;
    visibility: visible;
}

h1, h2, h3, h4 {
    font-weight: var(--weight-medium);
    letter-spacing: -0.02em;
    line-height: var(--leading-tight);
}

.surface-dark {
    background: var(--espresso);
    color: var(--cream);
}

.surface-dark h1, .surface-dark h2, .surface-dark h3 {
    color: var(--cream);
}

.surface-dark p, .surface-dark li {
    color: var(--cream-65);
}

.surface-dark .muted {
    color: var(--cream-45);
}

.surface-dark .border {
    border-color: var(--cream-10);
}

.surface-dark .card {
    background: var(--cream-10);
    border: 1px solid var(--cream-10);
}

.btn-primary, .btn-ghost {
    font-family: var(--font-sans);
    font-weight: var(--weight-medium);
    padding: var(--space-4) var(--space-8);
    border-radius: 9999px;
    cursor: pointer;
}

.btn-primary {
    border: none;
    transition: background-color 200ms ease, transform 200ms ease;
}

.surface-dark .btn-primary {
    background: var(--cream);
    color: var(--espresso);
}

.surface-dark .btn-primary:hover {
    background: var(--cream-soft);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    transition: background-color 200ms ease;
}

.surface-dark .btn-ghost {
    color: var(--cream);
    border: 1px solid var(--cream-25);
}

.surface-dark .btn-ghost:hover {
    background: var(--cream-10);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
    isolation: isolate;
}

.navbar::before {
    content: '';
    position: absolute;
    inset: -10px 0 0 0;
    z-index: 0;
    pointer-events: none;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    mask-image: linear-gradient(to bottom, #000 35%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 35%, transparent 100%);
}

.navbar-tint-dark, .navbar-tint-light {
    position: absolute;
    inset: -10px 0 0 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
    mask-image: linear-gradient(to bottom, #000 35%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 35%, transparent 100%);
}

.navbar-tint-dark {
    background: linear-gradient(rgba(0, 0, 0, 0.91), rgba(0, 0, 0, 0));
}

.navbar-tint-light {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
}

.navbar.navbar--chrome-dark .navbar-tint-dark {
    opacity: 1;
}

.navbar.navbar--chrome-light .navbar-tint-light {
    opacity: 1;
}

.nav-container {
    max-width: none;
    margin: 0 auto;
    padding: 15px max(1rem, 18.75vw);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1002;
}

@media (max-width: 1024px) {
.nav-container {
    padding-left: var(--page-gutter-x);
    padding-right: var(--page-gutter-x);
}

}

.logo {
    display: flex;
    align-items: center;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    color: #ffffff;
    font-weight: 700;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 29px;
    width: auto;
    transition: filter 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.navbar.navbar--chrome-light .logo img {
    filter: brightness(0) saturate(100%);
}

.navbar.navbar--chrome-dark .logo img {
    filter: none;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-pills {
    --nav-pill-gap: 0px;
    --nav-pill-padding-x: 0px;
    --nav-pill-padding-y: 0px;
    --nav-pill-index: 0;
    --nav-pill-highlight-opacity: 0;
    --nav-pill-highlight-bg: var(--cream);
    display: inline-flex;
    width: 268px;
    justify-content: center;
    align-items: center;
    gap: var(--nav-pill-gap);
    padding: var(--nav-pill-padding-y) var(--nav-pill-padding-x);
    border-radius: 100px;
    border: 1px solid rgba(246, 244, 240, 0.34);
    background:
    linear-gradient(115deg, rgba(246, 244, 240, 0.32), transparent 20% 72%, rgba(246, 244, 240, 0.18)),
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.26), transparent 26%),
    radial-gradient(circle at 84% 82%, rgba(246, 244, 240, 0.10), transparent 30%),
    rgba(246, 244, 240, 0.16);
    backdrop-filter: blur(12px) saturate(165%) contrast(108%);
    -webkit-backdrop-filter: blur(12px) saturate(165%) contrast(108%);
    box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    inset 0 -1px 0 rgba(246, 244, 240, 0.16),
    inset 12px 0 20px rgba(255, 255, 255, 0.08),
    inset -12px 0 22px rgba(30, 26, 22, 0.04),
    0 12px 28px rgba(30, 26, 22, 0.16);
    position: relative;
    isolation: isolate;
    transition: background 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
    border-color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.nav-pills::before {
    content: '';
    position: absolute;
    top: var(--nav-pill-padding-y);
    left: var(--nav-pill-padding-x);
    width: calc((100% - (var(--nav-pill-padding-x) * 2) - var(--nav-pill-gap)) / 2);
    height: calc(100% - (var(--nav-pill-padding-y) * 2));
    box-sizing: border-box;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: var(--nav-pill-highlight-bg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), 0 6px 16px rgba(0, 0, 0, 0.10);
    opacity: var(--nav-pill-highlight-opacity);
    transform: translateX(calc(var(--nav-pill-index) * (100% + var(--nav-pill-gap))));
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.24s ease,
    border-color 0.24s ease,
    opacity 0.24s ease;
    pointer-events: none;
    z-index: 1;
}

.nav-pills::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
    linear-gradient(105deg, transparent 4%, rgba(255, 255, 255, 0.22) 16%, transparent 31%),
    radial-gradient(ellipse at var(--liquid-x, 28%) 8%, rgba(255, 255, 255, 0.18), transparent 34%),
    radial-gradient(ellipse at var(--liquid-y, 72%) 92%, rgba(var(--accent-rgb), 0.08), transparent 34%);
    mix-blend-mode: screen;
    opacity: 0.48;
    transform: translate3d(calc(var(--nav-pill-index) * 8px), 0, 0);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease;
    pointer-events: none;
    z-index: 0;
}

.nav-pills[data-active="1"] {
    --nav-pill-index: 0;
    --nav-pill-highlight-opacity: 1;
    --liquid-x: 24%;
    --liquid-y: 68%;
}

.nav-pills[data-active="2"] {
    --nav-pill-index: 1;
    --nav-pill-highlight-opacity: 1;
    --liquid-x: 68%;
    --liquid-y: 32%;
}

.nav-pills:has(.nav-pill-wrapper:nth-child(1):hover) {
    --nav-pill-index: 0;
    --nav-pill-highlight-opacity: 1;
    --nav-pill-highlight-bg: var(--cream);
    --liquid-x: 24%;
    --liquid-y: 68%;
}

.nav-pills:has(.nav-pill-wrapper:nth-child(2):hover) {
    --nav-pill-index: 1;
    --nav-pill-highlight-opacity: 1;
    --nav-pill-highlight-bg: var(--cream);
    --liquid-x: 68%;
    --liquid-y: 32%;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    padding: 7px 1.35rem;
    text-decoration: none;
    color: var(--cream);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    transition: color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1), background-color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.nav-pill:hover {
    border-color: transparent;
}

.navbar.navbar--chrome-dark .nav-pill {
    color: var(--cream);
}

.navbar.navbar--chrome-light .nav-pill {
    color: var(--espresso);
}

.navbar.navbar--chrome-light .nav-pills {
    border-color: rgba(30, 26, 22, 0.16);
    background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.28), transparent 20% 72%, rgba(246, 244, 240, 0.16)),
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.28), transparent 26%),
    rgba(246, 244, 240, 0.20);
    --nav-pill-highlight-bg: #000000;
    box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(30, 26, 22, 0.06),
    0 12px 28px rgba(30, 26, 22, 0.08);
}

.navbar.navbar--chrome-light .nav-pills::before {
    border-color: #000000;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

.navbar.navbar--chrome-light .nav-pills:has(.nav-pill-wrapper:hover) {
    --nav-pill-highlight-bg: #000000;
}

.navbar.navbar--chrome-light .mobile-menu-toggle span {
    background-color: #1d1d1f;
}

.navbar:has(.nav-menu.active) .logo img {
    filter: brightness(0) saturate(100%);
}

.navbar:has(.nav-menu.active) .logo, .navbar:has(.nav-menu.active) .mobile-menu-toggle {
    position: relative;
    z-index: 1001;
}

.navbar:has(.nav-menu.active) .mobile-menu-toggle span {
    background-color: #1d1d1f;
}

@media (prefers-reduced-motion: reduce) {
.navbar, .nav-container, .logo img {
    transition-duration: 0.01ms;
}

}

.nav-pill-wrapper {
    position: static;
    display: flex;
    flex: 1 1 0;
    min-width: 0;
}

.navbar.navbar--chrome-dark .nav-pill-wrapper.is-active > .nav-pill, .navbar.navbar--chrome-dark .nav-pill-wrapper:hover > .nav-pill, .navbar.navbar--chrome-dark .nav-pill-wrapper.megamenu-hover > .nav-pill {
    color: var(--espresso);
}

.nav-pill-wrapper.is-active > .nav-pill, .nav-pill-wrapper:hover > .nav-pill, .nav-pill-wrapper.megamenu-hover > .nav-pill, .navbar.navbar--chrome-light .nav-pill-wrapper.is-active > .nav-pill, .navbar.navbar--chrome-light .nav-pill-wrapper:hover > .nav-pill, .navbar.navbar--chrome-light .nav-pill-wrapper.megamenu-hover > .nav-pill {
    color: var(--cream);
}

.navbar.navbar--chrome-dark .nav-pills:has(.nav-pill-wrapper:hover) .nav-pill-wrapper.is-active:not(:hover) > .nav-pill, .navbar.navbar--chrome-dark .nav-pills:has(.nav-pill-wrapper.megamenu-hover) .nav-pill-wrapper.is-active:not(.megamenu-hover) > .nav-pill {
    color: var(--cream);
}

.navbar.navbar--chrome-light .nav-pills:has(.nav-pill-wrapper:hover) .nav-pill-wrapper.is-active:not(:hover) > .nav-pill, .navbar.navbar--chrome-light .nav-pills:has(.nav-pill-wrapper.megamenu-hover) .nav-pill-wrapper.is-active:not(.megamenu-hover) > .nav-pill {
    color: var(--espresso);
}

.navbar, .nav-container, .nav-menu, .nav-pills {
    overflow: visible;
}

.nav-pills {
    position: relative;
}

.megamenu {
    --megamenu-gap: 12px;
    position: absolute;
    left: auto;
    right: 0;
    top: calc(100% + var(--megamenu-gap));
    transform: translateY(-8px);
    width: 380px;
    max-width: min(380px, calc(100vw - 2 * var(--page-gutter-x, 1rem)));
    border-radius: 18px;
    background: var(--cream);
    border: 1px solid rgba(30, 26, 22, 0.08);
    box-shadow:
    0 4px 6px rgba(30, 26, 22, 0.05),
    0 10px 20px rgba(30, 26, 22, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1001;
    pointer-events: none;
    padding: 5px;
}

.megamenu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: calc(var(--megamenu-gap) + 14px);
    background: transparent;
}

.nav-pill-wrapper:hover .megamenu, .nav-pill-wrapper.megamenu-hover .megamenu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.megamenu-content {
    display: flex;
    width: 100%;
    border-radius: 13px;
    overflow: hidden;
    gap: 6px;
}

.megamenu-panel {
    width: 100%;
    background: var(--cream);
    padding: 16px;
    display: flex;
    flex-direction: column;
    border-radius: 13px;
    box-sizing: border-box;
}

.megamenu-panel-header {
    color: rgba(30, 26, 22, 0.45);
    font-family: var(--font-sans);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 24px 0;
}

.megamenu-solutions-list, .megamenu-company-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.megamenu-solution-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.megamenu-solution-link, .megamenu-company-link {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    flex: 1;
    padding: 8px 16px;
    margin: 0 -16px;
    border-radius: 8px;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.megamenu-solutions-list:hover .megamenu-solution-link:not(:hover), .megamenu-company-list:hover .megamenu-company-link:not(:hover) {
    opacity: 0.4;
}

.megamenu-solution-link:hover, .megamenu-company-link:hover {
    background: rgba(30, 26, 22, 0.05);
}

.megamenu-solution-icon {
    margin-top: 2px;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.megamenu-solution-content {
    flex: 1;
}

.megamenu-solution-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.megamenu-solution-title {
    color: var(--espresso);
    font-family: var(--font-sans);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin: 0;
    transition: color 0.25s ease;
}

.megamenu-solution-desc {
    color: rgba(30, 26, 22, 0.65);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.03em;
    margin: 0;
    transition: color 0.25s ease;
}

.megamenu-company-item {
    display: flex;
}

.megamenu-company-icon {
    flex-shrink: 0;
    margin-top: 2px;
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
}

.megamenu-company-content {
    flex: 1;
}

.megamenu-company-title {
    color: var(--espresso);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.megamenu-company-desc {
    color: rgba(30, 26, 22, 0.65);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.03em;
    transition: color 0.25s ease;
    margin: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.375rem;
    z-index: 1001;
    position: relative;
    width: 24px;
    height: 24px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
    transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
    transform: rotate(-45deg);
}

.nav-menu-mobile {
    display: none;
}

@media (max-width: 768px) {
.nav-container {
    height: 65px;
}

.logo img {
    height: 25px;
}

.mobile-menu-toggle {
    display: flex;
}

.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: min(72dvh, 32rem);
    background: var(--cream);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    z-index: 999;
    display: flex;
    align-items: flex-start;
    border: 0;
    border-bottom: 1px solid rgba(30, 26, 22, 0.10);
    border-radius: 0 0 18px 18px;
    box-shadow:
    0 18px 42px rgba(30, 26, 22, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-menu-mobile {
    display: block;
    padding: 5rem var(--page-gutter-x) 1.4rem;
    max-width: var(--page-max-width);
    width: 100%;
}

.nav-menu-mobile-logo {
    display: none;
}

.nav-menu-mobile-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.nav-menu-mobile-columns {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.nav-menu-mobile-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    width: 100%;
}

.nav-menu-mobile-title {
    color: rgba(30, 26, 22, 0.55);
    font-family: var(--font-sans);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: currentColor;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
    text-decoration-skip-ink: none;
}

.nav-menu-mobile-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    width: 100%;
}

.nav-menu-mobile-links li {
    display: flex;
    width: 100%;
}

.nav-menu-mobile-link {
    color: var(--espresso);
    font-family: var(--font-sans);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem;
    width: 100%;
    padding: 0.45rem 0.5rem;
    border-radius: 12px;
}

.nav-menu-mobile-link:hover {
    color: var(--brand-blue, #1C369B);
    background: rgba(30, 26, 22, 0.04);
}

.nav-menu-mobile-link:active {
    color: var(--brand-blue, #1C369B);
    background: rgba(30, 26, 22, 0.06);
}

.nav-menu-mobile-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    object-fit: contain;
}

.nav-pills {
    display: none;
}

}

@media (max-width: 480px) {
.logo img {
    height: 22px;
}

.nav-pill {
    font-size: 0.875rem;
    padding: 0.75rem 1.25rem;
}

}

@media (min-width: 769px) and (max-width: 1024px) {
.nav-pill {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

}

html {
    scroll-behavior: smooth;
}

:where(a, button, summary, [tabindex]):focus:not(:focus-visible) {
    outline: none;
}

body.using-pointer :where(a, button, summary, [tabindex]):focus, body.using-pointer :where(a, button, summary, [tabindex]):focus-visible {
    outline: none !important;
}

.nav-pill:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.nav-pill:focus:not(:focus-visible) {
    outline: none;
}

.mobile-menu-toggle:focus-visible, .logo:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.mobile-menu-toggle:focus:not(:focus-visible), .logo:focus:not(:focus-visible) {
    outline: none;
}

.hero {
    position: relative;
    width: 100%;
    height: calc(100vh / var(--page-scale));
    min-height: calc(100vh / var(--page-scale));
    background: #000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    linear-gradient(90deg, rgba(2, 8, 32, 0.50) 0%, rgba(5, 24, 91, 0.34) 28%, rgba(5, 24, 91, 0.12) 52%, transparent 76%),
    radial-gradient(circle at 18% 42%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1.4px);
    background-size: auto, 4px 4px;
    mix-blend-mode: multiply;
    z-index: 1;
    pointer-events: none;
}

.hero-background-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: var(--page-max-width);
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 var(--page-gutter-x) 5%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: #ffffff;
    width: 100%;
}

.hero:not(.page-hero) .hero-content {
    transform: translateY(clamp(1.5rem, 4vh, 3rem));
}

.hero-content h1 {
    font-family: var(--font-sans);
    font-size: var(--hero-title-size);
    font-style: normal;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #f6f4f0;
    margin: 0;
    max-width: 100%;
}

.hero-content h1 .inline-group {
    white-space: nowrap;
}

.hero-content h1 .alt-font {
    font-family: "Source Serif Pro Display", "Source Serif Pro", Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: #f6f4f0;
    letter-spacing: -0.01em;
    display: inline-block;
    padding: 0.2em 0;
    margin: -0.2em 0.04em -0.2em 0;
}

.hero-content h1 .rotating-word-wrapper {
    position: relative;
    display: inline-block;
    vertical-align: baseline;
}

.hero-content h1 .tokenised-static {
    color: #f6f4f0;
    margin-left: 0.04em;
}

.hero-content h1 .rotating-word-ghost {
    display: inline-block;
    visibility: hidden;
    pointer-events: none;
}

.hero-content h1 .gradient-text {
    position: absolute;
    inset: 0;
    background-image: none;
    background-size: var(--cycling-bg-width, 100%) 100%;
    background-position: left center;
    background-repeat: no-repeat;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #f6f4f0;
    color: #f6f4f0;
    padding: 0.2em 0;
    margin: -0.2em 0;
    transition: opacity 300ms ease-in-out;
}

.glitch-text {
    position: relative;
    display: inline-block;
}

.typing-text {
    font-variant-numeric: tabular-nums;
    position: relative;
}

.hero-content h1 .rotating-word-wrapper .gradient-text {
    position: absolute;
    inset: 0;
    display: block;
}

.typing-char {
    display: inline-block;
}

.typewriter-cursor {
    display: inline-block;
    width: 35px;
    height: 0.9em;
    background-color: #2348D5;
    margin-left: 2px;
    vertical-align: baseline;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 1;
    }
}

.hero-content h6 {
    font-family: var(--font-sans);
    font-size: var(--hero-subtitle-size);
    font-style: normal;
    font-weight: 400;
    line-height: var(--hero-subtitle-line-height);
    letter-spacing: -0.18px;
    color: var(--hero-subtitle-color);
    max-width: var(--hero-subtitle-max-width);
    margin: var(--hero-subtitle-gap) 0 0;
}

.hero:not(.page-hero) .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero:not(.page-hero) .hero-content h6 {
    margin-top: calc(var(--hero-subtitle-gap) - 0.35rem);
}

.hero:not(.page-hero) .hero-content .page-hero-verify-cta.tech-card-button {
    margin-top: calc(var(--hero-subtitle-gap) + 0.25rem);
}

@media (min-width: 1025px) and (max-width: 1728px) {
.hero {
    height: 100vh;
    min-height: 680px;
}

.hero-wrapper {
    padding-bottom: 3%;
}

}

@media (min-width: 1025px) and (max-width: 1180px) {
.hero-content h1 {
    max-width: 100%;
}

}

@media (max-width: 768px) {
.hero {
    height: 75vh;
}

.hero-wrapper {
    padding: 0 var(--page-gutter-x);
}

.hero:not(.page-hero) .hero-content,
.hero.page-hero .hero-content {
    transform: translateY(1.25rem);
}

}

@media (max-width: 480px) {
.hero {
    --hero-title-size: clamp(1.815rem, 7.7vw, 2.255rem);
    --hero-subtitle-size: 17.6px;
}

.hero-content h1 br {
    display: none;
}

.hero-content h6 br {
    display: none;
}

}

@media (min-width: 600px) and (max-width: 768px) {
.hero:not(.page-hero) .hero-content,
.hero.page-hero .hero-content {
    transform: none;
}

}

.bridge-thesis {
    width: 100%;
    padding: clamp(7rem, 14vh, 10rem) var(--page-gutter-x) 0;
    background: var(--cream);
    box-sizing: border-box;
}

.bridge-thesis-inner {
    --bridge-quote-space: clamp(6rem, 12vh, 9rem);
    max-width: var(--page-max-width);
    margin: 0 auto;
    text-align: center;
}

.bridge-thesis-heading {
    max-width: 980px;
    margin: 0 auto;
    color: var(--espresso);
}

.bridge-act + .bridge-act {
    margin-top: clamp(4rem, 8vh, 7rem);
}

.bridge-problem-block {
    position: relative;
    isolation: isolate;
    left: 50%;
    width: calc(100vw / var(--page-scale));
    margin-left: calc(-50vw / var(--page-scale));
    margin-top: clamp(6rem, 12vh, 9rem);
    padding: clamp(6rem, 12vh, 9rem) var(--page-gutter-x);
    overflow: hidden;
    background-color: #1C369B;
    color: var(--cream);
    box-sizing: border-box;
    box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -42px 70px rgba(0, 8, 32, 0.18),
    0 28px 70px rgba(0, 69, 178, 0.16);
}

.bridge-problem-block::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.38;
    background-image:
    radial-gradient(circle at 22% 8%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 36%, rgba(0, 8, 32, 0.18) 100%),
    url("data:image/svg+xml;utf8,<svg viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.50  0 0 0 0 0.68  0 0 0 0 1  0 0 0 0.52 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    background-size: 100% 100%, 100% 100%, 260px 260px;
    mix-blend-mode: screen, normal, screen;
}

.bridge-problem-block > * {
    position: relative;
    z-index: 1;
    max-width: var(--page-max-width);
    margin-left: auto;
    margin-right: auto;
}

.bridge-problem-block .bridge-thesis-heading {
    color: var(--cream);
}

.bridge-act--solution {
    margin-top: clamp(5rem, 10vh, 6rem);
}

.bridge-quote-carousel {
    overflow-x: hidden;
    overflow-y: visible;
    margin: calc(var(--bridge-quote-space) - 0.75rem) auto -1.5rem;
    padding: 0.75rem 0 1.5rem;
}

.bridge-quote-track {
    --quote-gap: 1rem;
    display: flex;
    gap: var(--quote-gap);
    transform: translate3d(0, 0, 0);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.bridge-quote {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 0 0 calc((100% - (var(--quote-gap) * 2)) / 3);
    min-height: 340px;
    margin: 0;
    padding: 2rem;
    border: 1px solid rgba(30, 26, 22, 0.075);
    border-radius: 16px;
    background: var(--cream-elevated);
    box-shadow: 0 1px 3px rgba(30, 26, 22, 0.04);
    opacity: 1;
    overflow: hidden;
    transition: opacity 0.35s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
    will-change: transform;
}

.bridge-quote::before {
    content: none;
}

.bridge-quote::after {
    content: none;
}

.bridge-quote:hover {
    transform: translateY(-8px);
    z-index: 2;
    border-color: rgba(30, 26, 22, 0.16);
    box-shadow:
    0 16px 28px rgba(30, 26, 22, 0.095),
    0 4px 10px rgba(30, 26, 22, 0.055),
    inset 0 0 0 1px rgba(30, 26, 22, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -1px 0 rgba(30, 26, 22, 0.04);
}

.bridge-quote blockquote {
    margin: 0;
    color: rgba(30, 26, 22, 0.9);
    font-family: "Source Serif Pro", Georgia, serif;
    font-size: clamp(1.05rem, 1.22vw, 1.18rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.01em;
    text-shadow: none;
}

.bridge-quote figcaption {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: rgba(30, 26, 22, 0.55);
    font-family: var(--font-sans);
    font-size: var(--text-foot);
    line-height: var(--leading-normal);
}

.bridge-quote-speaker {
    color: rgba(30, 26, 22, 0.75);
    font-weight: var(--weight-medium);
    text-shadow: none;
}

.bridge-quote-role {
    color: rgba(30, 26, 22, 0.55);
    font-weight: var(--weight-regular);
    text-shadow: none;
}

.bridge-quote-role:empty {
    display: none;
}

.bridge-quote-controls {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.5rem auto var(--bridge-quote-space);
}

.bridge-quote-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(30, 26, 22, 0.12);
    border-radius: 999px;
    background: var(--cream-elevated);
    color: var(--espresso);
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 1;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.bridge-quote-arrow:hover {
    background: rgba(255, 250, 244, 0.72);
    border-color: rgba(30, 26, 22, 0.2);
    transform: translateY(-1px);
}

.faq-section {
    padding: clamp(6rem, 10vw, 9rem) 0;
    background: var(--cream);
}

.faq-inner {
    max-width: var(--page-max-width);
    margin: 0 auto;
    display: block;
    padding: 0;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
.faq-inner {
    padding-left: var(--page-gutter-x);
    padding-right: var(--page-gutter-x);
}

}

.faq-title {
    margin: 0 0 clamp(2rem, 4vw, 3rem);
    color: var(--espresso);
    font-family: "Source Serif Pro", Georgia, serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 115%;
    letter-spacing: -1.2px;
    text-align: left;
}

.faq-groups {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-group {
    border-top: 1px solid rgba(30, 26, 22, 0.12);
    padding-top: 1rem;
}

.faq-group:first-child {
    border-top: none;
    padding-top: 0;
}

.faq-group:last-child {
    border-bottom: 1px solid rgba(30, 26, 22, 0.12);
    padding-bottom: 1rem;
}

.faq-group-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0;
    padding: 0.35rem 1.05rem 1rem 0;
    color: rgba(30, 26, 22, 0.58);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
}

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

.faq-group-summary::after {
    content: '+';
    flex: 0 0 auto;
    color: #4A3C30;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1;
    transition: transform 0.2s ease;
}

.faq-group[open] .faq-group-summary::after {
    transform: rotate(45deg);
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: start;
}

.faq-item {
    align-self: start;
    border: 1px solid rgba(30, 26, 22, 0.1);
    border-radius: 14px;
    background: var(--cream-elevated);
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover, .faq-item[open] {
    border-color: rgba(74, 60, 48, 0.28);
    background: rgba(255, 250, 244, 0.72);
    box-shadow: 0 18px 42px rgba(30, 26, 22, 0.06);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 54px;
    padding: 0.85rem 1.05rem;
    color: var(--espresso);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary::after {
    content: '+';
    flex: 0 0 auto;
    color: #4A3C30;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin: 0;
    padding: 0 1.05rem 1.05rem;
    color: var(--espresso-soft);
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.65;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1025px) and (max-width: 1728px) {
.bridge-thesis {
    padding-top: clamp(6rem, 12vh, 8rem);
    padding-bottom: clamp(4rem, 8vh, 6rem);
}

.bridge-quote-track {
    gap: 0.75rem;
    --quote-gap: 0.75rem;
}

.bridge-quote {
    min-height: 205px;
    padding: 1.25rem;
}

.faq-title, .insights-title {
    font-size: 44px;
    letter-spacing: -0.88px;
}

}

@media (max-width: 1024px) {
.bridge-act + .bridge-act {
    margin-top: var(--m-space-xl);
}

.bridge-quote {
    flex-basis: 100%;
}

.bridge-quote {
    min-height: 0;
}

}

.build-solutions-section {
    padding: 0;
    max-width: var(--page-max-width);
    margin: 80px auto 0;
    box-sizing: border-box;
    background: var(--cream);
}

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

.tech-card {
    position: relative;
    isolation: isolate;
    background-color: #1C369B;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -28px 46px rgba(0, 8, 32, 0.14),
    0 18px 44px rgba(0, 69, 178, 0.18);
    border-radius: 20px;
    padding: 100px 30px 60px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, box-shadow 0.28s ease, border-color 0.28s ease;
    overflow: hidden;
}

.bridge-problem-block::before, .tech-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.52;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 360 360' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.58' numOctaves='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.01  0 0 0 0 0.05  0 0 0 0 0.20  0 0 0 0.95 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    background-size: 360px 360px;
    mix-blend-mode: multiply;
}

.tech-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.36;
    background-image:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 8, 32, 0.18) 100%),
    url("data:image/svg+xml;utf8,<svg viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.50  0 0 0 0 0.68  0 0 0 0 1  0 0 0 0.52 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    background-size: 100% 100%, 100% 100%, 260px 260px;
    mix-blend-mode: screen, normal, screen;
}

.tech-card > * {
    position: relative;
    z-index: 1;
}

.tech-card.tech-card-visible {
    opacity: 1;
    transform: translateY(0);
}

.tech-card.tech-card-visible:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -30px 52px rgba(0, 8, 32, 0.16),
    0 30px 64px rgba(0, 69, 178, 0.26),
    0 12px 28px rgba(0, 8, 32, 0.18);
}

.tech-card-icon {
    margin: 0 0 30px;
    display: inline-flex;
}

.tech-card-icon img {
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.tech-card-title {
    color: #fff;
    font-family: var(--font-sans);
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.32px;
    margin: 0 0 12px;
}

.tech-card-description {
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-sans);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: 0 0 30px;
}

.tech-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tech-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.tech-card-list li::before {
    content: '';
    flex: 0 0 7px;
    width: 7px;
    height: 7px;
    margin-top: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
}

.tech-card-list li:first-child {
    padding-top: 0;
}

.tech-card-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tech-card-bullet {
    display: none;
}

.tech-card-feature {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tech-card-feature h4 {
    color: rgba(255, 255, 255, 0.94);
    font-family: var(--font-sans);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin: 0;
}

.tech-card-feature p {
    color: rgba(255, 255, 255, 0.66);
    font-family: var(--font-sans);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
}

.tech-card-button {
    align-self: flex-start;
    display: inline-flex;
    position: relative;
    isolation: isolate;
    min-height: 36px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.32), transparent 22% 72%, rgba(246, 244, 240, 0.18)),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.34), transparent 28%),
    rgba(246, 244, 240, 0.86);
    color: var(--espresso);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    line-height: 110%;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(30, 26, 22, 0.06),
    0 10px 24px rgba(30, 26, 22, 0.08);
    transition: color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.tech-card-button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #000000;
    opacity: 0;
    transform: scaleX(0.72);
    transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}

.tech-card-button:hover {
    color: var(--cream);
    border-color: #000000;
    transform: translateY(-1px);
    box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 12px 26px rgba(0, 0, 0, 0.16);
}

.tech-card-button:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

@media (min-width: 1025px) and (max-width: 1728px) {
.build-solutions-section {
    margin-top: clamp(2.5rem, 5vh, 4rem);
}

.tech-grid {
    gap: 18px;
}

.tech-card {
    padding: 56px 22px 36px;
}

.tech-card-icon {
    margin-bottom: 22px;
}

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

.tech-card-title {
    font-size: 26px;
    letter-spacing: -0.26px;
    margin-bottom: 10px;
}

.tech-card-description {
    font-size: 15px;
    margin-bottom: 24px;
}

.tech-card-list {
    margin-bottom: 32px;
}

.tech-card-list li {
    padding: 11px 0;
}

.tech-card-feature h4 {
    font-size: 14px;
}

.tech-card-feature p {
    font-size: 13px;
}

.tech-card-button {
    font-size: 14px;
    padding: 11px 24px;
}

}

@media (max-width: 1024px) {
.tech-grid {
    grid-template-columns: 1fr;
}

.tech-card-icon {
    margin-bottom: 24px;
}

}

@media (max-width: 1024px) {
.build-solutions-section {
    padding: 0 var(--page-gutter-x);
}

}

.hero.page-hero {
    --page-hero-content-max: 950px;
    --page-hero-subtitle-gap: 1.5rem;
    /* Match Public Verification stack height when a page has no Launch Verify CTA */
    --page-hero-cta-reserve: calc(var(--page-hero-subtitle-gap) + 24px + 1.35rem + 2px);
    --page-hero-wrapper-pad-bottom: 5%;
    background: #000;
    height: auto;
    min-height: 0;
    padding: 0;
}

.hero.page-hero .hero-wrapper {
    height: auto;
    min-height: 0;
    align-items: center;
    justify-content: flex-start;
}

.hero.page-hero .hero-content {
    transform: translateY(clamp(1.5rem, 4vh, 3rem));
}

.hero-content .page-hero-verify-cta.tech-card-button {
    transform: none;
}

.hero-content .page-hero-verify-cta.tech-card-button:hover,
.hero-content .page-hero-verify-cta.tech-card-button:focus-visible {
    transform: translateY(-1px);
}

.hero.tokenisation-hero {
    background: #000;
    min-height: clamp(440px, 50vw, 620px);
}

.hero.page-hero .hero-content,
.hero.page-hero .hero-content.page-hero-content--wide {
    width: 100%;
    max-width: var(--page-hero-content-max);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero.page-hero .hero-content:not(:has(.page-hero-verify-cta))::after {
    content: "";
    display: block;
    flex: 0 0 auto;
    height: var(--page-hero-cta-reserve);
    width: 0;
    pointer-events: none;
}

.hero.page-hero .hero-content h1,
.hero.page-hero .hero-content h1.page-hero-title {
    font-size: var(--hero-title-size);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
    max-width: 100%;
    width: 100%;
}

.hero.page-hero .hero-content p.page-hero-subtitle {
    font-family: var(--font-sans);
    font-size: var(--hero-subtitle-size);
    font-style: normal;
    font-weight: 400;
    line-height: var(--hero-subtitle-line-height);
    letter-spacing: -0.18px;
    color: var(--hero-subtitle-color);
    max-width: var(--hero-subtitle-max-width);
    margin: var(--page-hero-subtitle-gap) 0 0;
    width: auto;
}

@media (max-width: 1024px) {
.hero.page-hero .hero-content,
.hero.page-hero .hero-content.page-hero-content--wide {
    align-items: flex-start;
    text-align: left;
}

.hero.page-hero .hero-content p.page-hero-subtitle {
    max-width: min(var(--hero-subtitle-max-width), 75%);
}

}

.hero-content .page-hero-verify-cta.tech-card-button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 12px 24px;
    min-height: 0;
    height: auto;
    border-radius: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: var(--cream);
    color: var(--espresso);
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.5;
    letter-spacing: 0;
    text-decoration: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 6px 16px rgba(0, 0, 0, 0.10);
    transition: color 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hero.page-hero .hero-content .page-hero-verify-cta.tech-card-button {
    margin-top: var(--page-hero-subtitle-gap);
}

.hero-content .page-hero-verify-cta.tech-card-button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #000000;
    opacity: 0;
    transform: scaleX(0.72);
    transform-origin: center;
    transition: opacity 0.22s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
    pointer-events: none;
}

.hero-content .page-hero-verify-cta.tech-card-button::after {
    content: "";
    position: relative;
    z-index: 1;
    inset: auto;
    display: inline-block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8h9M8 3l5 5-5 5' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8h9M8 3l5 5-5 5' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
    border-radius: 0;
    opacity: 1;
    transform: none;
    mix-blend-mode: normal;
}

.hero-content .page-hero-verify-cta.tech-card-button:hover,
.hero-content .page-hero-verify-cta.tech-card-button:focus-visible {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 2, 59, 0.18);
    border-color: transparent;
}

.hero-content .page-hero-verify-cta.tech-card-button:hover::before,
.hero-content .page-hero-verify-cta.tech-card-button:focus-visible::before {
    opacity: 1;
    transform: scaleX(1);
}


@media (max-width: 480px) {
.hero.page-hero .hero-content {
    width: calc(100vw - (var(--page-gutter-x) * 2)) !important;
    max-width: calc(100vw - (var(--page-gutter-x) * 2)) !important;
}

.hero.page-hero.tokenisation-hero .hero-content {
    max-width: calc(100vw - (var(--page-gutter-x) * 2));
}

.hero.page-hero .hero-content h1, .hero.page-hero .hero-content p.page-hero-subtitle {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.hero.page-hero .hero-content h1 br {
    display: none;
}

.hero {
    --hero-title-size: clamp(1.815rem, 7.7vw, 2.255rem);
    --hero-subtitle-size: 17.6px;
}

.hero.page-hero .hero-content p.page-hero-subtitle {
    width: min(100%, 30ch);
    max-width: min(var(--hero-subtitle-max-width), 30ch);
}

.hero.page-hero .hero-content .page-hero-verify-cta.tech-card-button {
    margin-top: var(--page-hero-subtitle-gap);
}

}

.tokenisation-section {
    background: var(--cream);
    padding: 100px 0;
}

.product-section-divider {
    width: 100%;
    height: 1px;
    background: rgba(30, 26, 22, 0.10);
}

@media (max-width: 480px) {
.contact-inner {
    width: calc(100vw - (var(--page-gutter-x) * 2));
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.contact-form-subtitle {
    max-width: 30ch;
}

}

.tokenisation-section-inner {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--page-gutter-x);
    width: 100%;
    box-sizing: border-box;
}

.tokenisation-section-header {
    margin-bottom: 60px;
}

.tokenisation-section-title {
    font-family: var(--font-sans);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.4px;
    color: var(--espresso);
    margin: 0;
}

.tokenisation-two-col .tokenisation-section-header {
    margin-bottom: 60px;
}

.tokenisation-who-serve-container {
    display: flex;
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
}

.tokenisation-serve-list {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

button.tokenisation-serve-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    text-align: left;
    font: inherit;
    color: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    border-radius: 0;
}

button.tokenisation-serve-item:focus-visible {
    outline: 2px solid var(--brand-blue, #1C369B);
    outline-offset: 4px;
}

.tokenisation-serve-line {
    flex-shrink: 0;
    width: 2px;
    min-width: 2px;
    height: 140px;
    border-radius: 1px;
    background-color: rgba(30, 26, 22, 0.12);
    transition: background-color 0.4s ease;
}

.tokenisation-serve-item.is-active .tokenisation-serve-line {
    background-color: var(--brand-blue, #1C369B);
}

.tokenisation-serve-text {
    flex: 1;
    min-width: 0;
    display: block;
}

.tokenisation-serve-title {
    display: block;
    font-family: var(--font-sans);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.25px;
    color: var(--espresso);
    margin: 0 0 0.5rem 0;
}

.tokenisation-serve-desc {
    display: block;
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(30, 26, 22, 0.68);
    margin: 0;
}

.tokenisation-serve-image {
    flex: 1 1 0;
    min-width: 0;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
}

.tokenisation-serve-mobile-panel {
    display: none;
}

.tokenisation-serve-image {
    flex: 0 0 340px;
    width: 340px;
    max-width: 340px;
    aspect-ratio: 340 / 420;
    height: auto;
    margin-left: auto;
    border: 1px solid rgba(30, 26, 22, 0.075);
    border-radius: 16px;
    background: #F6F4F0;
    box-shadow: 0 1px 3px rgba(30, 26, 22, 0.04);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
    will-change: transform;
}

.tokenisation-serve-image {
    position: relative;
    isolation: isolate;
}

.tokenisation-serve-image::after {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.tokenisation-serve-image::after {
    top: 14px;
    right: 14px;
    width: 10px;
    height: 12px;
    background: linear-gradient(90deg, var(--brand-blue, #1C369B) 0 3px, transparent 3px 7px, var(--brand-blue, #1C369B) 7px 10px);
    filter: drop-shadow(0 2px 8px rgba(30, 26, 22, 0.16));
    transform: scale(0.88);
    z-index: 3;
}

.tokenisation-serve-image.is-paused::after {
    opacity: 1;
    transform: scale(1);
}

@media (hover: hover) and (pointer: fine) {
.tokenisation-serve-image {
    cursor: pointer;
}

.tokenisation-serve-image:hover {
    transform: translateY(-8px);
    border-color: rgba(30, 26, 22, 0.16);
    box-shadow:
    0 16px 28px rgba(30, 26, 22, 0.095),
    0 4px 10px rgba(30, 26, 22, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(30, 26, 22, 0.04);
}

}

.tokenisation-serve-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    pointer-events: none;
    background: transparent;
    opacity: 0;
    transition: opacity 0.4s ease;
    transform: scale(1);
    transform-origin: center center;
}

.tokenisation-serve-frame.is-active {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
.tokenisation-serve-line {
    transition-duration: 0.01ms;
}

}

.tokenisation-section.engine-specs-section {
    padding: clamp(3rem, 6vh, 4.5rem) 0;
}

.tokenisation-section.engine-specs-section .tokenisation-section-header {
    margin-bottom: clamp(1.5rem, 3.5vh, 2.25rem);
}

@media (min-width: 1025px) and (max-width: 1728px) {
.tokenisation-section {
    padding: clamp(4rem, 8vh, 5rem) 0;
}

.tokenisation-section-header, .tokenisation-two-col .tokenisation-section-header {
    margin-bottom: 42px;
}

.tokenisation-section-title {
    font-size: 34px;
    letter-spacing: -0.34px;
}

.tokenisation-who-serve-container {
    gap: 56px;
}

.tokenisation-serve-list {
    gap: 28px;
}

button.tokenisation-serve-item {
    gap: 28px;
}

.tokenisation-serve-line {
    height: 112px;
}

.tokenisation-serve-title {
    font-size: 21px;
    letter-spacing: -0.21px;
}

.tokenisation-serve-desc {
    font-size: 15px;
}

.tokenisation-serve-image {
    flex-basis: 340px;
    width: 340px;
    max-width: 340px;
    height: auto;
}
}

@media (max-width: 1024px) {
.tokenisation-who-serve-container {
    flex-direction: column;
    gap: 32px;
}

.tokenisation-serve-image {
    width: min(100%, 340px);
    max-width: 340px;
    height: auto;
    order: -1;
    margin-left: auto;
    margin-right: auto;
}

.tokenisation-serve-frame {
    inset: 0;
    width: 100%;
    height: 100%;
}
}

@media (max-width: 460px) {
.tokenisation-serve-image {
    flex-basis: auto;
    width: 100%;
    max-width: 340px;
}
}

@media (max-width: 1024px) {
.tokenisation-section-title {
    font-size: 32px;
}

.tokenisation-serve-item {
    flex-direction: column;
    gap: var(--m-space-md);
}

.tokenisation-serve-line {
    width: 100%;
    height: 2px;
    min-height: 2px;
}


.faq-inner {
    display: block;
}

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

.faq-title {
    font-size: 32px;
    letter-spacing: -0.64px;
}

.build-solutions-section {
    padding: var(--m-space-xl) 1.5rem;
    margin: var(--m-space-2xl) auto 0;
}
}

@media (max-width: 480px) {
.faq-title {
    font-size: 32px;
    letter-spacing: -0.64px;
}

.build-solutions-section {
    padding: var(--m-space-lg) 1rem;
    margin: var(--m-space-xl) auto 0;
}
}

.insights-section {
    position: relative;
    padding: clamp(4rem, 7vw, 6rem) 0 0;
    max-width: var(--page-max-width);
    margin: 0 auto;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
.insights-section {
    padding-left: var(--page-gutter-x);
    padding-right: var(--page-gutter-x);
}

}

.insights-header {
    margin-bottom: 60px;
}

.insights-title {
    color: var(--espresso);
    font-family: "Source Serif Pro", Georgia, serif;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 115%;
    letter-spacing: -1.2px;
    margin: 0;
}

.insights-main {
    background: var(--cream-elevated);
    display: flex;
    height: 540px;
    padding: 0;
    flex-direction: row;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    align-items: center;
    overflow: hidden;
    margin-bottom: 24px;
}

.insights-main-left {
    width: 50%;
    flex-shrink: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 40px 0 60px;
    box-sizing: border-box;
    background: var(--cream-elevated);
}

.insights-date {
    color: var(--brand-blue, #1C369B);
    font-family: "Source Serif Pro Display", serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.4px;
    margin: 0 0 -14px;
}

.insights-main-title {
    color: var(--Black---000000, #000);
    font-family: "Source Serif Pro", serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    letter-spacing: -0.8px;
    margin: 0;
}

.insights-main-text {
    color: var(--Black---000000, #000);
    font-family: var(--font-sans);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
}

.insights-main-right {
    width: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    height: 100%;
    overflow: hidden;
}

.insights-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.insights-main:hover .insights-main-image {
    transform: scale(1.025);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.insights-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border-radius: 12px;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), filter 0.28s ease;
}

.insights-card:hover {
    transform: translateY(-8px);
    filter: drop-shadow(0 24px 34px rgba(30, 26, 22, 0.11));
}

.insights-card-image-clip {
    overflow: hidden;
    height: 200px;
}

.insights-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.insights-card:hover .insights-card-image {
    transform: scale(1.025);
}

@media (prefers-reduced-motion: reduce) {
.bridge-quote, .tech-card, .about-profile--leadership, .insights-card {
    transition-duration: 0.01ms;
}

.bridge-quote:hover, .tech-card.tech-card-visible:hover, .about-profile--leadership:hover, .insights-card:hover {
    transform: none;
}

}

.insights-card-date {
    color: var(--brand-blue, #1C369B);
    font-family: "Source Serif Pro", serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.4px;
    margin: 40px 0 20px 0;
}

.insights-card-title {
    color: var(--Black---000000, #000);
    font-family: var(--font-sans);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.22px;
    margin: 0;
}

.insights-card-text {
    color: var(--Black---000000, #000);
    font-family: var(--font-sans);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: 12px 0 0 0;
}

.insights-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 20px;
    color: var(--brand-blue, #1C369B);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    align-self: flex-start;
}

.insights-card-link svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
    flex-shrink: 0;
}

.insights-card-link svg > path:first-child {
    fill: var(--cream-elevated) !important;
}

.insights-card-link svg g path {
    fill: currentColor;
    stroke: currentColor;
}

.insights-card:hover .insights-card-link {
    color: var(--Black---000000, #000);
}

@media (max-width: 1024px) {
.insights-header {
    text-align: center;
}

.insights-title {
    font-size: 44px;
    letter-spacing: -0.88px;
}

.insights-title {
    font-size: 32px;
    letter-spacing: -0.64px;
}

.insights-main {
    flex-direction: column;
    height: auto;
    gap: 0;
}

.insights-main-left {
    width: 100%;
    padding: 2rem 1.5rem;
    gap: 1rem;
}

.insights-main-title {
    font-size: 28px;
    line-height: 130%;
    letter-spacing: -0.48px;
}

.insights-main-text {
    font-size: 15px;
}

.insights-date {
    font-size: 16px;
}

.insights-main-right {
    width: 100%;
    height: 240px;
}

.insights-grid {
    grid-template-columns: 1fr;
    gap: var(--m-space-md);
}

.insights-card-title {
    font-size: 22px;
}

.insights-card-date {
    margin-top: var(--m-space-md);
    font-size: 16px;
}

.insights-card-text {
    font-size: 14px;
    margin-top: var(--m-space-xs);
}

.insights-card-link {
    margin-top: var(--m-space-md);
}

}

@media (max-width: 480px) {
.insights-section {
    padding: var(--m-space-lg) 1rem;
    margin: var(--m-space-xl) auto 0;
}

.insights-title {
    font-size: 32px;
}

.insights-main-left {
    padding: 1.5rem 1rem;
}

.insights-main-title {
    font-size: 20px;
}

.insights-main-right {
    height: 180px;
}

}

.backdrop-section {
    width: min(calc(100% - (var(--page-gutter-x) * 2)), var(--page-max-width));
    margin: 150px auto 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(clamp(28rem, 44vw, 38rem), max-content);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(30, 26, 22, 0.14);
}

.backdrop-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
    linear-gradient(180deg, rgba(0, 8, 32, 0.10) 0%, rgba(0, 8, 32, 0.08) 38%, rgba(0, 8, 32, 0.18) 100%),
    linear-gradient(90deg, rgba(0, 8, 32, 0.28) 0%, rgba(0, 8, 32, 0.14) 34%, rgba(0, 8, 32, 0.10) 64%, rgba(0, 8, 32, 0.18) 100%);
    z-index: 1;
}

.backdrop-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    pointer-events: none;
    background: linear-gradient(
    to top,
    rgba(0, 69, 178, 0.54),
    rgba(0, 69, 178, 0.38) 1.68%,
    rgba(0, 69, 178, 0.16) 26.05%,
    rgba(0, 69, 178, 0) 47.48%
    );
    z-index: 1;
}

.backdrop-image {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.backdrop-content {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(5rem, 9vw, 7rem) clamp(2rem, 5vw, 4rem);
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
}

.backdrop-wrapper {
    max-width: var(--page-max-width);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: clamp(2rem, 4vw, 3.25rem);
    padding: clamp(0.75rem, 2.5vw, 2rem);
    box-sizing: border-box;
}

.backdrop-left {
    flex: 0 1 45%;
    min-width: min(100%, 16rem);
    display: flex;
    align-items: flex-start;
}

.backdrop-quote {
    color: var(--White---FFFFFF, #FFF);
    font-family: "Source Serif Pro Display", serif;
    font-size: clamp(36px, 4vw, 48px);
    font-style: normal;
    font-weight: 420;
    line-height: 0.98;
    letter-spacing: -1.15px;
    margin: 0;
    max-width: 9.8em;
    padding-left: 0.36em;
    text-indent: -0.36em;
    text-wrap: balance;
    hanging-punctuation: first;
    text-shadow: 0 2px 16px rgba(0, 8, 32, 0.54), 0 1px 2px rgba(0, 8, 32, 0.48);
}

.backdrop-right {
    flex: 1 1 0;
    min-width: min(100%, 14rem);
    display: flex;
    align-items: flex-start;
    padding-top: 0.28rem;
}

.backdrop-text {
    color: var(--White---FFFFFF, #FFF);
    font-family: var(--font-sans);
    font-size: clamp(18px, 1.9vw, 22px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.36;
    letter-spacing: -0.18px;
    margin: 0;
    max-width: 34rem;
    text-shadow: 0 2px 14px rgba(0, 8, 32, 0.58), 0 1px 2px rgba(0, 8, 32, 0.5);
}

.backdrop-author {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
    padding: 0 clamp(0.75rem, 2.5vw, 2rem);
    max-width: var(--page-max-width);
    box-sizing: border-box;
}

.backdrop-author-name {
    color: var(--White---FFFFFF, #FFF);
    font-family: "Source Serif Pro", serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.52px;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 8, 32, 0.54), 0 1px 2px rgba(0, 8, 32, 0.44);
}

.backdrop-author-title {
    color: var(--White---FFFFFF, #FFF);
    font-family: "Source Serif Pro", serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.4px;
    margin: 0;
    opacity: 0.88;
    text-shadow: 0 2px 12px rgba(0, 8, 32, 0.54), 0 1px 2px rgba(0, 8, 32, 0.44);
}

@media (max-width: 992px) {
.backdrop-wrapper {
    flex-direction: column;
    flex-wrap: nowrap;
}

.backdrop-left, .backdrop-right {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
}

}

@media (max-width: 1024px) {
.backdrop-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.backdrop-section .backdrop-content {
    position: relative !important;
    padding: clamp(3rem, 8vw, 4rem)
    clamp(1.25rem, 5vw, 1.75rem)
    clamp(12rem, 38vw, 16rem) !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
}

.backdrop-section .backdrop-wrapper {
    flex-direction: column;
    gap: clamp(1.25rem, 4vw, 2rem);
}

.backdrop-section .backdrop-divider {
    display: none;
}

.backdrop-section .backdrop-quote {
    font-size: clamp(1.625rem, 7vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.6px;
    max-width: none;
}

.backdrop-section .backdrop-quote-body {
    padding-left: 24px;
    gap: clamp(1.5rem, 5vw, 2rem);
}

.backdrop-section .backdrop-text {
    font-size: clamp(1rem, 4vw, 1.125rem);
    line-height: 1.4;
    letter-spacing: -0.2px;
    max-width: none;
}

.backdrop-section .backdrop-right {
    padding-top: 0;
}

.backdrop-section .backdrop-author {
    position: absolute !important;
    left: 50% !important;
    bottom: clamp(2rem, 6vw, 3rem) !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    width: max-content !important;
    max-width: calc(100% - 3rem) !important;
    align-items: center !important;
    text-align: center !important;
    z-index: 3;
}

.backdrop-section .backdrop-author-line {
    margin-left: auto !important;
    margin-right: auto !important;
}

.backdrop-section .backdrop-author-name, .backdrop-section .backdrop-author-title {
    text-align: center !important;
    color: #FFFFFF !important;
    text-shadow: 0 2px 14px rgba(0, 8, 32, 0.7),
    0 1px 3px rgba(0, 8, 32, 0.6) !important;
}

}

@media (max-width: 480px) {
.backdrop-author-name {
    font-size: 1rem;
}

.backdrop-author-title {
    font-size: 0.875rem;
}

}

.footer-section {
    position: relative;
    isolation: isolate;
    background-color: #1C369B;
    width: 100%;
    margin-top: 0;
    padding: 120px 0 120px;
    overflow: hidden;
    box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 52px 90px rgba(255, 255, 255, 0.08),
    inset 0 -54px 84px rgba(0, 8, 32, 0.22);
}

.footer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.54;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 360 360' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.58' numOctaves='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.01  0 0 0 0 0.05  0 0 0 0 0.20  0 0 0 0.95 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    background-size: 360px 360px;
    mix-blend-mode: multiply;
}

.footer-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    background-image:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 32%),
    radial-gradient(circle at 88% 18%, rgba(184, 212, 255, 0.20), rgba(184, 212, 255, 0) 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 34%, rgba(0, 8, 32, 0.20) 100%),
    url("data:image/svg+xml;utf8,<svg viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.50  0 0 0 0 0.68  0 0 0 0 1  0 0 0 0.52 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    background-size: 100% 100%, 100% 100%, 100% 100%, 260px 260px;
    mix-blend-mode: screen, screen, normal, screen;
}

.footer-wrapper {
    position: relative;
    z-index: 1;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    overflow: visible;
}

@media (max-width: 1024px) {
.footer-wrapper {
    padding-left: var(--page-gutter-x);
    padding-right: var(--page-gutter-x);
}

}

.footer-top {
    text-align: left;
    width: 100%;
    max-width: 544px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
    overflow: visible;
}

.footer-heading {
    color: var(--cream);
    font-family: "Source Serif Pro", serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.76px;
    margin: -0.15em 0 1.15rem 0;
    overflow: visible;
    font-optical-sizing: auto;
}

.footer-heading-line {
    display: block;
    max-width: none;
    margin: 0;
}

.footer-future-gradient {
    color: var(--cream);
    font-family: "Source Serif Pro Display", serif;
    font-size: inherit;
    font-style: italic;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: inherit;
    font-optical-sizing: auto;
    display: inline-block;
    overflow: visible;
    padding: 0;
    margin: 0;
}

.footer-description {
    color: var(--espresso-soft);
    font-family: var(--font-sans);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: 0 0 30px 0;
    max-width: 370px;
}

.footer-contact-btn {
    display: inline-flex;
    position: relative;
    isolation: isolate;
    min-height: 41px;
    min-width: 128px;
    padding: 12px 24px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 1000px;
    border: 1px solid rgba(246, 244, 240, 0.36);
    background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.32), transparent 22% 72%, rgba(246, 244, 240, 0.18)),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.34), transparent 28%),
    rgba(246, 244, 240, 0.22);
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    line-height: 110%;
    text-decoration: none;
    overflow: hidden;
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(30, 26, 22, 0.06),
    0 10px 24px rgba(30, 26, 22, 0.08);
    transition: color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.footer-contact-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--cream);
    opacity: 0;
    transform: scaleX(0.72);
    transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}

.footer-contact-btn::after, .tech-card-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
    radial-gradient(ellipse at 28% 10%, rgba(255, 255, 255, 0.24), transparent 38%),
    radial-gradient(ellipse at 72% 92%, rgba(var(--accent-rgb), 0.12), transparent 36%);
    mix-blend-mode: screen;
    opacity: 0.42;
    pointer-events: none;
    z-index: -1;
}

.footer-contact-btn:hover {
    color: var(--espresso);
    border-color: rgba(246, 244, 240, 0.72);
    transform: translateY(-1px);
    box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 12px 26px rgba(0, 0, 0, 0.16);
}

.footer-contact-btn:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.footer-bottom {
    position: relative;
    display: grid;
    grid-template-columns: 770px 1fr;
    align-items: flex-start;
    gap: 0;
    padding-top: 0;
    background: none;
}

.footer-bottom > .footer-top {
    grid-column: 1;
    grid-row: 1;
}

.footer-bottom > .footer-left {
    grid-column: 2;
    grid-row: 1;
}

.footer-bottom > .footer-divider {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 3.5rem;
}

.footer-left {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 50px;
    justify-content: flex-start;
    align-items: start;
    margin: 34px 0 0 0;
    transform: none;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-column-title {
    color: var(--White---FFFFFF, #FFF);
    font-family: var(--font-sans);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    margin: 0;
    text-decoration: none;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    line-height: 1;
}

.footer-links li {
    display: flex;
    line-height: 1;
}

.footer-link {
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-sans);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.1;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link-button {
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}

.footer-link:hover, .footer-link-button:hover {
    color: var(--White---FFFFFF, #FFF);
    font-family: var(--font-sans);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}

@media (max-width: 1024px) {
.footer-section {
    padding: 3rem 0.75rem;
}

.footer-heading {
    font-size: 32px;
    letter-spacing: -0.64px;
}

.footer-future-gradient {
    font-size: inherit;
    letter-spacing: -0.64px;
}

.footer-bottom {
    flex-direction: column;
    display: flex;
    gap: 3rem;
}

.footer-left {
    flex-direction: column;
    gap: 3rem;
}

.footer-top {
    max-width: none;
    margin: 0;
}

}

.footer-bottom-bar {
    position: relative;
    display: grid;
    grid-template-columns: 770px 1fr;
    align-items: flex-start;
    gap: 0;
    padding-top: 0;
    margin-top: 120px;
}

.footer-bottom-bar::before {
    content: none;
}

.footer-section .footer-divider {
    width: 90%;
    max-width: 1100px;
    height: 1px;
    margin: 3.5rem auto 0;
    background: rgba(255, 255, 255, 0.16);
    border: 0;
    pointer-events: none;
}

@media (max-width: 1024px) {
.footer-section .footer-divider {
    width: 92%;
    margin-top: 0;
    margin-bottom: 0;
    background: rgba(30, 26, 22, 0.16);
}

}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: var(--transition);
}

.footer-social-link:hover {
    color: var(--White---FFFFFF, #FFF);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-legal-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.74);
    font-family: var(--font-sans);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 320px;
    max-width: 320px;
    text-align: left;
    margin: 0;
}

.footer-logo {
    width: 120px;
    height: 25px;
    aspect-ratio: 24/5;
    fill: var(--White---FFFFFF, #FFF);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.76);
    font-family: var(--font-sans);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    margin: 0;
    white-space: nowrap;
    text-align: left;
}

@media (max-width: 1024px) {
.footer-bottom-bar {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}

.footer-bottom-right {
    align-items: flex-start;
    width: 100%;
}

.footer-tagline {
    text-align: left;
}

}

.modal-open {
    overflow: hidden;
}

.terms-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(30, 26, 22, 0.66);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.terms-modal[hidden] {
    display: none;
}

@supports (backdrop-filter: blur(8px)) {
.terms-modal {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

}

.terms-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.terms-modal-panel {
    position: relative;
    width: min(100%, 720px);
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 16px;
    background: #e8e0d8;
    color: var(--espresso, #1e1a16);
    box-shadow: 0 24px 64px rgba(28, 26, 22, 0.18);
    padding: 3rem;
    box-sizing: border-box;
}

.terms-modal-close {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(30, 26, 22, 0.55);
    font-family: var(--font-sans);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.terms-modal-close:hover, .terms-modal-close:focus-visible {
    color: var(--espresso, #1e1a16);
}

.terms-modal-close:focus-visible {
    outline: 2px solid rgba(var(--accent-rgb), 0.75);
    outline-offset: 4px;
}

.terms-modal-content {
    padding-right: 1.25rem;
}

.terms-modal-header h2 {
    margin: 0;
    padding-right: 3rem;
    color: var(--espresso, #1e1a16);
    font-family: "Source Serif Pro", Georgia, serif;
    font-size: 1.75em;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.terms-modal-header p {
    margin: 0.5rem 0 0;
    color: rgba(30, 26, 22, 0.65);
    font-family: var(--font-sans);
    font-size: 0.85em;
    font-weight: var(--weight-regular);
    line-height: var(--leading-normal);
}

.terms-modal-body {
    margin-top: 2rem;
    color: var(--espresso, #1e1a16);
    font-family: var(--font-sans);
    font-size: 1em;
    line-height: 1.6;
}

.terms-modal-body h3 {
    margin: 2rem 0 0.5rem;
    color: var(--espresso, #1e1a16);
    font-family: var(--font-sans);
    font-size: 1.05em;
    font-weight: var(--weight-medium);
    line-height: 1.3;
}

.terms-modal-body h3:first-child {
    margin-top: 0;
}

.terms-modal-body p {
    margin: 0;
}

.terms-modal-body p + p {
    margin-top: 1rem;
}

@media (max-width: 1024px) {
.terms-modal {
    align-items: stretch;
    justify-content: stretch;
}

.terms-modal-panel {
    width: 100%;
    max-height: calc(100vh - 2rem);
    padding: 1.5rem;
}

.terms-modal-close {
    top: 1.5rem;
    right: 1.5rem;
}

.terms-modal-content {
    padding-right: 0;
}

.terms-modal-header h2 {
    padding-right: 2.5rem;
}

}

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

.contact-page {
    background: var(--cream);
    min-height: 50vh;
}

.contact-section {
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-inner {
    width: 100%;
    max-width: 634px;
    margin: 0 auto;
    padding: 0 var(--page-gutter-x);
    box-sizing: border-box;
}

.contact-form-header {
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.contact-form-title {
    margin: 0;
    color: var(--espresso);
    font-family: "Source Serif Pro", Georgia, serif;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.88px;
}

.contact-form-subtitle {
    max-width: 42ch;
    margin: 0.85rem auto 0;
    color: rgba(30, 26, 22, 0.72);
    font-family: "Source Serif Pro", Georgia, serif;
    font-size: clamp(1.12rem, 1.45vw, 1.28rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.42;
    letter-spacing: -0.01em;
}

.contact-form {
    width: 100%;
    max-width: 634px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.contact-form-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
    width: 100%;
}

.contact-form-row-full {
    flex-wrap: nowrap;
}

.contact-form-row .contact-input, .contact-form-row .contact-select {
    flex: 1 1 0;
    min-width: 0;
}

.contact-form-row-full .contact-input, .contact-form-row-full .contact-select, .contact-form-row-full .contact-textarea {
    width: 100%;
}

.contact-input, .contact-select, .contact-textarea {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--espresso);
    background: var(--cream-elevated);
    border: 1px solid rgba(30, 26, 22, 0.10);
    border-radius: 10px;
    padding: 16px 24px;
    height: 54px;
}

.contact-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%237B7C84' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 24px;
    padding-right: 48px;
}

.contact-input::placeholder, .contact-textarea::placeholder {
    color: rgba(30, 26, 22, 0.5);
}

.contact-select:invalid, .contact-select option[value=""] {
    color: rgba(30, 26, 22, 0.5);
}

.contact-select option {
    color: var(--espresso);
}

.contact-input:focus, .contact-select:focus, .contact-textarea:focus {
    outline: none;
    border-color: rgba(30, 26, 22, 0.24);
}

.contact-select:not([value=""]):focus {
    border-color: rgba(30, 26, 22, 0.24);
}

.contact-textarea {
    height: auto;
    min-height: 120px;
    resize: vertical;
    background-image: none;
    padding-right: 24px;
}

.contact-form-actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 100px;
    background: var(--brand-blue, #1C369B);
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.2;
    border: 1px solid var(--brand-blue, #1C369B);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.contact-submit:hover {
    background: #003A96;
    border-color: #003A96;
    color: var(--cream);
}

/* Email-only contact form: the single mailto button is centred rather than
   right-aligned like the full form's submit (.contact-form-actions defaults to
   flex-end above). */
.contact-form--email .contact-form-actions {
    justify-content: center;
}

.contact-form-row, .contact-form-actions {
    opacity: 0;
    transform: translateY(20px);
    animation: cannonIn 0.4s ease-out forwards;
}

.contact-form-row:nth-child(1) {
    animation-delay: 0s;
}

.contact-form-row:nth-child(2) {
    animation-delay: 0.06s;
}

.contact-form-row:nth-child(3) {
    animation-delay: 0.12s;
}

.contact-form-row:nth-child(4) {
    animation-delay: 0.18s;
}

.contact-form-row:nth-child(5) {
    animation-delay: 0.24s;
}

.contact-form-row:nth-child(6) {
    animation-delay: 0.30s;
}

.contact-form-row:nth-child(7) {
    animation-delay: 0.36s;
}

.contact-form-actions {
    animation-delay: 0.42s;
}

@keyframes cannonIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
.contact-form-row {
    flex-direction: column;
}

.contact-form-row .contact-input, .contact-form-row .contact-select {
    width: 100%;
}

}

.about-mission {
    padding-bottom: 100px;
}

main:has(.about-who-bridge) {
    display: flex;
    flex-direction: column;
}

main:has(.about-who-bridge) > .hero.page-hero {
    order: 1;
}

.about-who-bridge {
    order: 2;
}

.about-who-bridge + .product-section-divider {
    order: 3;
}

.about-cmc {
    order: 5;
}

.about-cmc-divider {
    order: 5;
    margin-top: 2.25rem;
}

.about-mission {
    order: 6;
    padding-top: 5rem;
}

.about-cmc-content {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-cmc .tokenisation-section-header {
    margin-bottom: 60px;
}

.about-cmc-editorial {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(160px, 0.3fr);
    margin-top: 0;
}

.about-cmc-editorial .about-cmc-content {
    grid-column: 1;
    max-width: 52ch;
    gap: 1.5rem;
}

.about-cmc-logo-wrap {
    grid-column: 2;
    align-self: center;
    justify-self: end;
    width: min(100%, 280px);
    opacity: 0.22;
    transform: translate(-48px, -44px);
}

.about-cmc-logo {
    display: block;
    width: 100%;
    height: auto;
}

.about-cmc-editorial .about-link-arrow {
    margin-top: 0.5rem;
}

.about-cmc-lead, .about-cmc-body {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0;
    color: var(--espresso);
    margin: 0;
}

.about-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--brand-blue, #1C369B);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-link-arrow:hover, .about-link-arrow:focus-visible {
    color: var(--espresso);
}

.about-link-arrow .keep-reading-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.about-link-arrow .keep-reading-icon > path:first-child {
    fill: var(--cream-elevated) !important;
}

.about-link-arrow .keep-reading-icon g path {
    fill: currentColor;
    stroke: currentColor;
}

.about-link-arrow:hover .keep-reading-icon, .about-link-arrow:focus-visible .keep-reading-icon {
    transform: translateX(4px);
}

.about-leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.about-leadership-grid > .about-profile--leadership:nth-of-type(1) {
    grid-column: 1 / span 2;
}

.about-leadership-grid > .about-profile--leadership:nth-of-type(2) {
    grid-column: 3 / span 2;
}

.about-profile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.about-profile--leadership {
    position: relative;
    isolation: isolate;
    justify-content: flex-start;
    min-height: 0;
    padding: 1.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 1px 1.5px rgba(30, 26, 22, 0.04);
    overflow: hidden;
    transition: opacity 0.35s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
    will-change: transform;
}

.about-profile--leadership:hover {
    transform: translateY(-6px);
    z-index: 2;
    border-color: rgba(30, 26, 22, 0.14);
    box-shadow:
    0 14px 28px rgba(30, 26, 22, 0.08),
    0 4px 10px rgba(30, 26, 22, 0.05);
}

.about-profile--director {
    min-height: 0;
}

.about-profile-name {
    font-family: var(--font-sans);
    font-size: 1.2em;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.012em;
    color: var(--espresso);
    margin: 0;
}

.about-profile--leadership .about-profile-name {
    color: rgba(30, 26, 22, 0.9);
}

.about-profile-role {
    display: block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #2348D5;
    margin: 0.45rem 0 0;
}

.about-profile--leadership .about-profile-role {
    color: #2348D5;
}

.about-profile-bio {
    font-family: var(--font-sans);
    font-size: 1em;
    font-weight: 400;
    line-height: 1.6;
    color: var(--espresso);
    margin: 1.25rem 0 0;
    max-width: 58ch;
}

.about-profile--leadership .about-profile-bio {
    color: rgba(30, 26, 22, 0.82);
    font-size: clamp(0.9rem, 0.92vw, 0.98rem);
    font-style: italic;
    line-height: 1.42;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.about-profile-social {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    width: 100%;
    align-self: stretch;
    border-top: 0.5px solid #c8c8cd;
}

.about-social-link {
    display: inline-flex;
    color: var(--espresso);
    opacity: 0.5;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.about-social-link:hover {
    opacity: 1;
}

.about-social-link svg {
    display: block;
    width: 0.85em;
    height: 0.85em;
}

@media (min-width: 1025px) and (max-width: 1728px) {
.about-mission {
    padding-bottom: clamp(4rem, 8vh, 5rem);
}

.about-profile-name {
    font-size: 1.2em;
    letter-spacing: -0.012em;
}

.about-profile-role {
    font-size: 12px;
}

}

@media (min-width: 900px) and (max-width: 1099px) {
.about-leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-leadership-grid > .about-profile--leadership:nth-of-type(1), .about-leadership-grid > .about-profile--leadership:nth-of-type(2) {
    grid-column: auto;
}

}

@media (max-width: 1024px) {
.about-cmc-editorial {
    display: block;
}

.about-cmc-logo-wrap {
    display: none;
}

}

@media (max-width: 899px) {
.about-leadership-grid {
    grid-template-columns: 1fr;
}

.about-leadership-grid > .about-profile--leadership:nth-of-type(1), .about-leadership-grid > .about-profile--leadership:nth-of-type(2) {
    grid-column: auto;
}

}

img, video, svg {
    max-width: 100%;
}

@supports (height: 100svh) {
.hero {
    min-height: calc(100svh / var(--page-scale));
}

}

@media (max-width: 1024px) {
.tech-grid, .insights-grid {
    grid-template-columns: 1fr;
}

.footer-bottom, .footer-bottom-bar {
    align-items: stretch;
}

.footer-left {
    transform: none;
}

}

@media (max-width: 1024px) {
:root {
    --text-body: 1rem;
    --page-gutter-x: clamp(1rem, 5vw, 1.5rem);
}

body {
    font-size: var(--text-body);
}

main {
    overflow-x: clip;
}

.hero {
    height: auto;
    min-height: min(780px, 100svh);
}

.hero-wrapper {
    min-height: inherit;
    padding: var(--m-space-3xl) var(--page-gutter-x) var(--m-space-xl);
}

.hero:not(.page-hero) .hero-content {
    transform: none;
}

.hero-content h1 {
    width: 100%;
    max-width: 100%;
    line-height: 1.04;
    letter-spacing: -0.04em;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.hero-content h1 .inline-group {
    white-space: normal;
}

.hero-content h1 .alt-font {
    margin-left: 0.14em;
}

.hero-content h1 .rotating-word-wrapper, .hero-content h1 .gradient-text, .typing-text {
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
}

.typewriter-cursor {
    width: 0.72em;
}

.hero-content h6 {
    width: min(100%, 34rem);
    max-width: 100%;
    text-wrap: pretty;
}

.hero.page-hero {
    min-height: min(680px, 92svh);
}

.hero.page-hero .hero-content h1.page-hero-title,
.hero.page-hero .hero-content p.page-hero-subtitle {
    max-width: 100%;
}

.bridge-thesis, .tokenisation-section, .contact-section, .faq-section {
    padding-top: var(--m-space-2xl);
    padding-bottom: var(--m-space-2xl);
}

.tokenisation-section-header, .insights-header {
    margin-bottom: var(--m-space-lg);
}

main > section.hero + section {
    padding-top: var(--m-space-xl);
}

.bridge-problem-block {
    margin-top: var(--m-space-2xl);
    padding: var(--m-space-2xl) var(--page-gutter-x);
}

.backdrop-wrapper, .tokenisation-who-serve-container {
    display: flex;
    flex-direction: column;
    gap: var(--m-space-md);
}

.faq-title, .tokenisation-section-title, .insights-title, .contact-form-title {
    font-size: clamp(2rem, 8.8vw, 2.65rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.about-cmc-lead, .about-cmc-body, .footer-description {
    font-size: clamp(1rem, 4vw, 1.125rem);
    line-height: 1.5;
}

.bridge-quote-carousel {
    margin-left: 0;
    margin-right: 0;
}

.bridge-quote {
    min-width: min(74vw, 20rem);
    min-height: auto;
}

.faq-inner, .faq-list, .tech-grid, .insights-grid, .about-leadership-grid {
    grid-template-columns: 1fr;
}

.build-solutions-section, .insights-section, .backdrop-section {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--page-gutter-x);
    padding-right: var(--page-gutter-x);
}

.tech-card {
    min-height: auto;
    padding: var(--m-space-2xl) clamp(1.25rem, 6vw, 1.75rem) var(--m-space-md);
}

.tech-card-title, .tokenisation-serve-title {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    line-height: 1.18;
}

.tech-card-description, .tech-card-feature h4, .tech-card-feature p, .tokenisation-serve-desc {
    font-size: clamp(0.95rem, 3.8vw, 1rem);
    line-height: 1.45;
}

button.tokenisation-serve-item {
    gap: 1rem;
}

.tokenisation-serve-list {
    gap: 1.5rem;
}

.tokenisation-serve-image {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 16 / 10;
    order: -1;
}

.tokenisation-who-serve-container .tokenisation-serve-image {
    display: none;
}

.tokenisation-serve-mobile-panel {
    display: block;
    position: relative;
    width: 100%;
    min-height: 640px;
    margin: 1.25rem 0 3rem;
    border-radius: 10px;
    overflow: visible;
    background: var(--cream-elevated);
    border: 1px solid rgba(30, 26, 22, 0.08);
}

.tokenisation-serve-mobile-frame {
    display: block;
    width: 100%;
    height: 640px;
    border: 0;
    border-radius: 10px;
    overflow: hidden;
}

.tokenisation-serve-mobile-panel::after {
    content: '';
    position: absolute;
    left: calc(var(--page-gutter-x) * -1);
    right: calc(var(--page-gutter-x) * -1);
    bottom: -1.5rem;
    height: 1px;
    background: rgba(30, 26, 22, 0.14);
}

.tokenisation-serve-list .tokenisation-serve-mobile-panel:last-child::after {
    content: none;
}

.tokenisation-serve-list {
    gap: 0;
}

.tokenisation-serve-line {
    display: none;
}

.tokenisation-who-serve .tokenisation-section-header {
    display: none;
}

.about-cmc .tokenisation-section-header, .about-cmc-content, .about-cmc-editorial .about-cmc-content {
    text-align: center;
    align-items: center;
    width: 100%;
    max-width: none;
}

.about-cmc-lead, .about-cmc-body {
    max-width: none;
}

.about-cmc .about-link-arrow {
    align-self: center;
}

.tokenisation-serve-frame {
    height: 100%;
}

.insights-main {
    height: auto;
    border-radius: 14px;
}

.insights-main-left, .insights-main-right {
    width: 100%;
}

.insights-main-left {
    padding: clamp(1.5rem, 7vw, 2rem);
}

.insights-main-right, .insights-card-image-clip {
    height: auto;
    aspect-ratio: 16 / 10;
}

.insights-main-title, .insights-card-title {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    line-height: 1.2;
}

.backdrop-section {
    margin-top: var(--m-space-2xl);
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
    grid-template-rows: minmax(0, auto);
}

.backdrop-content {
    padding: clamp(4rem, 14vw, 5rem) var(--page-gutter-x);
}

.backdrop-left, .backdrop-right {
    flex-basis: auto;
    width: 100%;
}

.backdrop-wrapper, .backdrop-left, .backdrop-right, .backdrop-author {
    align-items: center;
    text-align: center;
}

.footer-section {
    padding: 2.75rem 0 1.25rem;
}

.footer-bottom, .footer-bottom-bar, .footer-legal-row {
    flex-direction: column;
    align-items: flex-start;
}

.footer-bottom {
    gap: 4.2rem;
}

.footer-top {
    max-width: 24rem;
    margin: 0 auto;
    text-align: center;
}

.footer-heading {
    font-size: clamp(1.65rem, 7.2vw, 2.05rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin: 0 0 1rem;
    text-align: center;
}

.footer-heading-line {
    max-width: none;
}

.footer-heading-line:nth-child(2) {
    display: none;
}

.footer-contact-btn {
    min-height: 34px;
    padding: 0 1.15rem;
    font-size: 0.875rem;
    margin-top: 0.4rem;
}

.footer-left {
    flex: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 1.75rem;
    transform: none;
}

.footer-column {
    gap: 0.9rem;
}

.footer-links {
    gap: 0.75rem;
}

.footer-column-title, .footer-link, .footer-link:hover, .footer-link-button:hover {
    font-size: 0.875rem;
}

.footer-bottom-bar {
    gap: 1rem;
    margin-top: 1.1rem;
    padding-top: 0.9rem;
}

.footer-bottom-left {
    gap: 0.75rem;
}

.footer-bottom-right {
    display: none;
}

.footer-tagline {
    white-space: normal;
    text-align: left;
}

.contact-form, .contact-inner {
    max-width: none;
}

.contact-form-row, .contact-form-row-full {
    flex-direction: column;
    flex-wrap: nowrap;
}

.contact-form-actions {
    justify-content: stretch;
}

.contact-submit {
    width: 100%;
    min-height: 48px;
}

.contact-input, .contact-select, .contact-textarea {
    width: 100%;
    min-height: 52px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.terms-modal {
    padding: 0.75rem;
}

.terms-modal-panel {
    max-height: calc(100svh - 1.5rem);
    padding: 1.5rem;
}

}

@media (max-width: 480px) {
:root {
    --page-gutter-x: 1rem;
}

.nav-container {
    padding-left: var(--page-gutter-x);
    padding-right: var(--page-gutter-x);
    height: 72px;
    align-items: center;
}

.logo img {
    height: 31px;
}

.mobile-menu-toggle {
    width: 40px;
    height: 40px;
    padding: 0.35rem;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 31px;
    height: 2px;
}

.contact-hero .hero-background-video {
    object-position: 68% center;
}

.animate-on-scroll {
    transform: translateY(10px);
    transition-duration: 0.28s;
}

.tech-card {
    transform: translateY(14px);
    transition-duration: 0.28s;
}

.typewriter-cursor {
    width: 0.55em;
    margin-left: 1px;
}

.faq-title, .tokenisation-section-title, .insights-title, .contact-form-title {
    font-size: clamp(1.65rem, 7vw, 1.9rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.about-cmc-lead, .about-cmc-body, .contact-form-subtitle {
    max-width: 32ch;
    font-size: clamp(0.82rem, 3.2vw, 0.95rem);
    line-height: 1.42;
    letter-spacing: -0.01em;
}

.bridge-thesis-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.bridge-act--solution {
    margin-bottom: 1.25rem;
}

.bridge-thesis:has(.bridge-act--solution) {
    padding-bottom: 1.25rem;
}

.build-solutions-section {
    margin-top: 0;
    padding-bottom: 0;
}

.bridge-quote-carousel {
    margin-top: 1.75rem;
    margin-bottom: -0.75rem;
    padding-top: 0.35rem;
    padding-bottom: 0.75rem;
}

.bridge-quote-controls {
    margin-top: 0.75rem;
    margin-bottom: 2rem;
}

.tech-grid, .insights-grid {
    gap: var(--m-space-md);
}

.contact-form-header {
    margin-bottom: var(--m-space-lg);
}

.tech-card {
    border-radius: 10px;
}

.tokenisation-serve-image {
    min-height: 520px;
    aspect-ratio: auto;
}

.tokenisation-serve-mobile-panel {
    min-height: 640px;
}

.tokenisation-serve-mobile-frame {
    height: 640px;
}

.footer-left {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.footer-section {
    padding-bottom: 1.25rem;
}

.about-cmc-editorial .about-cmc-content, .about-cmc .about-cmc-lead, .about-cmc .about-cmc-body {
    width: 100%;
    max-width: none;
}

}

@media (max-width: 480px) and (min-height: 1000px) {
.hero, .hero.page-hero, .hero.tokenisation-hero, .hero.contact-hero, .hero.proof-integrity-hero, .hero.tokenisation-engine-hero {
    height: min(100svh, 920px);
    min-height: min(100svh, 920px);
}

.hero-wrapper, .hero.page-hero .hero-wrapper {
    min-height: min(100svh, 920px);
}

}

@media (max-width: 599px) {
.hero {
    background-color: var(--brand-blue, #1C369B);
    height: 100svh;
    min-height: 100svh;
    align-items: flex-start;
}

.hero-wrapper {
    padding-top: 4.5rem;
    padding-bottom: var(--m-space-xl);
    align-items: center;
}

.hero.page-hero, .hero.tokenisation-hero, .hero.contact-hero, .hero.proof-integrity-hero, .hero.tokenisation-engine-hero {
    background-color: var(--brand-blue, #1C369B);
    height: 100svh;
    min-height: 100svh;
    padding: 0;
}

.hero.page-hero .hero-wrapper {
    min-height: 100svh;
    align-items: center;
    padding: 4.5rem var(--page-gutter-x) var(--m-space-xl);
}

.hero.page-hero .hero-content,
.hero.page-hero .hero-content.page-hero-content--wide {
    width: 100%;
    max-width: var(--page-hero-content-max);
}

.hero-content h1 {
    line-height: 1.08;
    letter-spacing: -0.04em;
    max-width: 100%;
}

.hero-content h1 br {
    display: none;
}

.hero-content h1 .inline-group {
    display: inline;
    font-size: 1.08em;
    white-space: normal;
}

.hero-content h1 .alt-font {
    margin-left: 0.16em;
    margin-right: 0.03em;
}

.hero-content h1 .tokenised-static {
    margin-left: 0.08em;
}

.hero-content h1 .rotating-word-wrapper {
    display: inline-block;
    max-width: 100%;
    margin-left: 0;
    transform: translateY(1px);
}

.hero-content h6 {
    max-width: min(var(--hero-subtitle-max-width), 32ch);
    margin-left: 0;
    text-align: left;
}

.hero.page-hero .hero-content p.page-hero-subtitle {
    margin-left: 0;
    text-align: left;
}

.insights-section {
    margin: 0 auto;
    padding-left: var(--page-gutter-x);
    padding-right: var(--page-gutter-x);
    padding-top: var(--m-space-md);
    padding-bottom: 0.75rem;
}

.insights-header {
    margin-bottom: 2.5rem;
}

.insights-main, .insights-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: transparent;
    border-radius: 0;
    overflow: visible;
}

.insights-main-right {
    order: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
}

.insights-main-left {
    order: 1;
    width: 100%;
    padding: 1.25rem 0 0;
    background: transparent;
    gap: 0;
    border-radius: 10px;
}

.insights-main-image, .insights-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.insights-card-image-clip {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
}

.insights-grid {
    margin-top: var(--m-space-lg);
}

.insights-main, .insights-grid .insights-card {
    padding-bottom: var(--m-space-lg);
    border-bottom: 1px solid rgba(30, 26, 22, 0.14);
}

.insights-grid .insights-card {
    padding-top: var(--m-space-lg);
}

.insights-grid .insights-card:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.insights-date, .insights-card-date {
    margin: 1.25rem 0 0.75rem;
}

.insights-main-title, .insights-card-title {
    font-family: var(--font-sans);
    font-size: clamp(1.35rem, 6.6vw, 1.8rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.insights-main-text, .insights-card-text {
    font-size: clamp(0.95rem, 3.7vw, 1rem);
    line-height: 1.42;
    margin-top: 0.85rem;
}

.insights-card-link {
    margin-top: var(--m-space-md);
    padding-top: 0;
}

.insights-grid .insights-card:last-child .insights-card-link {
    margin-bottom: 0;
}

}

.bridge-act--opportunity .bridge-thesis-heading--display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.08em;
    max-width: none;
    color: #000;
}

.bridge-thesis-display-row {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    column-gap: 0.4ch;
    row-gap: 0.1em;
    line-height: 1;
}

.bridge-thesis-display-row--mobile {
    display: none;
}

@media (max-width: 1024px) {
.bridge-thesis-display-row--desktop {
    display: none;
}

.bridge-thesis-display-row--mobile {
    display: inline-flex;
}

}

.bridge-thesis-display-italic, .bridge-thesis-display-regular {
    font-family: "Source Serif Pro", Georgia, serif;
    font-size: 60px;
    line-height: 1;
    letter-spacing: -1.2px;
    color: #000;
    text-shadow: none;
    white-space: nowrap;
}

.bridge-thesis-display-regular {
    font-style: normal;
    font-weight: 400;
}

.bridge-thesis-display-italic {
    font-style: italic;
    font-weight: 600;
}

.bridge-thesis-display-italic--blue {
    color: #2348D5;
}

.bridge-thesis-display-subtitle {
    margin: calc(20px * var(--opportunity-scale, 1)) auto 0;
    max-width: calc(492px * var(--opportunity-scale, 1));
    font-family: var(--font-sans);
    font-size: calc(20px * var(--opportunity-scale, 1));
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: calc(-0.2px * var(--opportunity-scale, 1));
    color: #727377;
    text-align: center;
}

.bridge-thesis:has(.bridge-act--opportunity) {
    --opportunity-scale: 1;
    padding-top: 120px;
}

.bridge-act--opportunity {
    padding-bottom: 0;
}

.bridge-act--opportunity .bridge-quote-controls {
    margin-bottom: 0;
}

.bridge-act--opportunity + .bridge-problem-block {
    margin-top: 120px;
}

.bridge-quote-carousel--cards {
    --card-scale: 1;
    overflow: visible;
    width: 1446px;
    max-width: none;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    --card-w: calc(474px * var(--card-scale));
    --card-h: calc(308px * var(--card-scale));
    --card-pad-y: calc(31px * var(--card-scale));
    --card-pad-x: calc(41px * var(--card-scale));
    --card-gap: calc(30px * var(--card-scale));
    --card-body-gap: calc(20px * var(--card-scale));
    --card-divider-pad: calc(20px * var(--card-scale));
    --card-attr-gap: calc(10px * var(--card-scale));
    --card-radius: calc(16px * var(--card-scale));
    --card-track-gap: calc(12px * var(--card-scale));
    --quote-size: calc(22px * var(--card-scale));
    --quote-tracking: calc(-0.44px * var(--card-scale));
    --glyph-w: calc(25px * var(--card-scale));
    --glyph-h: calc(18px * var(--card-scale));
    --role-size: calc(16px * var(--card-scale));
    --speaker-size: calc(14px * var(--card-scale));
    --logo-h-default: calc(23px * var(--card-scale));
    --logo-h-tall: calc(28px * var(--card-scale));
    --logo-h-cmc: calc(32px * var(--card-scale));
    margin-top: 60px;
    margin-bottom: 0;
}

.bridge-quote-carousel--cards .bridge-quote-track {
    --quote-gap: var(--card-track-gap);
    --card-hover-lift: 6px;
    gap: var(--quote-gap);
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    padding-top: calc(var(--card-hover-lift) + 6px);
    padding-bottom: 1.25rem;
    margin-top: calc(-1 * (var(--card-hover-lift) + 6px));
    margin-bottom: -1.25rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
}

.bridge-quote-carousel--cards .bridge-quote-track::-webkit-scrollbar {
    display: none;
}

.bridge-quote-carousel--cards .bridge-quote--card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.bridge-quote-carousel--cards .bridge-quote-track [data-scroll-clone] {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

.bridge-act--opportunity .bridge-quote-controls {
    display: none !important;
}

.bridge-act--opportunity .bridge-quote-dots {
    display: flex;
}

.bridge-quote--card {
    flex: 0 0 var(--card-w);
    width: var(--card-w);
    min-width: 0;
    height: var(--card-h);
    min-height: var(--card-h);
    padding: var(--card-pad-y) var(--card-pad-x);
    border: 1px solid #e5e5e5;
    border-radius: var(--card-radius);
    background: #ffffff;
    box-shadow: 0 1px 1.5px rgba(30, 26, 22, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--card-gap);
    overflow: hidden;
    text-align: left;
    box-sizing: border-box;
}

.bridge-quote--card:hover {
    transform: translateY(-6px);
    border-color: rgba(30, 26, 22, 0.14);
    box-shadow:
    0 14px 28px rgba(30, 26, 22, 0.08),
    0 4px 10px rgba(30, 26, 22, 0.05);
}

.bridge-quote--card .bridge-quote-body {
    display: flex;
    flex-direction: column;
    gap: var(--card-body-gap);
    flex: 1 0 0;
    min-height: 0;
}

.bridge-quote-glyph {
    display: block;
    width: var(--glyph-w);
    height: var(--glyph-h);
    flex-shrink: 0;
}

.bridge-quote--card blockquote {
    margin: 0;
    font-family: "Source Serif Pro Display", "Source Serif Pro", Georgia, serif;
    font-size: var(--quote-size);
    font-style: italic;
    font-weight: 400;
    line-height: 1.24;
    letter-spacing: var(--quote-tracking);
    color: #000;
    text-shadow: none;
    word-break: break-word;
}

.bridge-quote--card .bridge-quote-attr {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: var(--card-attr-gap);
    margin: 0;
    padding-top: var(--card-divider-pad);
    border-top: 0.5px solid #c8c8cd;
    color: inherit;
    font-family: var(--font-sans);
}

.bridge-quote--card .bridge-quote-logo-wrap {
    flex: 1 0 0;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
}

.bridge-quote--card .bridge-quote-logo {
    display: block;
    width: auto;
    height: var(--logo-h-default);
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
}

.bridge-quote--card .bridge-quote-logo[alt="Robinhood"] {
    height: var(--logo-h-tall);
}

.bridge-quote--card .bridge-quote-logo[alt="Standard Chartered"] {
    height: var(--logo-h-cmc);
}

.bridge-quote--card .bridge-quote-logo[alt="BlackRock"] {
    height: calc(22px * var(--card-scale));
}

.bridge-quote--card .bridge-quote-logo--cmc {
    height: var(--logo-h-cmc);
}

.bridge-quote--card .bridge-quote-attr-text {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    text-align: left;
    margin-top: 0;
    white-space: nowrap;
    color: inherit;
    font-family: var(--font-sans);
    line-height: 1.4;
}

.bridge-quote--card .bridge-quote-role {
    color: #000;
    font-size: var(--role-size);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
}

.bridge-quote--card .bridge-quote-speaker {
    color: #727377;
    font-size: var(--speaker-size);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
}

@media (max-width: 1024px) {
/* Unified display headings — Opportunity, Problem, Solution (501–768 gap vs tablet 769+) */
.bridge-thesis-display-italic,
.bridge-thesis-display-regular,
.bridge-problem-block .bridge-solution-heading,
.bridge-problem-block .bridge-solution-heading-regular,
.bridge-problem-block .bridge-solution-heading-italic,
.bridge-act--solution .bridge-solution-heading,
.bridge-act--solution .bridge-solution-heading-regular,
.bridge-act--solution .bridge-solution-heading-italic {
    font-size: clamp(2rem, 7.5vw, 2.75rem);
    letter-spacing: -0.5px;
    line-height: 1.05;
    white-space: normal;
}

.bridge-act--opportunity .bridge-thesis-heading--display {
    width: 100%;
    max-width: 100%;
    padding-inline: var(--page-gutter-x, 1rem);
    box-sizing: border-box;
}

.bridge-thesis-display-row {
    column-gap: 0.3ch;
    flex-wrap: nowrap;
    max-width: 100%;
}

.bridge-thesis-display-subtitle,
.bridge-problem-block .bridge-problem-subtitle {
    margin-top: var(--m-space-md);
    max-width: 36rem;
    font-size: clamp(1rem, 2.4vw, 1.125rem);
    letter-spacing: -0.16px;
    line-height: 1.45;
    padding-inline: var(--page-gutter-x, 1rem);
    margin-inline: auto;
}


.bridge-quote-carousel--cards {
    --carousel-w: min(calc(100vw - 2rem), 440px);
    width: var(--carousel-w);
    max-width: 100%;
    left: auto;
    transform: none;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    --card-scale: 0.78;
    --card-w: var(--carousel-w);
    --card-h: auto;
    margin-top: var(--m-space-lg);
}

.bridge-quote-carousel--cards .bridge-quote--card {
    flex: 0 0 var(--card-w);
    width: var(--card-w);
    max-width: none;
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    gap: calc(var(--card-gap) + 8px);
}

.bridge-quote-carousel--cards .bridge-quote--card .bridge-quote-body {
    flex: 0 1 auto;
}

.bridge-quote-carousel--cards .bridge-quote--card .bridge-quote-attr {
    margin-top: auto;
}
}

.bridge-act--solution {
    --sol-scale: var(--opportunity-scale, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(20px * var(--sol-scale));
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 clamp(1rem, 4vw, 4rem);
    text-align: center;
}

.bridge-solution-eyebrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(20px * var(--sol-scale));
}

.bridge-solution-eyebrow-text {
    font-family: "Source Serif Pro Display", "Source Serif Pro", Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: calc(20px * var(--sol-scale));
    line-height: 1.2;
    letter-spacing: calc(-0.4px * var(--sol-scale));
    color: #2348D5;
    text-shadow: none;
    white-space: nowrap;
}

.bridge-solution-eyebrow-line {
    display: block;
    width: calc(47px * var(--sol-scale));
    height: 1px;
    background: #8DA9FF;
}

.bridge-act--solution .bridge-solution-heading {
    margin: 0;
    padding: 0;
    max-width: none;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 16px;
    font-family: "Source Serif Pro", Georgia, serif;
    font-size: 60px;
    line-height: 1;
    letter-spacing: -1.2px;
    color: #000;
    text-shadow: none;
}

.bridge-solution-heading-italic {
    font-style: italic;
    font-weight: 600;
    color: #2348D5;
}

.bridge-solution-heading-regular {
    font-style: normal;
    font-weight: 400;
    color: #000;
}

.bridge-solution-body {
    margin: 0;
    max-width: calc(720px * var(--sol-scale));
    font-family: var(--font-sans);
    font-size: calc(20px * var(--sol-scale));
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: calc(-0.2px * var(--sol-scale));
    color: #000;
    text-align: center;
}

@media (max-width: 1024px) {
.bridge-act--solution .bridge-solution-heading {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--m-space-sm);
}

}

.build-solutions-section {
    padding-left: 0;
    padding-right: 0;
    background: var(--cream);
    padding-bottom: 140px;
}

.build-solutions-section .tech-grid {
    width: 1200px;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(3, 384px);
    gap: 24px;
    justify-content: center;
    align-items: stretch;
}

.build-solutions-section .tech-card {
    position: relative;
    width: 384px;
    height: 751px;
    flex: 0 0 auto;
    box-sizing: border-box;
    padding: 60px 30px;
    border: 0;
    border-radius: 20px;
    background:
    linear-gradient(
    91.2417191576364deg,
    #34499B 1.9115%,
    #1B359B 97.845%
    );
    background-repeat: no-repeat;
    background-size: 100% 100%;
    box-shadow: 0 14px 7px rgba(0, 2, 59, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    isolation: isolate;
}

.build-solutions-section .tech-card::before, .build-solutions-section .tech-card::after {
    content: none;
}

.build-solutions-section .tech-card:nth-child(1) {
    background-image:
    url("assets/panels/panel-1-bg.svg"),
    linear-gradient(91.2417191576364deg, #34499B 1.9115%, #1B359B 97.845%);
    background-position: center, 0 0;
    background-size: 100% 100%, 100% 100%;
    background-repeat: no-repeat, no-repeat;
}

.build-solutions-section .tech-card:nth-child(2) {
    background-image:
    url("assets/panels/panel-2-bg.svg"),
    linear-gradient(91.2417191576364deg, #34499B 1.9115%, #1B359B 97.845%);
    background-position: center, 0 0;
    background-size: 100% 100%, 100% 100%;
    background-repeat: no-repeat, no-repeat;
}

.build-solutions-section .tech-card:nth-child(3) {
    background-image:
    url("assets/panels/panel-3-bg.svg"),
    url("assets/panels/panel-3-sunburst.svg"),
    linear-gradient(91.21deg, #34499B 1.91%, #1B359B 97.85%);
    background-position: center, 100px -260px, 0 0;
    background-size: 100% 100%, 500px 500px, 100% 100%;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-blend-mode: normal, lighten, normal;
}

.build-solutions-section .tech-card > * {
    position: relative;
    z-index: 1;
}

.build-solutions-section .tech-card.tech-card-visible:hover {
    transform: translateY(-6px);
    box-shadow:
    0 22px 14px rgba(0, 2, 59, 0.22),
    0 6px 12px rgba(0, 2, 59, 0.18);
    border-color: transparent;
}

.build-solutions-section .tech-card-icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    min-height: 0;
    margin: 0 0 30px;
    display: inline-flex;
    color: #5996FF;
}

.build-solutions-section .tech-card-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
    opacity: 1;
}

.build-solutions-section .tech-card-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    color: inherit;
    fill: currentColor;
}

.build-solutions-section .tech-card-title {
    display: block;
    width: 100%;
    margin: 0 0 10px;
    height: 36px;
    flex: 0 0 36px;
    min-height: 0;
    font-family: "Source Serif Pro Display", "Source Serif Pro", Georgia, serif;
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.6px;
    color: #ffffff;
    text-shadow: none;
    white-space: nowrap;
    overflow: hidden;
}

.build-solutions-section .tech-card-description {
    display: block;
    width: 100%;
    margin: 0 0 30px;
    height: 60px;
    flex: 0 0 60px;
    min-height: 0;
    overflow: hidden;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #C8C8CD;
}

.build-solutions-section .tech-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    width: 324px;
    height: 324px;
    flex: 0 0 324px;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.build-solutions-section .tech-card-list li {
    position: relative;
    display: grid;
    grid-template-columns: 20px 1fr;
    column-gap: 10px;
    row-gap: 6px;
    padding: 0;
    border: 0;
    height: 60px;
    align-content: start;
    align-items: start;
}

.build-solutions-section .tech-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: -14px;
    width: auto;
    height: 1px;
    margin: 0;
    border: 0;
    border-radius: 0;
    flex: initial;
    background: rgba(141, 169, 255, 0.4);
}

.build-solutions-section .tech-card-list li:last-child::before {
    content: none;
}

.build-solutions-section .tech-card-bullet {
    display: block;
    grid-row: 1;
    grid-column: 1;
    width: 20px;
    height: 20px;
    align-self: start;
    margin-top: 0;
}

.build-solutions-section .tech-card-feature {
    display: contents;
}

.build-solutions-section .tech-card-feature h4 {
    grid-row: 1;
    grid-column: 2;
    margin: 0;
    align-self: center;
    height: 20px;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.build-solutions-section .tech-card-feature p {
    grid-row: 2;
    grid-column: 1 / -1;
    margin: 0;
    padding-left: 30px;
    padding-right: 20px;
    height: 34px;
    overflow: hidden;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #C8C8CD;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.build-solutions-section .tech-card-button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    align-self: flex-start;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 12px 24px;
    min-height: 0;
    height: 41px;
    border-radius: 1000px;
    border: 0;
    background: #ffffff;
    color: #000000;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: 0;
    text-decoration: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    transition: color 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.build-solutions-section .tech-card-button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #000000;
    opacity: 0;
    transform: scaleX(0.72);
    transform-origin: center;
    transition: opacity 0.22s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
    pointer-events: none;
}

.build-solutions-section .tech-card-button > * {
    position: relative;
    z-index: 1;
}

.build-solutions-section .tech-card-button::after {
    content: "";
    position: relative;
    z-index: 1;
    inset: auto;
    display: inline-block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8h9M8 3l5 5-5 5' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8h9M8 3l5 5-5 5' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
    border-radius: 0;
    opacity: 1;
    transform: none;
    mix-blend-mode: normal;
}

.build-solutions-section .tech-card-button:hover, .build-solutions-section .tech-card-button:focus-visible {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 2, 59, 0.18);
    border-color: transparent;
}

.build-solutions-section .tech-card-button:hover::before, .build-solutions-section .tech-card-button:focus-visible::before {
    opacity: 1;
    transform: scaleX(1);
}

@media (max-width: 1024px) {
.build-solutions-section {
    padding-left: var(--page-gutter-x);
    padding-right: var(--page-gutter-x);
}

.build-solutions-section .tech-grid {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
    gap: 24px;
}

.build-solutions-section .tech-card {
    width: 100%;
    max-width: 384px;
    height: auto;
    margin: 0 auto;
}

.build-solutions-section .tech-card-title, .build-solutions-section .tech-card-description, .build-solutions-section .tech-card-list, .build-solutions-section .tech-card-feature h4, .build-solutions-section .tech-card-feature p, .build-solutions-section .tech-card-button {
    height: auto;
}

.build-solutions-section .tech-card-feature p {
    display: block;
}

}

.insights-section {
    background: #FFFFFF;
    max-width: none;
    padding-left: var(--page-gutter-x);
    padding-right: var(--page-gutter-x);
    padding-top: 120px;
    padding-bottom: 120px;
    margin-left: 0;
    margin-right: 0;
}

.insights-section > .wrapper {
    max-width: var(--page-max-width);
    margin: 0 auto;
    box-sizing: border-box;
}

.footer-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #FFFFFF;
    background-color: #FFFFFF;
    box-shadow: none;
    border-top: 0;
}

.footer-section::before, .footer-section::after {
    display: none;
    content: none;
}

.footer-section .footer-divider {
    background: rgba(30, 26, 22, 0.16);
}

.footer-section .footer-heading {
    color: var(--espresso, #1E1A16);
}

.footer-section .footer-future-gradient {
    color: #2348D5;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: #2348D5;
}

.footer-section .footer-description {
    color: #727377;
}

.footer-section .footer-column-title {
    color: #000000;
    text-decoration: none;
}

.footer-section .footer-link, .footer-section .footer-link-button {
    color: #727377;
}

.footer-section .footer-link:hover, .footer-section .footer-link-button:hover {
    color: #000000;
}

.footer-section .footer-bottom-bar::before {
    display: none;
    content: none;
    background: transparent;
}

.footer-section .footer-copyright, .footer-section .footer-tagline {
    color: #727377;
}

.footer-section .footer-social-link {
    color: rgba(30, 26, 22, 0.66);
}

.footer-section .footer-social-link:hover {
    color: #000000;
}

.footer-section .footer-logo {
    color: #000000;
    fill: currentColor;
}

.footer-section .footer-contact-btn {
    background: #000000;
    border: 1px solid #000000;
    color: #FFFFFF;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.footer-section .footer-contact-btn::before, .footer-section .footer-contact-btn::after {
    display: none;
    content: none;
}

.footer-section .footer-contact-btn:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.footer-section .footer-contact-btn:hover::before {
    opacity: 0;
    transform: none;
}

.insights-section .insights-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.insights-section .insights-title {
    margin: 0;
    font-family: "Source Serif Pro Display", "Source Serif Pro", Georgia, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.8px;
    color: #000;
}

.insights-section .insights-visit {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: 0;
    color: #2348D5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.insights-section .insights-visit svg {
    width: 20px;
    height: 20px;
}

.insights-section .insights-visit:hover {
    color: #1A36A8;
}

.insights-section .insights-main {
    display: flex;
    flex-direction: row;
    height: 540px;
    min-height: 0;
    margin-bottom: 30px;
    overflow: hidden;
    background: transparent;
    align-items: stretch;
    border-radius: 0;
}

.insights-section .insights-main-left {
    flex: 0 0 50%;
    width: 50%;
    min-width: 0;
    box-sizing: border-box;
    background: #F6F4F0;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    position: relative;
}

.insights-section .insights-main-left::before {
    content: "Featured";
    display: block;
    order: -1;
    margin-bottom: 20px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #2348D5;
}

.insights-section .insights-main-title {
    order: 1;
    margin: 0 0 30px;
    font-family: "Source Serif Pro", Georgia, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.8px;
    color: #000;
    text-shadow: none;
}

.insights-section .insights-main-text {
    order: 2;
    margin: 0 0 40px 0;
    padding-right: 40px;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #000;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.insights-section .insights-main-meta {
    order: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    padding-top: 20px;
    border-top: 0.5px solid #C8C8CD;
}

.insights-section .insights-main-meta .insights-date {
    margin: 0;
    padding: 0;
    border-top: 0;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #A3A4AA;
}

.insights-section .insights-main-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: 0;
    color: #2348D5;
    text-decoration: none;
}

.insights-section .insights-main-link svg {
    width: 20px;
    height: 20px;
}

.insights-section .insights-main:hover .insights-main-link {
    color: #1A36A8;
}

.insights-section .insights-main > .insights-main-left > .insights-date {
    order: 3;
    margin: 0;
    padding-top: 20px;
    border-top: 0.5px solid #C8C8CD;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #A3A4AA;
}

.insights-section .insights-main-right {
    flex: 0 0 50%;
    width: 50%;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    background: transparent;
}

.insights-section .insights-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insights-section .insights-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 0;
}

.insights-section .insights-card {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto auto 1fr auto;
    column-gap: 10px;
    row-gap: 0;
    height: 421px;
    min-height: 0;
    border-radius: 0;
    background: transparent;
}

.insights-section .insights-card-image-clip {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    height: 200px;
    aspect-ratio: 282 / 200;
    margin-bottom: 20px;
    overflow: hidden;
}

.insights-section .insights-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.insights-section .insights-card-category {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0 0 16px;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #2348D5;
}

.insights-section .insights-card-title {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 0 0 10px;
    font-family: "Source Serif Pro Display", "Source Serif Pro", Georgia, serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.4px;
    color: #000;
    text-shadow: none;
    min-height: 48px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.insights-section .insights-card-text {
    grid-column: 1 / -1;
    grid-row: 4;
    margin: 0 0 30px;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #727377;
    min-height: 58.8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.insights-section .insights-card-date {
    grid-column: 1;
    grid-row: 6;
    align-self: center;
    margin: 0;
    padding-top: 20px;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #A3A4AA;
}

.insights-section .insights-card-link {
    grid-column: 2;
    grid-row: 6;
    align-self: center;
    margin: 0;
    padding-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: 0;
    color: #2348D5;
    text-decoration: none;
}

.insights-section .insights-card::after {
    content: "";
    grid-column: 1 / -1;
    grid-row: 6;
    align-self: start;
    height: 0.5px;
    width: 100%;
    background: #C8C8CD;
    pointer-events: none;
}

.insights-section .insights-card-link svg {
    width: 20px;
    height: 20px;
}

.insights-section .insights-card-link svg > path:first-child {
    fill: #E9EAFF !important;
}

.insights-section .insights-card-link svg g path {
    fill: #2348D5;
    stroke: #2348D5;
}

.insights-section .insights-card:hover .insights-card-link {
    color: #1A36A8;
}

.backdrop-section {
    --backdrop-scale: 1;
}

.backdrop-section .backdrop-content {
    padding: 140px 120px;
    align-items: stretch;
    justify-content: flex-start;
}

.backdrop-section .backdrop-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: calc(80px * var(--backdrop-scale));
    margin: 0;
    padding: 0;
    max-width: none;
    flex-wrap: nowrap;
}

.backdrop-section .backdrop-left {
    flex: 0 1 auto;
    min-width: 0;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(14px * var(--backdrop-scale));
}

.backdrop-section .backdrop-quote-glyph {
    display: block;
    width: calc(44px * var(--backdrop-scale));
    height: calc(37px * var(--backdrop-scale));
    flex-shrink: 0;
}

.backdrop-section .backdrop-quote-body {
    display: flex;
    flex-direction: column;
    gap: calc(60px * var(--backdrop-scale));
    padding-left: 40px;
    align-items: flex-start;
}

.backdrop-section .backdrop-quote {
    margin: 0;
    max-width: 570px;
    font-family: "Source Serif Pro", Georgia, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 62px;
    line-height: 1.05;
    letter-spacing: -1.24px;
    color: #FFFFFF;
    text-indent: 0;
    padding-left: 0;
    text-wrap: balance;
    hanging-punctuation: none;
    text-shadow: none;
}

.backdrop-section .backdrop-author {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: calc(4px * var(--backdrop-scale));
    align-items: flex-start;
}

.backdrop-section .backdrop-author-line {
    display: block;
    width: calc(47px * var(--backdrop-scale));
    height: 2px;
    background: #8DA9FF;
    margin-bottom: calc(16px * var(--backdrop-scale));
}

.backdrop-section .backdrop-author-name {
    margin: 0;
    font-family: "Source Serif Pro", Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.8px;
    color: #FFFFFF;
    text-shadow: none;
}

.backdrop-section .backdrop-author-title {
    margin: 0;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 500;
    font-size: calc(12px * var(--backdrop-scale));
    line-height: 1.4;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #B2CDFF;
    opacity: 1;
    text-shadow: none;
}

.backdrop-section .backdrop-divider {
    flex: 0 0 1px;
    width: 1px;
    align-self: center;
    height: calc(457px * var(--backdrop-scale));
    background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.65) 0%,
    rgba(255, 255, 255, 0.45) 35%,
    rgba(255, 255, 255, 0) 100%
    );
}

.backdrop-section .backdrop-right {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: flex-start;
    padding-top: calc(55px * var(--backdrop-scale));
}

.backdrop-section .backdrop-text {
    display: flex;
    flex-direction: column;
    gap: 1em;
    max-width: calc(364px * var(--backdrop-scale));
    margin: 0;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 400;
    font-size: calc(25px * var(--backdrop-scale));
    line-height: 1.4;
    letter-spacing: calc(-0.25px * var(--backdrop-scale));
    color: #FFFFFF;
    text-shadow: none;
}

.backdrop-section .backdrop-text p {
    margin: 0;
}

.backdrop-section {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    grid-template-rows: 900px;
}

.backdrop-section::before {
    display: none;
    content: none;
}

.backdrop-section::after {
    display: none;
    content: none;
}

.backdrop-image {
    position: absolute;
    top: -476px;
    left: -10px;
    width: 1940px;
    height: 1533px;
    min-height: 0;
    object-fit: cover;
    grid-column: auto;
    grid-row: auto;
}

.backdrop-section .backdrop-content {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 1024px) {
.backdrop-section {
    --backdrop-scale: 0.55;
    grid-template-rows: minmax(auto, max-content);
}

.backdrop-image {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center 70%;
    grid-column: 1;
    grid-row: 1;
}

.backdrop-section .backdrop-content {
    padding: 64px 32px clamp(2.5rem, 7vw, 3.5rem);
}

.backdrop-section .backdrop-wrapper {
    flex-direction: column;
    gap: 40px;
}

.backdrop-section .backdrop-divider {
    display: none;
}

.backdrop-section .backdrop-quote {
    font-size: 32px;
    letter-spacing: -0.64px;
    max-width: none;
}

.backdrop-section .backdrop-quote-body {
    padding-left: 24px;
    gap: 40px;
}

.backdrop-section .backdrop-author-name {
    font-size: 24px;
    letter-spacing: -0.48px;
}

.backdrop-section .backdrop-right {
    padding-top: 0;
}

.backdrop-section .backdrop-text {
    font-size: 16px;
    letter-spacing: -0.16px;
    max-width: none;
}


.insights-section .insights-main {
    flex-direction: column;
    height: auto;
}

.insights-section .insights-main-left, .insights-section .insights-main-right {
    width: 100%;
    flex: none;
}

.insights-section .insights-main-left {
    padding: 40px 28px;
}

.insights-section .insights-main-right {
    height: 280px;
}

.insights-section .insights-main-title {
    font-size: 28px;
    letter-spacing: -0.56px;
}

.insights-section .insights-grid {
    grid-template-columns: 1fr;
}

.insights-section .insights-card {
    grid-template-rows: auto auto auto auto auto;
    height: auto;
}
}

.faq-section .faq-groups {
    gap: 0;
}

.faq-section .faq-group {
    border-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
}

.faq-section .faq-group:first-child {
    padding-top: 0;
}

.faq-section .faq-group:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.faq-section .faq-group + .faq-group {
    margin-top: 0;
}

.faq-section .faq-group[open] + .faq-group {
    margin-top: 40px;
}

.faq-section .faq-group-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 20px 20px;
    margin: 0;
    color: #2348D5;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
    border-top: 0;
    border-bottom: 0;
    background: transparent;
}

.faq-section .faq-group:not([open]) > .faq-group-summary {
    color: #727377;
    padding: 20px;
    border-top: 1px solid #C8C8CD;
    border-bottom: 0;
}

.faq-section .faq-group:not([open]):last-child > .faq-group-summary {
    border-bottom: 1px solid #C8C8CD;
}

.faq-section .faq-group-summary::after {
    content: '';
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round'><line x1='5' y1='5' x2='15' y2='15'/><line x1='15' y1='5' x2='5' y2='15'/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round'><line x1='5' y1='5' x2='15' y2='15'/><line x1='15' y1='5' x2='5' y2='15'/></svg>");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}

.faq-section .faq-group:not([open]) > .faq-group-summary::after {
    transform: rotate(45deg);
}

.faq-section .faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 12px;
    align-items: start;
}

.faq-section .faq-item {
    align-self: start;
    background: #FFFFFF;
    border: 0.5px solid #E5E5E5;
    border-radius: 16px;
    box-shadow: 0 1px 1.5px rgba(30, 26, 22, 0.04);
    overflow: hidden;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-section .faq-item:hover {
    border-color: rgba(35, 72, 213, 0.45);
}

.faq-section .faq-item[open] {
    background: #FFFFFF;
    border: 0.5px solid #2348D5;
    border-radius: 16px;
    box-shadow: 0 8px 10px rgba(30, 26, 22, 0.10);
}

.faq-section .faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 0;
    padding: 16.5px 20.5px;
    color: #000000;
    font-family: "Source Serif Pro Display", "Source Serif Pro", Georgia, serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.36px;
    cursor: pointer;
    list-style: none;
}

.faq-section .faq-item[open] summary {
    color: #2348D5;
    padding-bottom: 16px;
}

.faq-section .faq-item summary::after {
    content: '';
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    border-radius: 70px;
    background-color: #E9EAFF;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232348D5' stroke-width='1.4' stroke-linecap='round'><line x1='5' y1='1.5' x2='5' y2='8.5'/><line x1='1.5' y1='5' x2='8.5' y2='5'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50% 50%;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.faq-section .faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-section .faq-item p {
    margin: 0;
    padding: 0 20.5px 16.5px;
    color: #000000;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0;
}

@media (max-width: 768px) {
.faq-section .faq-list {
    grid-template-columns: 1fr;
}

.tokenisation-section-inner {
    padding-left: var(--page-gutter-x);
    padding-right: var(--page-gutter-x);
}

}

@media (min-width: 1025px) {
.hero.page-hero {
    height: calc(100vh / var(--page-scale));
    min-height: calc(100vh / var(--page-scale));
    padding-top: 0;
    padding-bottom: 0;
}

.hero.page-hero .hero-wrapper {
    height: 100%;
    min-height: calc(100vh / var(--page-scale));
}

.hero.tokenisation-hero {
    min-height: calc(100vh / var(--page-scale));
}

.tokenisation-section-inner {
    padding-left: 0;
    padding-right: 0;
}

}

.product-section-divider {
    display: none !important;
}

body:not(.page-home) section.animate-on-scroll {
    background: #FFFFFF;
}

@media (min-width: 1025px) {
main:has(.tokenisation-solution-intro) .hero.page-hero {
    padding-bottom: 0;
}

.tokenisation-section.tokenisation-solution-intro {
    padding-top: clamp(6rem, 12vh, 9rem);
    padding-bottom: 0;
}

}

@media (max-width: 1024px) {
.tokenisation-section.tokenisation-solution-intro {
    padding-bottom: 0;
}

}

body:not(.page-home) section.tokenisation-section.tokenisation-solution-intro {
    background: var(--cream);
}

@media (min-width: 1025px) {
.tokenisation-solution-intro .build-solutions-section .tech-card {
    height: auto;
    min-height: 0;
}

.tokenisation-solution-intro .build-solutions-section .tech-card:nth-child(1), .tokenisation-solution-intro .build-solutions-section .tech-card:nth-child(2), .tokenisation-solution-intro .build-solutions-section .tech-card:nth-child(3) {
    background-size: 100% 751px, 100% 100%;
    background-position: top center, 0 0;
}

}

section.animate-on-scroll, section.animate-on-scroll.animated {
    opacity: 1;
    transform: none;
    transition: none;
}

section.animate-on-scroll > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.animate-on-scroll.animated > * {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
section.animate-on-scroll > * {
    transform: translateY(10px);
    transition-duration: 0.28s;
}

}

@media (min-width: 1025px) {
.tokenisation-section.tokenisation-solution-intro {
    padding-top: clamp(3rem, 6vh, 4.5rem);
}

.tokenisation-solution-intro .bridge-act--solution {
    margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

}

body:not(.page-home) section.faq-section, body:not(.page-home) section.faq-section.animate-on-scroll {
    background: var(--cream);
}

@media (min-width: 1025px) {
.tokenisation-section.tokenisation-solution-intro {
    padding-top: clamp(1rem, 3vh, 2rem);
}

.tokenisation-solution-intro .bridge-act--solution {
    margin-bottom: 0;
    padding-bottom: clamp(2.5rem, 5vh, 4rem);
}

}

@media (max-width: 1024px) {
.tokenisation-solution-intro .bridge-act--solution {
    margin-bottom: 0;
    padding-bottom: var(--m-space-md);
}

}

.bridge-problem-block .bridge-problem-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.bridge-problem-block .bridge-problem-titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.bridge-problem-block .bridge-solution-eyebrow-text {
    color: #B2CDFF;
}

.bridge-problem-block .bridge-solution-eyebrow-line {
    background: #B2CDFF;
}

.bridge-problem-block .bridge-solution-heading {
    color: #FFFFFF;
    text-align: center;
    justify-content: center;
    width: 100%;
}

.bridge-problem-block .bridge-solution-heading-regular {
    color: #FFFFFF;
}

.bridge-problem-block .bridge-solution-heading-italic {
    color: #B2CDFF;
}

.bridge-problem-subtitle {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.2px;
    color: #C8C8CD;
    margin: 0;
    max-width: 760px;
}

.bridge-problem-block .bridge-problem-cards {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.bridge-problem-card {
    padding: 0 30px 30px 40px;
    border-right: 1px solid rgba(141, 169, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.bridge-problem-card:last-child {
    border-right: none;
}

.bridge-problem-card-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #8DA9FF;
}

.bridge-problem-card-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.bridge-problem-card-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.bridge-problem-card-title {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
    color: #FFFFFF;
    margin: 0;
}

.bridge-problem-card-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #C8C8CD;
    margin: 0;
}

.bridge-problem-quote {
    margin: 60px auto 0;
    max-width: 1200px;
    padding: 30px;
    border: 1px solid rgba(141, 169, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
}

.bridge-problem-quote-glyph {
    font-family: "Source Serif Pro", Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: 50px;
    line-height: 1;
    color: #8DA9FF;
    letter-spacing: -1px;
    flex-shrink: 0;
}

.bridge-problem-quote-glyph--open {
    align-self: flex-start;
}

.bridge-problem-quote-glyph--close {
    align-self: flex-end;
}

.bridge-problem-quote-text {
    font-family: "Source Serif Pro", Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.44px;
    color: #C8C8CD;
    max-width: 542px;
    margin: 0;
    padding: 0;
    border: none;
    quotes: none;
}

.bridge-problem-quote-text::before, .bridge-problem-quote-text::after {
    content: none;
}

.bridge-problem-quote-divider {
    flex-shrink: 0;
    width: 1px;
    height: 49px;
    background: rgba(141, 169, 255, 0.4);
    margin: 0 20px;
}

.bridge-problem-quote-attr {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1 0 0;
    min-width: 0;
}

.bridge-problem-quote-source {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #8DA9FF;
}

.bridge-problem-quote-detail {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    line-height: 19.2px;
    letter-spacing: -0.17px;
    color: #B2CDFF;
}

@media (max-width: 1024px) {
.bridge-problem-block .bridge-problem-header {
    gap: var(--m-space-sm);
}

.bridge-problem-block .bridge-problem-titles {
    gap: var(--m-space-sm);
}

.bridge-problem-subtitle {
    font-size: clamp(1rem, 3.6vw, 1.125rem);
    max-width: 100%;
}

.bridge-problem-block .bridge-problem-cards {
    grid-template-columns: 1fr;
    gap: var(--m-space-md);
}

.bridge-problem-card {
    padding: 0 0 clamp(1.5rem, 4vh, 2rem);
    border-right: none;
    border-bottom: 1px solid rgba(141, 169, 255, 0.2);
}

.bridge-problem-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bridge-problem-quote {
    margin-top: clamp(2.5rem, 6vh, 3.75rem);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--m-space-sm);
    padding: var(--m-space-md);
}

.bridge-problem-quote-glyph {
    font-size: clamp(2.25rem, 8vw, 3rem);
}

.bridge-problem-quote-glyph--close {
    align-self: flex-end;
}

.bridge-problem-quote-text {
    max-width: 100%;
    font-size: clamp(1rem, 3.8vw, 1.25rem);
}

.bridge-problem-quote-divider {
    width: 100%;
    height: 1px;
    margin: var(--m-space-sm) 0;
}

.bridge-problem-quote-attr {
    width: 100%;
}

}

.bridge-problem-block {
    --sol-scale: 1;
    background-color: #1C369B;
    box-shadow: none;
}

.bridge-problem-block::before, .bridge-problem-block::after {
    content: none;
    background: none;
}

.bridge-problem-block .bridge-solution-heading {
    margin: 0;
    padding: 0;
    max-width: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 16px;
    font-family: "Source Serif Pro", Georgia, serif;
    font-size: 60px;
    line-height: 1;
    letter-spacing: -1.2px;
    color: #FFFFFF;
    text-shadow: none;
    text-align: center;
}

.bridge-problem-block .bridge-solution-heading-regular {
    color: #FFFFFF;
    font-style: normal;
    font-weight: 400;
}

.bridge-problem-block .bridge-solution-heading-italic {
    color: #B2CDFF;
    font-style: italic;
    font-weight: 600;
}

.bridge-problem-quote {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 60px auto 0;
    max-width: 1200px;
    padding: 30px;
    border: 1px solid rgba(141, 169, 255, 0.2);
    box-sizing: border-box;
}

.bridge-problem-quote-body {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: calc(100% - 453px - 80px);
}

.bridge-problem-quote-divider {
    flex: 1 0 0;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin: 0;
    background: transparent;
}

.bridge-problem-quote-divider::before {
    content: '';
    display: block;
    width: 1px;
    height: 49px;
    background: rgba(141, 169, 255, 0.4);
}

.bridge-problem-quote-attr {
    flex: 0 0 453px;
    width: 453px;
    min-width: 0;
}

@media (max-width: 1024px) {
.bridge-problem-quote-body {
    flex-direction: row;
    max-width: 100%;
    align-items: flex-start;
    gap: var(--m-space-2xs);
}

.bridge-problem-quote-divider {
    flex: 0 0 auto;
    align-self: stretch;
    width: 100%;
    height: 1px;
}

.bridge-problem-quote-divider::before {
    width: 100%;
    height: 1px;
}

.bridge-problem-quote-attr {
    flex: 0 0 auto;
    width: 100%;
}

}

.bridge-problem-block .bridge-problem-subtitle {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

@media (max-width: 1024px) {
.bridge-problem-block .bridge-problem-subtitle {
    max-width: 100%;
}

}

.bridge-problem-block .bridge-problem-cards {
    margin-top: 64px;
}

@media (max-width: 1024px) {
.bridge-problem-block .bridge-problem-cards {
    margin-top: var(--m-space-xl);
}

}

.tokenisation-solution-intro .about-leadership-grid {
    margin-top: clamp(2rem, 5vh, 3rem);
}

.tokenisation-solution-intro .about-leadership-grid {
    margin-top: clamp(4rem, 9vh, 6rem);
    margin-bottom: clamp(3rem, 7vh, 4.5rem);
}

.tokenisation-solution-intro .about-leadership-grid {
    margin-top: clamp(4rem, 9vh, 6rem);
    margin-bottom: clamp(4rem, 9vh, 6rem);
}

.tokenisation-solution-intro .about-leadership-grid {
    margin-bottom: clamp(6.5rem, 14vh, 10rem);
}

@media (max-width: 1024px) {
.tokenisation-solution-intro .about-leadership-grid {
    margin-bottom: var(--m-space-2xl);
}

}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll {
    background-color: #1C369B;
    box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -42px 70px rgba(0, 8, 32, 0.18),
    0 28px 70px rgba(0, 69, 178, 0.16);
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-image {
    background: #1C369B;
    border-color: rgba(178, 205, 255, 0.16);
    box-shadow: none;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll {
    min-height: clamp(820px, 92vh, 1040px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 1024px) {
body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll {
    min-height: 0;
    display: block;
}

}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-section-header {
    text-align: center;
    margin-bottom: 60px;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-section-title {
    font-family: "Source Serif Pro", Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1.2px;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
}

@media (max-width: 1024px) {
body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-section-header {
    display: block;
    margin-bottom: var(--m-space-lg);
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-section-title {
    font-size: clamp(32px, 8vw, 44px);
    letter-spacing: -0.8px;
}

}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .bridge-solution-eyebrow-text {
    color: #B2CDFF;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .bridge-solution-eyebrow-line {
    background: #B2CDFF;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.42;
    background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32'><path d='M0 32 L0 0 L32 0' stroke='%23B2CDFF' stroke-width='1' fill='none'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32'><path d='M0 0 L32 0 L32 32' stroke='%23B2CDFF' stroke-width='1' fill='none'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32'><path d='M0 0 L0 32 L32 32' stroke='%23B2CDFF' stroke-width='1' fill='none'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32'><path d='M0 32 L32 32 L32 0' stroke='%23B2CDFF' stroke-width='1' fill='none'/></svg>");
    background-position:
    40px 40px,
    calc(100% - 40px) 40px,
    40px calc(100% - 40px),
    calc(100% - 40px) calc(100% - 40px);
    background-size: 32px 32px;
    background-repeat: no-repeat;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 100% 40px, 40px 100%;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll::before {
    background-position:
    20px 20px,
    calc(100% - 20px) 20px,
    20px calc(100% - 20px),
    calc(100% - 20px) calc(100% - 20px);
    background-size: 24px 24px;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll::after {
    background-size: 100% 28px, 28px 100%;
}

}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll::after {
    background-image: url("assets/panels/panel-1-bg.svg");
    background-size: 384px 100%;
    background-repeat: repeat-x;
    background-position: center top;
    opacity: 0.55;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-list {
    counter-reset: serve-counter;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-item {
    counter-increment: serve-counter;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-text {
    position: relative;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-text::before {
    content: counter(serve-counter, decimal-leading-zero);
    position: absolute;
    top: -14px;
    left: -10px;
    z-index: 0;
    font-family: "Source Serif Pro Display", "Source Serif Pro", Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 140px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #B2CDFF;
    opacity: 0.15;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-title, body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-desc {
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-text::before {
    font-size: 96px;
    top: -10px;
    left: -6px;
}

}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-title {
    font-family: "Source Serif Pro Display", "Source Serif Pro", Georgia, serif;
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.6px;
    color: #FFFFFF;
    text-shadow: none;
    margin: 0 0 10px;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-line {
    display: none;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll button.tokenisation-serve-item {
    padding-left: 180px;
    position: relative;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-text::before {
    top: -100px;
    left: auto;
    right: calc(100% + 60px);
    text-align: right;
    opacity: 0.12;
}

@media (max-width: 1024px) {
body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll button.tokenisation-serve-item {
    padding-left: 0;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-text::before {
    position: static;
    display: block;
    text-align: left;
    font-size: 72px;
    margin-bottom: 4px;
    opacity: 0.18;
}

}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-text::before {
    top: 0;
    opacity: 0.10;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-text::before {
    top: 50px;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-text::before {
    content: none;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll button.tokenisation-serve-item {
    padding-left: 0;
    align-items: baseline;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll button.tokenisation-serve-item::before {
    content: counter(serve-counter, decimal-leading-zero);
    flex: 0 0 140px;
    width: 140px;
    text-align: right;
    font-family: "Source Serif Pro Display", "Source Serif Pro", Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 140px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #B2CDFF;
    opacity: 0.10;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

@media (max-width: 1024px) {
body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll button.tokenisation-serve-item {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--m-space-sm);
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll button.tokenisation-serve-item::before {
    flex: 0 0 auto;
    width: auto;
    text-align: left;
    font-size: 72px;
    opacity: 0.18;
}

}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll button.tokenisation-serve-item {
    align-items: flex-start;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll button.tokenisation-serve-item::before {
    line-height: 0.72;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-list {
    gap: 120px;
}

@media (max-width: 1024px) {
body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-list {
    gap: 56px;
}

}

.engine-specs-section .engine-specs-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.engine-specs-section .engine-specs-header .tokenisation-section-title {
    margin: 0;
    font-family: "Source Serif Pro Display", "Source Serif Pro", Georgia, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.8px;
    color: var(--espresso);
}

@media (max-width: 1024px) {
.engine-specs-section .engine-specs-header {
    gap: var(--m-space-sm);
}

.engine-specs-section .engine-specs-header .tokenisation-section-title {
    font-size: 32px;
    letter-spacing: -0.6px;
}

}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll button.tokenisation-serve-item::before {
    transition: color 0.25s ease, opacity 0.25s ease;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll button.tokenisation-serve-item.is-active::before {
    color: #FFFFFF;
    opacity: 1;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll button.tokenisation-serve-item::before {
    font-size: 133px;
}

.engine-specs-section .engine-specs-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 3vw, 48px);
    align-items: stretch;
    width: 100%;
}

.engine-specs-section .engine-specs-eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #2348D5;
}

.engine-specs-section .engine-specs-featured {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: 1px solid rgba(30, 26, 22, 0.08);
    border-radius: 14px;
    overflow: hidden;
    min-height: 0;
}

.engine-specs-section .engine-specs-featured-media {
    width: 100%;
    height: clamp(240px, 30vh, 320px);
    overflow: hidden;
    background: var(--cream, #F3ECE5);
}

.engine-specs-section .engine-specs-featured-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.engine-specs-section .engine-specs-featured-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px 36px 32px;
    min-width: 0;
}

.engine-specs-section .engine-specs-featured-title {
    margin: 0;
    font-family: "Source Serif Pro Display", "Source Serif Pro", Georgia, serif;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.4px;
    color: var(--espresso);
}

.engine-specs-section .engine-specs-featured-copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.engine-specs-section .engine-specs-featured-copy p {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.55;
    color: rgba(30, 26, 22, 0.65);
}

.engine-specs-section .engine-specs-featured-cta {
    margin-top: auto;
    padding-top: 4px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: 0;
    color: #2348D5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.engine-specs-section .engine-specs-featured-cta svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.engine-specs-section .engine-specs-featured-cta:hover {
    color: #1A36A8;
}

.engine-specs-section .engine-specs-supporting {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.engine-specs-section .engine-specs-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px 0;
    border-top: 1px solid rgba(30, 26, 22, 0.08);
}

.engine-specs-section .engine-specs-card:first-child {
    border-top: 0;
    padding-top: 0;
}

.engine-specs-section .engine-specs-card:last-child {
    padding-bottom: 0;
}

.engine-specs-section .engine-specs-card-title {
    margin: 0;
    font-family: "Source Serif Pro Display", "Source Serif Pro", Georgia, serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.2px;
    color: var(--espresso);
}

.engine-specs-section .engine-specs-card-desc {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(30, 26, 22, 0.65);
}

@media (max-width: 1024px) {
.engine-specs-section .engine-specs-cards {
    grid-template-columns: 1fr;
    gap: var(--m-space-md);
}

.engine-specs-section .engine-specs-featured-media {
    height: clamp(180px, 28vh, 240px);
}

.engine-specs-section .engine-specs-featured-title {
    font-size: 24px;
}

}

.engine-specs-section .engine-specs-featured, .engine-specs-section .engine-specs-featured-media {
    background: #F6F4F0;
}

.engine-specs-section .engine-specs-featured-body {
    padding: 40px 48px 40px;
    gap: 24px;
}

.engine-specs-section .engine-specs-eyebrow {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #2348D5;
}

.engine-specs-section .engine-specs-featured-title {
    font-family: "Source Serif Pro", Georgia, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.8px;
    color: #000;
}

.engine-specs-section .engine-specs-featured-copy {
    gap: 16px;
}

.engine-specs-section .engine-specs-featured-copy p {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #000;
}

.engine-specs-section .engine-specs-featured-cta {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.1;
    color: #2348D5;
}

.engine-specs-section .engine-specs-card-title {
    font-family: "Source Serif Pro Display", "Source Serif Pro", Georgia, serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.4px;
    color: #000;
}

.engine-specs-section .engine-specs-card-desc {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #727377;
}

.engine-specs-section .engine-specs-card {
    border-top: 0.5px solid #C8C8CD;
    gap: 10px;
    padding: 22px 0;
}

@media (max-width: 1024px) {
.engine-specs-section .engine-specs-featured-body {
    padding: var(--m-space-md);
    gap: var(--m-space-sm);
}

.engine-specs-section .engine-specs-featured-title {
    font-size: 30px;
    letter-spacing: -0.6px;
}

.engine-specs-section .engine-specs-featured-copy p {
    font-size: 15px;
}

.engine-specs-section .engine-specs-card {
    padding: var(--m-space-md) 0;
}

.engine-specs-section .engine-specs-card-title {
    font-size: 18px;
    letter-spacing: -0.3px;
}

}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll button.tokenisation-serve-item::before {
    font-size: 126px;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-image {
    border-style: dashed;
}

.tokenisation-section.engine-specs-section {
    padding-top: clamp(4rem, 7vw, 6rem);
}

.tokenisation-section.engine-specs-section {
    padding-bottom: clamp(4rem, 7vw, 6rem);
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll {
    margin-bottom: 0;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll {
    min-height: clamp(900px, 100vh, 1140px);
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-section-header {
    margin-bottom: 120px;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-desc {
    color: rgba(255, 255, 255, 0.78);
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-item.is-active .tokenisation-serve-desc {
    color: #FFFFFF;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll button.tokenisation-serve-item::before {
    flex: 0 0 120px;
    width: 120px;
    font-size: 110px;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-list {
    transform: translateX(clamp(-120px, -6vw, -60px));
}

@media (max-width: 1024px) {
body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-list {
    transform: none;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll button.tokenisation-serve-item::before {
    flex: 0 0 auto;
    width: auto;
    font-size: 72px;
}

}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll {
    justify-content: flex-start;
    padding-top: clamp(80px, 11vh, 140px);
    padding-bottom: clamp(80px, 11vh, 140px);
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-section-header {
    margin-bottom: 80px;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-list {
    padding-bottom: 100px;
}

@media (max-width: 1024px) {
body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-list {
    padding-bottom: 0;
}

}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-list {
    transform: none;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-text {
    opacity: 0.10;
    transition: opacity 0.45s ease;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-item.is-active .tokenisation-serve-text {
    opacity: 1;
}

@media (max-width: 1024px) {
body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-text {
    opacity: 1;
}

}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-list {
    gap: 80px;
    padding-bottom: 60px;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll {
    padding-bottom: clamp(56px, 8vh, 100px);
}

@media (max-width: 1024px) {
body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-list {
    gap: 28px;
    padding-bottom: 0;
}

}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-image {
    flex: 0 0 540px;
    width: 540px;
    max-width: 540px;
    border: none;
    background: transparent;
    box-shadow: none;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-image:hover {
    border-color: transparent;
    box-shadow: none;
}



body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-image {
    flex: 0 0 340px;
    width: 340px;
    max-width: 340px;
    overflow: visible;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-frame {
    transform: scale(1.35);
    transform-origin: center center;
}

@media (max-width: 1024px) {
body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-frame {
    transform: none;
}

}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-list {
    transform: translateX(-32px);
}

@media (max-width: 1024px) {
body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-list {
    transform: none;
}

}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-item.is-active .tokenisation-serve-desc {
    color: #C8C8CD;
}

@media (min-width: 1025px) {
.hero-wrapper {
    padding-left: 0;
    padding-right: 0;
}

}

.tokenisation-section-header .bridge-solution-eyebrow {
    --sol-scale: 1;
}

body:not(.page-home) section.tokenisation-section.about-cmc.tokenisation-who-serve.animate-on-scroll .about-cmc-lead {
    color: #FFFFFF;
}

body:not(.page-home) section.tokenisation-section.about-cmc.tokenisation-who-serve.animate-on-scroll .about-cmc-body {
    color: #C8C8CD;
}

body:not(.page-home) section.tokenisation-section.about-cmc.tokenisation-who-serve.animate-on-scroll .about-link-arrow {
    color: #FFFFFF;
}

body:not(.page-home) section.tokenisation-section.about-cmc.tokenisation-who-serve.animate-on-scroll .about-link-arrow:hover, body:not(.page-home) section.tokenisation-section.about-cmc.tokenisation-who-serve.animate-on-scroll .about-link-arrow:focus-visible {
    color: #B2CDFF;
}

body:not(.page-home) section.tokenisation-section.about-cmc.tokenisation-who-serve.animate-on-scroll .about-link-arrow .keep-reading-icon > path:first-child {
    fill: #E9EAFF !important;
}

body:not(.page-home) section.tokenisation-section.about-cmc.tokenisation-who-serve.animate-on-scroll .about-link-arrow .keep-reading-icon g path {
    fill: #2348D5;
    stroke: #2348D5;
}

body:not(.page-home) section.tokenisation-section.about-cmc.tokenisation-who-serve.animate-on-scroll .about-cmc-logo-wrap {
    opacity: 0.32;
}

body:not(.page-home) section.tokenisation-section.about-cmc.tokenisation-who-serve.animate-on-scroll .about-cmc-logo {
    filter: brightness(0) invert(1);
}

body:not(.page-home) section.tokenisation-section.about-mission.engine-specs-section.animate-on-scroll {
    background: var(--cream);
}

body:not(.page-home) section.tokenisation-section.about-cmc.tokenisation-who-serve.animate-on-scroll .about-cmc-lead {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

body:not(.page-home) section.tokenisation-section.about-cmc.tokenisation-who-serve.animate-on-scroll::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.52;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 360 360' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.58' numOctaves='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.01  0 0 0 0 0.05  0 0 0 0 0.20  0 0 0 0.95 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    background-size: 360px 360px;
    background-position: 0 0;
    background-repeat: repeat;
    mix-blend-mode: multiply;
}

body:not(.page-home) section.tokenisation-section.about-cmc.tokenisation-who-serve.animate-on-scroll::after {
    background-image:
    url("assets/panels/panel-3-bg.svg"),
    url("assets/panels/panel-3-sunburst.svg"),
    url("assets/panels/panel-3-sunburst-flipped.svg?v=2");
    background-position:
    center,
    -80px -360px,
    calc(100% + 20px) -260px;
    background-size:
    100% 100%,
    1000px 1000px,
    1400px 1400px;
    background-repeat:
    no-repeat,
    no-repeat,
    no-repeat;
    background-blend-mode: normal, lighten, lighten;
    opacity: 0.55;
}

body:not(.page-home) section.tokenisation-section.poi-commit-anatomy.tokenisation-who-serve.animate-on-scroll::after, body:not(.page-home) section.tokenisation-section.verify-checks.tokenisation-who-serve.animate-on-scroll::after, body:not(.page-home) section.tokenisation-section.tokenisation-core.tokenisation-who-serve.animate-on-scroll::after {
    background-image:
    url("assets/panels/panel-3-bg.svg"),
    url("assets/panels/panel-3-sunburst-flipped.svg?v=2");
    background-position:
    center,
    calc(100% + 20px) -260px;
    background-size:
    100% 100%,
    1400px 1400px;
    background-repeat:
    no-repeat,
    no-repeat;
    background-blend-mode: normal, lighten;
    opacity: 0.55;
}

@media (max-width: 1024px) {
body.page-strx section.tokenisation-section.tokenisation-core.tokenisation-who-serve.animate-on-scroll:has(.bridge-quote-dot:nth-child(2).is-active)::after {
    background-image: url("assets/panels/panel-3-bg.svg"); background-position: center; background-size: 100% 100%; background-repeat: no-repeat; background-blend-mode: normal;
}

}

.about-mission .engine-specs-featured {
    display: flex;
    flex-direction: column;
    min-height: 0;
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 14px;
    background: transparent;
    box-shadow: 0 18px 48px rgba(30, 26, 22, 0.14);
}

.about-mission .engine-specs-featured-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: auto;
    height: auto;
    background: transparent;
}

.about-mission .engine-specs-featured-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-mission .engine-specs-featured::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
    180deg,
    rgba(0, 8, 32, 0.00) 0%,
    rgba(0, 8, 32, 0.08) 38%,
    rgba(0, 8, 32, 0.40) 72%,
    rgba(0, 8, 32, 0.62) 100%
    );
    z-index: 1;
}

.about-mission .engine-specs-featured-body {
    position: relative;
    z-index: 2;
    margin-top: auto;
    justify-content: flex-end;
    padding: clamp(28px, 4vw, 44px);
    background: transparent;
    gap: 18px;
}

.about-mission.engine-specs-section .engine-specs-featured-title {
    color: #FFFFFF;
    font-family: "Source Serif Pro Display", "Source Serif Pro", Georgia, serif;
    font-style: normal;
    font-weight: 420;
    font-size: clamp(36px, 4vw, 48px);
    line-height: 0.98;
    letter-spacing: -1.15px;
    text-shadow: 0 2px 16px rgba(0, 8, 32, 0.54), 0 1px 2px rgba(0, 8, 32, 0.48);
}

.about-mission.engine-specs-section .engine-specs-featured-copy p {
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 400;
    font-size: clamp(18px, 1.9vw, 22px);
    line-height: 1.36;
    letter-spacing: -0.18px;
    text-shadow: 0 2px 14px rgba(0, 8, 32, 0.58), 0 1px 2px rgba(0, 8, 32, 0.5);
    max-width: 34rem;
}

.about-mission.engine-specs-section .engine-specs-card-title {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #000;
}

.about-mission .engine-specs-cards {
    gap: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(30, 26, 22, 0.14);
}

.about-mission .engine-specs-featured {
    border-radius: 0;
    box-shadow: none;
}

.about-mission .engine-specs-supporting {
    background: var(--cream-elevated);
    padding: clamp(20px, 2.6vw, 36px) clamp(28px, 3vw, 44px);
    border-radius: 0;
    box-sizing: border-box;
    justify-content: center;
}

.about-mission .engine-specs-supporting .engine-specs-card {
    padding: 14px 0;
    gap: 6px;
}

.about-mission .engine-specs-supporting .engine-specs-card:first-child {
    border-top: none;
    padding-top: 0;
}

.about-mission .engine-specs-supporting .engine-specs-card:last-child {
    padding-bottom: 0;
}

@media (max-width: 1024px) {
.insights-section .insights-card-title {
    font-size: clamp(1.25rem, 5.5vw, 1.5rem);
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.bridge-problem-block .bridge-problem-card-desc {
    font-size: clamp(0.875rem, 3.5vw, 0.9375rem);
    line-height: 1.45;
}

.bridge-problem-block .bridge-problem-cards, .engine-specs-section .engine-specs-cards, .engine-specs-section .engine-specs-supporting, .tech-grid, .insights-section .insights-grid {
    gap: var(--m-space-sm);
}

.backdrop-section {
    min-height: 50svh;
}

}

@media (max-width: 768px) {
.insights-section .insights-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: var(--m-space-md);
    text-align: left;
}

.insights-section .insights-title {
    width: 100%;
    font-size: clamp(2rem, 7.5vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: -0.5px;
    text-wrap: balance;
}

.insights-section .insights-visit {
    align-self: flex-start;
}

.insights-section .insights-title + .insights-visit {
    margin-top: var(--m-space-3xs);
}

/* Featured article — image on top, text below (closes 600–768 gap vs ≤599 and 769+ tablet) */
.insights-section .insights-main {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    margin-bottom: var(--m-space-md);
    background: transparent;
    overflow: visible;
}

.insights-section .insights-main-right {
    order: 0;
    width: 100%;
    flex: none;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
}

.insights-section .insights-main-left {
    order: 1;
    width: 100%;
    flex: none;
    padding: 1.25rem 0 0;
    background: transparent;
}

.insights-section .insights-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.insights-section .insights-main-title {
    font-family: "Source Serif Pro", Georgia, serif;
    font-size: clamp(1.5rem, 4.8vw, 1.75rem);
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.insights-section .insights-main-text {
    font-size: clamp(0.9375rem, 2.8vw, 1rem);
    line-height: 1.45;
    padding-right: 0;
}

}

@media (max-width: 500px) {
.bridge-act--opportunity .bridge-thesis-display-subtitle {
    font-size: clamp(0.9375rem, 4vw, 1rem);
    margin-top: var(--m-space-md);
    line-height: 1.4;
}

.bridge-problem-block .bridge-solution-heading {
    gap: var(--m-space-sm);
}

.bridge-problem-block .bridge-problem-titles {
    gap: var(--m-space-sm);
}

.bridge-problem-block .bridge-problem-header {
    gap: var(--m-space-sm);
}

.bridge-problem-block .bridge-problem-subtitle {
    font-size: clamp(0.9375rem, 4vw, 1.0625rem);
    line-height: 1.45;
}

.bridge-act--solution .bridge-solution-heading {
    font-size: clamp(2.25rem, 9vw, 2.75rem);
    letter-spacing: -0.7px;
    gap: var(--m-space-sm);
}

.bridge-act--solution .bridge-solution-body {
    margin-top: var(--m-space-md);
    font-size: clamp(0.9375rem, 4vw, 1.0625rem);
    line-height: 1.45;
    max-width: 36ch;
}

.engine-specs-section .engine-specs-featured-title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.faq-section .faq-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    letter-spacing: -0.6px;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.bridge-act--opportunity .bridge-thesis-display-subtitle, .bridge-problem-block .bridge-problem-subtitle, .faq-section .faq-title {
    margin-top: 0;
}

}

.bridge-quote-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 0;
    list-style: none;
}

.bridge-quote-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(30, 26, 22, 0.22);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.bridge-quote-dot:hover {
    background: rgba(30, 26, 22, 0.45);
}

.bridge-quote-dot.is-active {
    background: #2348D5;
    transform: scale(1.15);
}

.bridge-problem-cards-shell .bridge-quote-dot {
    background: rgba(178, 205, 255, 0.35);
}

.bridge-problem-cards-shell .bridge-quote-dot:hover {
    background: rgba(178, 205, 255, 0.65);
}

.bridge-problem-cards-shell .bridge-quote-dot.is-active {
    background: #B2CDFF;
}

@media (max-width: 1024px) {
.bridge-problem-cards-shell .bridge-quote-dots, .tech-grid-shell .bridge-quote-dots, .bridge-act--opportunity .bridge-quote-dots, .insights-section .bridge-quote-dots, body.page-product .engine-specs-section .engine-specs-cards .bridge-quote-dots, body.page-about .engine-specs-section .engine-specs-cards .bridge-quote-dots {
    display: flex;
}

}

.bridge-problem-cards-shell {
    display: block;
}

.bridge-problem-cards-shell .bridge-quote-controls {
    display: none;
}

@media (max-width: 1024px) {
.bridge-problem-cards-shell {
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(2.5rem, 8vw, 3.5rem);
    box-sizing: border-box;
    max-width: min(calc(100vw - 2rem), 460px);
    display: flex;
    flex-direction: column;
}

.bridge-problem-cards-shell .bridge-quote-dots {
    order: 0;
    margin-top: 24px;
    margin-bottom: 0;
}

.bridge-problem-block .bridge-problem-cards-shell .bridge-problem-cards {
    display: flex !important;
    flex-direction: row;
    grid-template-columns: none;
    gap: 0;
    margin: 0;
    max-width: none;
    width: 100%;
    opacity: 1;
    transform: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
}

.bridge-problem-block .bridge-problem-cards-shell .bridge-problem-cards::-webkit-scrollbar {
    display: none;
}

.bridge-problem-block .bridge-problem-cards-shell .bridge-problem-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border-right: none;
    border-bottom: none;
    padding: 0 24px var(--m-space-md) 24px;
}

.bridge-problem-block .bridge-problem-cards-shell .bridge-quote-controls {
    display: flex;
    justify-content: center;
    gap: var(--m-space-xs);
    margin-top: 20px;
}

}

.tech-grid-shell {
    display: block;
}

.tech-grid-shell .bridge-quote-controls {
    display: none;
}

@media (max-width: 1024px) {
.tech-grid-shell {
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    max-width: min(calc(100vw - 2rem), 460px);
    display: flex;
    flex-direction: column;
}

.tech-grid-shell .bridge-quote-dots {
    order: 0;
    margin-top: 18px;
    margin-bottom: 0;
}

.build-solutions-section .tech-grid-shell .tech-grid {
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: none !important;
    gap: var(--m-space-sm) !important;
    column-gap: var(--m-space-sm) !important;
    row-gap: 0 !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-block: 0;
    opacity: 1;
    transform: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
}

section.build-solutions-section .tech-grid-shell .tech-grid::-webkit-scrollbar {
    display: none;
}

.build-solutions-section .tech-grid-shell .tech-grid > .tech-card, .build-solutions-section .tech-grid-shell .tech-grid > article.tech-card {
    flex: 0 0 min(calc(100vw - 2rem), 460px) !important;
    width: min(calc(100vw - 2rem), 460px) !important;
    max-width: min(calc(100vw - 2rem), 460px) !important;
    min-width: min(calc(100vw - 2rem), 460px) !important;
    height: auto !important;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    margin: 0 !important;
    opacity: 1 !important;
    transform: none !important;
}


.insights-section .insights-grid {
    display: flex !important;
    flex-direction: row;
    grid-template-columns: none;
    gap: var(--m-space-sm);
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    margin-inline-start: calc(var(--page-gutter-x) * -1);
    margin-inline-end: calc(var(--page-gutter-x) * -1);
    padding-inline-start: var(--page-gutter-x);
    padding-inline-end: var(--page-gutter-x);
    scroll-padding-inline-start: var(--page-gutter-x);
}

.insights-section .insights-grid::-webkit-scrollbar {
    display: none;
}

.insights-section .insights-grid .insights-card {
    flex: 0 0 calc(70% - 16px);
    width: calc(70% - 16px);
    max-width: calc(70% - 16px);
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.insights-section .insights-grid .insights-card:last-child {
    padding-bottom: 0;
}

.insights-section .insights-grid .insights-card .insights-card-image-clip {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 282 / 200 !important;
    min-width: 0 !important;
}

.bridge-quote:hover, .bridge-quote--card:hover, .tech-card.tech-card-visible:hover, .build-solutions-section .tech-card.tech-card-visible:hover, .insights-card:hover, .about-profile--leadership:hover, .bridge-problem-card:hover {
    transform: none !important;
    box-shadow: none;
    border-color: inherit;
    filter: none;
    z-index: auto;
}
}

body.page-strx .strx-hero {
    position: relative; isolation: isolate;
}

body.page-strx .strx-hero .hero-background-video {
    opacity: 1;
}

body.page-strx .strx-hero {
    background: #000;
}

body.page-strx .strx-hero .hero-wrapper, body.page-strx .strx-hero .hero-content {
    position: relative; z-index: 2;
}

body.page-strx .strx-hero-title .strx-hero-title-line {
    display: block;
}

@media (prefers-reduced-motion: reduce) {
body.page-strx .strx-hero .hero-background-video {
    display: none;
}

}

body.page-strx section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-image, body.page-strx section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-mobile-panel {
    background: #1C369B; border: 1px solid rgba(255, 255, 255, 0.08);
}

body.page-strx section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-image::after {
    background: linear-gradient(90deg, #6B8AE8 0 3px, transparent 3px 7px, #6B8AE8 7px 10px);
}

body.page-strx section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-mobile-frame {
    background: transparent;
}

@media (max-width: 1024px) {
body.page-about .about-profile--leadership:hover, body.page-about .engine-specs-featured:hover, body.page-about .engine-specs-card:hover, body.page-product .engine-specs-featured:hover, body.page-product .engine-specs-card:hover {
    transform: none !important; box-shadow: 0 1px 1.5px rgba(30, 26, 22, 0.04); border-color: inherit;
}

body.page-product .bridge-act--solution .bridge-solution-heading {
    text-align: center;
}

body.page-product section.tokenisation-who-serve .tokenisation-section-title {
    line-height: 1.1;
}

body.page-about .bridge-act--solution .bridge-solution-heading {
    text-align: center;
}

body.page-about .about-profile--leadership {
    padding: 1.25rem;
}

body.page-about section.about-cmc .tokenisation-section-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
    line-height: 1.1;
    letter-spacing: -0.6px;
}

body.page-contact .contact-form-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
    line-height: 1.1;
    letter-spacing: -0.6px;
}

body.page-contact .contact-input, body.page-contact .contact-select, body.page-contact .contact-textarea {
    height: 56px;
    font-size: 16px;
}

body.page-contact .contact-textarea {
    height: auto;
    min-height: 132px;
}

body.page-contact .contact-form-actions {
    justify-content: stretch;
}

body.page-contact .contact-submit {
    width: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
}

body.page-blog-post .hero.page-hero.post-hero .hero-content, body.page-blog-post .post-hero-content {
    align-items: flex-start;
    text-align: left;
}

body.page-blog-post .post-body {
    padding: clamp(2.5rem, 8vw, 5rem) 0;
}
}

@media (max-width: 500px) {
body.page-product .bridge-act--solution .bridge-solution-heading {
    font-size: clamp(2rem, 8vw, 2.5rem); letter-spacing: -0.6px; line-height: 1.1;
}

body.page-product .bridge-act--solution .bridge-solution-body {
    font-size: clamp(0.9375rem, 4vw, 1.0625rem); line-height: 1.45; max-width: 36ch;
}

body.page-product .engine-specs-section .engine-specs-card-title {
    font-size: clamp(1.0625rem, 4.6vw, 1.25rem);
}

body.page-product .faq-section .faq-title {
    font-size: clamp(2rem, 8vw, 2.5rem); letter-spacing: -0.6px; line-height: 1.15;
}

body.page-about .bridge-act--solution .bridge-solution-heading {
    font-size: clamp(2rem, 8vw, 2.5rem);
    letter-spacing: -0.6px;
    line-height: 1.1;
}

body.page-about .bridge-act--solution .bridge-solution-body {
    font-size: clamp(0.9375rem, 4vw, 1.0625rem);
    line-height: 1.45;
    max-width: 36ch;
}

body.page-about .about-profile--leadership .about-profile-bio {
    line-height: 1.5;
}

body.page-about section.about-cmc .tokenisation-section-title {
    font-size: clamp(1.875rem, 8vw, 2.5rem);
}

body.page-about .about-cmc-lead, body.page-about .about-cmc-body {
    font-size: 15px;
    line-height: 1.6;
}

body.page-contact .contact-form-title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
}

body.page-contact .contact-form-subtitle {
    font-size: 1rem;
    max-width: 32ch;
}

body.page-blog-post .post-heading {
    margin-top: 36px;
    margin-bottom: 12px;
}

body.page-blog-post .post-paragraph, body.page-blog-post .post-list {
    font-size: 17px;
}

body.page-blog-post .post-paragraph--lead {
    font-size: 19px;
    line-height: 1.45;
}
}

body.page-strx section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-image {
    background: transparent !important; border: 0 !important; box-shadow: none !important;
}

body.page-strx section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-image::after {
    display: none !important;
}

@media (max-width: 1024px) {
body.page-strx section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-mobile-panel, body.page-strx section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-mobile-frame {
    background: transparent !important; border: 0 !important; box-shadow: none !important;
}


body.page-product .bridge-act--solution .bridge-solution-heading {
    flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: baseline; gap: 0 0.35ch; text-wrap: balance;
}
}

@media (max-width: 500px) {
body.page-product section .tokenisation-section-title {
    text-wrap: balance;
}

body.page-product .bridge-act--solution .bridge-solution-heading {
    font-size: clamp(1.85rem, 7.6vw, 2.5rem); letter-spacing: -0.5px; line-height: 1.1;
}

body.page-product .tokenisation-section-title {
    font-size: clamp(1.85rem, 8vw, 2.5rem); letter-spacing: -0.5px; line-height: 1.1; text-wrap: balance;
}
}

@media (max-width: 440px) {
body.page-product .bridge-act--solution .bridge-solution-heading, body.page-product .tokenisation-section-title {
    font-size: clamp(1.7rem, 7.4vw, 2.2rem);
}
}

.tokenisation-serve-slide, .tokenisation-serve-shell {
    display: contents;
}

@media (max-width: 1024px) {
body.page-product .tokenisation-who-serve-container .tokenisation-serve-shell {
    display: flex; flex-direction: column; width: 100%; max-width: 100%; box-sizing: border-box; margin: 0;
}

body.page-product .tokenisation-who-serve-container .tokenisation-serve-list {
    display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; gap: 0 !important; column-gap: 0 !important; row-gap: 0 !important; width: 100%; max-width: 100%; margin: 0 !important; padding: 0; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; scrollbar-width: none; box-sizing: border-box; flex: 0 0 auto !important;
}

body.page-product .tokenisation-who-serve-container .tokenisation-serve-slide .tokenisation-serve-mobile-panel::after, body.page-product .tokenisation-who-serve-container .tokenisation-serve-list::-webkit-scrollbar, body.page-product section.tokenisation-who-serve .tokenisation-section-header {
    display: none;
}

body.page-product .tokenisation-who-serve-container .tokenisation-serve-slide {
    display: flex !important; flex-direction: column !important; flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important; min-width: 100% !important; box-sizing: border-box; scroll-snap-align: start; scroll-snap-stop: always; padding: 0 var(--page-gutter-x); gap: 20px;
}

body.page-product .tokenisation-who-serve-container .tokenisation-serve-slide .tokenisation-serve-mobile-panel {
    margin: 0;
}

body.page-product .tokenisation-who-serve-container .tokenisation-serve-shell .bridge-quote-dots {
    display: flex; order: 0; margin-top: 24px; margin-bottom: 0; justify-content: center;
}

body.page-product .tokenisation-who-serve .bridge-quote-dot {
    background: rgba(178, 205, 255, 0.35);
}

body.page-product .tokenisation-who-serve .bridge-quote-dot:hover {
    background: rgba(178, 205, 255, 0.65);
}

body.page-product .tokenisation-who-serve .bridge-quote-dot.is-active {
    background: #B2CDFF;
}


body.page-product .tokenisation-serve-mobile-panel, body.page-product .tokenisation-serve-mobile-frame {
    background: transparent !important; border: 0 !important; box-shadow: none !important; border-radius: 0 !important;
}

body.page-product .tokenisation-serve-mobile-panel::after {
    display: none !important;
}


body.page-product .engine-specs-section .engine-specs-supporting, body.page-about .engine-specs-section .engine-specs-supporting {
    display: flex !important; flex-direction: row; gap: var(--m-space-sm); overflow-x: auto; overflow-y: visible; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; scrollbar-width: none; margin-inline-start: calc(var(--page-gutter-x) * -1); margin-inline-end: calc(var(--page-gutter-x) * -1); padding-inline-start: var(--page-gutter-x); padding-inline-end: var(--page-gutter-x); scroll-padding-inline-start: var(--page-gutter-x); margin-top: var(--m-space-2xs);
}

body.page-product .engine-specs-section .engine-specs-supporting::-webkit-scrollbar, body.page-about .engine-specs-section .engine-specs-supporting::-webkit-scrollbar {
    display: none;
}

body.page-product .engine-specs-section .engine-specs-supporting .engine-specs-card, body.page-about .engine-specs-section .engine-specs-supporting .engine-specs-card {
    flex: 0 0 calc(70% - 12px); width: calc(70% - 12px); max-width: calc(70% - 12px); min-width: 0; scroll-snap-align: start; scroll-snap-stop: always; border-top: 0; border: 1px solid rgba(30, 26, 22, 0.08); border-radius: 14px; background: var(--cream-elevated, #FFF9F0); padding: 22px 22px 22px; margin: 0; box-sizing: border-box;
}

body.page-product .engine-specs-section .engine-specs-supporting .engine-specs-card:first-child, body.page-about .engine-specs-section .engine-specs-supporting .engine-specs-card:first-child {
    padding-top: 22px;
}

.terms-modal {
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.terms-modal-panel {
    width: min(90vw, 600px);
    max-width: 600px;
    max-height: 90vh;
    padding: 2rem 1.5rem;
}

.terms-modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 44px;
    height: 44px;
    font-size: 28px;
    color: var(--espresso, #1e1a16);
    background: rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    z-index: 2;
}

.terms-modal-content {
    padding-right: 0;
}

.terms-modal-header h2 {
    padding-right: 3rem;
    font-size: 1.6em;
}

.terms-modal-body {
    font-size: 16.5px;
    line-height: 1.55;
}

.terms-modal-body h3 {
    font-size: 1.05em;
}

.faq-item summary {
    min-height: 56px;
    padding: var(--m-space-sm) 1.05rem;
    font-size: 16px;
    line-height: 1.4;
}

.faq-item p {
    font-size: 15.5px;
    line-height: 1.55;
    padding: 0 1.05rem 1.1rem;
}

.faq-group-summary {
    min-height: 44px;
    padding: var(--m-space-2xs) 1.05rem var(--m-space-sm) 0;
}


.build-solutions-section .tech-card-description, .build-solutions-section .tech-card-title, .build-solutions-section .tech-card-list, .build-solutions-section .tech-card-feature h4, .build-solutions-section .tech-card-feature p {
    flex: 0 1 auto !important;
    flex-basis: auto !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    white-space: normal !important;
}


body.page-about .about-cmc-editorial {
    flex-direction: column;
    gap: clamp(1.5rem, 5vw, 2.25rem);
    align-items: stretch;
}

body.page-about .about-cmc-logo-wrap {
    order: -1;
    max-width: 200px;
    margin: 0 auto;
}

body.page-product .build-solutions-section {
    margin-top: clamp(1.5rem, 5vw, 2rem) !important; padding-bottom: clamp(1.75rem, 6vw, 2.5rem) !important;
}

body.page-product .tokenisation-section-inner .build-solutions-section {
    padding-left: 0; padding-right: 0;
}

body.page-product .build-solutions-section .tech-grid-shell .tech-grid > .tech-card {
    flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important; min-width: 100% !important;
}

body.page-product .build-solutions-section .tech-grid-shell {
    max-width: 100%;
}

body.page-product .tokenisation-serve-mobile-panel {
    background: transparent !important; border: 0 !important; border-radius: 16px !important; box-shadow: none !important; margin: 0 !important; min-height: 420px !important; order: -1 !important;
}

body.page-product .tokenisation-serve-mobile-frame {
    background: transparent !important; border-radius: 16px !important; height: 420px !important;
}

body.page-product .tokenisation-who-serve-container .tokenisation-serve-slide .tokenisation-serve-item {
    order: 0;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-slide .tokenisation-serve-text, body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-slide button.tokenisation-serve-item::before {
    opacity: 1 !important;
}
}

@media (min-width: 576px) and (max-width: 768px) {
body.page-product .engine-specs-section .engine-specs-supporting .engine-specs-card, body.page-about .engine-specs-section .engine-specs-supporting .engine-specs-card {
    flex: 0 0 calc(45% - 12px); width: calc(45% - 12px); max-width: calc(45% - 12px);
}
}

@media (max-width: 500px) {
.terms-modal {
    padding: 0.75rem;
}

.terms-modal-panel {
    width: 90vw;
    max-width: 90vw;
    max-height: 90vh;
    padding: 1.5rem 1.25rem 1.5rem;
    border-radius: 14px;
}

.terms-modal-close {
    top: 0.4rem;
    right: 0.4rem;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    font-size: 26px;
}

.terms-modal-header h2 {
    font-size: 1.4em;
    padding-right: 2.75rem;
}

.terms-modal-body {
    font-size: 16px;
}

.terms-modal-body h3 {
    font-size: 1em;
    margin-top: 1.5rem;
}

.terms-modal-body p + p {
    margin-top: 0.875rem;
}

body.page-about .about-leadership-grid > .about-profile--leadership {
    max-width: 100%;
}

body.page-contact .contact-form-row {
    gap: 12px;
}

body.page-contact .contact-input, body.page-contact .contact-select, body.page-contact .contact-textarea {
    font-size: 16px;
    min-height: 48px;
}

body.page-contact .contact-submit {
    width: 100%;
    min-height: 48px;
    justify-content: center;
}
}

.about-leadership-shell {
    display: contents;
}

@media (max-width: 1024px) {
body.page-about .about-leadership-shell {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

body.page-about .about-leadership-shell .about-leadership-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    grid-template-columns: none !important;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    box-sizing: border-box;
}

body.page-about .about-leadership-shell .about-leadership-grid::-webkit-scrollbar {
    display: none;
}

body.page-about .about-leadership-shell .about-leadership-grid > .about-profile--leadership, body.page-about .about-leadership-shell .about-leadership-grid > .about-profile--leadership:nth-of-type(1), body.page-about .about-leadership-shell .about-leadership-grid > .about-profile--leadership:nth-of-type(2) {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    grid-column: auto !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-sizing: border-box;
}

body.page-about .about-leadership-shell .bridge-quote-dots {
    display: flex;
    margin-top: 18px;
    margin-bottom: 0;
}


.about-leadership-shell .bridge-quote-dots {
    display: flex;
}


body.page-product .tokenisation-serve-mobile-panel {
    min-height: 420px !important;
}

body.page-product .tokenisation-serve-mobile-frame {
    height: 420px !important;
}

body.page-product .tokenisation-who-serve-container .tokenisation-serve-slide {
    gap: 8px;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll button.tokenisation-serve-item {
    gap: var(--m-space-sm);
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll button.tokenisation-serve-item::before {
    font-size: 64px;
}
}

@media (max-width: 1024px) {
body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll button.tokenisation-serve-item.is-active::before {
    color: #B2CDFF !important;
}

body:not(.page-home) section.tokenisation-section.tokenisation-who-serve.animate-on-scroll .tokenisation-serve-title {
    font-size: clamp(1rem, 4.4vw, 1.3rem);
    line-height: 1.2;
    white-space: nowrap;
}

body.page-product .tokenisation-who-serve-container .tokenisation-serve-shell .bridge-quote-dots, body.page-product .engine-specs-section .engine-specs-cards .bridge-quote-dots, body.page-about .engine-specs-section .engine-specs-cards .bridge-quote-dots, body.page-product .build-solutions-section .tech-grid-shell .bridge-quote-dots, body.page-about .about-leadership-shell .bridge-quote-dots {
    margin-top: var(--m-space-sm); margin-bottom: var(--m-space-2xl);
}

body.page-product .build-solutions-section .tech-grid-shell .bridge-quote-dots {
    margin-top: var(--m-space-lg); margin-bottom: -32px;
}

body.page-product .tokenisation-who-serve-container .tokenisation-serve-shell .bridge-quote-dots, body.page-product .engine-specs-section .engine-specs-cards .bridge-quote-dots, body.page-about .engine-specs-section .engine-specs-cards .bridge-quote-dots {
    margin-bottom: 0;
}

section.bridge-thesis, body:not(.page-home) section.tokenisation-section.tokenisation-solution-intro {
    padding-top: var(--m-space-2xl);
}

section.bridge-thesis:has(.bridge-act--opportunity) {
    padding-top: var(--m-space-2xl);
}

body:not(.page-home) section.tokenisation-solution-intro .bridge-act--solution {
    margin-top: 0;
}

.bridge-act--opportunity + .bridge-problem-block, .bridge-problem-block {
    margin-top: var(--m-space-2xl);
}

body:not(.page-home) section.tokenisation-section.tokenisation-solution-intro + .product-section-divider + section.tokenisation-section {
    margin-top: var(--m-space-2xl);
    padding-top: var(--m-space-2xl);
}

.bridge-act--opportunity .bridge-thesis-display-subtitle {
    margin-top: var(--m-space-sm);
}

.bridge-act--solution .bridge-solution-body {
    margin-top: var(--m-space-3xs);
}

body.page-about .bridge-act--solution .bridge-solution-heading {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 0.3ch;
}

body.page-home .bridge-act--solution .bridge-solution-heading {
    display: block;
    white-space: nowrap;
    text-align: center;
}

.bridge-act--opportunity > .bridge-solution-eyebrow {
    margin-bottom: var(--m-space-md);
}

.bridge-problem-quote-divider {
    margin: var(--m-space-sm) 0;
}

body.page-home .bridge-act--opportunity .bridge-quote-dots, body.page-home .bridge-problem-cards-shell .bridge-quote-dots, body.page-home .tech-grid-shell .bridge-quote-dots, body.page-home .insights-section .bridge-quote-dots {
    margin-top: var(--m-space-sm);
    margin-bottom: var(--m-space-2xl);
}

body.page-home .bridge-act--opportunity + .bridge-problem-block {
    margin-top: 0;
}

body.page-home .bridge-problem-cards-shell + .bridge-problem-quote {
    margin-top: 0;
}

body.page-home .bridge-problem-cards-shell .bridge-quote-dots {
    margin-top: -12px;
}

body.page-home .tech-grid-shell .bridge-quote-dots {
    margin-top: 40px;
    margin-bottom: -64px;
}

body.page-home .insights-section .bridge-quote-dots {
    margin-top: var(--m-space-lg);
    margin-bottom: -64px;
}

body.page-about .about-leadership-shell .bridge-quote-dots {
    margin-top: var(--m-space-lg);
    margin-bottom: -16px;
}

body.page-home .insights-section {
    padding-top: var(--m-space-lg);
}

body.page-about .about-overview .about-leadership-shell {
    margin-top: var(--m-space-md);
    margin-bottom: var(--m-space-sm);
}

body.page-about .about-mission .engine-specs-cards {
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

body.page-about .about-mission .engine-specs-supporting {
    background: transparent;
    padding: 0;
}

body.page-about .engine-specs-section .engine-specs-cards .bridge-quote-dots {
    margin-top: 20px;
}

body.page-about .tokenisation-section.about-cmc {
    padding-bottom: var(--m-space-sm);
}
}

.bridge-act--opportunity {
    --sol-scale: var(--opportunity-scale, 1);
}

.bridge-act--opportunity > .bridge-solution-eyebrow {
    margin: 0 auto calc(20px * var(--sol-scale, 1));
}

@media (max-width: 1024px) {
body.page-product .tokenisation-who-serve-container .tokenisation-serve-slide .tokenisation-serve-item {
    margin-top: -32px;
}

body.page-strx .tokenisation-who-serve-container .tokenisation-serve-slide:has(.tokenisation-serve-mobile-frame[src*="strx-burn"]) .tokenisation-serve-item {
    margin-top: -60px;
}

body.page-strx .tokenisation-who-serve-container .tokenisation-serve-slide:has(.tokenisation-serve-mobile-frame[src*="strx-multichain"]) .tokenisation-serve-item, body.page-strx .tokenisation-who-serve-container .tokenisation-serve-slide:has(.tokenisation-serve-mobile-frame[src*="strx-vaults"]) .tokenisation-serve-item {
    margin-top: -110px;
}

}

/* Tablet band (769px–1024px): fluid layout, pill nav, peek carousels, readable type. */
@media (min-width: 769px) and (max-width: 1024px) {
:root {
    --page-gutter-x: clamp(1.25rem, 3vw, 2rem);
    --tablet-peek-card-w: min(58vw, 420px);
    --tablet-peek-pad: max(1rem, calc((100vw - var(--tablet-peek-card-w)) / 2));
}

/* Megamenu is wider than the pill bar — anchor to its right edge so it stays in viewport */
.nav-pills .megamenu {
    left: auto;
    right: 0;
    max-width: min(380px, calc(100vw - 2 * var(--page-gutter-x)));
}

.hero:not(.page-hero) {
    height: auto;
    min-height: min(820px, 92svh);
}

.hero:not(.page-hero) .hero-wrapper,
.hero.page-hero .hero-wrapper {
    padding: var(--m-space-3xl) var(--page-gutter-x) var(--m-space-xl);
}

.hero:not(.page-hero) .hero-content h1 {
    max-width: 100%;
}

/* Unified section typography across Opportunity / Problem / Solution */
.bridge-thesis-display-italic,
.bridge-thesis-display-regular,
.bridge-problem-block .bridge-solution-heading,
.bridge-problem-block .bridge-solution-heading-regular,
.bridge-problem-block .bridge-solution-heading-italic,
.bridge-act--solution .bridge-solution-heading,
.bridge-act--solution .bridge-solution-heading-regular,
.bridge-act--solution .bridge-solution-heading-italic {
    font-size: clamp(2rem, 5.2vw, 2.75rem);
    letter-spacing: -0.5px;
    line-height: 1.05;
}

.bridge-thesis-display-subtitle,
.bridge-problem-block .bridge-problem-subtitle,
.bridge-act--solution .bridge-solution-body {
    font-size: clamp(1rem, 2.4vw, 1.125rem);
    line-height: 1.45;
    letter-spacing: -0.16px;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.bridge-solution-eyebrow-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
}

.bridge-thesis:has(.bridge-act--opportunity) {
    padding-top: clamp(4rem, 10vh, 6rem);
}

/* Opportunity quote carousel — centered card with peeks (loop clones in JS) */
.bridge-quote-carousel--cards {
    width: 100%;
    max-width: none;
    left: auto;
    transform: none;
    margin-left: 0;
    margin-right: 0;
    --card-scale: 0.92;
    --card-w: var(--tablet-peek-card-w);
    --carousel-w: 100%;
}

.bridge-quote-carousel--cards .bridge-quote-track {
    gap: 1rem;
    padding-inline: var(--tablet-peek-pad) !important;
    scroll-padding-inline: var(--tablet-peek-pad) !important;
}

.bridge-quote-carousel--cards .bridge-quote--card {
    flex: 0 0 var(--tablet-peek-card-w);
    width: var(--tablet-peek-card-w);
    scroll-snap-align: center !important;
}

/* Challenge cards — single full card, no side peeks */
.bridge-problem-cards-shell {
    max-width: min(calc(100vw - 2rem), 460px);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.bridge-problem-block .bridge-problem-cards-shell .bridge-problem-cards {
    gap: 0;
    padding-inline: 0;
    scroll-padding-inline: 0;
}

.bridge-problem-block .bridge-problem-cards-shell .bridge-problem-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: center;
    padding: 0 1.5rem var(--m-space-md);
}

/* Full-width scroll viewport (136 caps shell at 460px up to 1024px) */
.tech-grid-shell {
    max-width: none !important;
    width: 100% !important;
}

/* Tech grid carousel — match mobile card width with peeks (home + product pages) */
.build-solutions-section .tech-grid-shell {
    max-width: none !important;
    width: 100% !important;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
}

.build-solutions-section .tech-grid-shell .tech-grid {
    gap: 1rem !important;
    padding-inline: var(--tablet-peek-pad) !important;
    scroll-padding-inline: var(--tablet-peek-pad) !important;
    margin-inline-start: calc(var(--page-gutter-x) * -1);
    margin-inline-end: calc(var(--page-gutter-x) * -1);
    width: calc(100% + (var(--page-gutter-x) * 2));
    max-width: none !important;
    scroll-snap-type: x mandatory;
}

.build-solutions-section .tech-grid-shell .tech-grid > .tech-card,
.build-solutions-section .tech-grid-shell .tech-grid > article.tech-card {
    flex: 0 0 var(--tablet-peek-card-w) !important;
    width: var(--tablet-peek-card-w) !important;
    max-width: var(--tablet-peek-card-w) !important;
    min-width: var(--tablet-peek-card-w) !important;
    scroll-snap-align: center !important;
}

/* Engine specs supporting cards carousel */
body.page-product .engine-specs-section .engine-specs-supporting,
body.page-about .engine-specs-section .engine-specs-supporting {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    margin-inline-start: calc(var(--page-gutter-x) * -1);
    margin-inline-end: calc(var(--page-gutter-x) * -1);
    padding-inline: var(--tablet-peek-pad) !important;
    scroll-padding-inline: var(--tablet-peek-pad) !important;
}

body.page-product .engine-specs-section .engine-specs-supporting::-webkit-scrollbar,
body.page-about .engine-specs-section .engine-specs-supporting::-webkit-scrollbar {
    display: none;
}

body.page-product .engine-specs-section .engine-specs-supporting .engine-specs-card,
body.page-about .engine-specs-section .engine-specs-supporting .engine-specs-card {
    flex: 0 0 var(--tablet-peek-card-w) !important;
    width: var(--tablet-peek-card-w) !important;
    max-width: var(--tablet-peek-card-w) !important;
    min-width: var(--tablet-peek-card-w) !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always;
    box-sizing: border-box;
}

/* About leadership carousel */
body.page-about .about-leadership-shell .about-leadership-grid {
    gap: 1rem !important;
    margin-inline-start: calc(var(--page-gutter-x) * -1);
    margin-inline-end: calc(var(--page-gutter-x) * -1);
    padding-inline: var(--tablet-peek-pad) !important;
    scroll-padding-inline: var(--tablet-peek-pad) !important;
}

body.page-about .about-leadership-shell .about-leadership-grid > .about-profile--leadership,
body.page-about .about-leadership-shell .about-leadership-grid > .about-profile {
    flex: 0 0 var(--tablet-peek-card-w) !important;
    width: var(--tablet-peek-card-w) !important;
    max-width: var(--tablet-peek-card-w) !important;
    min-width: var(--tablet-peek-card-w) !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always;
}

/* Blog — featured article: image on top, natural aspect ratio */
.insights-section .insights-main {
    display: flex;
    flex-direction: column;
    height: auto;
    background: transparent;
    overflow: visible;
}

.insights-section .insights-main-right {
    order: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
}

.insights-section .insights-main-left {
    order: 1;
    width: 100%;
    padding: 1.5rem 0 0;
    background: transparent;
}

.insights-section .insights-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.insights-section .insights-main-title {
    font-size: clamp(1.5rem, 3.2vw, 1.75rem);
    line-height: 1.2;
}

.insights-section .insights-main-text {
    font-size: 1rem;
    line-height: 1.45;
}

/* Blog card carousel — centered peek */
.insights-section .insights-grid {
    gap: 1rem;
    margin-inline-start: calc(var(--page-gutter-x) * -1);
    margin-inline-end: calc(var(--page-gutter-x) * -1);
    padding-inline: var(--tablet-peek-pad) !important;
    scroll-padding-inline: var(--tablet-peek-pad) !important;
}

.insights-section .insights-grid .insights-card {
    flex: 0 0 var(--tablet-peek-card-w);
    width: var(--tablet-peek-card-w);
    max-width: var(--tablet-peek-card-w);
    scroll-snap-align: center !important;
}

.insights-section .insights-grid .insights-card .insights-card-image-clip {
    aspect-ratio: 16 / 10 !important;
    height: auto !important;
}

}
