@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat-cyrillic.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --color-primary: #0b63f6;
    --color-primary-dark: #064dd8;
    --color-heading: #071a45;
    --color-text: #17254a;
    --color-background: #f9fbff;
    --color-border: rgba(11, 99, 246, 0.2);
    --color-gold: #f5b82e;
    --header-height: 88px;
    --content-width: 1480px;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--color-text);
    background: var(--color-background);
    font-family: "Montserrat", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

.page-shell {
    min-height: 100svh;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 42%, rgba(255,255,255,.98) 0 20%, rgba(249,251,255,.2) 58%),
        linear-gradient(180deg, #fbfcff 0%, #f7faff 100%);
}

.site-header {
    position: relative;
    z-index: 20;
    height: var(--header-height);
    background: transparent;
}

.header-inner {
    width: min(calc(100% - 56px), var(--content-width));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.brand {
    width: 188px;
    display: grid;
    grid-template-rows: 34px auto;
    flex: 0 0 auto;
    justify-items: start;
    gap: 1px;
    text-decoration: none;
}

.brand-logo-crop {
    position: relative;
    width: 188px;
    height: 34px;
    display: block;
    overflow: hidden;
}

.brand-logo {
    position: absolute;
    top: -32px;
    left: 0;
    display: block;
    width: 188px;
    height: auto;
}

.brand-svoi {
    margin-top: 1px;
    margin-left: 3px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .045em;
}

.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2vw, 42px);
}

.desktop-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    color: var(--color-heading);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}

.desktop-nav a:hover { color: var(--color-primary); }
.nav-chevron { width: 11px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.contact-link {
    flex: 0 0 auto;
    min-width: 174px;
    height: 50px;
    margin-left: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-primary);
    border-radius: 12px;
    color: var(--color-primary-dark);
    background: rgba(255,255,255,.28);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.contact-link:hover { color: #fff; background: var(--color-primary); transform: translateY(-1px); }

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

.hero {
    position: relative;
    min-height: calc(100svh - var(--header-height));
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 12% 0 auto;
    height: 68%;
    opacity: .28;
    background-image: radial-gradient(circle, rgba(11,99,246,.11) 1.2px, transparent 1.5px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at center, #000 0, transparent 66%);
}

.hero-glow {
    position: absolute;
    z-index: -3;
    width: 58vw;
    height: 68vh;
    border-radius: 50%;
    filter: blur(4px);
    opacity: .65;
}

.hero-glow-left { top: 9%; left: -37%; background: radial-gradient(circle, rgba(11,99,246,.14), transparent 67%); }
.hero-glow-right { top: 2%; right: -34%; background: radial-gradient(circle, rgba(68,130,246,.16), transparent 68%); }

.hero-wave {
    position: absolute;
    z-index: -1;
    width: 82vw;
    height: 31vw;
    max-height: 410px;
    border: 1px solid rgba(255,255,255,.82);
    border-radius: 50%;
    box-shadow: 0 0 85px rgba(11,99,246,.05);
    opacity: .82;
}

.hero-wave-one { left: -24vw; bottom: -17vw; transform: rotate(7deg); }
.hero-wave-two { right: -29vw; bottom: -13vw; transform: rotate(-9deg); }

.hero-inner {
    position: relative;
    width: min(calc(100% - 48px), 1480px);
    min-height: calc(100svh - var(--header-height));
    margin: 0 auto;
    padding: clamp(92px, 12.4vh, 132px) 0 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-height: 48px;
    padding: 7px 16px;
    border: 1px solid rgba(11,99,246,.07);
    border-radius: 14px;
    color: var(--color-heading);
    background: rgba(239,244,253,.72);
    box-shadow: 0 9px 28px rgba(30,70,140,.06), inset 0 1px 0 rgba(255,255,255,.72);
    font-size: clamp(14px, 1.03vw, 17px);
    font-weight: 600;
}

.badge-icon { width: 26px; height: 30px; fill: none; stroke: var(--color-gold); stroke-width: 2.2; stroke-linejoin: round; }

.hero-title {
    width: 100%;
    max-width: 1390px;
    margin: clamp(58px, 6.7vh, 72px) 0 0;
    color: var(--color-heading);
    font-size: clamp(49px, 4.15vw, 71px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.052em;
}

.hero-title { white-space: nowrap; }
.hero-title em { color: var(--color-primary); font-style: normal; }

.typewriter {
    position: relative;
    display: inline-block;
    min-width: 9.25ch;
    text-align: left;
}

.typewriter.is-typing::after {
    content: "";
    display: inline-block;
    width: .035em;
    height: .78em;
    margin-left: .06em;
    border-radius: 2px;
    vertical-align: -.02em;
    background: currentColor;
    animation: caret-blink .72s steps(1, end) infinite;
}

.hero-subtitle {
    max-width: 1110px;
    margin: clamp(39px, 4.8vh, 48px) 0 0;
    color: var(--color-text);
    font-size: clamp(18px, 1.38vw, 22px);
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: -.018em;
}

.hero-subtitle span { display: block; }
.hero-subtitle strong { color: var(--color-primary); font-weight: 500; }

.hero-actions {
    display: flex;
    gap: 26px;
    margin-top: clamp(41px, 4.8vh, 50px);
}

.button {
    width: 332px;
    min-height: 65px;
    padding: 0 32px 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--color-primary);
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.button svg { width: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; transition: transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:hover svg { transform: translateX(4px); }
.button-primary { color: #fff; background: linear-gradient(135deg, #0a5af0, #0871ff); box-shadow: 0 12px 28px rgba(11,99,246,.2); }
.button-primary:hover { background: linear-gradient(135deg, var(--color-primary-dark), #075ee8); box-shadow: 0 16px 32px rgba(11,99,246,.26); }
.button-secondary { color: var(--color-primary); background: rgba(255,255,255,.6); }
.button-secondary:hover { color: #fff; background: var(--color-primary); box-shadow: 0 12px 28px rgba(11,99,246,.14); }

.benefits {
    width: min(100%, 1160px);
    margin-top: clamp(76px, 9.4vh, 96px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit {
    min-height: 56px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    text-align: left;
}

.benefit + .benefit { border-left: 1px solid rgba(11,99,246,.21); }
.benefit-icon { flex: 0 0 46px; width: 46px; height: 46px; fill: none; stroke: var(--color-primary); stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }
.benefit p { margin: 0; color: var(--color-heading); font-size: 13px; font-weight: 500; line-height: 1.65; }
.benefit strong { color: #061a48; font-weight: 650; }

a:focus-visible, button:focus-visible { outline: 3px solid rgba(11,99,246,.34); outline-offset: 4px; }

.hero-reveal { animation: reveal .65s both ease-out; }
.hero-title { animation-delay: .08s; }
.hero-subtitle { animation-delay: .14s; }
.hero-actions { animation-delay: .2s; }
.benefits { animation-delay: .27s; }

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

@keyframes caret-blink {
    0%, 48% { opacity: 1; }
    49%, 100% { opacity: 0; }
}

@media (max-width: 1320px) {
    .header-inner { width: calc(100% - 36px); gap: 20px; }
    .desktop-nav { gap: 19px; }
    .desktop-nav a { font-size: 12.5px; }
    .contact-link { min-width: 150px; height: 46px; margin-left: 2px; font-size: 13px; }
    .hero-title { font-size: clamp(47px, 4.35vw, 57px); }
    .hero-inner { padding-top: clamp(72px, 10vh, 98px); }
    .benefit { padding: 0 16px; gap: 14px; }
}

@media (max-width: 1100px) {
    :root { --header-height: 76px; }
    .header-inner { position: relative; z-index: 3; width: calc(100% - 40px); }
    .desktop-nav, .contact-link { display: none; }
    .menu-toggle {
        width: 46px;
        height: 46px;
        margin-left: auto;
        padding: 0;
        display: grid;
        place-content: center;
        gap: 5px;
        border: 0;
        border-radius: 11px;
        background: transparent;
        cursor: pointer;
    }
    .menu-toggle span { width: 21px; height: 2px; border-radius: 2px; background: var(--color-heading); transition: transform .2s ease, opacity .2s ease; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav {
        position: fixed;
        z-index: 2;
        inset: 0 0 0 auto;
        width: min(430px, 100%);
        padding: 98px 24px 28px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        overflow-y: auto;
        border-left: 1px solid rgba(11,99,246,.12);
        background: rgba(250,252,255,.985);
        box-shadow: -24px 0 64px rgba(18,47,104,.14);
        backdrop-filter: blur(22px);
    }
    .mobile-nav[hidden] { display: none; }
    .mobile-nav a { padding: 15px 16px; border-radius: 11px; color: var(--color-heading); font-size: 16px; font-weight: 600; line-height: 1.25; text-decoration: none; }
    .mobile-nav a:hover { background: rgba(11,99,246,.06); color: var(--color-primary); }
    .mobile-nav .mobile-contact { margin-top: 13px; padding-block: 16px; border: 1px solid var(--color-primary); color: var(--color-primary); text-align: center; }
    body.menu-open { overflow: hidden; }
    body.menu-open::before { content: ""; position: fixed; z-index: 19; inset: 0; background: rgba(7,26,69,.18); backdrop-filter: blur(2px); }
    body.menu-open .site-header { z-index: 20; }
    .hero-inner { padding-top: clamp(46px, 7vh, 68px); }
    .hero-title { font-size: clamp(43px, 5.5vw, 56px); }
    .benefits { max-width: 780px; grid-template-columns: repeat(2, 1fr); gap: 0; }
    .benefit { min-height: 82px; padding-block: 12px; }
    .benefit:nth-child(3) { border-left: 0; }
    .benefit:nth-child(3), .benefit:nth-child(4) { border-top: 1px solid rgba(11,99,246,.16); }
}

@media (max-width: 780px) {
    .hero-inner { width: min(calc(100% - 40px), 720px); padding: 38px 0 42px; }
    .partner-badge { min-height: 45px; padding: 7px 13px; gap: 9px; border-radius: 12px; font-size: 12.5px; }
    .badge-icon { width: 23px; height: 27px; }
    .hero-title { margin-top: 42px; font-size: clamp(36px, 6.3vw, 48px); line-height: 1.07; letter-spacing: -.045em; white-space: normal; }
    .hero-subtitle { max-width: 680px; margin-top: 34px; font-size: 17px; line-height: 1.58; }
    .hero-subtitle span { display: inline; }
    .hero-actions { width: 100%; margin-top: 38px; flex-direction: row; gap: 16px; }
    .button { width: calc(50% - 8px); min-height: 60px; padding: 0 22px; font-size: 15px; }
    .benefits { width: 100%; margin-top: 60px; }
    .benefit { min-height: 88px; padding: 13px 18px; justify-content: flex-start; }
    .benefit-icon { flex-basis: 39px; width: 39px; height: 39px; }
    .benefit p { font-size: 12px; }
}

@media (max-width: 680px) {
    .hero-inner { width: min(calc(100% - 32px), 620px); padding-top: 32px; }
    .hero-title { font-size: clamp(34px, 7.2vw, 44px); }
    .hero-actions { width: min(100%, 540px); margin-top: 34px; flex-direction: column; gap: 13px; }
    .button { width: 100%; min-height: 60px; padding: 0 25px; font-size: 16px; }
    .benefits { margin-top: 52px; }
}

@media (max-width: 470px) {
    :root { --header-height: 70px; }
    .header-inner { width: calc(100% - 28px); }
    .brand { width: 158px; grid-template-rows: 29px auto; gap: 1px; }
    .brand-logo-crop { width: 158px; height: 29px; }
    .brand-logo { top: -26px; width: 158px; }
    .brand-svoi { margin-top: 0; margin-left: 2px; font-size: 11px; }
    .menu-toggle { width: 42px; height: 42px; }
    .mobile-nav { width: 100%; padding: 88px 18px 24px; border-left: 0; box-shadow: none; }
    .mobile-nav a { padding: 14px 15px; font-size: 15px; }
    .hero-inner { width: calc(100% - 28px); padding-top: 26px; }
    .partner-badge { max-width: 100%; font-size: 10.5px; white-space: nowrap; }
    .hero-title { margin-top: 35px; font-size: clamp(32px, 9.5vw, 40px); line-height: 1.08; }
    .typewriter { min-width: 8.9ch; }
    .hero-subtitle { margin-top: 29px; font-size: 15px; line-height: 1.55; }
    .hero-actions { margin-top: 31px; }
    .button { min-height: 58px; }
    .benefits { margin-top: 48px; }
    .benefit { min-height: 88px; padding: 11px 10px; gap: 10px; }
    .benefit-icon { flex-basis: 34px; width: 34px; height: 34px; }
    .benefit p { font-size: 10.5px; line-height: 1.55; }
}

@media (max-width: 359px) {
    .header-inner { width: calc(100% - 22px); }
    .brand { width: 148px; }
    .brand-logo-crop { width: 148px; }
    .brand-logo { top: -24px; width: 148px; }
    .partner-badge { padding-inline: 10px; font-size: 9.5px; white-space: normal; text-align: left; }
    .hero-title { margin-top: 31px; font-size: 30px; }
    .hero-subtitle { font-size: 14px; }
    .button { min-height: 56px; padding-inline: 21px; font-size: 14.5px; }
    .benefit { min-height: 84px; padding: 9px 7px; gap: 8px; }
    .benefit-icon { flex-basis: 30px; width: 30px; height: 30px; }
    .benefit p { font-size: 9.3px; }
}

/* Screen 2: user scenario */
.scenario-section {
    position: relative;
    padding: clamp(88px, 8.4vw, 128px) 0 60px;
    background:
        radial-gradient(circle at 50% 33%, rgba(255,255,255,.98) 0 20%, rgba(249,251,255,.56) 58%, transparent 80%),
        linear-gradient(180deg, rgba(249,251,255,.96), var(--color-background));
}

.scenario-container {
    width: min(calc(100% - 48px), 1412px);
    margin: 0 auto;
}

.scenario-header { text-align: center; }

.scenario-header h2 {
    margin: 0;
    color: var(--color-heading);
    font-size: clamp(44px, 3.65vw, 58px);
    font-weight: 650;
    line-height: 1.08;
    letter-spacing: -.045em;
    white-space: nowrap;
}

.scenario-grid {
    margin-top: clamp(54px, 5vw, 72px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(26px, 2.2vw, 34px);
}

.scenario-card {
    position: relative;
    min-width: 0;
    min-height: clamp(480px, 32.5vw, 500px);
    overflow: hidden;
    border-radius: 28px;
    background: rgba(238,246,255,.78);
    box-shadow: 0 26px 68px rgba(20,57,124,.09);
    perspective: 1600px;
    cursor: pointer;
    isolation: isolate;
    transition: box-shadow 450ms ease;
}

.scenario-card--existing { background: rgba(222,238,255,.9); }

.scenario-card__back-space {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
}

.scenario-portal {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 78% 63%, rgba(255,255,255,.94) 0 7%, rgba(121,177,255,.08) 21%, transparent 48%),
        radial-gradient(ellipse at 76% 54%, rgba(37,116,246,.11), transparent 66%),
        linear-gradient(145deg, rgba(247,251,255,.3), rgba(190,219,255,.1));
}

.scenario-card--existing .scenario-portal {
    background:
        radial-gradient(ellipse at 79% 63%, rgba(255,255,255,.95) 0 7%, rgba(89,157,255,.09) 22%, transparent 49%),
        radial-gradient(ellipse at 78% 54%, rgba(11,99,246,.14), transparent 68%),
        linear-gradient(145deg, rgba(245,250,255,.3), rgba(168,207,255,.11));
}

.scenario-portal__depth {
    position: absolute;
    inset: 0;
    opacity: .48;
    transform: scale(.99);
    background:
        radial-gradient(ellipse at 76% 51%, rgba(25,111,255,.13), transparent 56%),
        linear-gradient(118deg, transparent 35%, rgba(119,178,255,.09) 68%, transparent 88%);
    transition: opacity 280ms ease, transform 480ms cubic-bezier(.22,.7,.2,1);
}

.scenario-portal__glow {
    position: absolute;
    right: 8%;
    bottom: 13%;
    width: 35%;
    height: 44%;
    border-radius: 50%;
    opacity: .36;
    filter: blur(23px);
    background: radial-gradient(circle, rgba(255,255,255,.96) 0 16%, rgba(65,139,255,.13) 38%, transparent 74%);
    transition: opacity 150ms ease, filter 150ms ease;
}

.scenario-card--existing .scenario-portal__glow {
    background: radial-gradient(circle, rgba(255,255,255,.96) 0 16%, rgba(11,99,246,.14) 39%, transparent 75%);
}

.scenario-portal__waves {
    position: absolute;
    top: -4%;
    right: -8%;
    width: 68%;
    height: 108%;
    opacity: .4;
    filter: blur(7px);
    transform: translate3d(0,0,0);
    transition: opacity 250ms ease, filter 250ms ease, transform 420ms cubic-bezier(.22,.7,.2,1);
}

.scenario-portal__waves i {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, transparent 43%, rgba(255,255,255,.34) 54%, rgba(89,154,255,.12) 61%, transparent 72%);
    mix-blend-mode: screen;
}

.scenario-portal__waves i:nth-child(1) { right: -18%; bottom: -25%; width: 112%; height: 92%; opacity: .44; transform: rotate(-8deg); }
.scenario-portal__waves i:nth-child(2) { right: -5%; bottom: -8%; width: 94%; height: 78%; opacity: .5; transform: rotate(7deg); }
.scenario-portal__waves i:nth-child(3) { right: 7%; bottom: 9%; width: 79%; height: 66%; opacity: .56; transform: rotate(-5deg); }
.scenario-portal__waves i:nth-child(4) { right: 17%; bottom: 23%; width: 65%; height: 54%; opacity: .62; transform: rotate(8deg); }
.scenario-portal__waves i:nth-child(5) { right: 26%; bottom: 34%; width: 52%; height: 43%; opacity: .68; transform: rotate(-7deg); }
.scenario-portal__waves i:nth-child(6) { right: 34%; bottom: 43%; width: 40%; height: 33%; opacity: .74; transform: rotate(6deg); }
.scenario-portal__waves i:nth-child(7) { right: 41%; bottom: 50%; width: 30%; height: 25%; opacity: .82; transform: rotate(-4deg); }

.scenario-portal__path {
    position: absolute;
    right: -18%;
    bottom: -32%;
    width: 84%;
    height: 70%;
    opacity: .28;
    filter: blur(15px);
    border-radius: 50%;
    background: radial-gradient(ellipse at 45% 18%, rgba(255,255,255,.96) 0 12%, rgba(92,156,255,.18) 38%, transparent 70%);
    transform: rotate(-7deg);
    transition: opacity 250ms ease, filter 250ms ease, transform 420ms cubic-bezier(.22,.7,.2,1);
}

.scenario-card--new .scenario-portal__path {
    background: radial-gradient(ellipse at 45% 18%, rgba(255,255,255,1) 0 12%, rgba(105,166,255,.16) 39%, transparent 70%);
}

.scenario-card__front-surface {
    position: absolute;
    z-index: 1;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
    background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.93) 43%, rgba(255,255,255,.68) 65%, rgba(255,255,255,.2) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.88);
    transition: transform 400ms cubic-bezier(.22,.7,.2,1), box-shadow 400ms ease;
}

.scenario-card--existing .scenario-card__front-surface {
    background: linear-gradient(90deg, rgba(249,253,255,.95) 0%, rgba(244,250,255,.9) 42%, rgba(235,245,255,.61) 65%, rgba(227,240,255,.2) 100%);
}

.scenario-card--new .scenario-card__front-surface { transform-origin: left center; }
.scenario-card--existing .scenario-card__front-surface { transform-origin: left center; }

.scenario-card__content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 50px 44px 46px;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.scenario-card__icon {
    width: 84px;
    height: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-primary);
    background: rgba(235,244,255,.76);
}

.scenario-card__icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.scenario-card h3 {
    max-width: 570px;
    margin: 40px 0 0;
    color: var(--color-heading);
    font-size: clamp(28px, 2.05vw, 33px);
    font-weight: 650;
    line-height: 1.17;
    letter-spacing: -.035em;
}

.scenario-card__message {
    width: 58%;
    min-width: 360px;
    min-height: 116px;
    margin-top: 24px;
}

.scenario-card__message p {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(17px, 1.2vw, 20px);
    font-weight: 450;
    line-height: 1.45;
    letter-spacing: -.018em;
}

.scenario-card__message small {
    max-width: 470px;
    margin-top: 20px;
    display: block;
    color: rgba(23,37,74,.66);
    font-size: clamp(13px, .95vw, 16px);
    font-weight: 400;
    line-height: 1.55;
}

.scenario-card__action {
    margin-top: auto;
    display: flex;
    align-items: center;
}

.scenario-card__cta {
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 13px;
    font-size: 16px;
    font-weight: 600;
    min-width: 276px;
    padding: 0 27px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    box-shadow: 0 12px 27px rgba(11,99,246,.17);
}

.scenario-card--existing .scenario-card__cta {
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

.scenario-card__cta svg {
    width: 25px;
    height: 25px;
    margin-left: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 250ms ease;
}

.scenario-card:is(:hover, .is-hovered, .is-focused, .is-selected) .scenario-portal__depth {
    opacity: .82;
    transform: scale(1);
    transition-delay: 120ms;
}

.scenario-card--new:is(:hover, .is-hovered, .is-focused) .scenario-card__front-surface {
    transform: rotateY(5deg) translateX(2px);
    transition-delay: 200ms;
}

.scenario-card--existing:is(:hover, .is-hovered, .is-focused) .scenario-card__front-surface {
    transform: rotateY(5deg) translateX(2px);
    transition-delay: 200ms;
}

.scenario-card:is(:hover, .is-hovered, .is-focused, .is-selected) .scenario-portal__waves {
    opacity: .76;
    filter: blur(3px);
    transform: translate3d(-4px,-2px,0) scale(1.015);
    transition-delay: 350ms;
}

.scenario-card:is(:hover, .is-hovered, .is-focused, .is-selected) .scenario-portal__path {
    opacity: .56;
    filter: blur(11px);
    transform: rotate(-5deg) translateX(4px) scale(1.02);
    transition-delay: 350ms;
}

.scenario-card:is(:hover, .is-hovered, .is-focused, .is-selected) .scenario-portal__glow {
    opacity: .72;
    filter: blur(18px);
    transition-delay: 450ms;
}

.scenario-card:is(:hover, .is-hovered, .is-focused, .is-selected) .scenario-card__cta svg {
    transform: translateX(4px);
    transition-delay: 350ms;
}

.scenario-card:is(:hover, .is-hovered, .is-focused, .is-selected) {
    box-shadow: 0 34px 86px rgba(20,79,171,.15), 0 0 52px rgba(60,137,255,.13);
}

.scenario-card--new.is-selected .scenario-card__front-surface {
    transform: rotateY(6.5deg) translateX(3px);
    transition-delay: 200ms;
}

.scenario-card--existing.is-selected .scenario-card__front-surface {
    transform: rotateY(6.5deg) translateX(3px);
    transition-delay: 200ms;
}

.scenario-card:focus { outline: none; }
.scenario-card:focus-visible { box-shadow: 0 0 0 2px rgba(82,153,255,.4), 0 30px 80px rgba(20,79,171,.14); }

.scenario-cue {
    margin-top: 26px;
    display: grid;
    justify-items: center;
    gap: 18px;
    color: rgba(23,37,74,.58);
    text-align: center;
}

.scenario-cue svg {
    width: 24px;
    fill: none;
    stroke: rgba(23,37,74,.5);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.scenario-cue p {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -.01em;
}

.scenario-next-marker { height: 1px; scroll-margin-top: 24px; }

@media (max-width: 1180px) {
    .scenario-card { min-height: 480px; }
    .scenario-card__content { padding: 38px 34px 36px; }
    .scenario-card__icon { width: 68px; height: 68px; }
    .scenario-card__icon svg { width: 34px; height: 34px; }
    .scenario-card h3 { margin-top: 30px; font-size: 27px; }
    .scenario-card__message { min-width: 0; width: 68%; min-height: 112px; }
    .scenario-card__message p { font-size: 17px; }
    .scenario-card__cta { min-width: 244px; padding-inline: 20px; font-size: 14px; }
}

@media (max-width: 860px) {
    .scenario-section { padding: 80px 0 58px; }
    .scenario-container { width: min(calc(100% - 40px), 720px); }
    .scenario-header h2 { font-size: clamp(38px, 5.7vw, 48px); white-space: normal; }
    .scenario-grid { margin-top: 50px; grid-template-columns: 1fr; gap: 24px; }
    .scenario-card { min-height: 500px; }
    .scenario-card__content { padding: 40px; }
    .scenario-card__icon { width: 74px; height: 74px; }
    .scenario-card h3 { font-size: 30px; }
    .scenario-card__message { width: 60%; }
    .scenario-portal__waves { width: 64%; }
}

@media (max-width: 560px) {
    .scenario-section { padding: 66px 0 48px; }
    .scenario-container { width: calc(100% - 28px); }
    .scenario-header h2 { font-size: clamp(32px, 9.2vw, 40px); line-height: 1.12; }
    .scenario-grid { margin-top: 38px; gap: 18px; }
    .scenario-card { min-height: 460px; border-radius: 22px; }
    .scenario-card__content { padding: 24px; }
    .scenario-card__icon { width: 62px; height: 62px; }
    .scenario-card__icon svg { width: 31px; height: 31px; }
    .scenario-card h3 { max-width: 84%; margin-top: 27px; font-size: clamp(24px, 7.2vw, 30px); }
    .scenario-card__message { width: 76%; margin-top: 17px; }
    .scenario-card__message p { font-size: 16px; }
    .scenario-card__message small { margin-top: 11px; font-size: 11.5px; }
    .scenario-card__cta { min-width: 0; flex: 1 1 auto; padding-inline: 16px; font-size: 13px; }
    .scenario-card__cta { min-height: 54px; border-radius: 12px; }
    .scenario-card__cta svg { width: 22px; height: 22px; margin-left: 14px; }
    .scenario-portal__waves { top: 4%; right: -18%; width: 78%; height: 92%; opacity: .58; }
    .scenario-portal__path { right: -16%; width: 78%; }
    .scenario-cue { margin-top: 22px; gap: 12px; }
    .scenario-cue p { font-size: 13px; }
}

@media (hover: none) {
    .scenario-card:is(:hover, .is-hovered) .scenario-card__front-surface { transform: none; }
    .scenario-card--new.is-selected .scenario-card__front-surface { transform: rotateY(3deg) translateX(1px); }
    .scenario-card--existing.is-selected .scenario-card__front-surface { transform: rotateY(3deg) translateX(1px); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .scenario-card__front-surface,
    .scenario-card:is(:hover, .is-hovered, .is-focused, .is-selected) .scenario-card__front-surface { transform: none !important; }
    .scenario-card:is(:hover, .is-hovered, .is-focused, .is-selected) .scenario-portal__waves,
    .scenario-card:is(:hover, .is-hovered, .is-focused, .is-selected) .scenario-portal__path { filter: none; }
}

/* Screen 3: development route */
.why-svoi {
    position: relative;
    min-height: 940px;
    padding: 142px 0 72px;
    overflow: hidden;
    scroll-margin-top: calc(var(--header-height) + 20px);
    background:
        radial-gradient(ellipse at 78% 68%, rgba(72,140,248,.09), transparent 38%),
        radial-gradient(ellipse at 38% 48%, rgba(255,255,255,.98), transparent 54%),
        linear-gradient(180deg, rgba(250,252,255,.98), #f7faff);
}

.why-svoi__container {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 48px), 1480px);
    margin: 0 auto;
}

.why-svoi__header { text-align: center; }

.why-svoi__header h2 {
    margin: 0;
    color: var(--color-heading);
    font-size: clamp(42px, 3.25vw, 52px);
    font-weight: 650;
    line-height: 1.18;
    letter-spacing: -.047em;
}

.why-svoi__header h2 span,
.why-svoi__header h2 strong { display: block; }

.why-svoi__header h2 strong {
    color: var(--color-primary);
    font-weight: inherit;
}

.why-svoi__header p {
    margin: 48px auto 0;
    color: rgba(35,56,96,.65);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -.018em;
}

.why-svoi__mobile-break { display: none; }

.development-route {
    position: relative;
    height: 386px;
    margin-top: 94px;
}

.development-route__line {
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 300px;
    overflow: visible;
}

.development-route__main-line,
.development-route__glow-line,
.development-route__highlight-line,
.development-route__hover-line {
    fill: none;
    stroke-linecap: round;
}

.development-route__main-line {
    stroke: url(#route-line-gradient);
    stroke-width: 2.35;
}

.development-route__glow-line {
    stroke: url(#route-glow-gradient);
    stroke-width: 21;
    opacity: .72;
    filter: url(#route-soft-glow);
}

.development-route__highlight-line {
    stroke: url(#route-active-gradient);
    stroke-width: 2.58;
}

.development-route__hover-line {
    stroke: rgba(77,147,255,.72);
    stroke-width: 6;
    stroke-dasharray: 12 88;
    stroke-dashoffset: var(--hover-segment-offset, 0);
    opacity: 0;
    filter: url(#route-soft-glow);
    pointer-events: none;
}

.development-route__marker {
    fill: #fff;
    vector-effect: non-scaling-stroke;
}

.development-route__marker--muted {
    stroke: #c7d1e0;
    stroke-width: 2;
    filter: drop-shadow(0 3px 5px rgba(26,67,133,.14));
}

.development-route__marker--active {
    stroke: #54b6f4;
    stroke-width: 2;
    filter: drop-shadow(0 0 8px rgba(11,99,246,.24));
}

.development-route__marker--stop {
    stroke: #7283a1;
    stroke-width: 3;
    filter: drop-shadow(0 0 10px rgba(72,126,207,.3));
}

.development-route__marker--final {
    stroke: var(--color-primary);
    stroke-width: 2;
    filter: drop-shadow(0 0 13px rgba(11,99,246,.62));
}

.development-route__steps {
    position: absolute;
    z-index: 1;
    inset: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.development-step {
    --node-y: 247px;
    --content-shift: 0px;
    position: absolute;
    top: 0;
    width: 190px;
    min-height: 360px;
    color: #71819f;
    text-align: center;
    transform: translateX(-50%);
}

.development-step > svg,
.development-step > h3,
.development-step > p {
    transform: translateY(var(--content-shift));
}

.development-step > svg {
    margin-inline: auto;
    display: block;
    width: 39px;
    height: 39px;
    color: #6d7e9e;
    stroke-width: 1.75;
}

.development-step h3 {
    width: 100%;
    margin: 17px 0 0;
    color: var(--color-heading);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
    letter-spacing: -.02em;
}

.development-step p {
    width: 100%;
    margin: 8px 0 0;
    color: #71819f;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.45;
}

.development-step__node {
    position: absolute;
    display: none;
    top: var(--node-y);
    left: 50%;
    width: 19px;
    height: 19px;
    border: 2px solid #c7d1e0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 3px 9px rgba(26,67,133,.16), 0 0 0 8px rgba(255,255,255,.26);
    transform: translate(-50%,-50%);
}

.development-step--license { left: 5.4225%; --content-shift: 0px; }
.development-step--launch { left: 18.7324%; --content-shift: -27px; }
.development-step--processes { left: 37.6761%; --content-shift: 0px; }
.development-step--automation { left: 51.4085%; --content-shift: -27px; }
.development-step--integrations { left: 64.7183%; --content-shift: 0px; }
.development-step--ai { left: 78.1690%; --content-shift: -27px; }
.development-step--scale { left: 91.6901%; --content-shift: 0px; }

.development-step--license > svg { color: #a6b1c3; }
.development-step--launch > svg { color: #9aa8bd; }
.development-step--processes > svg { color: #7e90ad; }
.development-step--automation > svg { color: #7086ab; }
.development-step--integrations > svg { color: #607dae; }
.development-step--ai > svg { color: #4575bf; }

.development-step--processes .development-step__node,
.development-step--automation .development-step__node,
.development-step--integrations .development-step__node,
.development-step--ai .development-step__node,
.development-step--scale .development-step__node {
    border-color: #54b6f4;
    box-shadow: 0 0 0 8px rgba(74,164,255,.08), 0 0 24px rgba(11,99,246,.27);
}

.development-step--scale > svg { color: var(--color-primary); }

.development-step--scale .development-step__node {
    border-color: var(--color-primary);
    background: radial-gradient(circle at 42% 38%, #fff 0 31%, #e7f2ff 56%, #fff 100%);
    box-shadow: 0 0 0 9px rgba(11,99,246,.11), 0 0 44px rgba(11,99,246,.62), inset 0 0 8px rgba(11,99,246,.24);
}

.development-step--scale > strong {
    position: absolute;
    top: 330px;
    left: 50%;
    width: 190px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.45;
    transform: translateX(-50%);
}

.development-route__stop {
    position: absolute;
    top: -28px;
    left: 28.3803%;
    width: 190px;
    height: 370px;
    color: #536b8f;
    text-align: center;
    transform: translateX(-50%);
}

.development-route__stop > span {
    position: absolute;
    top: 0;
    bottom: 66px;
    left: 50%;
    border-left: 1px dashed rgba(112,130,160,.5);
}

.development-route__stop > span::after {
    content: "";
    position: absolute;
    display: none;
    bottom: 30px;
    left: 50%;
    width: 19px;
    height: 19px;
    border: 3px solid #7283a1;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 8px rgba(123,161,219,.09), 0 0 32px rgba(72,126,207,.3), inset 0 0 8px rgba(91,139,211,.15);
    transform: translateX(-50%);
}

.development-route__stop p {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.45;
}

/* Desktop route storytelling. The completed state is identical to the approved static layout. */
@media (min-width: 861px) and (prefers-reduced-motion: no-preference) {
    .why-svoi.is-motion-ready .why-svoi__header h2,
    .why-svoi.is-motion-ready .why-svoi__header p {
        opacity: 0;
        transform: translateY(15px);
        transition:
            opacity 620ms cubic-bezier(.22,1,.36,1),
            transform 620ms cubic-bezier(.22,1,.36,1);
    }

    .why-svoi.is-motion-ready.is-title-visible .why-svoi__header h2,
    .why-svoi.is-motion-ready.is-subtitle-visible .why-svoi__header p {
        opacity: 1;
        transform: translateY(0);
    }

    .why-svoi.is-motion-ready .development-route__main-line,
    .why-svoi.is-motion-ready .development-route__highlight-line,
    .why-svoi.is-motion-ready .development-route__glow-line {
        stroke-dasharray: var(--route-length);
        stroke-dashoffset: var(--route-length);
    }

    .why-svoi.is-motion-ready .development-route__main-line {
        transition: stroke-dashoffset 720ms cubic-bezier(.22,1,.36,1);
    }

    .why-svoi.is-motion-ready .development-route__highlight-line,
    .why-svoi.is-motion-ready .development-route__glow-line {
        transition: stroke-dashoffset 1280ms cubic-bezier(.22,1,.36,1);
    }

    .why-svoi.is-motion-ready .development-route.is-standard-line-visible .development-route__main-line,
    .why-svoi.is-motion-ready .development-route.is-development-line-visible .development-route__highlight-line,
    .why-svoi.is-motion-ready .development-route.is-development-line-visible .development-route__glow-line {
        stroke-dashoffset: 0;
    }

    .why-svoi.is-motion-ready .development-step,
    .why-svoi.is-motion-ready .development-route__stop,
    .why-svoi.is-motion-ready .development-route__marker {
        opacity: 0;
    }

    .why-svoi.is-motion-ready .development-step,
    .why-svoi.is-motion-ready .development-route__stop {
        transition:
            opacity 430ms cubic-bezier(.22,1,.36,1),
            filter 220ms ease;
    }

    .why-svoi.is-motion-ready .development-step > svg,
    .why-svoi.is-motion-ready .development-step > h3,
    .why-svoi.is-motion-ready .development-step > p {
        --motion-y: 13px;
        transform: translateY(calc(var(--content-shift) + var(--motion-y)));
        transition:
            transform 520ms cubic-bezier(.22,1,.36,1),
            color 220ms ease,
            opacity 220ms ease;
    }

    .why-svoi.is-motion-ready .development-route__stop {
        transform: translateX(-50%) translateY(10px);
        transition:
            opacity 470ms cubic-bezier(.22,1,.36,1),
            transform 520ms cubic-bezier(.22,1,.36,1),
            color 220ms ease;
    }

    .why-svoi.is-motion-ready .development-route__stop > span {
        transform: scaleY(0);
        transform-origin: center bottom;
        transition: transform 520ms cubic-bezier(.22,1,.36,1);
    }

    .why-svoi.is-motion-ready .development-route__marker {
        transition:
            opacity 360ms cubic-bezier(.22,1,.36,1),
            filter 220ms ease,
            stroke 220ms ease;
    }

    .why-svoi.is-motion-ready .development-step.is-revealed,
    .why-svoi.is-motion-ready .development-route__stop.is-revealed,
    .why-svoi.is-motion-ready .development-route__marker.is-revealed {
        opacity: 1;
    }

    .why-svoi.is-motion-ready .development-step.is-revealed > svg,
    .why-svoi.is-motion-ready .development-step.is-revealed > h3,
    .why-svoi.is-motion-ready .development-step.is-revealed > p {
        --motion-y: 0px;
    }

    .why-svoi.is-motion-ready .development-route__stop.is-revealed {
        transform: translateX(-50%) translateY(0);
    }

    .why-svoi.is-motion-ready .development-route__stop.is-revealed > span {
        transform: scaleY(1);
    }

    .why-svoi.is-motion-ready .development-route.is-final-halo .development-route__marker--final {
        filter: drop-shadow(0 0 20px rgba(11,99,246,.72));
    }
}

@media (hover: hover) and (pointer: fine) and (min-width: 861px) {
    .development-route.is-route-complete .development-step,
    .development-route.is-route-complete .development-route__stop {
        transition: opacity 220ms ease, filter 220ms ease, color 220ms ease;
    }

    .development-route.is-route-complete.is-stage-hovered .development-step,
    .development-route.is-route-complete.is-stage-hovered .development-route__stop {
        opacity: .94;
    }

    .development-route.is-route-complete.is-stage-hovered .is-hover-target {
        opacity: 1;
    }

    .development-route.is-route-complete .development-step.is-hover-target > svg,
    .development-route.is-route-complete .development-step.is-hover-target > h3 {
        color: var(--color-primary);
    }

    .development-route.is-route-complete[data-hover-stage="license"] { --hover-segment-offset: 0; }
    .development-route.is-route-complete[data-hover-stage="launch"] { --hover-segment-offset: -11; }
    .development-route.is-route-complete[data-hover-stage="processes"] { --hover-segment-offset: -31; }
    .development-route.is-route-complete[data-hover-stage="automation"] { --hover-segment-offset: -45; }
    .development-route.is-route-complete[data-hover-stage="integrations"] { --hover-segment-offset: -59; }
    .development-route.is-route-complete[data-hover-stage="ai"] { --hover-segment-offset: -72; }
    .development-route.is-route-complete[data-hover-stage="scale"] { --hover-segment-offset: -86; }

    .development-route.is-route-complete.is-stage-hovered:not([data-hover-stage="stop"]) .development-route__hover-line {
        opacity: .46;
        transition: opacity 220ms ease;
    }

    .development-route.is-route-complete[data-hover-stage="stop"] .development-route__main-line {
        opacity: .72;
    }

    .development-route.is-route-complete[data-hover-stage="stop"] .development-route__highlight-line,
    .development-route.is-route-complete[data-hover-stage="stop"] .development-route__glow-line {
        filter: brightness(1.12);
    }

    .development-route.is-route-complete[data-hover-stage="stop"] .development-route__stop {
        color: #405b84;
    }

    .development-route.is-route-complete[data-hover-stage="license"] [data-route-marker="license"],
    .development-route.is-route-complete[data-hover-stage="launch"] [data-route-marker="launch"],
    .development-route.is-route-complete[data-hover-stage="stop"] [data-route-marker="stop"],
    .development-route.is-route-complete[data-hover-stage="processes"] [data-route-marker="processes"],
    .development-route.is-route-complete[data-hover-stage="automation"] [data-route-marker="automation"],
    .development-route.is-route-complete[data-hover-stage="integrations"] [data-route-marker="integrations"],
    .development-route.is-route-complete[data-hover-stage="ai"] [data-route-marker="ai"],
    .development-route.is-route-complete[data-hover-stage="scale"] [data-route-marker="scale"] {
        filter: drop-shadow(0 0 11px rgba(11,99,246,.42));
    }
}

.why-svoi__glow {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(4px);
}

.why-svoi__glow--left {
    left: -26%;
    bottom: -30%;
    width: 74%;
    height: 52%;
    background: radial-gradient(ellipse, rgba(11,99,246,.08), transparent 69%);
}

.why-svoi__glow--right {
    right: -20%;
    bottom: -20%;
    width: 75%;
    height: 72%;
    background: radial-gradient(ellipse, rgba(82,145,248,.12), transparent 68%);
}

.why-svoi__wave {
    position: absolute;
    z-index: 0;
    width: 92vw;
    height: 31vw;
    max-height: 390px;
    border: 1px solid rgba(255,255,255,.82);
    border-radius: 50%;
    box-shadow: 0 0 72px rgba(11,99,246,.045);
}

.why-svoi__wave--one { left: -25vw; bottom: -18vw; transform: rotate(6deg); }
.why-svoi__wave--two { right: -28vw; bottom: -15vw; transform: rotate(-8deg); }

@media (max-width: 1180px) {
    .why-svoi { min-height: 860px; padding-top: 112px; }
    .why-svoi__header h2 { font-size: clamp(36px, 4vw, 46px); }
    .development-route { margin-top: 76px; transform: scale(.92); transform-origin: top center; }
    .development-step { width: 160px; }
    .development-step h3 { font-size: 12.5px; }
    .development-step p { font-size: 11.5px; }
}

@media (max-width: 860px) {
    .why-svoi {
        min-height: 0;
        padding: 92px 0 78px;
    }

    .why-svoi__container { width: min(calc(100% - 40px), 680px); }
    .why-svoi__header h2 { font-size: clamp(34px, 6vw, 44px); }
    .why-svoi__header p { margin-top: 34px; font-size: 16px; }
    .why-svoi__mobile-break { display: initial; }

    .development-route {
        height: auto;
        margin-top: 66px;
        transform: none;
    }

    .development-route__line { display: none; }

    .development-route__steps {
        position: relative;
        inset: auto;
        display: flex;
        flex-direction: column;
    }

    .development-route__steps::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 40px;
        bottom: 64px;
        left: 28px;
        width: 2px;
        background: linear-gradient(180deg, #cbd4e2 0 25%, #70a9ff 38%, var(--color-primary) 100%);
        box-shadow: 0 0 18px rgba(11,99,246,.13);
    }

    .development-step,
    .development-route__stop {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        min-height: 112px;
        padding: 0 0 24px 82px;
        display: grid;
        grid-template-columns: 44px 1fr;
        column-gap: 18px;
        color: #71819f;
        text-align: left;
        transform: none;
    }

    .development-step > svg {
        grid-row: 1 / 3;
        width: 38px;
        height: 38px;
    }

    .development-step > svg,
    .development-step > h3,
    .development-step > p { transform: none; }

    .development-step h3 { margin: 1px 0 0; font-size: 15px; }
    .development-step p { margin-top: 6px; font-size: 13px; }

    .development-step__node {
        display: block;
        top: 20px;
        left: 28px;
        width: 17px;
        height: 17px;
    }

    .development-route__stop {
        min-height: 92px;
        padding-left: 82px;
        display: block;
    }

    .development-route__stop > span {
        top: -16px;
        bottom: 20px;
        left: 28px;
    }

    .development-route__stop > span::after {
        display: block;
        bottom: 12px;
        width: 17px;
        height: 17px;
    }

    .development-route__stop p {
        position: static;
        padding-top: 6px;
        font-size: 13px;
        text-align: left;
    }

    .development-step--scale { min-height: 156px; }

    .development-step--scale > strong {
        position: static;
        grid-column: 2;
        width: auto;
        margin-top: 13px;
        font-size: 13px;
        transform: none;
    }
}

@media (max-width: 560px) {
    .why-svoi { padding: 72px 0 58px; }
    .why-svoi__container { width: calc(100% - 28px); }
    .why-svoi__header h2 { font-size: clamp(29px, 8.5vw, 36px); line-height: 1.15; }
    .why-svoi__header p { margin-top: 28px; font-size: 14px; line-height: 1.6; }
    .development-route { margin-top: 50px; }
    .development-step, .development-route__stop { padding-left: 70px; }
    .development-step--scale > strong { grid-column: 2; }
}

@media (max-width: 860px) and (prefers-reduced-motion: no-preference) {
    .why-svoi.is-motion-ready .why-svoi__header h2,
    .why-svoi.is-motion-ready .why-svoi__header p {
        opacity: 0;
        transform: translateY(14px);
        transition:
            opacity 620ms cubic-bezier(.22,1,.36,1),
            transform 620ms cubic-bezier(.22,1,.36,1);
    }

    .why-svoi.is-motion-ready.is-title-visible .why-svoi__header h2,
    .why-svoi.is-motion-ready.is-subtitle-visible .why-svoi__header p {
        opacity: 1;
        transform: translateY(0);
    }

    .why-svoi.is-motion-ready .development-route__steps::before {
        transform: scaleY(0);
        transform-origin: center top;
        transition: transform 720ms cubic-bezier(.22,1,.36,1);
    }

    .why-svoi.is-motion-ready .development-route.is-standard-line-visible .development-route__steps::before {
        transform: scaleY(.30);
    }

    .why-svoi.is-motion-ready .development-route.is-development-line-visible .development-route__steps::before {
        transform: scaleY(1);
        transition-duration: 1280ms;
    }

    .why-svoi.is-motion-ready .development-step,
    .why-svoi.is-motion-ready .development-route__stop {
        opacity: 0;
        transform: translateY(12px);
        transition:
            opacity 430ms cubic-bezier(.22,1,.36,1),
            transform 520ms cubic-bezier(.22,1,.36,1);
    }

    .why-svoi.is-motion-ready .development-step__node {
        opacity: 0;
        transition:
            opacity 340ms cubic-bezier(.22,1,.36,1),
            box-shadow 220ms ease;
    }

    .why-svoi.is-motion-ready .development-step.is-revealed,
    .why-svoi.is-motion-ready .development-route__stop.is-revealed {
        opacity: 1;
        transform: translateY(0);
    }

    .why-svoi.is-motion-ready .development-step.is-revealed .development-step__node {
        opacity: 1;
    }

    .why-svoi.is-motion-ready .development-route.is-final-halo .development-step--scale .development-step__node {
        box-shadow: 0 0 0 9px rgba(11,99,246,.13), 0 0 34px rgba(11,99,246,.55), inset 0 0 8px rgba(11,99,246,.22);
    }
}

/* Screen 4: questions after purchasing a license */
.post-license {
    position: relative;
    min-height: 900px;
    padding: 44px 0 92px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 46%, rgba(111,164,248,.09), transparent 45%),
        radial-gradient(ellipse at 14% 72%, rgba(225,237,255,.74), transparent 34%),
        linear-gradient(180deg, #fbfcff 0%, #f9fbff 58%, #f8fbff 100%);
}

.post-license::after {
    content: "";
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    height: 190px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(248, 251, 255, 0) 0%,
        rgba(250, 252, 255, .58) 48%,
        rgba(255, 255, 255, 1) 100%
    );
}

.post-license__container {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 48px), 1440px);
    margin: 0 auto;
}

.post-license__header {
    position: relative;
    z-index: 4;
    text-align: center;
}

.post-license__eyebrow,
.post-license__subtitle {
    margin: 0;
    color: rgba(63,82,119,.63);
    font-weight: 600;
    letter-spacing: -.025em;
}

.post-license__eyebrow {
    font-size: 20px;
    line-height: 1.3;
}

.post-license__header h2 {
    margin: 8px 0 0;
    color: var(--color-heading);
    font-size: clamp(38px, 3.05vw, 49px);
    font-weight: 650;
    line-height: 1.14;
    letter-spacing: -.047em;
}

.post-license__subtitle {
    margin-top: 12px;
    font-size: 19px;
    line-height: 1.35;
}

.pain-stage {
    position: relative;
    width: min(100%, 1360px);
    height: 550px;
    margin: 20px auto 0;
}

.pain-stage__orbit,
.pain-stage__axis {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.pain-stage__orbit {
    left: 50%;
    border: 1px dashed rgba(80,145,248,.085);
    border-radius: 50%;
    transform: translateX(-50%);
}

.pain-stage__orbit--outer {
    top: 42px;
    width: 1160px;
    height: 458px;
}

.pain-stage__orbit--inner {
    top: 98px;
    width: 1000px;
    height: 350px;
    border-color: rgba(80,145,248,.06);
}

.pain-stage__axis {
    border-color: rgba(80,145,248,.075);
    border-style: dashed;
}

.pain-stage__axis--horizontal {
    top: 285px;
    right: 66px;
    left: 66px;
    border-top-width: 1px;
}

.pain-stage__axis--vertical {
    top: 34px;
    bottom: 4px;
    left: 50%;
    border-left-width: 1px;
}

.question-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 86px;
    padding: 14px 25px 14px 15px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 26px;
    background: rgba(255,255,255,.91);
    box-shadow: 0 16px 38px rgba(50,82,139,.075), inset 0 1px 0 rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
}

.question-card p {
    margin: 0;
    color: var(--color-heading);
    font-size: 13px;
    font-weight: 550;
    line-height: 1.55;
    letter-spacing: -.025em;
}

.question-card__icon {
    flex: 0 0 49px;
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.question-card__icon svg {
    width: 25px;
    height: 25px;
    stroke-width: 2;
}

.question-card__icon--blue { color: #1684ff; background: #eaf4ff; box-shadow: 0 6px 18px rgba(22,132,255,.12); }
.question-card__icon--blue-soft { color: #1487f6; background: #eaf4ff; box-shadow: 0 6px 18px rgba(22,132,255,.11); }
.question-card__icon--violet { color: #8555ee; background: #f1ebff; box-shadow: 0 6px 18px rgba(133,85,238,.13); }
.question-card__icon--green { color: #2fbe45; background: #f0fbf1; box-shadow: 0 6px 18px rgba(47,190,69,.1); }
.question-card__icon--amber { color: #f3aa15; background: #fff6dc; box-shadow: 0 6px 18px rgba(243,170,21,.11); }
.question-card__icon--orange { color: #f05f1d; background: #fff0e8; box-shadow: 0 6px 18px rgba(240,95,29,.1); }

.question-card--managers { top: 0; left: 36px; width: 304px; }
.question-card--automate { top: 0; left: 50%; width: 256px; transform: translateX(-50%); }
.question-card--capacity { top: 14px; right: 20px; width: 294px; }
.question-card--manual { top: 230px; left: -12px; width: 256px; }
.question-card--money { top: 236px; right: -8px; width: 268px; }
.question-card--ai { bottom: 4px; left: 64px; width: 232px; }
.question-card--priority { bottom: -23px; left: 50%; width: 248px; transform: translateX(-50%); }
.question-card--next { right: 52px; bottom: -6px; width: 230px; }

.crm-window {
    position: absolute;
    z-index: 2;
    top: 105px;
    left: 50%;
    width: 754px;
    height: 360px;
    overflow: hidden;
    border: 1px solid rgba(219,229,244,.74);
    border-radius: 15px;
    background: rgba(255,255,255,.8);
    box-shadow: 0 22px 58px rgba(52,89,155,.085), 0 4px 16px rgba(62,99,166,.045);
    opacity: .88;
    filter: saturate(.9) contrast(.94);
    transform: translateX(-50%);
}

.crm-window__topbar {
    height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eef2f8;
    background: rgba(255,255,255,.96);
}

.crm-window__topbar > strong {
    width: 145px;
    padding-left: 20px;
    color: #102b5e;
    font-size: 16px;
    letter-spacing: -.035em;
}

.crm-window__topbar > strong span { color: #168dff; }

.crm-window__search {
    width: 292px;
    height: 29px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid #edf1f7;
    border-radius: 15px;
    color: #9aaac4;
    box-shadow: 0 3px 9px rgba(39,72,128,.06);
}

.crm-window__search svg { width: 13px; height: 13px; }
.crm-window__search span { font-size: 8px; white-space: nowrap; }

.crm-window__userbar {
    margin-left: auto;
    padding-right: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #91a2bf;
}

.crm-window__userbar time { color: #8093b5; font-size: 15px; }
.crm-window__userbar svg { width: 14px; height: 14px; fill: currentColor; }
.crm-window__avatar { width: 25px; height: 25px; border: 3px solid #eef3fa; border-radius: 50%; background: radial-gradient(circle at 50% 38%, #d9b69c 0 24%, #293b56 25% 40%, #f2f5fa 41%); }

.crm-sidebar {
    position: absolute;
    top: 52px;
    bottom: 0;
    left: 0;
    width: 145px;
    padding: 10px 9px;
    border-right: 1px solid #edf1f7;
    background: rgba(248,251,255,.9);
}

.crm-sidebar ul { margin: 0; padding: 0; list-style: none; }
.crm-sidebar li { height: 27px; padding: 0 10px; display: flex; align-items: center; gap: 12px; border-radius: 5px; color: #7286a8; font-size: 8px; }
.crm-sidebar li svg { width: 11px; height: 11px; stroke-width: 2; }
.crm-sidebar li.is-active { color: #0879e9; background: #e4f2ff; font-weight: 650; }

.crm-board {
    position: absolute;
    top: 52px;
    right: 0;
    bottom: 0;
    left: 145px;
    padding: 12px 13px;
    background: rgba(249,251,255,.85);
}

.crm-board__toolbar { height: 35px; display: flex; align-items: center; gap: 13px; color: #9aabc6; }
.crm-board__toolbar strong { color: #0d234f; font-size: 15px; }
.crm-board__toolbar > svg { width: 13px; height: 13px; }
.crm-board__toolbar > span { margin-left: 2px; padding: 7px 13px; border-radius: 4px; background: #38aef3; color: #fff; font-size: 7px; }
.crm-board__toolbar button { width: 30px; height: 27px; padding: 0; display: grid; place-items: center; border: 0; border-radius: 5px; background: #fff; color: #6583aa; box-shadow: 0 2px 8px rgba(40,72,128,.05); }
.crm-board__toolbar button svg { width: 12px; height: 12px; }

.kanban { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.kanban__heading { height: 27px; padding: 0 9px; display: flex; align-items: center; gap: 3px; border: 1px solid #eef2f8; border-radius: 5px; background: #fff; color: #31466c; font-size: 7px; font-weight: 650; box-shadow: 0 2px 8px rgba(53,82,132,.035); }
.kanban__heading small { color: #8292ad; font-size: inherit; }
.kanban__card { position: relative; height: 68px; margin-top: 7px; padding: 11px 10px; border: 1px solid #f0f3f8; border-radius: 6px; background: rgba(255,255,255,.94); box-shadow: 0 4px 12px rgba(44,75,127,.045); }
.kanban__line { display: block; width: 55%; height: 5px; margin-bottom: 6px; border-radius: 3px; background: #e3e9f2; }
.kanban__line--wide { width: 72%; background: #cfd8e6; }
.kanban__line--short { width: 34%; height: 4px; }
.kanban__meta { position: absolute; right: 9px; bottom: 8px; left: 9px; display: flex; align-items: center; justify-content: flex-end; gap: 5px; }
.kanban__person { margin-right: auto; width: 14px; height: 14px; border-radius: 50%; background: #dfe6f1; box-shadow: inset 0 -4px 0 rgba(188,199,217,.42); }
.kanban__meta i { width: 6px; height: 6px; border-radius: 50%; background: #dce4ef; }

.post-license__conclusion { margin-top: 82px; text-align: center; }
.post-license__conclusion h3 { margin: 0; color: var(--color-heading); font-size: clamp(25px, 2vw, 30px); font-weight: 700; line-height: 1.28; letter-spacing: -.035em; }
.post-license__conclusion h3 strong { color: #2997f4; font-weight: inherit; }
.post-license__conclusion p { margin: 14px 0 0; color: rgba(63,82,119,.63); font-size: 17px; font-weight: 500; line-height: 1.55; letter-spacing: -.02em; }

@media (max-width: 1180px) {
    .pain-stage { transform: scale(.86); transform-origin: top center; margin-bottom: -74px; }
}

@media (max-width: 860px) {
    .post-license { min-height: 0; padding: 66px 0 80px; }
    .post-license__container { width: min(calc(100% - 32px), 680px); }
    .post-license__eyebrow { font-size: 16px; }
    .post-license__header h2 { margin-top: 10px; font-size: clamp(30px, 7vw, 42px); }
    .post-license__subtitle { margin-top: 14px; font-size: 16px; }
    .pain-stage { width: 100%; height: auto; margin-top: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; transform: none; }
    .pain-stage__orbit, .pain-stage__axis { display: none; }
    .crm-window { position: relative; top: auto; left: auto; grid-column: 1 / -1; grid-row: 1; width: 100%; height: auto; aspect-ratio: 754 / 380; transform: none; }
    .question-card { position: relative; inset: auto; width: auto; min-height: 94px; transform: none; padding: 14px; gap: 13px; border-radius: 23px; }
    .question-card p { font-size: 12px; line-height: 1.48; }
    .question-card p br { display: initial; }
    .question-card__icon { flex-basis: 42px; width: 42px; height: 42px; }
    .question-card__icon svg { width: 22px; height: 22px; }
    .post-license__conclusion { margin-top: 54px; }
    .post-license__conclusion p { font-size: 15px; }
    .post-license__conclusion p br { display: initial; }

    .crm-window__topbar {
        height: clamp(30px, 6.9vw, 52px);
    }

    .crm-window__topbar > strong {
        width: 19.2%;
        padding-left: clamp(8px, 2.6vw, 20px);
        font-size: clamp(10px, 2.1vw, 16px);
    }

    .crm-window__search {
        width: 38.7%;
        height: clamp(18px, 3.8vw, 29px);
        gap: clamp(4px, 1.3vw, 10px);
        padding: 0 clamp(5px, 1.6vw, 12px);
    }

    .crm-window__search svg { width: clamp(7px, 1.7vw, 13px); height: clamp(7px, 1.7vw, 13px); }
    .crm-window__search span { overflow: hidden; font-size: clamp(4.5px, 1vw, 8px); text-overflow: ellipsis; }

    .crm-window__userbar {
        padding-right: clamp(7px, 2.4vw, 18px);
        gap: clamp(5px, 2.1vw, 16px);
    }

    .crm-window__userbar time { font-size: clamp(9px, 2vw, 15px); }
    .crm-window__userbar svg { width: clamp(8px, 1.8vw, 14px); height: clamp(8px, 1.8vw, 14px); }
    .crm-window__avatar { width: clamp(15px, 3.3vw, 25px); height: clamp(15px, 3.3vw, 25px); border-width: 2px; }

    .crm-sidebar {
        top: clamp(30px, 6.9vw, 52px);
        width: 19.2%;
        padding: clamp(4px, 1.3vw, 10px) clamp(4px, 1.2vw, 9px);
    }

    .crm-sidebar li {
        height: clamp(15px, 3.58vw, 27px);
        padding: 0 clamp(4px, 1.3vw, 10px);
        gap: clamp(4px, 1.6vw, 12px);
        font-size: clamp(4.8px, 1.05vw, 8px);
    }

    .crm-sidebar li svg { width: clamp(6px, 1.45vw, 11px); height: clamp(6px, 1.45vw, 11px); }

    .crm-board {
        top: clamp(30px, 6.9vw, 52px);
        left: 19.2%;
        padding: clamp(5px, 1.6vw, 12px) clamp(5px, 1.7vw, 13px);
    }

    .crm-board__toolbar {
        height: clamp(22px, 4.65vw, 35px);
        gap: clamp(4px, 1.7vw, 13px);
    }

    .crm-board__toolbar strong { font-size: clamp(8px, 2vw, 15px); }
    .crm-board__toolbar > svg { width: clamp(7px, 1.7vw, 13px); height: clamp(7px, 1.7vw, 13px); }
    .crm-board__toolbar > span { padding: clamp(4px, .9vw, 7px) clamp(6px, 1.7vw, 13px); font-size: clamp(4px, .92vw, 7px); }
    .crm-board__toolbar button { width: clamp(17px, 4vw, 30px); height: clamp(16px, 3.58vw, 27px); }

    .kanban { gap: clamp(3px, 1.3vw, 10px); }
    .kanban__column { min-width: 0; }
    .kanban__heading { height: clamp(17px, 3.58vw, 27px); padding: 0 clamp(4px, 1.2vw, 9px); font-size: clamp(4.5px, .93vw, 7px); }
    .kanban__heading span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .kanban__card { height: clamp(32px, 9vw, 68px); margin-top: clamp(3px, .93vw, 7px); padding: clamp(5px, 1.45vw, 11px) clamp(5px, 1.3vw, 10px); }
    .kanban__line { height: clamp(2px, .66vw, 5px); margin-bottom: clamp(3px, .8vw, 6px); }
    .kanban__line--short { height: clamp(2px, .53vw, 4px); }
    .kanban__meta { right: clamp(4px, 1.2vw, 9px); bottom: clamp(4px, 1.05vw, 8px); left: clamp(4px, 1.2vw, 9px); gap: clamp(2px, .66vw, 5px); }
    .kanban__person { width: clamp(7px, 1.85vw, 14px); height: clamp(7px, 1.85vw, 14px); }
    .kanban__meta i { width: clamp(3px, .8vw, 6px); height: clamp(3px, .8vw, 6px); }
}

@media (max-width: 560px) {
    .post-license { padding: 52px 0 48px; }
    .post-license__container { width: calc(100% - 28px); }
    .pain-stage { margin-top: 30px; grid-template-columns: 1fr; gap: 12px; }
    .crm-window { grid-column: 1; overflow: hidden; }
    .question-card { min-height: 78px; padding: 12px 14px; border-radius: 21px; }
    .question-card p { font-size: 13px; }
    .question-card__icon { flex-basis: 40px; width: 40px; height: 40px; }
    .question-card__icon svg { width: 21px; height: 21px; }
    .crm-sidebar { width: 15%; }
    .crm-sidebar li { height: 13px; padding: 0; justify-content: center; }
    .crm-sidebar li span { display: none; }
    .crm-board { left: 15%; }
    .kanban__card:last-child { display: none; }
    .post-license__conclusion { margin-top: 46px; }
    .post-license__conclusion h3 { font-size: clamp(29px, 8.4vw, 36px); }
    .post-license__conclusion p { font-size: 14px; line-height: 1.65; }
}

/* Screen 4: staged story animation (layout remains unchanged) */
@media (prefers-reduced-motion: no-preference) {
    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .post-license__eyebrow,
    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .post-license__header h2,
    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .post-license__subtitle,
    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .post-license__conclusion h3,
    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .post-license__conclusion p,
    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .question-card {
        opacity: 0;
    }

    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .post-license__eyebrow,
    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .post-license__header h2 {
        translate: 0 14px;
    }

    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .post-license__subtitle {
        translate: 0 12px;
    }

    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .question-card {
        translate: 0 10px;
    }

    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .post-license__conclusion h3 {
        translate: 0 14px;
    }

    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .post-license__conclusion p {
        translate: 0 10px;
    }

    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .crm-window {
        opacity: 0;
        filter: blur(10px) saturate(.9) contrast(.94);
        translate: 0 8px;
        scale: .99;
    }

    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .pain-stage__orbit,
    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .pain-stage__axis {
        opacity: 0;
    }

    .post-license.is-pain-animation-ready .post-license__eyebrow,
    .post-license.is-pain-animation-ready .post-license__header h2,
    .post-license.is-pain-animation-ready .post-license__subtitle {
        transition:
            opacity 600ms cubic-bezier(.22,1,.36,1),
            translate 600ms cubic-bezier(.22,1,.36,1);
    }

    .post-license.is-pain-animation-ready .post-license__eyebrow.is-pain-visible,
    .post-license.is-pain-animation-ready .post-license__header h2.is-pain-visible,
    .post-license.is-pain-animation-ready .post-license__subtitle.is-pain-visible {
        opacity: 1;
        translate: 0 0;
    }

    .post-license.is-pain-animation-ready .crm-window {
        transition:
            opacity 820ms cubic-bezier(.22,1,.36,1),
            filter 820ms cubic-bezier(.22,1,.36,1),
            translate 820ms cubic-bezier(.22,1,.36,1),
            scale 820ms cubic-bezier(.22,1,.36,1);
    }

    .post-license.is-pain-animation-ready.is-pain-interface-visible .crm-window {
        opacity: .88;
        filter: saturate(.9) contrast(.94);
        translate: 0 0;
        scale: 1;
    }

    .post-license.is-pain-animation-ready .pain-stage__orbit,
    .post-license.is-pain-animation-ready .pain-stage__axis {
        transition: opacity 1000ms ease-out;
    }

    .post-license.is-pain-animation-ready.is-pain-orbits-visible .pain-stage__orbit,
    .post-license.is-pain-animation-ready.is-pain-orbits-visible .pain-stage__axis {
        opacity: 1;
    }

    .post-license.is-pain-animation-ready .question-card {
        transition:
            opacity 540ms cubic-bezier(.22,1,.36,1),
            translate 470ms cubic-bezier(.22,1,.36,1),
            box-shadow 250ms cubic-bezier(.22,1,.36,1);
    }

    .post-license.is-pain-animation-ready .question-card.is-pain-visible {
        opacity: 1;
        translate: 0 0;
    }

    .post-license.is-pain-animation-ready .post-license__conclusion h3 {
        transition:
            opacity 720ms cubic-bezier(.22,1,.36,1),
            translate 720ms cubic-bezier(.22,1,.36,1);
    }

    .post-license.is-pain-animation-ready .post-license__conclusion p {
        transition:
            opacity 560ms cubic-bezier(.22,1,.36,1),
            translate 560ms cubic-bezier(.22,1,.36,1);
    }

    .post-license.is-pain-animation-ready .post-license__conclusion h3.is-pain-visible,
    .post-license.is-pain-animation-ready .post-license__conclusion p.is-pain-visible {
        opacity: 1;
        translate: 0 0;
    }

    .post-license.is-pain-focus-shifted .question-card {
        opacity: .82;
    }

    .post-license.is-pain-focus-shifted .crm-window {
        opacity: .82;
    }

    .post-license.is-pain-focus-shifted .pain-stage__orbit,
    .post-license.is-pain-focus-shifted .pain-stage__axis {
        opacity: .76;
    }

    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .post-license__eyebrow,
    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .post-license__header h2,
    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .post-license__subtitle,
    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .crm-window,
    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .question-card,
    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .post-license__conclusion h3,
    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .post-license__conclusion p {
        will-change: opacity, translate;
    }

    .post-license.is-pain-animation-ready:not(.is-pain-animation-complete) .crm-window {
        will-change: opacity, filter, translate, scale;
    }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
    .post-license:not(.is-pain-animation-ready) .question-card,
    .post-license.is-pain-animation-complete .question-card {
        transition:
            opacity 250ms cubic-bezier(.22,1,.36,1),
            translate 250ms cubic-bezier(.22,1,.36,1),
            box-shadow 250ms cubic-bezier(.22,1,.36,1);
    }

    .post-license:not(.is-pain-animation-ready) .question-card:hover,
    .post-license.is-pain-animation-complete .question-card:hover {
        opacity: 1;
        translate: 0 -3px;
        box-shadow: 0 20px 44px rgba(50,82,139,.105), inset 0 1px 0 rgba(255,255,255,.96);
    }

    .post-license:not(.is-pain-animation-ready) .question-card:hover .question-card__icon,
    .post-license.is-pain-animation-complete .question-card:hover .question-card__icon {
        filter: saturate(1.08) contrast(1.04);
    }
}

@media (max-width: 860px) and (prefers-reduced-motion: no-preference) {
    .post-license.is-pain-animation-ready .post-license__eyebrow,
    .post-license.is-pain-animation-ready .post-license__header h2,
    .post-license.is-pain-animation-ready .post-license__subtitle {
        transition-duration: 510ms;
    }

    .post-license.is-pain-animation-ready .crm-window {
        transition-duration: 700ms;
    }

    .post-license.is-pain-animation-ready .question-card {
        transition-duration: 460ms, 400ms, 220ms;
    }

    .post-license.is-pain-animation-ready .post-license__conclusion h3 {
        transition-duration: 610ms;
    }

    .post-license.is-pain-animation-ready .post-license__conclusion p {
        transition-duration: 480ms;
    }
}

@media (prefers-reduced-motion: reduce) {
    .post-license.is-pain-reduced-motion .question-card {
        opacity: .82;
    }

    .post-license.is-pain-reduced-motion .crm-window {
        opacity: .82;
    }

    .post-license.is-pain-reduced-motion .pain-stage__orbit,
    .post-license.is-pain-reduced-motion .pain-stage__axis {
        opacity: .76;
    }

    .post-license .question-card:hover {
        translate: 0 0;
    }
}

/* Keep the narrative focus shift above the reveal-state specificity. */
@media (prefers-reduced-motion: no-preference) {
    .post-license.is-pain-animation-ready.is-pain-focus-shifted .question-card.is-pain-visible {
        opacity: .82;
    }

    .post-license.is-pain-animation-ready.is-pain-interface-visible.is-pain-focus-shifted .crm-window {
        opacity: .82;
    }

    .post-license.is-pain-animation-ready.is-pain-orbits-visible.is-pain-focus-shifted .pain-stage__orbit,
    .post-license.is-pain-animation-ready.is-pain-orbits-visible.is-pain-focus-shifted .pain-stage__axis {
        opacity: .76;
    }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
    .post-license.is-pain-animation-ready.is-pain-focus-shifted.is-pain-animation-complete .question-card:hover {
        opacity: 1;
    }
}

/* Screen 4: cooler question surfaces with clearer depth over the CRM mockup. */
.question-card {
    border-color: rgba(213,226,247,.7);
    background:
        linear-gradient(145deg, rgba(249,251,255,.96) 0%, rgba(239,246,255,.93) 100%);
    box-shadow:
        0 22px 48px rgba(43,78,139,.13),
        0 6px 18px rgba(68,117,204,.07),
        inset 0 1px 0 rgba(255,255,255,.9);
}

@media (prefers-reduced-motion: no-preference) {
    .post-license.is-pain-animation-ready.is-pain-focus-shifted .question-card.is-pain-visible {
        opacity: .86;
    }
}

@media (prefers-reduced-motion: reduce) {
    .post-license.is-pain-reduced-motion .question-card {
        opacity: .86;
    }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
    .post-license:not(.is-pain-animation-ready) .question-card:hover,
    .post-license.is-pain-animation-complete .question-card:hover {
        box-shadow:
            0 26px 56px rgba(43,78,139,.16),
            0 8px 22px rgba(68,117,204,.09),
            inset 0 1px 0 rgba(255,255,255,.96);
    }
}

/* Screen 4: final composition polish. */
@media (min-width: 861px) {
    .question-card--capacity {
        top: 4px;
    }

    .question-card--ai {
        bottom: -10px;
    }

    .question-card--priority {
        bottom: -36px;
    }

    .question-card--next {
        right: 44px;
        bottom: -17px;
    }
}

.post-license__eyebrow {
    color: rgba(63,82,119,.5);
}

@media (max-width: 860px) {
    .pain-stage {
        grid-template-columns: minmax(0, 1fr);
    }

    .crm-window {
        grid-column: 1;
        grid-row: 1;
    }

    .question-card {
        grid-column: 1;
        width: 100%;
        box-sizing: border-box;
    }

    .post-license__conclusion {
        margin-top: 72px;
    }
}

@media (max-width: 560px) {
    .post-license__conclusion {
        margin-top: 64px;
    }
}

/* Screen 5: what changes after joining SVOI */
.ecosystem-shift {
    --ecosystem-blue: var(--color-primary);
    --ecosystem-blue-soft: #8ebcff;
    --ecosystem-line: rgba(67, 132, 238, .17);
    --ecosystem-surface: rgba(255, 255, 255, .78);
    position: relative;
    min-height: 100svh;
    padding: 88px 0 clamp(24px, 3.2svh, 38px);
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 45%, rgba(114, 163, 242, .075), transparent 46%),
        radial-gradient(ellipse at 50% 100%, rgba(218, 232, 255, .34), transparent 43%),
        linear-gradient(180deg, #fbfcff 0%, #f9fbff 100%);
}

.ecosystem-shift::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: -8%;
    left: -8%;
    height: 310px;
    pointer-events: none;
    background: radial-gradient(
        ellipse at 50% 9%,
        rgba(70, 145, 255, .07) 0%,
        rgba(115, 175, 255, .035) 32%,
        rgba(255, 255, 255, 0) 68%
    );
}

.ecosystem-shift__container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), 1360px);
    margin: 0 auto;
}

.ecosystem-shift__header {
    position: relative;
    z-index: 3;
    text-align: center;
}

.ecosystem-shift__header h2 {
    max-width: 1280px;
    margin: 0 auto;
    color: var(--color-heading);
    font-size: clamp(40px, 3.2vw, 52px);
    font-weight: 650;
    line-height: 1.08;
    letter-spacing: -.046em;
    text-wrap: balance;
}

.ecosystem-shift__header p {
    max-width: 720px;
    margin: 17px auto 0;
    color: rgba(63, 82, 119, .61);
    font-size: clamp(16px, 1.2vw, 19px);
    font-weight: 520;
    line-height: 1.5;
    letter-spacing: -.022em;
    text-wrap: balance;
}

.ecosystem-scene {
    position: relative;
    isolation: isolate;
    width: min(100%, 1280px);
    height: clamp(300px, 34svh, 350px);
    margin: 10px auto 0;
    overflow: hidden;
}

.ecosystem-scene__ambient {
    position: absolute;
    z-index: -2;
    inset: 7% -2% 2%;
    background:
        radial-gradient(ellipse at 51% 61%, rgba(106, 158, 239, .12), transparent 17%),
        radial-gradient(ellipse at 72% 57%, rgba(121, 170, 245, .16), transparent 23%),
        radial-gradient(ellipse at 62% 60%, rgba(190, 215, 252, .25), transparent 18%),
        radial-gradient(ellipse at 24% 69%, rgba(222, 234, 253, .13), transparent 18%);
    filter: blur(10px);
}

.ecosystem-scene__flows {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.ecosystem-scene__flow-glow path {
    fill: none;
    stroke: rgba(178, 209, 255, .32);
    stroke-width: 10;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
}

.ecosystem-scene__flow {
    fill: none;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
}

.ecosystem-scene__flow--primary {
    stroke: url(#svoi-flow-primary);
    stroke-width: 1.85;
}

.ecosystem-scene__flow--secondary {
    stroke: url(#svoi-flow-secondary);
    stroke-width: 1.25;
}

.ecosystem-scene__flow--fine {
    stroke: rgba(152, 192, 252, .25);
    stroke-width: .72;
}

.ecosystem-scene__flow--hairline {
    stroke: rgba(255, 255, 255, .78);
    stroke-width: .72;
}

.ecosystem-scene__rings ellipse,
.ecosystem-scene__rings circle {
    fill: none;
    stroke: rgba(255, 255, 255, .67);
    stroke-width: .8;
    vector-effect: non-scaling-stroke;
}

.ecosystem-scene__rings circle {
    stroke: rgba(138, 181, 248, .14);
}

.ecosystem-scene__rings circle:nth-of-type(2) {
    stroke: rgba(120, 170, 246, .09);
}

.ecosystem-scene__particles circle {
    fill: #fff;
    filter: drop-shadow(0 0 5px rgba(92, 153, 246, .7));
}

.ecosystem-scene__person {
    position: absolute;
    z-index: 2;
    margin: 0;
    pointer-events: none;
}

.ecosystem-scene__person img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 14px 22px rgba(64, 118, 210, .07));
    -webkit-mask-image: linear-gradient(to bottom, #000 0 86%, rgba(0, 0, 0, .72) 94%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0 86%, rgba(0, 0, 0, .72) 94%, transparent 100%);
}

.ecosystem-scene__person--before {
    left: 7.5%;
    bottom: 2px;
    width: 19%;
    height: 76%;
    opacity: .44;
    filter: saturate(.5) contrast(1.03);
}

.ecosystem-scene__person--center {
    z-index: 3;
    left: 50%;
    bottom: -2px;
    width: 28%;
    height: 96%;
    transform: translateX(-50%);
}

.ecosystem-scene__person--center img {
    filter:
        saturate(.73)
        brightness(.94)
        drop-shadow(7px 0 12px rgba(91, 148, 239, .08))
        drop-shadow(0 14px 24px rgba(42, 103, 207, .12));
    opacity: .86;
}

.ecosystem-scene__person--team {
    z-index: 2;
    left: 57.5%;
    bottom: -1px;
    width: 36.5%;
    height: 103%;
    opacity: .78;
    filter: saturate(.74) contrast(1.035);
}

.ecosystem-scene::after {
    content: "";
    position: absolute;
    z-index: 4;
    right: 8%;
    bottom: -1%;
    width: 43%;
    height: 48%;
    background:
        radial-gradient(ellipse at 42% 58%, rgba(130, 176, 246, .16), transparent 64%),
        radial-gradient(ellipse at 54% 88%, rgba(205, 225, 255, .29), transparent 61%);
    filter: blur(12px);
    pointer-events: none;
}

.ecosystem-scene__foreground {
    position: absolute;
    z-index: 4;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.ecosystem-scene__foreground path {
    fill: none;
    stroke: rgba(255, 255, 255, .42);
    stroke-width: .75;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
    filter: drop-shadow(0 0 4px rgba(130, 178, 246, .15));
}
.ecosystem-benefits {
    position: relative;
    z-index: 3;
    width: min(100%, 1220px);
    margin: -14px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ecosystem-benefit {
    min-height: 104px;
    padding: 14px 20px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(224, 233, 248, .62);
    border-radius: 23px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(245, 249, 255, .76));
    box-shadow:
        0 11px 29px rgba(50, 82, 139, .052),
        inset 0 1px 0 rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
}

.ecosystem-benefit__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #347ff3;
    background: linear-gradient(145deg, rgba(239, 246, 255, .96), rgba(223, 236, 255, .82));
    box-shadow: 0 5px 14px rgba(41, 111, 231, .08);
}

.ecosystem-benefit__icon svg {
    width: 21px;
    height: 21px;
    stroke-width: 1.9;
}

.ecosystem-benefit h3,
.ecosystem-benefit p {
    margin: 0;
    letter-spacing: -.024em;
}

.ecosystem-benefit h3 {
    color: var(--color-heading);
    font-size: 14.5px;
    font-weight: 650;
    line-height: 1.3;
}

.ecosystem-benefit p {
    margin-top: 5px;
    color: rgba(63, 82, 119, .68);
    font-size: 13.2px;
    font-weight: 500;
    line-height: 1.34;
}

.ecosystem-summary {
    position: relative;
    width: min(100%, 1120px);
    min-height: 94px;
    margin: 31px auto 0;
    padding: 30px 42px 18px;
    border: 1px solid rgba(224, 233, 248, .64);
    border-radius: 24px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(211, 229, 255, .38), transparent 29%),
        linear-gradient(145deg, rgba(255, 255, 255, .91), rgba(246, 250, 255, .78));
    box-shadow:
        0 13px 34px rgba(50, 82, 139, .052),
        inset 0 1px 0 rgba(255, 255, 255, .95);
    backdrop-filter: blur(16px);
}

.ecosystem-summary__mark {
    position: absolute;
    top: -24px;
    left: 50%;
    width: 49px;
    height: 49px;
    padding: 8px;
    border: 1px solid rgba(209, 225, 250, .82);
    border-radius: 50%;
    background: rgba(249, 252, 255, .96);
    box-shadow: 0 7px 20px rgba(43, 98, 188, .13);
    transform: translateX(-50%);
}

.ecosystem-summary__mark i {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: conic-gradient(
        from 0deg,
        #77adff 0 24%,
        #dceaff 24% 49%,
        #347ff3 49% 74%,
        #b9d4ff 74% 100%
    );
    -webkit-mask: radial-gradient(circle, transparent 0 48%, #000 50%);
    mask: radial-gradient(circle, transparent 0 48%, #000 50%);
}

.ecosystem-summary h3,
.ecosystem-summary p {
    margin: 0;
    letter-spacing: -.024em;
}

.ecosystem-summary h3 {
    color: var(--color-heading);
    font-size: clamp(18px, 1.35vw, 21px);
    font-weight: 650;
    line-height: 1.42;
    text-wrap: balance;
}

.ecosystem-summary p {
    margin-top: 10px;
    color: rgba(63, 82, 119, .61);
    font-size: clamp(14px, 1.08vw, 16px);
    font-weight: 500;
    line-height: 1.48;
    text-wrap: balance;
}


@media (max-width: 980px) {
    .post-license {
        padding-bottom: 80px;
    }

    .ecosystem-shift {
        min-height: 0;
        padding: 78px 0 50px;
    }

    .ecosystem-shift__container {
        width: min(calc(100% - 32px), 820px);
    }

    .ecosystem-shift__header h2 {
        max-width: 860px;
        font-size: clamp(36px, 5.4vw, 48px);
    }

    .ecosystem-scene {
        height: 360px;
        margin-top: 32px;
    }

    .ecosystem-benefits {
        gap: 14px;
    }

    .ecosystem-benefit {
        min-height: 84px;
        padding: 15px;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
    }

    .ecosystem-benefit__icon {
        width: 42px;
        height: 42px;
    }

    .ecosystem-benefit h3,
    .ecosystem-benefit p {
        font-size: 12px;
    }

    .ecosystem-summary {
        margin-top: 38px;
    }
}

@media (max-width: 820px) {
    .ecosystem-shift__container {
        width: min(calc(100% - 32px), 680px);
    }

    .ecosystem-scene {
        height: 350px;
    }

    .ecosystem-benefits {
        width: min(100%, 620px);
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ecosystem-benefit {
        min-height: 80px;
        padding: 15px 20px;
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 16px;
    }

    .ecosystem-benefit__icon {
        width: 44px;
        height: 44px;
    }

    .ecosystem-benefit h3,
    .ecosystem-benefit p {
        font-size: 13px;
    }

    .ecosystem-summary {
        width: min(100%, 620px);
        margin-top: 46px;
    }
}

@media (max-width: 700px) {
    .ecosystem-shift {
        padding: 76px 0 46px;
    }

    .ecosystem-shift__container {
        width: calc(100% - 28px);
    }

    .ecosystem-shift__header h2 {
        max-width: 520px;
        font-size: clamp(31px, 9vw, 40px);
        line-height: 1.13;
    }

    .ecosystem-shift__header p {
        max-width: 520px;
        margin-top: 17px;
        font-size: 15px;
        line-height: 1.55;
    }

    .ecosystem-scene {
        height: 310px;
        margin-top: 26px;
        overflow: hidden;
    }

    .ecosystem-scene__flows {
        left: 50%;
        width: 760px;
        max-width: none;
        transform: translateX(-50%);
    }

    .ecosystem-scene__person--before {
        left: -2%;
        width: 31%;
    }

    .ecosystem-scene__person--center {
        width: 38%;
    }

    .ecosystem-scene__person--team {
        left: 66%;
        width: 46%;
    }

    .ecosystem-benefits {
        margin-top: 10px;
    }

    .ecosystem-summary {
        margin-top: 46px;
        padding: 41px 22px 26px;
        border-radius: 22px;
    }

    .ecosystem-summary h3 {
        font-size: 20px;
    }

    .ecosystem-summary p {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.58;
    }
}

@media (max-width: 390px) {
    .ecosystem-scene {
        height: 286px;
    }

    .ecosystem-scene__flows {
        width: 700px;
    }

    .ecosystem-benefit {
        padding: 14px 16px;
    }

    .ecosystem-summary h3 {
        font-size: 19px;
    }
}

@media (max-height: 820px) and (min-width: 981px) {
    .ecosystem-shift {
        padding-top: 72px;
        padding-bottom: 27px;
    }

    .ecosystem-shift__header h2 {
        font-size: clamp(38px, 3.15vw, 50px);
    }

    .ecosystem-shift__header p {
        margin-top: 12px;
        font-size: 16px;
    }

    .ecosystem-scene {
        height: 310px;
        margin-top: 34px;
    }

    .ecosystem-benefits {
        margin-top: 8px;
    }

    .ecosystem-benefit {
        min-height: 78px;
        padding-top: 13px;
        padding-bottom: 13px;
    }

    .ecosystem-summary {
        min-height: 108px;
        margin-top: 31px;
        padding-top: 36px;
        padding-bottom: 22px;
    }
}

/* Screen 5: restrained one-shot narrative motion. */
html.js-enabled .ecosystem-shift:not(.is-ecosystem-motion-running):not(.is-ecosystem-motion-complete) .ecosystem-shift__header h2,
html.js-enabled .ecosystem-shift:not(.is-ecosystem-motion-running):not(.is-ecosystem-motion-complete) .ecosystem-shift__header p,
html.js-enabled .ecosystem-shift:not(.is-ecosystem-motion-running):not(.is-ecosystem-motion-complete) .ecosystem-scene__person--center img,
html.js-enabled .ecosystem-shift:not(.is-ecosystem-motion-running):not(.is-ecosystem-motion-complete) .ecosystem-scene__person--team img,
html.js-enabled .ecosystem-shift:not(.is-ecosystem-motion-running):not(.is-ecosystem-motion-complete) .ecosystem-scene__ambient,
html.js-enabled .ecosystem-shift:not(.is-ecosystem-motion-running):not(.is-ecosystem-motion-complete) .ecosystem-scene__particles,
html.js-enabled .ecosystem-shift:not(.is-ecosystem-motion-running):not(.is-ecosystem-motion-complete) .ecosystem-benefit,
html.js-enabled .ecosystem-shift:not(.is-ecosystem-motion-running):not(.is-ecosystem-motion-complete) .ecosystem-summary {
    opacity: 0;
}

html.js-enabled .ecosystem-shift:not(.is-ecosystem-motion-running):not(.is-ecosystem-motion-complete) .ecosystem-scene::after,
html.js-enabled .ecosystem-shift:not(.is-ecosystem-motion-running):not(.is-ecosystem-motion-complete) .ecosystem-scene__rings ellipse:nth-of-type(n+3),
html.js-enabled .ecosystem-shift:not(.is-ecosystem-motion-running):not(.is-ecosystem-motion-complete) .ecosystem-scene__rings circle {
    opacity: 0;
}

html.js-enabled .ecosystem-shift:not(.is-ecosystem-motion-running):not(.is-ecosystem-motion-complete) .ecosystem-benefit,
html.js-enabled .ecosystem-shift:not(.is-ecosystem-motion-running):not(.is-ecosystem-motion-complete) .ecosystem-summary {
    transform: translateY(8px);
}

html.js-enabled .ecosystem-shift:not(.is-ecosystem-motion-running):not(.is-ecosystem-motion-complete) .ecosystem-scene__flow-glow path,
html.js-enabled .ecosystem-shift:not(.is-ecosystem-motion-running):not(.is-ecosystem-motion-complete) .ecosystem-scene__flow,
html.js-enabled .ecosystem-shift:not(.is-ecosystem-motion-running):not(.is-ecosystem-motion-complete) .ecosystem-scene__foreground path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-shift__header h2 {
    transition: opacity 650ms cubic-bezier(.22, 1, .36, 1);
}

.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-shift__header p {
    transition: opacity 650ms cubic-bezier(.22, 1, .36, 1) 130ms;
}

.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-scene__person--center img {
    transition: opacity 800ms cubic-bezier(.22, 1, .36, 1) 450ms;
}

.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-scene__rings ellipse:nth-of-type(3),
.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-scene__rings circle:nth-of-type(1) {
    transition: opacity 650ms cubic-bezier(.22, 1, .36, 1) 650ms;
}

.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-scene__rings ellipse:nth-of-type(4),
.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-scene__rings circle:nth-of-type(2) {
    transition: opacity 650ms cubic-bezier(.22, 1, .36, 1) 760ms;
}

.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-scene__ambient {
    transition: opacity 850ms cubic-bezier(.22, 1, .36, 1) 650ms;
}

.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-scene::after {
    transition: opacity 800ms cubic-bezier(.22, 1, .36, 1) 1250ms;
}

.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-scene__particles {
    transition: opacity 750ms cubic-bezier(.22, 1, .36, 1) 900ms;
}

.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-scene__flow-glow path,
.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-scene__flow--primary {
    transition: stroke-dashoffset 1350ms cubic-bezier(.22, 1, .36, 1) 700ms;
}

.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-scene__flow--secondary,
.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-scene__flow--fine,
.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-scene__foreground path {
    transition: stroke-dashoffset 1300ms cubic-bezier(.22, 1, .36, 1) 950ms;
}

.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-scene__person--team img {
    transition: opacity 850ms cubic-bezier(.22, 1, .36, 1) 1350ms;
}

.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-benefit {
    transition:
        opacity 560ms cubic-bezier(.22, 1, .36, 1),
        transform 560ms cubic-bezier(.22, 1, .36, 1);
}

.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-benefit:nth-child(1) {
    transition-delay: 2200ms;
}

.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-benefit:nth-child(2) {
    transition-delay: 2360ms;
}

.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-benefit:nth-child(3) {
    transition-delay: 2520ms;
}

.ecosystem-shift.is-ecosystem-motion-ready .ecosystem-summary {
    transition:
        opacity 650ms cubic-bezier(.22, 1, .36, 1) 3000ms,
        transform 650ms cubic-bezier(.22, 1, .36, 1) 3000ms;
}

.ecosystem-shift:is(.is-ecosystem-motion-running, .is-ecosystem-motion-complete) .ecosystem-shift__header h2,
.ecosystem-shift:is(.is-ecosystem-motion-running, .is-ecosystem-motion-complete) .ecosystem-shift__header p,
.ecosystem-shift:is(.is-ecosystem-motion-running, .is-ecosystem-motion-complete) .ecosystem-scene__person--team img,
.ecosystem-shift:is(.is-ecosystem-motion-running, .is-ecosystem-motion-complete) .ecosystem-scene__ambient,
.ecosystem-shift:is(.is-ecosystem-motion-running, .is-ecosystem-motion-complete) .ecosystem-scene__particles,
.ecosystem-shift:is(.is-ecosystem-motion-running, .is-ecosystem-motion-complete) .ecosystem-benefit,
.ecosystem-shift:is(.is-ecosystem-motion-running, .is-ecosystem-motion-complete) .ecosystem-summary,
.ecosystem-shift:is(.is-ecosystem-motion-running, .is-ecosystem-motion-complete) .ecosystem-scene::after,
.ecosystem-shift:is(.is-ecosystem-motion-running, .is-ecosystem-motion-complete) .ecosystem-scene__rings ellipse,
.ecosystem-shift:is(.is-ecosystem-motion-running, .is-ecosystem-motion-complete) .ecosystem-scene__rings circle {
    opacity: 1;
}

.ecosystem-shift:is(.is-ecosystem-motion-running, .is-ecosystem-motion-complete) .ecosystem-scene__person--center img {
    opacity: .86;
}

.ecosystem-shift:is(.is-ecosystem-motion-running, .is-ecosystem-motion-complete) .ecosystem-benefit,
.ecosystem-shift:is(.is-ecosystem-motion-running, .is-ecosystem-motion-complete) .ecosystem-summary {
    transform: translateY(0);
}

.ecosystem-shift:is(.is-ecosystem-motion-running, .is-ecosystem-motion-complete) .ecosystem-scene__flow-glow path,
.ecosystem-shift:is(.is-ecosystem-motion-running, .is-ecosystem-motion-complete) .ecosystem-scene__flow,
.ecosystem-shift:is(.is-ecosystem-motion-running, .is-ecosystem-motion-complete) .ecosystem-scene__foreground path {
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
}

@media (prefers-reduced-motion: reduce) {
    html.js-enabled .ecosystem-shift,
    html.js-enabled .ecosystem-shift *,
    html.js-enabled .ecosystem-shift::before,
    html.js-enabled .ecosystem-scene::after {
        animation: none !important;
        transition: none !important;
    }

    html.js-enabled .ecosystem-shift .ecosystem-shift__header h2,
    html.js-enabled .ecosystem-shift .ecosystem-shift__header p,
    html.js-enabled .ecosystem-shift .ecosystem-scene__person img,
    html.js-enabled .ecosystem-shift .ecosystem-scene__ambient,
    html.js-enabled .ecosystem-shift .ecosystem-scene__particles,
    html.js-enabled .ecosystem-shift .ecosystem-benefit,
    html.js-enabled .ecosystem-shift .ecosystem-summary,
    html.js-enabled .ecosystem-shift .ecosystem-scene::after,
    html.js-enabled .ecosystem-shift .ecosystem-scene__rings ellipse,
    html.js-enabled .ecosystem-shift .ecosystem-scene__rings circle {
        opacity: 1 !important;
        transform: none !important;
    }

    html.js-enabled .ecosystem-shift .ecosystem-scene__person--center img {
        opacity: .86 !important;
    }

    html.js-enabled .ecosystem-shift .ecosystem-scene__flow-glow path,
    html.js-enabled .ecosystem-shift .ecosystem-scene__flow,
    html.js-enabled .ecosystem-shift .ecosystem-scene__foreground path {
        stroke-dasharray: none !important;
        stroke-dashoffset: 0 !important;
    }
}
