/* Self-hosted fonts (latin subsets, variable files) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/inter-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/inter-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/mulish-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/mulish-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --ink: #0d131a;
    --body: #2a3340;
    --white: #ffffff;
    --mist: #eceff3;
    --border: #d8dae0;
    --accent: #176be0;
    --accent-hover: #1259bc;
    --muted: #657080;
    --surface: #f7f8fa;
    --shadow: 0 18px 48px rgba(13, 19, 26, 0.08);
    --radius: 8px;
    --container: 1140px;
    --heading: "Mulish", Arial, sans-serif;
    --text: "Inter", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--body);
    background: var(--white);
    font-family: var(--text);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    content: "";
}

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

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

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

a:focus-visible,
button:focus-visible {
    outline: 3px solid #8dbbff;
    outline-offset: 4px;
}

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

h1,
h2,
h3 {
    color: var(--ink);
    font-family: var(--heading);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(2.75rem, 7vw, 5.6rem);
    font-weight: 800;
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
}

h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
    font-weight: 800;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 16px;
    padding: 10px 16px;
    transform: translateY(-150%);
    border-radius: 4px;
    color: var(--white);
    background: var(--accent);
    font-weight: 600;
}

.skip-link:focus {
    transform: translateY(0);
}

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

.eyebrow {
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #9fc5ff;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border: 1px solid var(--accent);
    border-radius: 6px;
    color: var(--white);
    background: var(--accent);
    font-weight: 600;
    line-height: 1.2;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
    border-color: var(--accent-hover);
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.button-small {
    min-height: 42px;
    padding: 10px 16px;
    color: var(--white) !important;
    font-size: 0.88rem;
}

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

.button-light:hover {
    border-color: var(--mist);
    background: var(--mist);
}

.button-secondary {
    border-color: var(--ink);
    color: var(--ink);
    background: transparent;
}

.button-secondary:hover {
    border-color: var(--ink);
    color: var(--white);
    background: var(--ink);
}

.site-header {
    position: relative;
    z-index: 50;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.97);
}

.header-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.brand-tile {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    overflow: hidden;
    border-radius: 7px;
    background: var(--ink);
}

.brand-tile img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.brand-name {
    color: var(--ink);
    font-family: var(--heading);
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand-wordmark {
    display: block;
    width: auto;
    height: 38px;
}

.brand-wordmark-light {
    height: 32px;
}

.db-lockup {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.db-lockup img {
    width: 48px;
    height: 48px;
}

.db-name {
    color: var(--ink);
    font-family: var(--heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.db-name > span {
    color: #3d9483;
}

.db-name-small {
    font-size: 1.15rem;
}

.db-card-title {
    display: flex;
    align-items: center;
    gap: 9px;
}

.db-card-title img {
    width: 28px;
    height: 28px;
}

.nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--ink);
    background: var(--white);
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
}

.site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow);
}

.site-nav.is-open {
    display: grid;
    gap: 4px;
}

.site-nav > a:not(.button) {
    padding: 11px 8px;
    color: var(--body);
    font-size: 0.92rem;
    font-weight: 600;
}

.site-nav > a:not(.button):hover {
    color: var(--accent);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 88px;
    background:
        radial-gradient(1000px 560px at 88% 4%, rgba(85, 195, 214, 0.20), transparent 62%),
        radial-gradient(880px 600px at 2% 96%, rgba(62, 111, 240, 0.16), transparent 58%),
        radial-gradient(620px 420px at 55% 118%, rgba(23, 107, 224, 0.10), transparent 65%),
        linear-gradient(150deg, #ffffff 0%, #f6f9fe 48%, #eaf1fb 100%);
}

.hero::before {
    position: absolute;
    top: -220px;
    left: 42%;
    width: 640px;
    height: 640px;
    background: conic-gradient(from 210deg, rgba(62, 111, 240, 0.10), rgba(85, 195, 214, 0.12), rgba(255, 255, 255, 0) 62%);
    border-radius: 50%;
    filter: blur(52px);
    content: "";
}

.hero::after {
    position: absolute;
    right: -180px;
    bottom: -280px;
    width: 560px;
    height: 560px;
    border: 1px solid #bcd2f0;
    border-radius: 50%;
    content: "";
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 56px;
}

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

.hero-lede {
    max-width: 700px;
    margin-bottom: 32px;
    color: #4f5a68;
    font-size: clamp(1.08rem, 2vw, 1.3rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.text-link,
.card-link {
    color: var(--ink);
    font-weight: 600;
}

.text-link span,
.card-link span {
    display: inline-block;
    margin-left: 6px;
    color: var(--accent);
    transition: transform 160ms ease;
}

.text-link:hover span,
.card-link:hover span {
    transform: translateX(4px);
}

.hero-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.hero-links a {
    width: fit-content;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #bdc5cf;
    text-underline-offset: 5px;
}

.hero-links a:hover {
    color: var(--accent);
}

.delivery-board {
    align-self: center;
    border: 1px solid;
    border-color: #243140;
    border-radius: var(--radius);
    color: var(--white);
    background-color: var(--ink);
    background-image: url('/assets/img/art-hero.svg'), linear-gradient(160deg, var(--ink), #16202E);
    background-position: right -40px top -40px, 0 0;
    background-repeat: no-repeat;
    background-size: auto 115%, auto;
    box-shadow: 0 28px 60px rgba(13, 19, 26, 0.2);
}

.board-header,
.board-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
}

.board-header {
    border-bottom: 1px solid #2d3844;
}

.board-header strong,
.board-footer strong {
    display: block;
    color: var(--white);
    font-family: var(--heading);
}

.board-kicker,
.board-footer span {
    display: block;
    margin-bottom: 2px;
    color: #8f9baa;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.status-dot {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #9fc5ff;
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.status-dot::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4b96ff;
    box-shadow: 0 0 0 5px rgba(75, 150, 255, 0.12);
    content: "";
}

.board-steps {
    margin: 0;
    padding: 8px 22px;
    list-style: none;
}

.board-steps li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #2d3844;
}

.board-steps li:last-child {
    border-bottom: 0;
}

.board-steps > li > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid #415063;
    border-radius: 50%;
    color: #9fc5ff;
    font-size: 0.7rem;
    font-weight: 600;
}

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

.board-steps strong {
    font-family: var(--heading);
}

.board-steps small {
    color: #aab3bf;
}

.board-footer {
    border-top: 1px solid #2d3844;
    background: #111b25;
}

.services-section,
.process-section {
    padding: 96px 0;
}

.services-section {
    background:
        radial-gradient(760px 380px at 96% 0%, rgba(85, 195, 214, 0.08), transparent 60%),
        linear-gradient(180deg, #eef4fc 0%, #ffffff 34%, #ffffff 100%);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-heading > p:last-child {
    color: var(--muted);
}

.card-grid {
    display: grid;
    gap: 20px;
}

.service-card {
    display: flex;
    min-height: 360px;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.card-number {
    width: fit-content;
    margin-bottom: 30px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--accent);
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 600;
}

.card-icon {
    display: inline-flex;
    width: fit-content;
    color: var(--accent);
}

.card-icon svg {
    width: 26px;
    height: 26px;
}

.service-card > .card-icon,
.industry-card > .card-icon {
    margin-bottom: 18px;
}

.card-category {
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card > p:not(.card-category) {
    color: var(--muted);
}

.service-card .card-link {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--mist);
}

.proof-strip {
    padding: 40px 0;
    color: var(--white);
    background-color: var(--ink);
    background-image: url('/assets/img/art-nodes.svg');
    background-position: right center;
    background-repeat: repeat-x;
    background-size: auto 100%;
}

.proof-grid {
    display: grid;
    gap: 24px;
}

.proof-grid p {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 0;
    color: var(--white);
    font-family: var(--heading);
    font-size: 1.08rem;
    font-weight: 700;
}

.proof-grid span {
    color: #77adfa;
    font-family: var(--text);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
}

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

.industries-strip {
    padding: 96px 0;
    background: var(--white);
}

.industry-link-grid {
    display: grid;
    gap: 16px;
}

.industry-link-grid a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 22px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--ink);
    background: var(--surface);
    font-family: var(--heading);
    font-weight: 700;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.industry-link-grid a:hover {
    transform: translateY(-4px);
    border-color: #b8c6d8;
    box-shadow: var(--shadow);
}

.process-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border);
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.process-list h3 {
    margin-bottom: 8px;
}

.process-list p {
    margin-bottom: 0;
    color: var(--muted);
}

.step-number {
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 600;
}

.datobridge-band {
    position: relative;
    padding: 80px 0;
    color: #cbd3dd;
    background: #172331;
}

.datobridge-band::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #3E6FF0, #55C3D6);
    content: "";
}

.datobridge-grid {
    display: grid;
    gap: 32px;
    align-items: center;
}

.datobridge-band h2 {
    max-width: 720px;
    color: var(--white);
}

.datobridge-band p:last-child {
    max-width: 680px;
    margin-bottom: 0;
}

.datobridge-mark {
    display: grid;
    width: 104px;
    height: 104px;
    place-items: center;
}

.datobridge-mark img {
    width: 104px;
    height: 104px;
    object-fit: contain;
}

.prefooter-cta {
    padding: 88px 0;
    color: #b9c2ce;
    background-color: var(--ink);
    background-image: url('/assets/img/art-nodes.svg');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    border-top: 1px solid #2b3642;
}

.prefooter-cta h2 {
    max-width: 850px;
    margin-bottom: 0;
    color: var(--white);
}

.cta-inner {
    display: grid;
    gap: 32px;
    align-items: center;
}

.site-footer {
    padding: 64px 0 24px;
    color: #9fa9b6;
    background: #090e13;
}

.footer-grid {
    display: grid;
    gap: 40px;
}

.brand-light .brand-name {
    color: var(--white);
}

.footer-brand p {
    max-width: 310px;
    margin: 20px 0 0;
}

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

.footer-heading {
    margin-bottom: 4px;
    color: var(--white);
    font-weight: 600;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid #252e38;
    font-size: 0.8rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

.chat-widget {
    position: fixed;
    z-index: 60;
    right: 18px;
    bottom: 18px;
}

.chat-button {
    display: grid;
    width: 60px;
    height: 60px;
    padding: 0;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(140deg, #1259bc 0%, #176be0 52%, #3e8ff0 100%);
    box-shadow: 0 14px 34px rgba(18, 89, 188, 0.42);
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.chat-button:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 18px 42px rgba(18, 89, 188, 0.5);
}

.chat-button svg {
    width: 30px;
    height: 30px;
}

.chat-panel {
    position: absolute;
    right: 0;
    bottom: 70px;
    display: flex;
    width: min(390px, calc(100vw - 24px));
    max-height: min(620px, calc(100vh - 110px));
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 22px 64px rgba(13, 19, 26, 0.24);
}

.chat-panel[hidden] {
    display: none;
}

.chat-header {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    color: var(--white);
    background: var(--ink);
    font-family: var(--heading);
    font-weight: 800;
}

.chat-close {
    padding: 6px 8px;
    border: 0;
    color: #d5dce5;
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-family: var(--text);
    font-size: 0.78rem;
    font-weight: 600;
}

.chat-close:hover {
    color: var(--white);
}

.chat-messages {
    min-height: 250px;
    padding: 18px 16px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--surface);
}

.chat-message {
    width: fit-content;
    max-width: 88%;
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 7px;
    font-size: 0.9rem;
    line-height: 1.45;
    white-space: pre-wrap;
}

.chat-message-bot {
    border: 1px solid var(--border);
    color: var(--body);
    background: var(--white);
}

.chat-message-visitor {
    margin-left: auto;
    color: var(--white);
    background: var(--accent);
}

.chat-message a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
}

.chat-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 2px 0 14px;
}

.chat-chip {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 7px 10px;
    border: 1px solid #a9c7f3;
    border-radius: 999px;
    color: #0f55b8;
    background: #f2f7ff;
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.2;
}

.chat-chip:hover {
    border-color: var(--accent);
    background: #e5effd;
}

.chat-chip:disabled {
    cursor: default;
    opacity: 0.55;
}

.chat-persistent-actions {
    padding: 10px 16px 0;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.chat-persistent-actions:empty {
    display: none;
}

.chat-chip-persistent {
    width: 100%;
    justify-content: center;
}

.chat-input-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 12px 16px;
    background: var(--white);
}

.chat-input-row input {
    width: 100%;
    min-height: 42px;
    padding: 9px 11px;
    border: 1px solid #b9c0ca;
    border-radius: 5px;
    color: var(--ink);
    background: var(--white);
    font: inherit;
    font-size: 0.88rem;
}

.chat-input-row button {
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid var(--accent);
    border-radius: 5px;
    color: var(--white);
    background: var(--accent);
    cursor: pointer;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 600;
}

.chat-input-row button:hover {
    border-color: var(--accent-hover);
    background: var(--accent-hover);
}

.chat-input-row button:disabled,
.chat-input-row input:disabled {
    cursor: wait;
    opacity: 0.65;
}

.chat-input-row input:focus-visible {
    outline: 3px solid #8dbbff;
    outline-offset: 2px;
}

.chat-caution {
    margin: 0;
    padding: 0 16px 12px;
    color: var(--muted);
    background: var(--white);
    font-size: 0.7rem;
    line-height: 1.35;
}

.page-hero {
    min-height: 560px;
    padding: 96px 0;
    background: linear-gradient(145deg, var(--white) 0%, #f2f5f8 100%);
}

.page-hero-inner {
    max-width: 850px;
}

.page-hero h1 {
    max-width: 820px;
}

.page-hero .hero-lede {
    max-width: 680px;
}

.stub-note {
    display: inline-flex;
    margin-bottom: 40px;
    padding: 7px 11px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    background: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.error-code {
    color: var(--accent);
    font-family: var(--heading);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.service-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 88px;
    background: linear-gradient(145deg, var(--white) 0%, var(--white) 54%, #f0f4f8 100%);
}

.service-hero::after {
    position: absolute;
    z-index: 0;
    right: -210px;
    bottom: -310px;
    width: 600px;
    height: 600px;
    border: 1px solid #d9e4f2;
    border-radius: 50%;
    content: "";
}

.service-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 56px;
    align-items: center;
}

.service-hero-copy {
    max-width: 820px;
}

.service-hero h1 {
    max-width: 850px;
}

.outcome-panel {
    padding: 28px;
    border: 1px solid;
    border-color: #243140;
    border-radius: var(--radius);
    color: #c5ced9;
    background-color: var(--ink);
    background-image: linear-gradient(160deg, var(--ink), #16202E);
    box-shadow: 0 28px 60px rgba(13, 19, 26, 0.18);
}

.panel-label {
    margin-bottom: 20px;
    color: #9fc5ff;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.panel-statement {
    margin-bottom: 28px;
    color: var(--white);
    font-family: var(--heading);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.signal-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid #35414e;
    list-style: none;
}

.signal-list li {
    position: relative;
    padding: 14px 0 14px 22px;
    border-bottom: 1px solid #35414e;
    font-size: 0.9rem;
}

.signal-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.signal-list li::before {
    position: absolute;
    top: 22px;
    left: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #77adfa;
    content: "";
}

.detail-section {
    padding: 96px 0;
}

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

.detail-heading-grid {
    display: grid;
    gap: 32px;
}

.detail-heading-grid h2 {
    margin-bottom: 0;
}

.detail-copy {
    max-width: 680px;
}

.detail-copy p {
    color: var(--muted);
    font-size: 1.05rem;
}

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

.deliverable-grid {
    display: grid;
    gap: 20px;
}

.deliverable-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: border-color 180ms ease;
}

.deliverable-card:hover {
    border-color: var(--accent);
}

.deliverable-card h3 {
    margin-bottom: 12px;
}

.deliverable-card > p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.industries-section {
    background: var(--white);
}

.industry-grid {
    display: grid;
    gap: 20px;
}

.industry-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    transition: border-color 180ms ease;
}

.industry-card:hover {
    border-color: var(--accent);
}

.industry-card h3 {
    margin-bottom: 14px;
}

.industry-card p {
    color: var(--muted);
}

.industry-card .industry-systems {
    color: var(--ink);
    font-weight: 600;
}

.industry-card > p:last-child {
    margin-bottom: 0;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-color: #b9cee9;
    background: #f8fbff;
}

.product-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #3E6FF0, #55C3D6);
    content: "";
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #dbe6f2;
}

.card-actions .card-link {
    color: var(--accent);
    font-size: 0.88rem;
}

.card-actions .card-link:hover {
    color: var(--accent-hover);
}

.product-site-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--accent);
    color: var(--ink);
    font-weight: 600;
}

.product-site-link span {
    color: var(--accent);
    transition: transform 160ms ease;
}

.product-site-link:hover span {
    transform: translateX(4px);
}

.proof-section {
    padding: 96px 0;
    color: #bbc5d1;
    background: #172331;
}

.proof-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.proof-heading h2,
.proof-card-grid h3 {
    color: var(--white);
}

.proof-card-grid {
    display: grid;
    gap: 20px;
}

.proof-card-grid article {
    padding: 28px;
    border: 1px solid #3a4857;
    border-radius: var(--radius);
    background: #1b2938;
}

.proof-card-grid h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.proof-card-grid p {
    margin-bottom: 0;
}

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

.faq-section h2 {
    max-width: 760px;
    margin-bottom: 48px;
}

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

.faq-item {
    display: grid;
    gap: 12px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.faq-item h3,
.faq-item p {
    margin-bottom: 0;
}

.faq-item p {
    max-width: 680px;
    color: var(--muted);
}

.work-hero .service-hero-copy {
    max-width: 900px;
}

.engagements-section,
.principles-section,
.contact-section {
    padding: 96px 0;
}

.engagements-section,
.contact-section {
    background: var(--surface);
}

.engagement-list {
    display: grid;
    gap: 24px;
}

.engagement-card {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.engagement-heading,
.engagement-detail {
    padding: 28px;
}

.engagement-heading {
    background: var(--ink);
}

.engagement-heading h3 {
    max-width: 440px;
    margin-bottom: 0;
    color: var(--white);
}

.engagement-detail {
    border-top: 1px solid var(--border);
}

.engagement-detail p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.engagement-label {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.engagement-result {
    background: #f4f8fd;
}

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

.principles-grid {
    display: grid;
    gap: 20px;
}

.principle-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
}

.principle-marker {
    width: fit-content;
    margin-bottom: 48px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--accent);
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.principle-card p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.location-section {
    padding: 88px 0;
    color: #bac4d0;
    background: #172331;
}

.location-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.location-section h2 {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--white);
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 28px;
    border: 1px solid #3b4a59;
    border-radius: var(--radius);
    background: #1b2938;
}

.contact-card p {
    margin-bottom: 8px;
    color: var(--white);
    font-family: var(--heading);
    font-size: 1.15rem;
    font-weight: 700;
}

.contact-card a {
    color: #b9d6ff;
}

.contact-card a:hover {
    color: var(--white);
}

.contact-hero {
    padding: 80px 0 88px;
    background: linear-gradient(145deg, var(--white) 0%, var(--white) 54%, #f0f4f8 100%);
}

.contact-hero-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

.contact-hero h1 {
    max-width: 820px;
}

.scheduler-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.scheduler-card h2 {
    margin-bottom: 12px;
    font-size: 1.8rem;
}

.scheduler-card > p:not(.card-category) {
    color: var(--muted);
}

.contact-layout {
    display: grid;
    gap: 48px;
    align-items: start;
}

.contact-intro > p:not(.eyebrow) {
    max-width: 500px;
    color: var(--muted);
}

.direct-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.direct-contact-label {
    margin-bottom: 4px;
    color: var(--ink);
    font-weight: 600;
}

.direct-contact a {
    color: var(--accent);
    font-weight: 600;
}

.direct-contact a:hover {
    color: var(--accent-hover);
}

.contact-form-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.form-status {
    margin-bottom: 24px;
    padding: 15px 16px;
    border: 1px solid;
    border-radius: 6px;
    font-weight: 600;
}

.form-status.is-empty {
    display: none;
}

.form-status-success {
    border-color: #91c8aa;
    color: #174c2e;
    background: #edf8f1;
}

.form-status-error {
    border-color: #e1aaa5;
    color: #762d28;
    background: #fff2f0;
}

.lead-form {
    display: grid;
    gap: 20px;
}

.form-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    color: var(--ink);
    font-weight: 600;
}

.form-field label span {
    color: var(--accent);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 13px;
    border: 1px solid #b9c0ca;
    border-radius: 5px;
    color: var(--ink);
    background: var(--white);
    font: inherit;
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 3px solid #b9d6ff;
    outline-offset: 1px;
    border-color: var(--accent);
}

.contact-requirement {
    margin: -8px 0 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.form-submit {
    padding-top: 8px;
}

.form-submit .button {
    cursor: pointer;
    font: inherit;
}

.form-submit .button:disabled {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}

.form-submit p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
}

@media (min-width: 720px) {
    .container {
        width: min(calc(100% - 64px), var(--container));
    }

    .hero {
        padding: 112px 0;
    }

    .hero-links {
        flex-direction: row;
        gap: 28px;
    }

    .services-section,
    .process-section,
    .industries-strip {
        padding: 112px 0;
    }

    .split-heading {
        display: grid;
        max-width: none;
        grid-template-columns: 1.3fr 0.7fr;
        gap: 64px;
        align-items: end;
    }

    .split-heading h2 {
        margin-bottom: 0;
    }

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

    .service-card {
        padding: 28px;
    }

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

    .proof-grid p {
        padding-right: 24px;
        border-right: 1px solid #39434e;
    }

    .proof-grid p:last-child {
        border-right: 0;
    }

    .process-layout {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 88px;
    }

    .process-intro {
        position: sticky;
        top: 40px;
        align-self: start;
    }

    .datobridge-grid {
        grid-template-columns: auto 1fr auto;
    }

    .cta-inner {
        grid-template-columns: 1fr auto;
    }

    .footer-grid {
        grid-template-columns: 1.5fr repeat(3, 1fr);
    }

    .page-hero {
        display: flex;
        min-height: 620px;
        align-items: center;
        padding: 112px 0;
    }

    .service-hero,
    .detail-section,
    .proof-section {
        padding-top: 112px;
        padding-bottom: 112px;
    }

    .detail-heading-grid {
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
        gap: 88px;
        align-items: start;
    }

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

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

    .deliverable-card {
        min-height: 270px;
        padding: 30px;
    }

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

    .faq-item {
        grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
        gap: 72px;
    }

    .engagements-section,
    .principles-section,
    .contact-section {
        padding-top: 112px;
        padding-bottom: 112px;
    }

    .engagement-card {
        grid-template-columns: minmax(220px, 0.9fr) repeat(3, minmax(0, 1fr));
    }

    .engagement-detail {
        border-top: 0;
        border-left: 1px solid var(--border);
    }

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

    .principle-card {
        min-height: 310px;
    }

    .location-grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
        gap: 72px;
    }

    .contact-hero {
        padding-top: 112px;
        padding-bottom: 112px;
    }

    .contact-hero-grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(290px, 0.6fr);
        gap: 72px;
    }

    .contact-layout {
        grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
        gap: 72px;
    }

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

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

    .contact-form-card {
        padding: 36px;
    }
}

@media (min-width: 1024px) {
    .site-header {
        position: sticky;
        top: 0;
    }

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

    .nav-toggle {
        display: none;
    }

    .site-nav {
        position: static;
        display: flex;
        align-items: center;
        gap: 19px;
        padding: 0;
        border: 0;
        box-shadow: none;
    }

    .site-nav > a:not(.button) {
        padding: 8px 0;
        font-size: 0.82rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.5fr) minmax(330px, 0.7fr);
        gap: 72px;
        align-items: center;
    }

    .hero h1 {
        font-size: clamp(4.4rem, 6vw, 5.6rem);
    }

    .service-card {
        padding: 32px;
    }

    .service-hero-grid {
        grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.7fr);
        gap: 72px;
    }

    .service-hero h1 {
        font-size: clamp(4.2rem, 5.6vw, 5.25rem);
    }

    .outcome-panel {
        padding: 32px;
    }

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

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

.legal-hero {
    padding: 72px 0 40px;
    background: linear-gradient(160deg, #ffffff 0%, #f2f6fc 100%);
    border-bottom: 1px solid var(--border);
}

.legal-updated {
    color: var(--muted);
    font-size: 0.9rem;
}

.legal-body {
    padding: 64px 0 96px;
}

.legal-container {
    max-width: 780px;
}

.legal-container h2 {
    margin-top: 44px;
    font-size: 1.35rem;
}

.legal-container h2:first-child {
    margin-top: 0;
}

.legal-container a {
    color: var(--accent);
    font-weight: 600;
}

.cookie-banner {
    position: fixed;
    z-index: 2147483647;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    min-height: 92px;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 20px max(24px, calc((100vw - 1180px) / 2));
    border-top: 1px solid #2c3a49;
    color: #d8e0e9;
    background: var(--ink);
    box-shadow: 0 -12px 36px rgba(13, 19, 26, 0.24);
    font-size: 0.9rem;
    line-height: 1.55;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner p {
    max-width: 760px;
    margin: 0;
    text-align: center;
}

.cookie-banner a {
    color: #9fc5ff;
    font-weight: 600;
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.cookie-decline {
    min-width: 94px;
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 6px;
    color: var(--white);
    background: transparent;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
}

.cookie-decline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.bs-consent-open .chat-widget {
    bottom: 110px;
}

@media (max-width: 719px) {
    .cookie-banner {
        flex-direction: column;
        gap: 14px;
        padding: 18px 20px;
    }

    .cookie-banner-actions {
        justify-content: center;
    }

    .bs-consent-open .chat-widget {
        bottom: 190px;
    }
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-legal a {
    color: #8b98a9;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--white);
}
