:root {
    --blue: #075bff;
    --blue-dark: #0047d4;
    --blue-soft: #eaf1ff;
    --navy: #001a38;
    --navy-deep: #000e22;
    --red: #ef2525;
    --red-dark: #c81919;
    --red-deep: #a91010;
    --ink: #080b10;
    --muted: #526071;
    --line: #d6dce5;
    --surface: #f6f7f9;
    --white: #fff;
    --shadow-sm: 0 10px 30px rgb(0 26 56 / 8%);
    --shadow-md: 0 20px 55px rgb(0 26 56 / 13%);
    --radius-sm: 6px;
    --radius: 10px;
    --header-height: 78px;
    --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
    text-size-adjust: 100%;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

main,
section,
header,
footer,
nav,
div,
article,
aside,
form {
    min-width: 0;
}

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

h1,
h2,
h3 {
    color: var(--ink);
    font-weight: 780;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(2.8rem, 4.55vw, 4.85rem);
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3vw, 3.15rem);
}

h3 {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.25;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-bottom: 0;
    padding: 0;
}

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

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

button {
    border: 0;
}

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

img {
    height: auto;
}

::selection {
    color: var(--white);
    background: var(--blue);
}

:where(a, button, input, textarea, summary):focus-visible {
    outline: 3px solid #0047d4;
    outline-offset: 3px;
}

:is(.integrations-section, .contact-section, .site-footer) :where(a, button, input, textarea, summary):focus-visible {
    outline-color: #fff;
}

[id] {
    scroll-margin-top: calc(var(--header-height) + 18px);
}

.container,
.container-wide {
    width: min(calc(100% - 48px), 1320px);
    margin-inline: auto;
}

.container-wide {
    width: min(calc(100% - 48px), 1520px);
}

@media (min-width: 1200px) {
    .site-header .header-inner {
        width: min(calc(100% - 64px), 1600px);
    }
}

.section {
    padding-block: 82px;
}

.eyebrow {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.eyebrow-light {
    color: #79a9ff;
}

.section-intro h2,
.support-intro h2,
.contact-intro h2,
.integrations-copy h2 {
    text-wrap: balance;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    color: var(--white);
    background: var(--navy);
    border-radius: var(--radius-sm);
    font-weight: 750;
    transform: translateY(-180%);
    transition: transform 160ms ease;
}

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

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    background: rgb(255 255 255 / 96%);
    border-bottom: 1px solid transparent;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
    background: rgb(255 255 255 / 98%);
    border-bottom-color: var(--line);
    box-shadow: 0 8px 24px rgb(0 26 56 / 8%);
}

.header-inner {
    display: flex;
    align-items: center;
    min-height: var(--header-height);
    gap: clamp(20px, 2.5vw, 42px);
}

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

.brand img {
    width: clamp(210px, 18vw, 258px);
}

.primary-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    gap: clamp(18px, 2vw, 34px);
}

.primary-navigation a,
.language-switcher a {
    position: relative;
    color: #202a36;
    font-size: 0.84rem;
    font-weight: 620;
    white-space: nowrap;
}

.primary-navigation a::after {
    position: absolute;
    right: 50%;
    bottom: -8px;
    left: 50%;
    height: 2px;
    background: var(--blue);
    content: "";
    transition: right 160ms ease, left 160ms ease;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible,
.language-switcher a:hover,
.language-switcher a:focus-visible {
    color: var(--blue-dark);
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after {
    right: 0;
    left: 0;
}

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

.language-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #7b8490;
}

.language-switcher a {
    display: inline-flex;
    min-width: 32px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding-inline: 4px;
}

.language-switcher a[aria-current="page"] {
    color: var(--blue);
    font-weight: 850;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px 9px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 7px;
    cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--navy);
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 22px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 760;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

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

.button-primary,
.button-contact {
    color: var(--white);
    background: var(--red-dark);
    border-color: var(--red);
    box-shadow: 0 8px 20px rgb(239 37 37 / 18%);
}

.button-primary:hover,
.button-primary:focus-visible,
.button-contact:hover,
.button-contact:focus-visible {
    background: var(--red-deep);
    border-color: var(--red-deep);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
    color: var(--blue-dark);
    border-color: var(--blue);
}

.button-outline {
    color: var(--red-dark);
    background: transparent;
    border-color: var(--red);
}

.button-outline:hover,
.button-outline:focus-visible {
    color: var(--white);
    background: var(--red);
}

.button-small {
    min-height: 40px;
    padding: 9px 16px;
    font-size: 0.78rem;
}

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(90deg, #fff 0%, #fff 50%, #001a38 50%, #00142e 100%);
}

.hero::after {
    position: absolute;
    z-index: -2;
    top: 0;
    right: 0;
    bottom: 0;
    width: 52%;
    background: var(--navy) url("../backgrounds/navy-tech-grid.svg") center / cover no-repeat;
    content: "";
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, 0.76fr) minmax(600px, 1.24fr);
    align-items: center;
    min-height: 720px;
}

.hero-copy {
    position: relative;
    z-index: 3;
    max-width: 650px;
    padding: 78px 0 92px;
}

.hero-copy .eyebrow {
    margin-bottom: 18px;
}

.hero-copy h1 {
    max-width: 650px;
    text-wrap: balance;
}

.hero-description {
    max-width: 510px;
    margin-bottom: 30px;
    color: #434c58;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 42px;
}

.hero-heartbeat-desktop {
    display: none;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.tag-list li {
    padding: 7px 13px;
    color: #3f4956;
    background: rgb(246 247 249 / 90%);
    border: 1px solid #cad1db;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 650;
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: stretch;
}

.hero-visual picture {
    width: 100%;
}

.hero-visual img {
    width: 100%;
    max-height: none;
    object-fit: contain;
}

.heartbeat {
    position: absolute;
    z-index: 1;
    top: 58%;
    right: 49%;
    left: calc((100% - 100vw) / 2);
    height: 52px;
    background: url("../decorations/heartbeat-line.svg") right center / max(840px, 100%) 56px no-repeat;
    pointer-events: none;
}

/* Metrics */
.metrics {
    position: relative;
    z-index: 4;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.metric {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 114px;
    padding: 24px clamp(16px, 2vw, 34px);
    gap: 18px;
}

.metric + .metric {
    border-left: 1px solid var(--line);
}

.metric img {
    flex: 0 0 auto;
    width: 39px;
    height: 39px;
}

.metric p {
    max-width: 150px;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 660;
    line-height: 1.25;
}

.metric strong {
    display: block;
    margin-bottom: 1px;
    font-size: 1.35rem;
    font-weight: 830;
}

/* Services */
.solutions-section {
    background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
}

.solutions-layout {
    display: grid;
    grid-template-columns: minmax(245px, 0.75fr) minmax(0, 2.75fr);
    align-items: start;
    gap: clamp(38px, 5vw, 82px);
}

.section-intro {
    max-width: 390px;
}

.solutions-layout .section-intro {
    position: sticky;
    top: calc(var(--header-height) + 35px);
}

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

.service-card {
    display: flex;
    min-height: 154px;
    padding: 24px 20px;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
    border-color: #9dbbfa;
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.service-card img {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
}

.service-card h3 {
    margin-top: 1px;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.48;
}

/* Integrations */
.integrations-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: 66px;
    color: #dfeaff;
    background: var(--navy) url("../backgrounds/navy-tech-grid.svg") center / cover no-repeat;
}

.integrations-section::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgb(0 10 28 / 68%), transparent 48%, rgb(0 13 31 / 38%));
    content: "";
}

.integrations-grid {
    display: grid;
    grid-template-columns: minmax(245px, 0.88fr) minmax(460px, 1.85fr) minmax(205px, 0.65fr);
    align-items: center;
    gap: clamp(28px, 3.1vw, 52px);
}

.integrations-copy h2 {
    color: #fff;
}

.integrations-copy > p:not(.eyebrow) {
    margin-bottom: 24px;
    color: #c4d4e9;
    font-size: 0.91rem;
}

.check-list {
    display: grid;
    gap: 11px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    color: #eff5ff;
    font-size: 0.82rem;
}

.check-list li::before {
    position: absolute;
    top: 0.22em;
    left: 0;
    display: grid;
    width: 16px;
    height: 16px;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 50%;
    content: "\2713";
    font-size: 0.65rem;
    font-weight: 900;
}

.api-visual {
    filter: drop-shadow(0 28px 38px rgb(0 0 0 / 34%));
}

.api-visual picture,
.api-visual img {
    width: 100%;
}

.integration-features {
    display: grid;
    gap: 27px;
    list-style: none;
}

.integration-features li {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-icon {
    display: grid;
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    place-items: center;
    background: rgb(7 91 255 / 13%);
    border: 1px solid rgb(91 150 255 / 30%);
    border-radius: 8px;
}

.feature-icon img {
    width: 26px;
    height: 26px;
    filter: brightness(0) invert(1);
}

.integration-features strong,
.integration-features small {
    display: block;
}

.integration-features strong {
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.3;
}

.integration-features small {
    margin-top: 3px;
    color: #aebfd5;
    font-size: 0.75rem;
    line-height: 1.35;
}

/* Projects */
.projects-section {
    background: #fff;
}

.projects-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 2.28fr);
    align-items: stretch;
    gap: clamp(34px, 4vw, 64px);
}

.projects-intro {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.projects-intro .button {
    margin-top: auto;
}

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

.project-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgb(0 26 56 / 3%);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.project-card:hover {
    border-color: #9eb9e8;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.project-card picture {
    overflow: hidden;
    aspect-ratio: 32 / 19;
    background: var(--navy);
}

.project-card picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 320ms ease;
}

.project-card:hover picture img {
    transform: scale(1.025);
}

.project-card-body {
    min-height: 126px;
    padding: 20px 20px 22px;
}

.project-card-body h3 {
    font-size: 1rem;
}

.project-card-body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

/* Process */
.process-section {
    background: #fcfcfd;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 132px;
    align-items: center;
    padding: 26px clamp(18px, 2vw, 30px);
    gap: 15px;
}

.process-step:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -17px;
    z-index: 2;
    width: 34px;
    border-top: 1px dashed #7d8ba0;
    content: "";
}

.step-number {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 50%;
    font-size: 1.05rem;
    font-weight: 850;
}

.process-step h3 {
    margin-bottom: 5px;
}

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

/* Support */
.support-section {
    padding-block: 66px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.support-layout {
    display: grid;
    grid-template-columns: minmax(250px, 0.82fr) minmax(0, 2.18fr);
    align-items: center;
    gap: clamp(38px, 5vw, 78px);
}

.support-intro > p:not(.eyebrow) {
    max-width: 390px;
    color: var(--muted);
    font-size: 0.87rem;
}

.support-intro .button {
    margin-top: 8px;
}

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

.support-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 142px;
    align-items: center;
    padding: 22px 28px;
    gap: 16px;
}

.support-card + .support-card {
    border-left: 1px solid var(--line);
}

.support-card img {
    width: 50px;
    height: 50px;
}

.support-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.48;
}

/* Team */
.team-section {
    padding-block: 56px;
    background: #fbfbfc;
    border-bottom: 1px solid var(--line);
}

.team-layout {
    display: grid;
    grid-template-columns: minmax(230px, 0.72fr) minmax(0, 2.28fr);
    align-items: center;
    gap: clamp(36px, 5vw, 76px);
}

.team-members {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 68px);
}

.team-member {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
}

.team-member picture {
    overflow: hidden;
    width: 132px;
    aspect-ratio: 1 / 1;
    background: #eceef2;
    border-radius: 50%;
}

.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

.team-member h3 {
    font-size: 1.02rem;
}

.team-member p {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.team-member .member-role {
    margin-bottom: 9px;
    color: var(--ink);
    font-weight: 720;
}

/* FAQ */
.faq-section {
    padding-block: 58px;
    background: #fff;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(230px, 0.72fr) minmax(0, 2.28fr);
    align-items: start;
    gap: clamp(36px, 5vw, 76px);
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, auto);
    align-items: start;
    gap: 9px 14px;
}

.faq-item:nth-child(1) {
    grid-area: 1 / 1;
}

.faq-item:nth-child(2) {
    grid-area: 2 / 1;
}

.faq-item:nth-child(3) {
    grid-area: 3 / 1;
}

.faq-item:nth-child(4) {
    grid-area: 1 / 2;
}

.faq-item:nth-child(5) {
    grid-area: 2 / 2;
}

.faq-item {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 5px;
}

.faq-item[open] {
    border-color: #aac3ef;
    box-shadow: 0 7px 18px rgb(0 26 56 / 5%);
}

.faq-item summary {
    position: relative;
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 42px 12px 15px;
    font-size: 0.83rem;
    font-weight: 680;
    line-height: 1.35;
    list-style: none;
    cursor: pointer;
}

.faq-item summary:focus-visible {
    outline: 0;
    box-shadow: inset 0 0 0 3px var(--blue-dark);
}

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

.faq-item summary span,
.faq-item summary span::after {
    position: absolute;
    width: 12px;
    height: 2px;
    background: var(--blue);
    border-radius: 99px;
    content: "";
}

.faq-item summary span {
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
}

.faq-item summary span::after {
    transform: rotate(90deg);
    transition: transform 160ms ease;
}

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

.faq-answer {
    padding: 0 15px 15px;
}

.faq-answer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

/* Contact */
.contact-section {
    position: relative;
    overflow: hidden;
    padding-block: 42px;
    color: #fff;
    background: linear-gradient(118deg, #0644d9 0%, #075bff 45%, #003bc6 100%);
}

.contact-section::before {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 22% 20%, rgb(255 255 255 / 12%) 0, transparent 28%), linear-gradient(90deg, transparent, rgb(0 18 92 / 14%));
    content: "";
    pointer-events: none;
}

.contact-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(250px, 0.88fr) minmax(390px, 1.55fr) minmax(230px, 0.82fr);
    align-items: start;
    gap: clamp(28px, 4vw, 60px);
}

.contact-intro h2 {
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(2rem, 3vw, 3.05rem);
}

.contact-intro > p:not(.eyebrow) {
    margin: 0;
    color: #fff;
    font-size: 0.9rem;
}

.contact-form {
    display: grid;
    gap: 10px;
}

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

.field input,
.field textarea {
    display: block;
    width: 100%;
    color: var(--navy);
    background: #fff;
    border: 1px solid rgb(0 26 56 / 24%);
    border-radius: 4px;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input {
    min-height: 45px;
    padding: 10px 13px;
}

.field textarea {
    min-height: 82px;
    padding: 11px 13px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #687789;
    opacity: 1;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgb(255 255 255 / 35%);
}

.field input:focus-visible,
.field textarea:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border-color: #8c0000;
    box-shadow: 0 0 0 3px rgb(140 0 0 / 16%);
}

.form-consent {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    margin: 0;
    color: #fff;
    font-size: 0.7rem;
    line-height: 1.35;
    gap: 8px;
    cursor: pointer;
}

.form-consent input,
.page-privacy-note input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--red);
    cursor: pointer;
}

.form-consent a,
.page-privacy-note a,
.wizard-privacy-note a {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-consent a:hover,
.form-consent a:focus-visible,
.page-privacy-note a:hover,
.page-privacy-note a:focus-visible,
.wizard-privacy-note a:hover,
.wizard-privacy-note a:focus-visible {
    text-decoration-thickness: 2px;
}

.button-contact {
    width: min(100%, 310px);
    margin-left: auto;
}

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

.form-status {
    min-height: 1px;
    margin: 0;
    padding: 0;
    border-radius: 4px;
    font-size: 0.77rem;
}

.form-status.is-success {
    padding: 8px 11px;
    color: #003717;
    background: #c9f8db;
}

.form-status.is-error {
    padding: 8px 11px;
    color: #5d0000;
    background: #ffd8d8;
}

.contact-options {
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 25%);
    border-radius: 7px;
}

.contact-options h3 {
    margin: 0;
    padding: 13px 15px;
    color: #fff;
    font-size: 0.84rem;
    letter-spacing: -0.01em;
}

.contact-options a {
    display: flex;
    align-items: center;
    padding: 13px 15px;
    gap: 12px;
    border-top: 1px solid rgb(255 255 255 / 18%);
    transition: background-color 160ms ease;
}

.contact-options a:hover,
.contact-options a:focus-visible {
    background: rgb(255 255 255 / 10%);
}

.contact-options a:focus-visible {
    outline-offset: -3px;
}

.contact-options img {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}

.contact-options strong,
.contact-options small {
    display: block;
}

.contact-options strong {
    font-size: 0.8rem;
}

.contact-options small {
    margin-top: 2px;
    color: #fff;
    font-size: 0.7rem;
    overflow-wrap: anywhere;
}

/* Footer */
.site-footer {
    padding-top: 48px;
    color: #c6d2df;
    background: var(--navy-deep);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(125px, 0.72fr)) minmax(190px, 1fr);
    align-items: start;
    gap: clamp(24px, 3.5vw, 54px);
    padding-bottom: 38px;
}

.footer-brand img {
    width: min(100%, 250px);
}

.footer-brand p {
    max-width: 260px;
    margin: 20px 0 0;
    color: #aab9c9;
    font-size: 0.78rem;
}

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

.footer-column h2 {
    margin-bottom: 6px;
    color: #fff;
    font-size: 0.86rem;
    letter-spacing: -0.01em;
}

.footer-column a,
.footer-column span {
    color: #aebdcb;
    font-size: 0.74rem;
    line-height: 1.4;
}

.footer-column a {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    transition: color 150ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: #fff;
}

.footer-contact a,
.footer-contact span {
    overflow-wrap: anywhere;
}

.footer-contact .footer-contact-row {
    display: inline-flex;
    min-height: 24px;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact-row img {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    gap: 24px;
    border-top: 1px solid rgb(255 255 255 / 12%);
}

.footer-bottom p,
.footer-languages a {
    margin: 0;
    color: #8fa1b3;
    font-size: 0.7rem;
}

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

.footer-languages a {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding-block: 4px;
}

.footer-languages a:hover,
.footer-languages a:focus-visible {
    color: #fff;
}

.footer-preferences {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px 18px;
}

@media (max-width: 767px) {
    .footer-preferences {
        justify-content: flex-start;
    }
}

@media (max-width: 1199px) {
    :root {
        --header-height: 74px;
    }

    .header-inner {
        gap: 20px;
    }

    .brand img {
        width: 210px;
    }

    .primary-navigation {
        gap: 16px;
    }

    .primary-navigation a {
        font-size: 0.78rem;
    }

    .header-actions {
        gap: 12px;
    }

    .hero-grid {
        grid-template-columns: minmax(340px, 0.72fr) minmax(535px, 1.28fr);
        min-height: 650px;
    }

    .hero-copy {
        padding-block: 64px 74px;
    }

    .hero-copy h1 {
        font-size: clamp(2.7rem, 4.6vw, 4rem);
    }

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

    .integrations-grid {
        grid-template-columns: minmax(240px, 0.8fr) minmax(460px, 1.7fr);
    }

    .integration-features {
        grid-column: 1 / -1;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }

    .project-card-body {
        min-height: 138px;
    }

    .process-step {
        grid-template-columns: 43px minmax(0, 1fr);
        padding-inline: 16px;
        gap: 12px;
    }

    .support-card {
        grid-template-columns: 48px minmax(0, 1fr);
        padding-inline: 18px;
    }

    .support-card img {
        width: 44px;
        height: 44px;
    }

    .team-member {
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 18px;
    }

    .team-member picture {
        width: 108px;
    }

    .contact-layout {
        grid-template-columns: minmax(210px, 0.75fr) minmax(360px, 1.5fr) minmax(205px, 0.8fr);
        gap: 26px;
    }
}

@media (max-width: 991px) {
    :root {
        --header-height: 70px;
    }

    .container,
    .container-wide {
        width: min(calc(100% - 40px), 900px);
    }

    .header-inner {
        position: relative;
    }

    .brand {
        margin-right: auto;
    }

    .brand img {
        width: 215px;
    }

    .menu-toggle {
        display: block;
        order: 2;
    }

    .primary-navigation {
        position: absolute;
        top: 100%;
        right: -20px;
        left: -20px;
        display: grid;
        align-items: stretch;
        justify-content: stretch;
        max-height: 0;
        padding-inline: 20px;
        gap: 0;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 28px rgb(0 26 56 / 12%);
        transition: max-height 220ms ease, padding 220ms ease, opacity 160ms ease, visibility 160ms ease;
    }

    .primary-navigation.is-open {
        max-height: calc(100vh - var(--header-height));
        max-height: calc(100dvh - var(--header-height));
        padding-block: 12px 18px;
        overflow-y: auto;
        overscroll-behavior: contain;
        visibility: visible;
        opacity: 1;
    }

    .primary-navigation a {
        padding: 13px 8px;
        border-bottom: 1px solid #edf0f4;
        font-size: 0.94rem;
    }

    .primary-navigation a:last-child {
        border-bottom: 0;
    }

    .primary-navigation a::after {
        display: none;
    }

    .header-actions {
        order: 3;
    }

    .header-quote {
        display: none;
    }

    html:not(.js) .header-inner {
        flex-wrap: wrap;
        padding-block: 8px 12px;
    }

    html:not(.js) .site-header {
        position: static;
    }

    html:not(.js) .menu-toggle {
        display: none;
    }

    html:not(.js) .primary-navigation {
        position: static;
        display: flex;
        flex: 1 0 100%;
        order: 2;
        max-height: none;
        padding: 8px 0 0;
        gap: 4px 14px;
        flex-wrap: wrap;
        overflow: visible;
        visibility: visible;
        opacity: 1;
        background: transparent;
        border-top: 1px solid var(--line);
        border-bottom: 0;
        box-shadow: none;
    }

    html:not(.js) .primary-navigation a {
        padding: 10px 4px;
        border: 0;
    }

    .hero {
        background: #fff;
    }

    .hero::after {
        top: auto;
        width: 100%;
        height: 48%;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
    }

    .hero-copy {
        max-width: 730px;
        padding: 68px 0 36px;
    }

    .hero-copy h1 {
        max-width: 720px;
        font-size: clamp(3rem, 7.5vw, 4.8rem);
    }

    .hero-description {
        max-width: 620px;
    }

    .hero-actions {
        margin-bottom: 28px;
    }

    .hero-visual {
        width: min(100%, 820px);
        margin-inline: auto;
    }

    .heartbeat {
        top: 43%;
        right: 0;
        left: 0;
        opacity: 0.7;
    }

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

    .metric:nth-child(3) {
        border-left: 0;
    }

    .metric:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }

    .solutions-layout,
    .projects-layout,
    .support-layout,
    .team-layout,
    .faq-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    .solutions-layout .section-intro {
        position: static;
    }

    .section-intro,
    .support-intro {
        max-width: 650px;
    }

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

    .service-card {
        min-height: 132px;
    }

    .integrations-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 38px;
    }

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

    .api-visual {
        width: min(100%, 790px);
        margin-inline: auto;
    }

    .integration-features {
        grid-column: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .projects-intro .button {
        margin-top: 10px;
    }

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

    .process-step:nth-child(2)::after {
        display: none;
    }

    .process-step:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }

    .support-features {
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
    }

    .team-members {
        max-width: 850px;
    }

    .faq-list {
        width: 100%;
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1.5fr) minmax(230px, 0.75fr);
    }

    .contact-intro {
        grid-column: 1 / -1;
        max-width: 650px;
    }

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

    .footer-column:nth-child(4),
    .footer-column:nth-child(5) {
        padding-top: 12px;
    }
}

@media (max-width: 767px) {
    :root {
        --header-height: 66px;
    }

    body {
        font-size: 15px;
    }

    .container,
    .container-wide {
        width: min(calc(100% - 32px), 680px);
    }

    .section {
        padding-block: 58px;
    }

    .brand img {
        width: 188px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        padding: 9px 7px;
    }

    .language-switcher a {
        font-size: 0.76rem;
    }

    .primary-navigation {
        right: -16px;
        left: -16px;
        padding-inline: 16px;
    }

    .hero-copy {
        padding-block: 54px 24px;
    }

    .hero-copy h1 {
        margin-bottom: 20px;
        font-size: clamp(2.45rem, 12vw, 4rem);
    }

    .hero-copy .eyebrow {
        margin-bottom: 12px;
    }

    .hero-description {
        margin-bottom: 24px;
    }

    .hero-visual {
        width: 100%;
    }

    .heartbeat {
        top: 45%;
        height: 38px;
        background-size: 680px 44px;
    }

    .metric {
        justify-content: flex-start;
        min-height: 94px;
        padding: 19px 16px;
        gap: 13px;
    }

    .metric img {
        width: 33px;
        height: 33px;
    }

    .metric p {
        font-size: 0.78rem;
    }

    .services-grid,
    .project-grid,
    .support-features,
    .team-members,
    .faq-list,
    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-card {
        min-height: 0;
    }

    .integrations-section {
        padding-block: 56px;
    }

    .integration-features {
        grid-template-columns: minmax(0, 1fr);
        gap: 17px;
    }

    .feature-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .project-card {
        width: min(100%, 520px);
        margin-inline: auto;
    }

    .project-card-body {
        min-height: 0;
    }

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

    .process-step {
        min-height: 105px;
        padding: 22px 8px;
    }

    .process-step:nth-child(n + 2) {
        border-top: 1px solid var(--line);
    }

    .process-step:not(:last-child)::after {
        top: auto;
        right: auto;
        bottom: -16px;
        left: 29px;
        width: 1px;
        height: 32px;
        border-top: 0;
        border-left: 1px dashed #7d8ba0;
    }

    .support-features {
        border: 0;
    }

    .support-card {
        min-height: 114px;
        padding: 20px 4px;
    }

    .support-card + .support-card {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .team-member {
        grid-template-columns: 104px minmax(0, 1fr);
    }

    .team-member picture {
        width: 104px;
    }

    .faq-list {
        grid-template-rows: none;
    }

    .faq-item:nth-child(n) {
        grid-area: auto;
    }

    .contact-intro,
    .contact-form,
    .contact-options {
        grid-column: auto;
    }

    .button-contact {
        width: 100%;
    }

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

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

    .footer-column:nth-child(4),
    .footer-column:nth-child(5) {
        padding-top: 0;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 16px;
        gap: 8px;
    }
}

@media (max-width: 479px) {
    .header-inner {
        gap: 10px;
    }

    .brand img {
        width: 158px;
    }

    .header-actions {
        gap: 7px;
    }

    .language-switcher {
        gap: 3px;
    }

    .menu-toggle {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
    }

    .hero-copy {
        padding-top: 46px;
    }

    .hero-copy h1 {
        font-size: clamp(2.15rem, 11.7vw, 3.25rem);
    }

    .hero-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
    }

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

    .heartbeat {
        display: none;
    }

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

    .metric {
        justify-content: flex-start;
        min-height: 78px;
    }

    .metric + .metric,
    .metric:nth-child(3) {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .metric p {
        max-width: none;
    }

    .service-card {
        padding: 20px 17px;
    }

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

    .team-member {
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 15px;
    }

    .team-member picture {
        width: 86px;
    }

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

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

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

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

    .button:hover,
    .service-card:hover,
    .project-card:hover,
    .project-card:hover picture img {
        transform: none;
    }
}

@media (forced-colors: active) {
    .button,
    .service-card,
    .project-card,
    .faq-item,
    .contact-options,
    .menu-toggle {
        border: 1px solid ButtonText;
    }

    .feature-icon img,
    .contact-options img {
        filter: none;
    }
}

.project-card-link {
    display: block;
    height: 100%;
}

.project-card-link:focus-visible {
    outline-offset: -4px;
}

@media (min-width: 992px) {
    .hero-description {
        margin-bottom: 0;
    }

    .hero-heartbeat-desktop {
        position: relative;
        z-index: 1;
        display: block;
        width: calc(100% + 104px);
        height: 52px;
        margin: 9px 0 7px -104px;
        background: url("../decorations/heartbeat-line.svg") right center / 840px 56px no-repeat;
        pointer-events: none;
    }

    .heartbeat {
        display: none;
    }
}

/* Keep the heartbeat in its reserved space between the copy and CTAs. */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-copy {
        padding-bottom: 20px;
    }

    .hero-heartbeat-desktop {
        height: 38px;
        margin-top: 23px;
        margin-bottom: 23px;
        background-size: 840px 42px;
    }
}

@media (min-width: 1200px) and (max-width: 1499px) {
    .hero-copy {
        padding-bottom: 38px;
    }

    .hero-heartbeat-desktop {
        margin-top: 16px;
        margin-bottom: 16px;
    }
}

/*
 * Desktop art direction.
 * The supplied home mockup is a 50% export of a 1728 px canvas. These values
 * preserve that composition without imposing desktop dimensions on tablets.
 */
@media (min-width: 1500px) {
    :root {
        --header-height: 100px;
    }

    .container,
    .container-wide {
        width: min(calc(100% - 64px), 1568px);
    }

    .site-header .container {
        width: min(calc(100% - 64px), 1600px);
    }

    .brand img {
        width: 340px;
    }

    .brand {
        margin-left: -9px;
    }

    .header-inner {
        gap: 34px;
    }

    .primary-navigation {
        flex: 0 1 auto;
        justify-content: flex-start;
        gap: 34px;
    }

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

    .primary-navigation a,
    .language-switcher a {
        font-size: 0.82rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
        min-height: 860px;
    }

    .hero-copy {
        max-width: 620px;
        padding: 116px 0 80px;
        transform: translateY(-50px);
    }

    .hero-copy h1 {
        max-width: 620px;
        margin-bottom: 24px;
        font-size: 4.25rem;
        line-height: 1.04;
        text-wrap: balance;
    }

    .hero-description {
        max-width: 410px;
        margin-bottom: 0;
        font-size: 1.08rem;
        line-height: 1.58;
    }

    .hero-actions {
        margin-bottom: 60px;
    }

    .hero-visual img {
        max-height: 840px;
    }

    .heartbeat {
        top: 57.8%;
    }

    .metric {
        min-height: 140px;
    }

    .solutions-section {
        padding-block: 39px;
    }

    .solutions-layout {
        grid-template-columns: 340px minmax(0, 1fr);
        gap: 20px;
    }

    .solutions-layout .section-intro {
        position: static;
        max-width: 340px;
    }

    .solutions-layout .section-intro h2 {
        max-width: 340px;
        font-size: 2.125rem;
        line-height: 1.08;
        text-wrap: wrap;
    }

    .services-grid {
        width: 100%;
        max-width: 1096px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .integrations-section {
        padding-block: 24px;
    }

    .integrations-grid {
        grid-template-columns: 320px 730px 300px;
        gap: 54px;
    }

    .integrations-copy h2 {
        max-width: 350px;
        font-size: 2.375rem;
        text-wrap: wrap;
    }

    .api-visual {
        width: 730px;
        margin-left: 34px;
    }

    .integration-features {
        gap: 25px;
        transform: translateX(72px);
    }

    .feature-icon {
        background: transparent;
        border-color: transparent;
    }

    .projects-section {
        padding-block: 40px 20px;
    }

    .projects-layout {
        grid-template-columns: 380px minmax(0, 1fr);
        gap: 6px;
    }

    .projects-intro {
        max-width: 380px;
    }

    .projects-intro h2 {
        max-width: 380px;
        font-size: 2.25rem;
        text-wrap: wrap;
    }

    .project-grid {
        width: 100%;
        max-width: 1110px;
    }

    .project-card-body {
        min-height: 116px;
        padding: 17px 18px 19px;
    }

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

    .support-section {
        padding-block: 16px;
    }

    .support-layout {
        grid-template-columns: 320px minmax(0, 1fr);
        gap: 60px;
    }

    .support-intro {
        max-width: 320px;
    }

    .support-intro h2 {
        max-width: 310px;
        margin-bottom: 12px;
        font-size: 2.25rem;
    }

    .support-intro > p:not(.eyebrow) {
        margin-bottom: 10px;
        font-size: 0.8rem;
        line-height: 1.45;
    }

    .support-intro .button {
        margin-top: 2px;
    }

    .support-card {
        min-height: 142px;
    }

    .team-section {
        padding-block: 28px;
    }

    .team-layout {
        grid-template-columns: 300px minmax(0, 1fr);
        gap: 80px;
    }

    .team-intro {
        max-width: 300px;
    }

    .team-intro h2 {
        font-size: 2.35rem;
    }

    .team-members {
        max-width: 1040px;
        gap: 56px;
    }

    .faq-section {
        padding-block: 40px;
    }

    .faq-layout {
        grid-template-columns: 260px minmax(0, 1fr);
        gap: 52px;
    }

    .faq-intro {
        max-width: 260px;
    }

    .faq-intro h2 {
        font-size: 2.2rem;
    }

    .faq-list {
        max-width: 1110px;
    }

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

    .contact-section .container {
        width: min(calc(100% - 64px), 1504px);
    }

    .contact-layout {
        grid-template-columns: minmax(280px, 0.82fr) minmax(600px, 1.55fr) minmax(300px, 0.78fr);
        gap: 44px;
    }

    .contact-intro h2 {
        margin-bottom: 8px;
        font-size: 2.35rem;
    }

    .contact-form {
        gap: 7px;
    }

    .field input {
        min-height: 40px;
        padding-block: 8px;
    }

    .field textarea {
        min-height: 52px;
        height: 52px;
        padding-block: 8px;
    }

    .button-contact {
        min-height: 40px;
    }

    .site-footer {
        padding-top: 14px;
    }

    .footer-grid {
        gap: 34px;
        padding-bottom: 10px;
    }

    .footer-brand p {
        margin-top: 10px;
    }

    .footer-bottom {
        min-height: 46px;
    }

    .footer-column {
        gap: 3px;
    }

    .footer-column a {
        min-height: 18px;
    }
}
