@font-face {
    font-family: "Onest";
    src: url("../fonts/onest-variable.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nunito Sans";
    src: url("../fonts/nunito-sans-latin-ext-800.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --text: #011142ff;
    --dark-lila: #7f89d4ff;
    --blue-dark: #063bc6;
    --light-lila: #9aa4ddff;
    --sky: #eaf5ff;
    --ice: #f7fbff;
    --white: #ffffff;
    --mauve: #a66cc2;
    --mauve-soft: #f5edf7;
    --lavender: #cdd4f7;
    --line: #cad8eb;
    --line-dark: #9eb0c8;
    --muted: #52617c;
    --font-main: "Onest", Arial, sans-serif;
    --font-brand: "Nunito Sans", Arial, sans-serif;
    --ease: cubic-bezier(.22, .78, .22, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--white);
    color: var(--text);
    font-family: var(--font-main);
    font-size: 17px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

body.is-loading {
    overflow: hidden;
}

html.home-intro-enabled,
html.home-intro-enabled body {
    overflow: hidden;
}

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

a:hover {
    color: inherit;
}

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

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

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

.container {
    --bs-gutter-x: 2.5rem;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 3000;
    padding: 10px 16px;
    color: var(--white);
    transform: translateY(-140%);
}

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

:focus-visible {
    outline: 3px solid rgba(10, 77, 255, .35);
    outline-offset: 4px;
}

.page-intro {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: none;
    place-content: center;
    gap: 28px;
    background: radial-gradient(circle at 50% 38%, rgba(10, 77, 255, .08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
    color: var(--text);
}

html.home-intro-enabled .page-intro {
    display: grid;
}

.page-intro-brand {
    display: grid;
    justify-items: center;
    gap: 18px;
}

.page-intro-logo {
    width: clamp(54px, 7vw, 86px);
    height: auto;
    filter: drop-shadow(0 18px 28px rgba(10, 77, 255, .16));
}

.page-intro-name {
    font-family: var(--font-brand);
    font-size: clamp(42px, 8vw, 118px);
    line-height: 1;
    letter-spacing: -.06em;
}

.page-intro-line {
    width: min(420px, 62vw);
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(10, 77, 255, .42), transparent);
    transform-origin: left center;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1500;
    width: 100%;
    height: 3px;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px) saturate(1.25);
    transition: transform .45s var(--ease), background .3s ease;
}

.site-header.is-hidden {
    transform: translateY(-110%);
}

.navbar {
    min-height: 78px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-family: var(--font-brand);
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.04em;
}

.brand-link img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.nav-link {
    position: relative;
    padding: 8px 2px !important;
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    background: var(--dark-lila);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .35s var(--ease);
}

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

.menu-button {
    width: 46px;
    height: 42px;
    padding: 10px;
    border: 0;
    border-radius: 0;
}

.menu-button:focus {
    box-shadow: none;
}

.menu-button span {
    display: block;
    width: 100%;
    height: 1px;
    margin: 6px 0;
    background: var(--text);
}

.button {
    display: inline-flex;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-height: 52px;
    padding: 20px;
    border: 1px solid transparent;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s var(--ease);
}

.button span {
    transition: transform .3s var(--ease);
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.button:hover span {
    transform: translate(3px, -3px);
}

.button-blue {
    border-radius: 20px;
    -webkit-box-shadow: 0px 13px 33px -13px #100B6D;
    box-shadow: 0px 13px 33px -13px #100B6D;
    color: var(--white);
    background: var(--text) !important;
    text-transform: uppercase;
}

.button-blue:hover {
    color: var(--white);
    background: var(--dark-lila);
    transform: translateY(-2px);
}

.button-line span{
    color: var(--text);
}

.button-line {
    -webkit-box-shadow: 0px 13px 33px -13px rgba(147,141,255,0.45);
    box-shadow: 0px 13px 33px -13px rgba(147,141,255,0.45);
    text-transform: uppercase;
    border-radius: 20px;
    border-color: var(--light-lila);
    background: var(--white);
}

.button-line:hover {
    color: var(--white);
    border-color: currentColor;
    background: var(--dark-lila);
}

.button-white {
    border: 1px solid var(--light-lila);
    border-radius: 20px;
    color: var(--text);
    background: var(--white);
}

.button-blue-line {
    color: var(--white);
    border-color: rgba(255, 255, 255, .65);
}

.button-blue-line:hover {
    background: var(--white);
}

.section-index {
    position: absolute;
    top: 0;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--dark-lila);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section-index h2 em{
    color: var(--mauve) !important;
}

.section-index i {
    position: relative;
    display: block;
    width: 1px;
    height: 104px;
    margin: 12px 0;
    background: currentColor;
    opacity: .6;
}

.section-index i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 5px var(--white);
}

.section-index small {
    writing-mode: vertical-rl;
    font-size: 9px;
}

.hero-block {
    position: relative;
    min-height: 100vh;
    padding-top: 48px;
    isolation: isolate;
}

.hero-canvas {
    position: absolute;
    inset: 10% -4% 4% 38%;
    z-index: -1;
    width: 66%;
    height: 82%;
    opacity: .65;
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding-left: clamp(48px, 7vw, 108px);
}

.hero-copy .section-index {
    top: 8px;
    left: 20px;
}

.hero-title {
    max-width: 820px;
    margin: 0;
    font-size: clamp(64px, 7.5vw, 100px);
    font-weight: 720;
    line-height: .88;
    letter-spacing: -.072em;
}

.hero-title span {
    display: block;
}

.hero-title-accent {
    color: var(--dark-lila);
}

.hero-text {
    max-width: 650px;
    margin: 36px 0 30px;
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 300;
    line-height: 1.45;
}

.computer-stage {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    margin: 4vh auto 0;
    perspective: 1000px;
    filter: drop-shadow(0 42px 38px rgba(10, 77, 255, .15));
}

.computer-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    transform: rotate(1.5deg);
    will-change: transform;
}

.computer-screen {
    position: absolute;
    top: 22.5%;
    left: 20.8%;
    z-index: 3;
    width: 49%;
    min-height: 22%;
    color: var(--blue-dark);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: clamp(11px, 1.1vw, 17px);
    line-height: 1.7;
    pointer-events: none;
    transform: rotate(.5deg);
}

.computer-command,
.typewriter-text {
    display: block;
}

.computer-command {
    margin-bottom: 8px;
    opacity: .55;
}

.computer-screen i {
    display: inline-block;
    width: 8px;
    height: 1em;
    margin-left: 3px;
    vertical-align: -.14em;
    animation: cursor-blink .9s steps(1) infinite;
}

@keyframes cursor-blink {
    50% {
        opacity: 0;
    }
}

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-lila);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.hero-scroll i {
    display: block;
    width: 72px;
    height: 1px;
    overflow: hidden;
    background: var(--dark-lila);
}

.hero-scroll i::after {
    content: "";
    display: block;
    width: 35%;
    height: 100%;
    animation: scroll-line 1.8s var(--ease) infinite;
}

@keyframes scroll-line {
    from {
        transform: translateX(-110%);
    }
    to {
        transform: translateX(310%);
    }
}

.statement-block {
    position: relative;
    height: 330vh;
    color: var(--white);
}

.statement-stage {
    position: sticky;
    top: 0;
    display: flex;
    min-height: 100vh;
    align-items: center;
    overflow: hidden;
}

.section-index-light {
    top: 12vh;
    color: #92b7ff;
}

.statement-lines {
    position: relative;
    width: 100%;
    min-height: 55vh;
    margin-left: clamp(54px, 9vw, 140px);
}

.statement-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin: 0;
    font-size: clamp(48px, 7.3vw, 118px);
    font-weight: 650;
    line-height: .98;
    letter-spacing: -.062em;
    opacity: 0;
    transform: translateY(10%);
}

.statement-line:first-child {
    opacity: 1;
}

.statement-line em,
.services-heading em,
.process-intro em,
.reference-heading em,
.trust-block em,
.faq-block em {
    color: var(--dark-lila);
    font-style: normal;
}

.statement-count {
    position: absolute;
    right: 20px;
    bottom: 9vh;
    color: rgba(255, 255, 255, .55);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 12px;
    letter-spacing: .15em;
}

.statement-count span {
    color: var(--white);
}

.keyword-block {
    position: relative;
    z-index: 3;
    background: transparent;
}

.keyword-rail {
    overflow: hidden;
    padding: 22px 0;
}

.keyword-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 38px;
    color: var(--dark-lila);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: .035em;
    text-transform: uppercase;
    will-change: transform;
}

.keyword-track span::after {
    content: "";
    display: inline-block;
    width: 42px;
    height: 1px;
    margin-left: 38px;
    background: var(--dark-lila);
    vertical-align: middle;
    opacity: .45;
}

.keyword-track img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.services-block {
    position: relative;
    padding: 150px 0 0;
    background: radial-gradient(circle at 80% 18%, rgba(167, 103, 201, .13), transparent 34%),
    linear-gradient(180deg, var(--white) 0%, #f7fbff 48%, var(--white) 100%);
}

.services-heading {
    position: relative;
    margin-bottom: 70px;
    padding-left: clamp(72px, 9vw, 140px);
}

.services-heading h2,
.process-intro h2,
.reference-heading h2,
.trust-block h2,
.faq-block h2,
.contact-panel h2 {
    margin: 0;
    font-size: clamp(48px, 6vw, 92px);
    font-weight: 680;
    line-height: .98;
    letter-spacing: -.06em;
}

.services-heading p {
    max-width: 390px;
    margin: 0 0 6px auto;
    color: var(--text);
    font-size: 20px;
}

.services-pin {
    position: relative;
    overflow: hidden;
    padding-bottom: 70px;
}

.services-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.service-panel {
    margin-right: 40px;
    position: relative;
    display: flex;
    flex: 0 0 min(62vw, 720px);
    border-radius: 20px;
    min-height: 570px;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    padding: 46px;
    border: 1px solid var(--light-lila);
}

.service-panel-mauve h3{
    margin-top: 0 !important;
}

.service-panel-lilac h3{
    margin-top: 0 !important;
}

.service-panel-blue {
    background: var(--white);
}

.service-panel-mauve {
    background: var(--mauve-soft);
}

.service-panel-white {
    background: var(--white);
}

.service-panel-lilac {
    background: #f2f2ff;
}

.service-number {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--light-lila);
}

.service-panel h3 {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 35px 0 22px;
    font-size: clamp(52px, 5vw, 78px);
    font-weight: 670;
    line-height: .93;
    letter-spacing: -.055em;
}

.service-panel p {
    position: relative;
    z-index: 2;
    color: var(--text);
    font-size: 18px;
}

.service-panel > div {
    width: 100%;
}

.service-panel img {
    display: block;
    width: 100%;
    height: auto;
    transform: unset !important;
    border-radius: 20px;
    border: 1px solid var(--light-lila);
    -webkit-box-shadow: 0px 13px 33px -13px rgba(203,218,255,0.78);
    box-shadow: 0px 13px 33px -13px rgba(203,218,255,0.78);
}

.service-panel a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    gap: 38px;
    margin-top: auto;
    padding: 20px;
    color: var(--dark-lila);
    text-transform: uppercase;
    border: 1px solid var(--dark-lila);
    font-size: 14px;
    border-radius: 20px;
    font-weight: 600;
    -webkit-box-shadow: 0px 13px 33px -13px rgba(147,141,255,0.45);
    box-shadow: 0px 13px 33px -13px rgba(147,141,255,0.45);
}

.services-progress {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding-top: 28px;
    color: var(--dark-lila);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 12px;
}

.services-progress span{
    color: var(--dark-lila);
}

.services-progress i {
    position: relative;
    display: block;
    height: 1px;
    overflow: hidden;
    background: var(--line-dark);
}

.services-progress b {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark-lila);
    transform: scaleX(.2);
    transform-origin: left center;
}

.process-block {
    position: relative;
    padding-top: 200px;
    padding-bottom: 180px;
}

.process-intro {
    position: relative;
    align-self: flex-start;
    padding-left: clamp(72px, 8vw, 125px);
}

.process-intro h2 {
    font-size: clamp(54px, 5.5vw, 86px);
}

.process-intro > p {
    max-width: 420px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 18px;
}

.process-active {
    margin-top: 58px;
    padding-top: 22px;
}

.process-active strong {
    display: block;
    font-size: clamp(112px, 12vw, 190px);
    font-weight: 650;
    line-height: .78;
    letter-spacing: -.08em;
}

.process-active span {
    display: block;
    margin-top: 24px;
    font-size: 30px;
    font-weight: 650;
}

.process-balloon {
    position: absolute;
    right: -70px;
    bottom: -110px;
    z-index: -1;
    width: 250px;
    opacity: .18;
    transform: rotate(11deg);
}

.process-list {
    position: relative;
    padding-top: 28vh;
}

.process-step {
    position: relative;
    display: grid;
  /**  grid-template-columns: 66px 1fr; **/
    min-height: 52vh;
    color: #aab3c4;
    opacity: .5;
    transition: color .35s ease, opacity .35s ease;
}

.process-comment{
    color: var(--dark-lila) !important;
    font-size: 14px !important;
    padding-bottom: 15px;
}

.process-image img{
    width: 100px;
    padding-bottom: 15px;
}

.process-step > span {
    position: relative;
    z-index: 2;
    color: inherit;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 16px;
}

.process-step > span::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 22px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white);
    transform: translateX(-50%);
}

.process-step h3 {
    margin: 0 0 14px;
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 650;
    letter-spacing: -.04em;
}

.process-step p {
    max-width: 430px;
    margin: 0;
    font-size: 17px;
    color: var(--text);
}

.process-step.is-active {
    color: var(--text);
    opacity: 1;
}

.process-step.is-active > span::before {
    background: var(--dark-lila);
}

.reference-block {
    position: relative;
    padding-top: 120px;
    padding-bottom: 190px;
    padding-left: clamp(72px, 9vw, 140px);
}

.reference-heading {
    margin-bottom: 62px;
}

.reference-window {
    display: grid;
    grid-template-columns: minmax(250px, .75fr) minmax(0, 1.7fr);
    min-height: 580px;
    overflow: hidden;
    background: var(--ice);
    border: 1px solid var(--line);
    clip-path: inset(42% 0 42% 0);
}

.services-pin {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-panel {
    min-height: clamp(570px, 72svh, 680px);
}

.reference-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 55px 40px;
}

.reference-copy > span {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.reference-copy h3 {
    max-width: 380px;
    margin: 55px 0 30px;
    font-size: clamp(30px, 3vw, 45px);
    font-weight: 630;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.reference-copy a {
    margin-top: auto;
    border-bottom: 1px solid currentColor;
}

.reference-window > img {
    align-self: end;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
}

.trust-block {
    position: relative;
    min-height: 100vh;
    padding-top: 170px;
    padding-bottom: 150px;
    padding-left: clamp(72px, 9vw, 140px);
}

.trust-block h2 {
    font-size: clamp(58px, 7vw, 110px);
}

.trust-block p {
    max-width: 590px;
    margin-top: 34px;
    color: var(--muted);
    font-size: 20px;
}

.trust-image-wrap {
    position: relative;
    min-height: 540px;
    overflow: visible;
}

.trust-image {
    position: absolute;
    top: 50%;
    left: 14%;
    width: min(32vw, 470px);
    max-width: none;
    filter: drop-shadow(0 34px 34px rgba(10, 77, 255, .15));
    transform: translateY(-50%) rotate(8deg);
    will-change: transform;
}

.faq-block {
    position: relative;
    padding-top: 130px;
    padding-bottom: 170px;
    padding-left: clamp(72px, 9vw, 140px);
    background: var(--white) !important;
}

.faq-block::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: -1;
    width: 100vw;
    background: var(--ice);
    transform: translateX(-50%);
}

.faq-block em{
    color: var(--mauve) !important;
}

.faq-block .section-index{
    color: var(--mauve);
}

.faq-block h2 {
    margin-bottom: 60px;
}

.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: var(--line-dark);
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-color: var(--text);
    --bs-accordion-active-bg: transparent;
}

.accordion-item {
    color: var(--text);
    border-top: 1px solid var(--mauve) !important;
    border-bottom: 0 !important;
}

.accordion-item:last-child {
    border-bottom: 1px solid var(--mauve) !important;
}

.accordion-button {
    padding: 30px 0;
    color: var(--text);
    font-size: clamp(22px, 2.3vw, 34px);
    font-weight: 610;
    letter-spacing: -.03em;
}

.accordion-button::after {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    background-image: none;
    content: "+";
    color: var(--text);
    font-size: 31px;
    font-weight: 300;
    line-height: 22px;
    text-align: center;
    transform: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    content: "−";
    transform: none;
}

.accordion-body {
    max-width: 840px;
    padding: 0 0 20px 0;
    color: var(--text);
    font-size: 18px;
}

.accordion-button:not(.collapsed){
    box-shadow: unset !important;
}

.contact-block {
    padding-top: 90px;
    padding-bottom: 80px;
}

.contact-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(55px, 8vw, 110px);
    color: var(--white);
    transform-origin: center center;
}

.section-index-contact {
    top: 50%;
    left: 30px;
    color: var(--white);
    transform: translateY(-50%);
}

.contact-panel h2 {
    max-width: 960px;
    font-size: clamp(58px, 7vw, 110px);
}

.contact-actions {
    margin-top: 45px;
}

.contact-icon-wrap {
    position: relative;
    min-height: 260px;
}

.contact-icon {
    position: absolute;
    right: -10%;
    bottom: -15%;
    width: min(25vw, 310px);
    filter: brightness(1.08) saturate(.9);
    transform: rotate(-8deg);
}

.site-footer {
    padding-top: 24px;
    padding-bottom: 28px;
}

.footer-top,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-top {
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
}

.footer-top nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px 30px;
    font-size: 14px;
}

.footer-top nav a {
    color: var(--dark-lila);
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
}

.footer-top nav a:hover {
    border-color: currentColor;
}

.footer-bottom {
    padding-top: 22px;
    color: var(--light-lila);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.footer-bottom i {
    margin: 0 10px;
    font-style: normal;
}

@media (min-width: 992px) {
    .navbar-collapse {
        display: grid !important;
        grid-template-columns: 1fr auto;
    }

    .process-intro {
        position: relative;
    }
}

@media (max-width: 1199.98px) {
    .section-index {
        left: 16px;
    }

    .hero-copy {
        padding-left: 82px;
    }

    .service-panel {
        flex-basis: min(72vw, 650px);
    }

    .process-balloon {
        right: -20px;
        width: 190px;
    }
}

@media (max-width: 991.98px) {
    .site-header {
        background: rgba(255, 255, 255, .96);
    }

    .navbar-collapse {
        margin: 14px -20px -16px;
        padding: 22px 20px 28px;
        background: var(--white);
        border-top: 1px solid var(--line);
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        padding: 12px 0 !important;
        font-size: 24px;
    }

    .hero-block {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-block .min-vh-100 {
        min-height: auto !important;
    }

    .hero-title {
        font-size: clamp(68px, 12vw, 108px);
    }

    .computer-stage {
        width: min(72vw, 500px);
    }

    .hero-scroll {
        display: none;
    }

    .statement-block {
        height: 280vh;
    }

    .statement-lines {
        min-height: 48vh;
        margin-left: 72px;
    }

    .services-block {
        padding-top: 110px;
    }

    .services-heading p {
        margin-left: 0;
    }

    .service-panel {
        flex-basis: 78vw;
        min-height: 520px;
    }

    .process-block {
        padding-top: 130px;
    }

    .process-list {
        padding-top: 60px;
    }

    .process-list::before {
        top: 60px;
        bottom: 80px;
    }

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

    .process-balloon {
        right: 10%;
        bottom: -30px;
    }

    .reference-window {
        grid-template-columns: 1fr;
    }

    .reference-copy {
        min-height: 380px;
    }

    .trust-block {
        min-height: auto;
    }

    .trust-image-wrap {
        min-height: 380px;
    }

    .trust-image {
        left: 50%;
        width: 320px;
        transform: translate(-50%, -50%) rotate(8deg);
    }

    .contact-icon-wrap {
        min-height: 180px;
    }

    .contact-icon {
        right: 0;
        width: 220px;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 16px;
    }

    .container {
        --bs-gutter-x: 1.5rem;
    }

    .button {
        gap: 18px;
        min-height: 48px;
        padding: 12px 18px;
    }

    .section-index {
        position: relative;
        left: auto;
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
        margin-bottom: 26px;
    }

    .section-index i {
        width: 52px;
        height: 1px;
        margin: 0;
    }

    .section-index small {
        writing-mode: initial;
    }

    .hero-copy,
    .services-heading,
    .process-intro,
    .reference-block,
    .trust-block,
    .faq-block {
        padding-left: 12px;
    }

    .hero-copy .section-index {
        top: auto;
        left: auto;
    }

    .hero-title {
        font-size: clamp(50px, 16vw, 76px);
        line-height: .91;
    }

    .hero-text {
        margin-top: 28px;
        font-size: 18px;
    }

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

    .computer-stage {
        width: min(90vw, 440px);
    }

    .computer-screen {
        font-size: 11px;
    }

    .hero-canvas {
        inset: 42% -24% 0 12%;
        width: 118%;
    }

    .statement-block {
        height: 250vh;
    }

    .statement-stage {
        align-items: center;
    }

    .section-index-light {
        position: absolute;
        top: 11vh;
        left: 12px;
    }

    .statement-lines {
        min-height: 45vh;
        margin-left: 0;
    }

    .statement-line {
        top: 42%;
        font-size: clamp(44px, 13vw, 72px);
    }

    .statement-count {
        right: 12px;
        bottom: 11vh;
    }

    .keyword-track {
        gap: 24px;
    }

    .keyword-track span::after {
        width: 26px;
        margin-left: 24px;
    }

    .services-heading {
        margin-bottom: 46px;
    }

    .services-heading h2,
    .process-intro h2,
    .reference-heading h2,
    .trust-block h2,
    .faq-block h2,
    .contact-panel h2 {
        font-size: clamp(47px, 13vw, 72px);
    }

    .services-pin {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .services-pin::-webkit-scrollbar {
        display: none;
    }

    .service-panel {
        flex-basis: 86vw;
        min-height: 510px;
        padding: 30px;
        scroll-snap-align: start;
    }

    .service-panel h3 {
        font-size: 52px;
    }

    .service-panel img {
        right: 18px;
        bottom: 65px;
        width: 47%;
        max-height: 190px;
    }

    .services-progress {
        position: sticky;
        left: 0;
        width: calc(100vw - 24px);
    }

    .process-block {
        padding-top: 110px;
        padding-bottom: 100px;
    }

    .process-active {
        margin-top: 42px;
    }

    .process-list {
        padding-top: 25px;
    }

    .process-list::before {
        top: 25px;
    }

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

    .process-balloon {
        display: none;
    }

    .reference-block {
        padding-top: 80px;
        padding-bottom: 110px;
    }

    .reference-window {
        min-height: auto;
    }

    .reference-copy {
        min-height: 360px;
        padding: 36px 26px;
    }

    .trust-block {
        padding-top: 105px;
        padding-bottom: 90px;
    }

    .trust-image-wrap {
        min-height: 330px;
    }

    .trust-image {
        width: 260px;
    }

    .faq-block {
        padding-top: 90px;
        padding-bottom: 100px;
    }

    .accordion-button {
        padding: 24px 0;
        font-size: 22px;
    }

    .contact-block {
        padding-right: 0;
        padding-left: 0;
    }

    .contact-panel {
        padding: 58px 24px 40px;
    }

    .section-index-contact {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

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

    .contact-icon-wrap {
        min-height: 150px;
    }

    .contact-icon {
        right: 50%;
        width: 190px;
        transform: translateX(50%) rotate(-8deg);
    }

    .footer-top,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-top nav {
        justify-content: flex-start;
    }
}

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

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

    html.home-intro-enabled .page-intro {
        display: none;
    }

    .statement-block {
        height: auto;
    }

    .statement-stage {
        position: relative;
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 110px;
    }

    .statement-lines {
        display: grid;
        gap: 70px;
    }

    .statement-line {
        position: relative;
        top: auto;
        opacity: 1;
        transform: none;
    }

    .reference-window {
        clip-path: none;
    }
}

/* Rebuild pass on stand2: chapter nav, corrected hero, white statement cards, trust cards and contact form. */
.chapter-navigation {
    position: fixed;
    z-index: 1450;
    top: 50%;
    right: 0;
    display: flex;
    width: 76px;
    height: min(74svh, 760px);
    max-height: calc(100svh - 104px);
    min-width: 76px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    gap: 0;
    padding: 16px 12px 16px 38px;
    background: transparent;
    box-shadow: none;
    transform: translateY(-50%);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    pointer-events: none;
}

.chapter-line {
    position: absolute;
    top: 16px;
    right: auto;
    bottom: 16px;
    left: 14px;
    width: 2px;
    overflow: hidden;
}

.chapter-line i {
    display: block;
    width: 100%;
    height: var(--chapter-progress, 0%);
    background: var(--light-lila);
    opacity: 0.3;
    transition: height .12s linear;
}

.chapter-navigation a {
    font-size: 9px;
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--light-lila);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-weight: 400;
    letter-spacing: .08em;
    line-height: 1;
    opacity: .76;
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-transform: uppercase;
    pointer-events: auto;
    transition: color .3s ease, opacity .3s ease, font-size .38s var(--ease), letter-spacing .38s var(--ease);
}

.chapter-navigation a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: auto;
    left: -27px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--light-lila);
    opacity: 0;
    transform: translateY(-50%) scale(.7);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .88);
    transition: opacity .25s ease, transform .38s var(--ease);
}

.chapter-navigation a:hover,
.chapter-navigation a:focus-visible {
    color: var(--light-lila);
    opacity: 1;
}

.chapter-navigation a.is-current {
    color: var(--dark-lila);
    letter-spacing: .1em;
    opacity: 1;
}

.chapter-navigation a.is-current::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.hero-block {
    min-height: max(100svh, 820px);
}

.hero-title {
    max-width: 900px;
}

.hero-title-accent {
    display: grid !important;
    grid-template-areas: "word";
}

.hero-title-accent::before {
    content: "gefunden werden.";
    grid-area: word;
    visibility: hidden;
    pointer-events: none;
}

.hero-title-accent i {
    display: none;
}

.hero-word-typewriter {
    display: block !important;
    grid-area: word;
    position: relative;
}

.hero-word-char {
    display: inline !important;
    visibility: hidden;
}

.hero-word-char.is-visible {
    visibility: visible;
}

.hero-word-char.is-cursor {
    position: relative;
}

.hero-word-char.is-cursor::after,
.hero-word-typewriter.is-empty::after {
    content: "";
    position: absolute;
    display: block;
    width: .055em;
    height: .74em;
    background: currentColor;
    pointer-events: none;
    animation: cursor-blink .9s steps(1) infinite;
}

.hero-word-char.is-cursor::after {
    bottom: .27em;
    left: calc(100% + .035em);
}

.hero-word-typewriter.is-empty::after {
    top: .07em;
    left: .035em;
}

.computer-stage {
    width: min(100%, 455px);
    transform-style: preserve-3d;
    will-change: transform;
}

.computer-screen {
    color: transparent;
    background: transparent;
}

.computer-screen > * {
    display: none !important;
}

.statement-block {
    height: auto;
    padding: clamp(110px, 12vw, 170px) 0;
    background: var(--white);
}

.statement-stage {
    position: relative;
    top: auto;
    display: block;
    min-height: auto;
    overflow: visible;
    padding-left: clamp(72px, 9vw, 140px);
}

.statement-block .section-index {
    top: 0;
    left: 20px;
}

.statement-block .section-index i::after {
    box-shadow: 0 0 0 5px var(--white);
}

.statement-head {
    display: grid;
    margin-bottom: 56px;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .58fr);
    align-items: end;
    gap: clamp(32px, 6vw, 92px);
}

.statement-head h2 {
    margin: 0;
    max-width: 900px;
    font-size: clamp(48px, 6vw, 92px);
    font-weight: 680;
    line-height: .98;
    letter-spacing: -.06em;
}

.statement-head p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.45;
}

.statement-cards {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 0 34px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.statement-card {
    display: flex;
    flex: 0 0 clamp(360px, 38vw, 560px);
    min-height: 390px;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(30px, 4vw, 48px);
    border: 1px solid var(--line);
    background: linear-gradient(145deg, var(--white), var(--ice));
    box-shadow: 0 22px 60px rgba(48, 66, 126, .06);
    scroll-snap-align: start;
}

.statement-card:nth-child(2) {
    background: var(--mauve-soft);
}

.statement-card span {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 18px;
}

.statement-card h3 {
    max-width: 440px;
    margin: 54px 0 24px;
    font-size: clamp(38px, 4.2vw, 64px);
    font-weight: 670;
    line-height: .98;
    letter-spacing: -.055em;
}

.statement-card p {
    max-width: 390px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.statement-count {
    position: static;
    margin-top: 10px;
    color: rgba(10, 77, 255, .45);
}

.keyword-track {
    transform: translate3d(var(--keyword-x, 0px), 0, 0);
}

.trust-block {
    min-height: auto;
}

.trust-cards {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: 70px;
    padding: 5px 0 34px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.trust-card {
    position: relative;
    display: flex;
    flex: 0 0 clamp(330px, 31vw, 460px);
    min-height: 430px;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(158, 176, 200, .34);
    background: linear-gradient(145deg, #fff, var(--ice));
    box-shadow: 0 22px 58px rgba(48, 66, 126, .07);
    scroll-snap-align: start;
}

.trust-card img {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 18px 18px rgba(10, 77, 255, .16));
}

.trust-card h3 {
    max-width: 310px;
    margin: 0 0 16px;
    font-size: clamp(30px, 3.2vw, 46px);
    font-weight: 660;
    line-height: 1.02;
    letter-spacing: -.05em;
}

.trust-card p {
    max-width: 340px;
    margin: 0;
    font-size: 17px;
}

.contact-panel {
    color: var(--text);
}

.section-index-contact {
    color: var(--white);
}

.contact-panel h2 {
    max-width: 610px;
    color: var(--white);
    font-size: clamp(48px, 5vw, 82px);
}

.contact-copy {
    max-width: 420px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
}

.contact-line-form {
    padding: clamp(28px, 4vw, 54px);
    background: rgba(255, 255, 255, .9);
}

.contact-line-form .contact-field {
    display: block;
    margin: 0;
    border-bottom: 1px solid var(--light-lila);
}

.contact-line-form .contact-field-label {
    display: block;
    padding-top: 22px;
    color: var(--text);
    font-size: 18px;
    font-weight: 400;
}

.contact-line-form input:not([type="checkbox"]):not([type="hidden"]),
.contact-line-form select,
.contact-line-form textarea {
    width: 100%;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-size: clamp(16px, 3vw, 16px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -.045em;
}

.contact-line-form textarea {
    min-height: 105px;
    resize: vertical;
}

.contact-line-form .button {
    margin-top: 32px;
}

.contact-line-form .button > span {
    color: var(--light-lila);
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-consent {
    margin-top: 24px;
}

.contact-consent > label {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    margin: 0;
    border: 0;
    cursor: pointer;
}

.contact-consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 3px 0 0;
    accent-color: var(--dark-lila);
}

.contact-consent label > span {
    display: block;
    padding: 0;
    color: var(--text);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
}

.contact-consent a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.contact-consent a:hover {
    color: var(--dark-lila);
}

.contact-form-alert,
.contact-line-form .field-error {
    color: #8d2740;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: 0;
}

.contact-form-alert {
    margin-bottom: 8px;
    padding: 13px 15px;
    border: 1px solid rgba(141, 39, 64, .28);
    border-radius: 12px;
    background: rgba(255, 245, 247, .88);
}

.contact-line-form .field-error {
    margin: 7px 0 12px;
}

.contact-form-success {
    display: flex;
    min-height: 500px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.contact-form-success .contact-status-kicker {
    padding: 0;
    color: var(--dark-lila);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-form-success h3 {
    margin: 18px 0 16px;
    color: var(--text);
    font-size: clamp(42px, 4vw, 62px);
    font-weight: 680;
    line-height: 1;
    letter-spacing: -.05em;
}

.contact-form-success p {
    max-width: 480px;
    margin: 0;
    color: var(--text);
    font-size: 18px;
}

@media (max-width: 991.98px) {
    .chapter-navigation {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .statement-stage,
    .trust-block {
        padding-left: 12px;
    }

    .statement-head {
        display: block;
    }

    .statement-head p {
        margin-top: 24px;
    }

    .contact-line-form {
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .hero-block {
        min-height: auto;
    }

    .hero-title-accent {
        display: grid !important;
    }

    .computer-stage {
        width: min(82vw, 380px);
    }

    .statement-block {
        padding: 92px 0;
    }

    .statement-stage {
        padding-left: 12px;
    }

    .statement-card,
    .trust-card {
        flex-basis: min(86vw, 390px);
    }

    .statement-card {
        min-height: 350px;
    }

    .trust-card {
        min-height: 400px;
    }

    .contact-panel {
        padding: 58px 24px 40px;
    }

    .contact-line-form {
        padding: 24px 20px;
    }

    .contact-line-form input:not([type="checkbox"]):not([type="hidden"]),
    .contact-line-form select,
    .contact-line-form textarea {
        min-width: 0;
        font-size: 16px;
    }
}

/* Targeted repair: vertical-scroll driven horizontal card sections and cleaner backgrounds. */
.keyword-track img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.statement-block {
    position: relative;
    min-height: 100svh;
    padding: 0;
    overflow: hidden;
    background: var(--white);
}

.statement-stage {
    min-height: 100svh;
    padding-top: clamp(92px, 11vh, 136px);
    padding-bottom: clamp(56px, 8vh, 96px);
}

.statement-cards,
.trust-cards {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    padding-bottom: 0;
    scrollbar-width: none;
    will-change: transform;
}

.statement-cards::-webkit-scrollbar,
.trust-cards::-webkit-scrollbar {
    display: none;
}

.statement-card {
    flex-basis: clamp(520px, 43vw, 660px);
    min-height: clamp(420px, 48vh, 560px);
}

.trust-block {
    position: relative;
    min-height: 100svh;
    padding-top: clamp(92px, 11vh, 138px);
    padding-bottom: clamp(56px, 8vh, 96px);
    overflow: hidden;
    background: radial-gradient(circle at 82% 18%, rgba(234, 245, 255, .9), transparent 31%),
    linear-gradient(180deg, var(--white), #f8fbff);
}

.trust-block > .row {
    position: relative;
    z-index: 2;
}

.trust-block .col-lg-8 {
    width: 100%;
}

.trust-image-wrap {
    display: none;
}

.trust-cards {
    position: relative;
    z-index: 3;
    margin-top: clamp(36px, 5vh, 58px);
}

.trust-card {
    flex-basis: clamp(440px, 38vw, 560px);
    min-height: clamp(430px, 50vh, 570px);
}

.trust-card img {
    width: 132px;
    height: 132px;
}

.reference-window {
    position: relative;
    min-height: min(78svh, 680px);
    grid-template-columns: minmax(330px, .88fr) minmax(0, 1.5fr);
}

.reference-copy {
    position: relative;
    z-index: 2;
}

.reference-copy h3 {
    max-width: 330px;
    font-size: clamp(28px, 2.8vw, 42px);
    overflow-wrap: anywhere;
}

.contact-panel {
    min-height: 100svh;
    border-radius: 20px;
    align-items: center;
    color: var(--text);
    background: radial-gradient(circle at 80% 18%, rgba(167, 103, 201, .13), transparent 34%),
    linear-gradient(180deg, var(--white) 0%, #f7fbff 48%, var(--white) 100%);
}

.section-index-contact {
    color: var(--light-lila);
}

.section-index-contact i::after {
    box-shadow: 0 0 0 5px #f8fbff;
}

.contact-panel h2 {
    color: var(--text);
}

.contact-copy {
    color: var(--text);
}

.button-blue-line {
    color: var(--text);
    border-color: rgba(10, 77, 255, .3);
    border-radius: 20px;
}

.button-blue-line:hover {
    color: var(--white);
    background: var(--text);
}

.contact-panel h2 > span {
    color: var(--light-lila);
}

.contact-line-form {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--light-lila);
    border-radius: 20px;
}

@media (max-width: 991.98px) {
    .statement-block,
    .trust-block,
    .contact-panel {
        min-height: auto;
    }

    .statement-stage {
        min-height: auto;
    }

    .statement-cards,
    .trust-cards {
        overflow-x: auto;
        padding-bottom: 28px;
        scrollbar-width: thin;
    }

    .statement-card,
    .trust-card {
        flex-basis: min(84vw, 440px);
    }

    .contact-panel {
        background: linear-gradient(135deg, #f8fbff, #eef6ff);
    }
}

/* FAQ back to a real Bootstrap container instead of a full-width section. */
.faq-block.container {
    margin-top: clamp(80px, 10vw, 140px);
    margin-bottom: clamp(80px, 10vw, 140px);
    padding: clamp(78px, 8vw, 128px) clamp(44px, 7vw, 120px);
    overflow: hidden;
}

.faq-block::before {
    display: none !important;
    content: none !important;
}

.faq-block .section-index {
    left: clamp(18px, 3vw, 42px);
}

.faq-block h2,
.faq-block .accordion {
    position: relative;
    z-index: 1;
}

/* Statement stage: large sticky text sequence on a light background. */
.statement-block {
    position: relative;
    height: 430vh;
    min-height: 0;
    padding: 0;
    overflow: visible;
    color: var(--text);
    background: radial-gradient(circle at 80% 18%, rgba(167, 103, 201, .13), transparent 34%),
    linear-gradient(180deg, var(--white) 0%, #f7fbff 48%, var(--white) 100%);
}

.statement-stage.container {
    position: relative;
    top: 0;
    display: flex;
    min-height: 100svh;
    align-items: center;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}

.statement-block .section-index {
    top: 12vh;
    left: clamp(16px, 2.2vw, 34px);
    color: var(--mauve);
}

.statement-block .section-index i::after {
    box-shadow: 0 0 0 5px var(--white);
}

.statement-lines {
    position: relative;
    width: 100%;
    min-height: 66svh;
    margin-left: clamp(58px, 8vw, 136px);
}

.statement-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    max-width: 1180px;
    margin: 0;
    font-size: clamp(52px, 7.1vw, 116px);
    font-weight: 680;
    line-height: .98;
    letter-spacing: -.065em;
    opacity: 0;
    transform: translateY(-24%);
    will-change: transform, opacity;
}

.statement-line:first-child {
    opacity: 1;
    transform: translateY(-50%);
}

.statement-line em {
    color: var(--mauve);
    font-style: normal;
}

.statement-count {
    position: absolute;
    right: clamp(20px, 4vw, 64px);
    bottom: 9vh;
    margin: 0;
    color: var(--mauve);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 12px;
    letter-spacing: .15em;
}

.statement-count span {
    color: var(--text);
}

@media (max-width: 767.98px) {
    .statement-block {
        height: auto;
        min-height: auto;
        padding: clamp(84px, 18vw, 126px) 0;
        overflow: hidden;
    }

    .statement-stage.container {
        position: relative;
        display: block;
        min-height: auto;
    }

    .statement-lines {
        display: grid;
        min-height: auto;
        margin-left: 0;
        gap: 54px;
    }

    .statement-line {
        position: relative;
        top: auto;
        max-width: 100%;
        opacity: 1;
        transform: none;
        font-size: clamp(44px, 13vw, 72px);
    }

    .statement-line:first-child {
        transform: none;
    }

    .statement-count {
        display: none;
    }
}

/* Keep the brand name intact regardless of German automatic hyphenation. */
.brand-word {
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: keep-all;
    -webkit-hyphens: none;
    hyphens: none;
}

/* Contact refresh: light abstract backdrop, branded balloon layer and accessible form. */
.contact-block {
    padding-top: clamp(72px, 8vw, 118px);
    padding-bottom: clamp(72px, 8vw, 110px);
}

.contact-panel {
    min-height: min(980px, calc(100svh - 24px));
    padding: clamp(72px, 6.8vw, 104px) clamp(42px, 6.4vw, 96px);
    border-radius: 20px;
    color: var(--text);
    background: #f8fbff;
}

.contact-panel-ambient {
    background: #f8fbff;
}

.contact-background-art,
.contact-background-wash,
.contact-bg-logo {
    position: absolute;
    pointer-events: none;
    user-select: none;
}

.contact-background-art {
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .96;
}

.contact-background-wash {
    z-index: 1;
    inset: 0;
    background: radial-gradient(circle at 16% 42%, rgba(255, 255, 255, .76), transparent 48%);
}

.contact-bg-logo {
    z-index: 2;
    top: -7%;
    left: 42%;
    width: min(46vw, 610px);
    height: auto;
    opacity: .84;
    filter: saturate(.96) brightness(1.03) drop-shadow(0 32px 42px rgba(6, 59, 198, .14));
    transform: rotate(-7deg);
}

.contact-ambient-orb {
    z-index: 2;
    opacity: .28;
    background: radial-gradient(circle, rgba(127, 137, 212, .2), transparent 68%);
}

.contact-reveal-sheen {
    z-index: 4;
}

.contact-layout {
    --bs-gutter-x: clamp(40px, 6vw, 84px);
    align-items: center !important;
}

.contact-intro {
    position: relative;
}

.contact-details {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: stretch;
}

.contact-details-inner {
    width: min(100%, 520px);
    margin-left: auto;
}

.contact-form-column {
    position: relative;
    z-index: 3;
}

.contact-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: #5d6bc5;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.contact-eyebrow > span {
    width: 26px;
    height: 1px;
    background: currentColor;
}

.contact-panel h2 {
    max-width: 560px;
    color: var(--text);
    font-size: clamp(58px, 5.5vw, 84px);
    line-height: .94;
}

.contact-panel h2 > span {
    color: var(--dark-lila);
}

.contact-copy {
    max-width: 430px;
    margin-top: 28px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.65;
}

.contact-response-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: 0;
    padding: 9px 14px 9px 9px;
    border: 1px solid var(--light-lila);
    border-radius: 20px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 35px rgba(34, 56, 112, .07);
}

.contact-response-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    overflow: hidden;
    border-radius: 13px;
    background: linear-gradient(145deg, #eff5ff, #e3e8ff);
}

.contact-response-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.contact-response-badge > span:last-child {
    display: grid;
    gap: 1px;
}

.contact-response-badge strong {
    color: var(--text);
    font-size: 13px;
    font-weight: 650;
}

.contact-response-badge small {
    color: var(--text);
    font-size: 11px;
}

.contact-actions {
    display: grid;
    width: 100%;
    max-width: none;
    gap: 10px;
    margin-top: 12px;
}

.contact-method {
    display: grid;
    min-height: 66px;
    grid-template-columns: 46px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 13px;
    padding: 9px 14px 9px 9px;
    border: 1px solid var(--light-lila);
    border-radius: 20px;
    color: var(--text);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 14px 40px rgba(34, 56, 112, .06);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s var(--ease), background .25s ease;
}

.contact-method:hover {
    color: var(--text);
    border-color: rgba(6, 59, 198, .4);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 18px 44px rgba(34, 56, 112, .11);
    transform: translateY(-2px);
}

.contact-method-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(145deg, #eef4ff, #e4e9ff);
}

.contact-method-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.contact-method-icon--phone img {
    width: 24px;
    height: 44px;
}

.contact-method-copy {
    display: grid;
    min-width: 0;
    gap: 1px;
}

.contact-method-copy small {
    color: #65729a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-method-copy strong {
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-method-arrow {
    color: #5d6bc5;
    font-size: 17px;
    transition: transform .25s var(--ease);
}

.contact-method:hover .contact-method-arrow {
    transform: translate(2px, -2px);
}

.contact-line-form {
    position: relative;
    margin: 0;
    padding: clamp(26px, 3.2vw, 42px);
    border: 1px solid var(--light-lila);
    border-radius: 20px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: none;
}

.contact-form-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.contact-form-kicker {
    display: block;
    margin-bottom: 8px;
    color: #5d6bc5;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.contact-form-heading h3 {
    max-width: 640px;
    margin: 0;
    color: var(--text);
    font-size: clamp(24px, 2.2vw, 32px);
    font-weight: 650;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.contact-form-time {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid var(--light-lila);
    border-radius: 999px;
    color: #5d6b8e;
    font-size: 11px;
    font-weight: 400;
    white-space: nowrap;
}

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

.contact-line-form .contact-field {
    position: relative;
    display: block;
    min-width: 0;
    margin: 0;
    padding: 13px 15px 9px;
    border: 1px solid var(--light-lila);
    border-radius: 15px;
    background: rgba(249, 251, 255, .74);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.contact-line-form .contact-field:focus-within {
    border-color: rgba(6, 59, 198, .66);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 0 0 4px rgba(6, 59, 198, .09);
}

.contact-line-form .contact-field:has([aria-invalid="true"]) {
    border-color: rgba(141, 39, 64, .55);
    background: rgba(255, 247, 249, .84);
}

.contact-line-form .contact-field-label {
    display: block;
    padding: 0;
    color: var(--text);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .045em;
}

.contact-line-form input:not([type="checkbox"]):not([type="hidden"]),
.contact-line-form select,
.contact-line-form textarea {
    width: 100%;
    min-width: 0;
    min-height: 33px;
    padding: 5px 0 1px;
    border: 0;
    border-radius: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    font: inherit;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0;
    font-size: 12px !important;
}

.contact-line-form select {
    cursor: pointer;
}

.contact-line-form textarea {
    min-height: 92px;
    padding-top: 8px;
    resize: vertical;
}

.contact-line-form .field-error {
    margin: 5px 0 2px;
    color: #8d2740;
    font-size: 12px;
}

.contact-form-alert {
    margin: 0 0 14px;
}

.contact-consent {
    margin-top: 18px;
}

.contact-consent > label {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 11px;
}

.contact-consent input[type="checkbox"] {
    width: 19px;
    height: 19px;
    margin-top: 2px;
}

.contact-consent label > span {
    color: #354261;
    font-size: 12px;
    line-height: 1.5;
}

.contact-line-form .contact-submit {
    min-width: 205px;
    margin-top: 24px;
    border-color: var(--text);
    color: var(--white);
    background: var(--text);
    box-shadow: 0px 13px 33px -13px #100B6D;
}

.contact-line-form .contact-submit > span {
    color: #cdd4f7;
}

.contact-line-form .contact-submit:hover {
    border-color: var(--blue-dark);
    color: var(--white);
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.contact-line-form[aria-busy="true"] .contact-submit {
    cursor: wait;
    opacity: .62;
    transform: none;
}

.contact-form-success {
    min-height: 480px;
}

@media (max-width: 1199.98px) {
    .contact-panel {
        padding-right: 52px;
        padding-left: 62px;
    }

    .contact-layout {
        --bs-gutter-x: 44px;
    }

    .contact-panel h2 {
        font-size: clamp(54px, 5.6vw, 72px);
    }

    .contact-bg-logo {
        left: 43%;
        width: min(45vw, 550px);
    }

    .contact-method-copy strong {
        font-size: 13px;
    }
}

@media (max-width: 991.98px) {
    .contact-panel {
        min-height: auto;
        padding: 76px 48px 52px;
        background: #f8fbff;
    }

    .contact-layout {
        --bs-gutter-x: 24px;
    }

    .contact-intro {
        max-width: 680px;
    }

    .contact-details {
        justify-content: flex-start;
    }

    .contact-details-inner {
        width: 100%;
        max-width: 560px;
        margin-left: 0;
    }

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

    .contact-line-form {
        margin-top: 0;
    }

    .contact-background-art {
        object-position: center;
        opacity: .94;
    }

    .contact-background-wash {
        background: linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(248, 251, 255, .28));
    }

    .contact-bg-logo {
        top: 8%;
        right: -10%;
        left: auto;
        width: min(66vw, 520px);
        opacity: .22;
        transform: rotate(8deg);
    }
}

@media (max-width: 767.98px) {
    .contact-block.container {
        padding-right: 12px;
        padding-left: 12px;
    }

    .contact-panel {
        padding: 58px 18px 20px;
        border-radius: 22px;
    }

    .contact-panel h2 {
        font-size: clamp(48px, 14vw, 64px);
    }

    .contact-copy {
        margin-top: 22px;
        font-size: 16px;
    }

    .contact-eyebrow {
        margin-top: 28px;
    }

    .contact-bg-logo {
        top: 2%;
        right: -28%;
        width: 88vw;
        opacity: .18;
    }

    .contact-response-badge {
        width: 100%;
    }

    .contact-actions {
        gap: 9px;
    }

    .contact-method {
        min-height: 64px;
    }

    .contact-line-form {
        padding: 22px 16px 18px;
        border-radius: 20px;
    }

    .contact-form-heading {
        display: grid;
        gap: 12px;
        margin-bottom: 20px;
    }

    .contact-form-time {
        justify-self: start;
    }

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

    .contact-line-form .contact-field--wide {
        grid-column: auto;
    }

    .contact-line-form input:not([type="checkbox"]):not([type="hidden"]),
    .contact-line-form select,
    .contact-line-form textarea {
        font-size: 16px;
    }

    .contact-consent > label {
        grid-template-columns: 22px minmax(0, 1fr);
    }

    .contact-consent input[type="checkbox"] {
        width: 21px;
        height: 21px;
    }

    .contact-line-form .contact-submit {
        width: 100%;
        min-width: 0;
    }

    .contact-form-success {
        min-height: 410px;
    }
}

@supports not (backdrop-filter: blur(1px)) {
    .contact-line-form,
    .contact-method,
    .contact-response-badge {
        background: rgba(255, 255, 255, .94);
    }
}

@media (max-width: 767.98px) {
    .faq-block.container {
        margin-top: 70px;
        margin-bottom: 70px;
        padding: 64px 24px;
    }
}

/* Process/reference/trust repair: avoid ScrollTrigger pin overlap and empty pinned views. */
@media (min-width: 992px) {
    .process-block {
        overflow: visible;
        padding-top: clamp(140px, 13vw, 200px);
        padding-bottom: clamp(130px, 13vw, 190px);
    }

    .process-intro {
        position: sticky;
        top: 110px;
    }

    .process-list {
        padding-top: 28vh;
        padding-bottom: 18vh;
    }

    .process-list::before {
        top: 28vh;
        bottom: 14vh;
    }

    .process-step {
        min-height: 50vh;
    }

    .process-step:last-child {
        min-height: 58vh;
    }

    .reference-block {
        position: relative;
        z-index: 4;
        clear: both;
        padding-top: clamp(105px, 10vw, 155px);
    }

    .reference-heading {
        position: relative;
        z-index: 2;
    }

    .reference-window {
        grid-template-columns: minmax(410px, .92fr) minmax(0, 1.45fr);
    }

    .reference-copy h3 {
        max-width: 430px;
        overflow-wrap: normal;
        word-break: normal;
    }

    .trust-block {
        min-height: auto;
        padding-top: clamp(105px, 10vw, 155px);
        padding-bottom: clamp(105px, 10vw, 155px);
        overflow: hidden;
    }

    .trust-cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
        width: 100%;
        overflow: visible;
        transform: none !important;
    }

    .trust-card {
        min-height: clamp(360px, 38vh, 460px);
        flex-basis: auto;
    }
}

@media (max-width: 991.98px) {
    .trust-stage {
        position: relative;
    }
}

/* Process scroll repair: compact step stack instead of oversized empty 50vh gaps. */
@media (min-width: 992px) {
    .process-block {
        padding-top: clamp(110px, 10vw, 150px);
        padding-bottom: clamp(110px, 10vw, 150px);
    }

    .process-block > .row {
        align-items: flex-start;
    }

    .process-intro {
        position: sticky;
        top: 92px;
        display: flex;
        min-height: calc(100svh - 130px);
        flex-direction: column;
        justify-content: center;
    }

    .process-list {
        display: grid;
        gap: 18px;
        padding-top: clamp(70px, 9vh, 96px);
        padding-bottom: clamp(70px, 9vh, 96px);
    }

    .process-list::before {
        top: clamp(78px, 10vh, 106px);
        bottom: clamp(78px, 10vh, 106px);
    }

    .process-step,
    .process-step:last-child {
        min-height: 0;
        padding: clamp(26px, 3.6vh, 40px) 0;
    }

    .process-step > div {
        max-width: 480px;
    }

    .process-balloon {
        right: -25px;
        bottom: 12%;
        width: min(19vw, 240px);
        opacity: .12;
    }
}

/* Trust section repair: remove fake scroll height and show all cards without empty stage space. */
@media (min-width: 992px) {
    .trust-block.container {
        height: auto;
        min-height: auto;
        padding-top: clamp(105px, 10vw, 150px);
        padding-bottom: clamp(105px, 10vw, 150px);
        overflow: hidden;
    }

    .trust-stage {
        position: relative;
        display: block;
        min-height: auto;
        overflow: visible;
        padding-top: 0;
        padding-bottom: 0;
    }

    .trust-stage .section-index {
        top: 0;
        left: clamp(18px, 3vw, 42px);
    }

    .trust-stage > .row {
        margin-right: calc(-.5 * var(--bs-gutter-x));
        margin-left: calc(-.5 * var(--bs-gutter-x));
        padding-left: clamp(72px, 9vw, 140px);
    }

    .trust-cards {
        display: grid;
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
        margin-top: clamp(44px, 6vw, 72px);
        overflow: visible;
        transform: none !important;
        will-change: auto;
    }

    .trust-card {
        flex: initial;
        min-height: clamp(360px, 38vh, 460px);
    }
}

/* Process pacing repair: slower step progression without large blank panels. */
@media (min-width: 992px) {
    .process-list {
        gap: 14px;
        padding-top: clamp(86px, 11vh, 116px);
        padding-bottom: clamp(86px, 11vh, 116px);
    }

    .process-list::before {
        top: clamp(94px, 12vh, 126px);
        bottom: clamp(94px, 12vh, 126px);
    }

    .process-step,
    .process-step:last-child {
        min-height: clamp(260px, 39vh, 340px);
        align-items: center;
        padding: clamp(22px, 3vh, 34px) 0;
    }
}

@supports (overflow: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

/* Process sticky repair: left stage stays fixed while the right timeline scrolls. */
@media (min-width: 992px) {
    .process-block {
        height: auto;
        min-height: auto;
        padding-top: clamp(70px, 8vw, 120px);
        padding-bottom: clamp(90px, 9vw, 140px);
        overflow: visible;
        background: radial-gradient(circle at 82% 18%, rgba(234, 245, 255, .9), transparent 31%),
        linear-gradient(180deg, var(--white), #f8fbff);
        border-radius: 20px;
    }

    .process-block > .row {
        position: relative;
        top: auto;
        min-height: auto;
        align-items: flex-start;
    }

    .process-intro {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        display: flex;
        min-height: 100svh;
        padding-top: 92px;
        padding-bottom: 48px;
        flex-direction: column;
        justify-content: center;
        align-self: flex-start;
    }

    .process-intro h2 {
        font-size: clamp(44px, 4.7vw, 72px);
        line-height: .94;
    }

    .process-active {
        margin-top: clamp(24px, 4vh, 42px);
        padding-top: clamp(14px, 2.5vh, 22px);
    }

    .process-active strong {
        font-size: clamp(32px, 10vw, 54px);
        line-height: .8;
    }

    .process-active span {
        margin-top: clamp(14px, 2.2vh, 20px);
        font-size: clamp(24px, 2.4vw, 30px);
    }

    .process-list {
        display: grid;
        gap: clamp(90px, 15vh, 150px);
        min-height: auto;
        padding-top: clamp(92px, 13vh, 145px);
        padding-bottom: clamp(92px, 13vh, 145px);
    }

    .process-list::before {
        top: clamp(100px, 14vh, 154px);
        bottom: clamp(100px, 14vh, 154px);
        left: 33px;
    }

    .process-step,
    .process-step:last-child {
        position: relative;
        inset: auto;
        min-height: clamp(230px, 32vh, 320px);
        align-items: center;
        padding: 0;
        opacity: .22;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: opacity .28s ease, color .28s ease;
    }

    .process-step.is-active {
        opacity: 1;
        transform: none;
    }

    .process-step.is-before,
    .process-step.is-after {
        opacity: .42;
        transform: none;
    }

    .process-step.is-hidden-step {
        opacity: .22;
        visibility: visible;
        pointer-events: auto;
    }

    .process-step > div {
        max-width: 500px;
    }

    .process-balloon {
        right: -18px;
        bottom: clamp(42px, 8vh, 82px);
        width: min(17vw, 210px);
        opacity: .12;
    }
}

/* Final responsive safeguards for the current start-page markup. */
@media (max-width: 991.98px) {
    .process-step,
    .process-step.is-active,
    .process-step.is-before,
    .process-step.is-after,
    .process-step.is-hidden-step {
        min-height: auto;
        padding: 32px 0;
        color: var(--text);
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 767.98px) {
    .navbar-collapse {
        margin: 14px calc(-.5 * var(--bs-gutter-x)) -16px;
        padding: 22px calc(.5 * var(--bs-gutter-x)) 28px;
    }

    .faq-block .section-index {
        left: auto;
    }

    .service-panel > div {
        width: 100%;
    }

    .service-panel img {
        position: static;
        right: auto;
        bottom: auto;
        width: 100%;
        height: auto;
        max-height: 180px;
        object-fit: contain;
    }

    .contact-actions {
        display: grid;
        gap: 12px;
    }

    .contact-consent > label {
        grid-template-columns: 24px minmax(0, 1fr);
        gap: 10px;
    }

    .contact-consent input[type="checkbox"] {
        width: 22px;
        height: 22px;
    }

    .contact-form-success {
        min-height: 410px;
    }
}

/* Cinematic 16:9 showcase between services and process. */
.showcase-block {
    position: relative;
    display: flex;
    min-height: calc(100svh - 70px);
    align-items: center;
    padding: 12px 0;
    overflow: hidden;
    background: var(--white);
}

.showcase-panel {
    position: relative;
    isolation: isolate;
    display: flex;
    width: 100%;
    min-height: calc(100svh - 94px);
    align-items: center;
    overflow: hidden;
    padding: clamp(28px, 4vh, 48px) 0;
    border-radius: 20px;
    color: var(--text);
    background: #fff
}

.showcase-ambient,
.showcase-ambient-orb,
.showcase-ambient-grid {
    position: absolute;
    pointer-events: none;
}

.showcase-ambient {
    z-index: 0;
    inset: 0;
    overflow: hidden;
}

.showcase-ambient-orb {
    width: min(52vw, 760px);
    aspect-ratio: 1;
    border-radius: 50%;
    opacity: .28;
    filter: blur(2px);
}

.showcase-ambient-orb-one {
    top: -42%;
    left: -18%;
}

.showcase-ambient-orb-two {
    right: -19%;
    bottom: -54%;
}

.showcase-ambient-grid {
    inset: 0;
    opacity: .055;
    background-image:
        linear-gradient(rgba(1, 17, 66, .22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 17, 66, .22) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(circle at 50% 55%, #000 0%, transparent 72%);
    mask-image: radial-gradient(circle at 50% 55%, #000 0%, transparent 72%);
}

.section-index-showcase {
    top: 50%;
    left: 30px;
    z-index: 2;
    color: var(--mauve);
    transform: translateY(-50%);
}

.section-index-showcase i::after {
    box-shadow: 0 0 0 5px #f8fbff;
}

.showcase-inner {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    padding-right: clamp(20px, 4vw, 58px);
    padding-left: clamp(88px, 9vw, 142px);
    border-radius: 20px;
}

.showcase-intro {
    display: grid;
    align-items: end;
    margin-bottom: clamp(18px, 2.6vh, 30px);
    gap: clamp(28px, 5vw, 80px);
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .46fr);
}

.showcase-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--dark-lila);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.showcase-intro h2 {
    max-width: 830px;
    margin: 0;
    color: var(--text);
    font-size: clamp(38px, 4.6vw, 70px);
    font-weight: 680;
    line-height: .96;
    letter-spacing: -.058em;
}

.showcase-intro h2 em {
    color: var(--mauve);
    font-style: normal;
}

.showcase-intro p {
    max-width: 430px;
    margin: 0 0 5px;
    color: var(--muted);
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.5;
}

.showcase-media {
    width: min(100%, clamp(620px, calc((100svh - 340px) * 1.7778), 1240px));
    margin: 0 auto;
    perspective: 1400px;
    transform-style: preserve-3d;
}

.showcase-frame {
    position: relative;
    isolation: isolate;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
    background: transparent;
    transform-origin: 50% 70%;
}

.showcase-frame::before {
    content: "";
    position: absolute;
    z-index: 5;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: calc(clamp(14px, 1.5vw, 24px) - 7px);
    pointer-events: none;
}

.pitch-deck {
    position: absolute;
    z-index: 1;
    inset: 0;
    overflow: hidden;
    touch-action: pan-y;
}

.pitch-deck-stage {
    position: absolute;
    inset: 0;
    transform-style: flat;
}

.pitch-deck-card,
.pitch-deck-transition {
    position: absolute;
    top: 52%;
    left: 50%;
    width: 58%;
    aspect-ratio: 16 / 9;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    border: 1px solid rgba(1, 17, 66, .22);
    border-radius: clamp(8px, .9vw, 13px);
    background: #fff;
    box-shadow:
        0 28px 64px rgba(1, 17, 66, .23),
        0 7px 18px rgba(1, 17, 66, .14);
    transform: translate3d(-50%, -50%, 0);
    transform-origin: 50% 50%;
}

.pitch-deck-card {
    backface-visibility: hidden;
    pointer-events: none;
    will-change: transform, opacity;
}

.pitch-deck-transition {
    z-index: 50000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    isolation: isolate;
    will-change: opacity;
}

.pitch-deck-card:first-child {
    opacity: 1;
}

.pitch-deck-card img,
.pitch-deck-transition-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pitch-deck-transition-image {
    position: absolute;
    inset: 0;
}

.pitch-deck-transition-image-from {
    z-index: 1;
}

.pitch-deck-transition-image-to {
    z-index: 2;
    opacity: 0;
    will-change: opacity;
}

.pitch-deck.is-ready .pitch-deck-card {
    opacity: 0;
}

.showcase-frame-shade {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    height: clamp(72px, 17%, 112px);
    pointer-events: none;
}

.showcase-meta {
    position: absolute;
    right: clamp(18px, 2.4vw, 34px);
    bottom: clamp(16px, 2.2vw, 30px);
    left: clamp(18px, 2.4vw, 34px);
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, .84);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    pointer-events: none;
}

.showcase-meta-copy {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px 20px;
}

.pitch-deck-controls {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    pointer-events: auto;
}

.pitch-deck-controls button {
    min-height: 32px;
    padding: 7px 10px;
    border: 1px solid var(--mauve);
    border-radius: 999px;
    color: inherit;
    background: var(--mauve);
    font: inherit;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    transition: border-color .25s ease, background-color .25s ease, color .25s ease;
    -webkit-box-shadow: 0px 9px 16px -5px rgba(230,83,211,0.21);
    box-shadow: 0px 9px 16px -5px rgba(230,83,211,0.21);
}

.pitch-deck-controls button:hover {
    border-color: var(--dark-lila);
    background: var(--dark-lila);
    box-shadow: 0px 9px 16px -5px rgba(40,55,181,0.61);
}

.pitch-deck-controls button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Contact depth layer; content remains in its original static geometry. */
.contact-panel {
    isolation: isolate;
}

.contact-panel-ambient {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.contact-panel > .section-index-contact {
    z-index: 2;
}

.contact-layout {
    position: relative;
    z-index: 1;
}

.contact-ambient-orb {
    position: absolute;
    display: block;
    aspect-ratio: 1;
    border-radius: 50%;
}

.contact-ambient-orb {
    top: -34%;
    right: -13%;
    width: min(58vw, 760px);
    opacity: .45;
    background: radial-gradient(circle, rgba(166, 108, 194, .2), transparent 68%);
}

.contact-reveal-sheen {
    position: absolute;
    top: -30%;
    bottom: -30%;
    left: -42%;
    width: 34%;
    opacity: 0;
    transform: skewX(-12deg);
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(154, 164, 221, .08) 24%,
    rgba(255, 255, 255, .9) 50%,
    rgba(166, 108, 194, .13) 74%,
    transparent 100%);
    filter: blur(7px);
    mix-blend-mode: screen;
    pointer-events: none;
    will-change: transform, opacity;
}

@media (max-width: 991.98px) {
    .showcase-block {
        min-height: auto;
        padding: 70px 0;
    }

    .showcase-panel {
        display: block;
        min-height: auto;
        padding: 82px 20px 32px;
    }

    .section-index-showcase {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 28px;
        transform: none;
    }

    .showcase-inner {
        padding: 0;
    }

    .showcase-intro {
        display: block;
        margin-bottom: 34px;
    }

    .showcase-intro h2 {
        font-size: clamp(42px, 9.2vw, 66px);
    }

    .showcase-intro p {
        margin-top: 22px;
    }

    .showcase-media {
        width: 100%;
    }

    .pitch-deck-card,
    .pitch-deck-transition {
        width: 64%;
    }

    .contact-ambient-orb {
        top: -12%;
        right: -56%;
        width: 150vw;
        opacity: .32;
    }

    .contact-reveal-sheen {
        left: -64%;
        width: 58%;
        filter: blur(5px);
    }
}

@media (max-width: 767.98px) {
    .showcase-block {
        padding: 56px 0;
    }

    .showcase-panel {
        border-radius: 20px;
    }

    .showcase-intro h2 {
        font-size: clamp(42px, 12.4vw, 60px);
    }

    .showcase-frame {
        border-radius: 14px;
        box-shadow: 0 24px 50px rgba(0, 5, 25, .38);
    }

    .showcase-frame::before {
        inset: 7px;
        border-radius: 9px;
    }

    .pitch-deck-card,
    .pitch-deck-transition {
        width: 76%;
        border-radius: 8px;
        box-shadow:
            0 16px 34px rgba(1, 17, 66, .24),
            0 4px 12px rgba(1, 17, 66, .14);
    }

    .showcase-meta {
        right: 12px;
        bottom: 11px;
        left: 12px;
        align-items: flex-end;
        gap: 8px;
        font-size: 8px;
        letter-spacing: .08em;
    }

    .showcase-meta-copy {
        display: block;
    }

    .showcase-meta-copy span:first-child {
        display: none;
    }

    .pitch-deck-controls {
        gap: 4px;
    }

    .pitch-deck-controls button {
        min-width: 44px;
        min-height: 44px;
        padding: 8px 10px;
        font-size: 9px;
    }
}

@media (max-width: 479.98px) {
    .pitch-deck-card,
    .pitch-deck-transition {
        width: 80%;
    }

    .pitch-deck-controls button {
        padding-inline: 6px;
    }
}

@media (max-width: 359.98px) {
    .showcase-meta {
        justify-content: flex-end;
    }

    .showcase-meta-copy {
        display: none;
    }
}

html.has-native-section-snap {
    scroll-snap-type: y proximity;
}

html.has-native-section-snap [data-section-snap] {
    scroll-margin-top: 70px;
    scroll-snap-align: start;
}

/* Keep all statement content available when motion is reduced. */
@media (prefers-reduced-motion: reduce) {
    .showcase-block,
    .showcase-panel {
        min-height: auto;
    }

    .pitch-deck-card {
        opacity: 0 !important;
        transform: translate3d(-50%, -50%, 0) !important;
    }

    .pitch-deck-card:first-child {
        opacity: 1 !important;
    }

    .pitch-deck-card.is-active {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .pitch-deck-transition {
        display: none !important;
    }

    .pitch-deck.is-ready .pitch-deck-card:first-child:not(.is-active) {
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .pitch-deck-controls button {
        transition: none;
    }

    .statement-block {
        height: auto;
        min-height: auto;
        padding: clamp(84px, 12vw, 126px) 0;
        overflow: hidden;
    }

    .statement-stage.container {
        position: relative;
        display: block;
        min-height: auto;
    }

    .statement-lines {
        display: grid;
        min-height: auto;
        margin-left: 0;
        gap: 54px;
    }

    .statement-line,
    .statement-line:first-child {
        position: relative;
        top: auto;
        opacity: 1;
        visibility: visible;
        transform: none !important;
    }

    .statement-count {
        display: none;
    }
}
