:root {
    --bg: #06142f;
    --bg-2: #0b2f66;
    --blue: #0b64ff;
    --blue-2: #10a7ff;
    --cyan: #54d7ff;
    --accent: #ff5262;
    --ink: #08111f;
    --muted: #607089;
    --line: rgba(124, 180, 255, .22);
    --white: #ffffff;
    --soft: #f4f8ff;
    --shadow: 0 24px 80px rgba(5, 32, 84, .24);
    --container: min(1180px, calc(100vw - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 104px;
    overflow-x: clip;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--soft);
    overflow-x: hidden;
}

body.menu-open,
body._disable-scroll-header {
    overflow-x: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 118px 0;
}

.section[id] {
    scroll-margin-top: 104px;
}

.section-heading,
.slider-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 42px;
}

.section-kicker,
.eyebrow {
    margin: 0 0 16px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    max-width: 760px;
    font-family: "Unbounded", "Manrope", ui-sans-serif, sans-serif;
    font-size: clamp(34px, 4.6vw, 62px);
    font-weight: 700;
    line-height: .95;
    letter-spacing: 0;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    gap: 10px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    box-shadow: 0 16px 34px rgba(11, 100, 255, .28);
    font-family: "Manrope", ui-sans-serif, sans-serif;
    font-weight: 750;
    white-space: nowrap;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    transform: scale(0);
    opacity: 0;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(11, 100, 255, .34);
}

.button:hover::after {
    animation: ripple .55s ease-out;
}

.button svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.2;
}

.button--small {
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
}

.button--ghost {
    color: var(--white);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .24);
    box-shadow: none;
    backdrop-filter: blur(16px);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    color: var(--white);
    transition: transform .38s ease, background .28s ease, box-shadow .28s ease, color .28s ease;
}

.site-header.is-scrolled {
    color: var(--ink);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 14px 38px rgba(10, 34, 80, .12);
    backdrop-filter: blur(18px);
}

body._header-hidden .site-header {
    transform: translateY(-110%);
}

.header-inner {
    width: var(--container);
    min-height: 86px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    min-width: max-content;
    padding: 0;
}

.site-header .brand {
    position: relative;
    flex: 0 0 auto;
    width: 190px;
    height: 84px;
}

.brand-logo {
    display: block;
    width: 190px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, .22)) drop-shadow(0 12px 22px rgba(1, 13, 44, .36));
}

.site-header .brand-logo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: opacity .22s ease;
}

.site-header .brand-logo--dark {
    opacity: 0;
}

.site-header.is-scrolled .brand-logo--light {
    opacity: 0;
}

.site-header.is-scrolled .brand-logo--dark {
    opacity: 1;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 34px);
    font-size: 14px;
    font-weight: 700;
}

.main-nav a {
    position: relative;
    opacity: .82;
    transition: opacity .2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.main-nav a:hover {
    opacity: 1;
}

.main-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-link,
.menu-button,
.slider-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    color: currentColor;
    background: rgba(255, 255, 255, .08);
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.site-header.is-scrolled .icon-link,
.site-header.is-scrolled .menu-button {
    border-color: rgba(9, 38, 84, .12);
    background: rgba(8, 42, 92, .04);
}

.icon-link:hover,
.menu-button:hover,
.slider-button:hover {
    transform: translateY(-2px);
    background: rgba(84, 215, 255, .14);
}

.icon-link svg,
.slider-button svg {
    width: 18px;
    height: 18px;
}

.menu-button {
    display: none;
    position: relative;
}

.menu-button span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .25s ease;
}

.menu-button span:first-child {
    transform: translateY(-4px);
}

.menu-button span:last-child {
    transform: translateY(4px);
}

body.menu-open .menu-button span:first-child {
    transform: rotate(45deg);
}

body.menu-open .menu-button span:last-child {
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 76px 20px auto;
    z-index: 45;
    display: none;
    padding: 18px;
    border: 1px solid rgba(124, 180, 255, .24);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
}

.mobile-menu a {
    display: block;
    padding: 14px 8px;
    font-weight: 800;
    border-bottom: 1px solid rgba(96, 112, 137, .14);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at 76% 38%, rgba(11, 100, 255, .68) 0, rgba(11, 88, 202, .42) 24%, transparent 52%),
        radial-gradient(circle at 90% 72%, rgba(84, 215, 255, .18) 0, transparent 34%),
        linear-gradient(135deg, #040b1d 0%, #061c43 44%, #0b2f66 100%);
}

.hero-background,
.hero-grid,
.hero-image,
.blob,
.hero-orbit,
.brand-arc,
.data-rain {
    position: absolute;
    inset: 0;
}

.hero-background {
    pointer-events: none;
}

.hero-grid {
    opacity: .28;
    background-image:
        linear-gradient(rgba(84, 215, 255, .14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(84, 215, 255, .14) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 72%, transparent);
    transform: translate3d(calc(var(--mx, 0) * -8px), calc(var(--my, 0) * -8px), 0);
}

.brand-arc {
    width: 100%;
    height: 100%;
    overflow: visible;
    max-width: none;
    opacity: .46;
    transform: translate3d(calc(var(--mx, 0) * -18px), calc(var(--my, 0) * -12px), 0);
}

.brand-arc--hero {
    top: -15%;
    right: auto;
    bottom: auto;
    left: -12%;
    width: 144%;
    height: 116%;
}

.arc-line {
    fill: none;
    stroke-linecap: round;
    stroke-width: 4;
}

.arc-line--main {
    stroke: url(#brandArc);
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: arc-draw 3.8s cubic-bezier(.19, 1, .22, 1) .35s forwards, arc-pulse 3s ease-in-out infinite 4s;
    filter: drop-shadow(0 0 12px rgba(84, 215, 255, .35));
}

.arc-dot--blue {
    fill: var(--blue);
    filter: drop-shadow(0 0 18px rgba(11, 100, 255, .9));
}

.hero-image {
    inset: auto -6vw 0 auto;
    width: min(72vw, 1120px);
    height: min(74vh, 760px);
    object-fit: cover;
    object-position: center;
    opacity: .56;
    filter: saturate(1.08) contrast(1.04);
    mask-image: radial-gradient(circle at 55% 50%, #000 0, #000 56%, transparent 80%);
    transform: translate3d(calc(var(--mx, 0) * 18px), calc(var(--my, 0) * 12px), 0) scale(1.04);
}

.data-rain {
    left: auto;
    width: 34%;
    min-width: 340px;
    overflow: hidden;
    opacity: .22;
    mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.data-rain span {
    position: absolute;
    right: 0;
    color: rgba(196, 235, 255, .82);
    font-family: "Unbounded", "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    transform: translateY(-90px);
    animation: data-rain 7s linear infinite;
}

.data-rain span:nth-child(1) { right: 7%; animation-delay: 0s; }
.data-rain span:nth-child(2) { right: 18%; animation-delay: .8s; }
.data-rain span:nth-child(3) { right: 31%; animation-delay: 1.6s; }
.data-rain span:nth-child(4) { right: 44%; animation-delay: 2.4s; }
.data-rain span:nth-child(5) { right: 55%; animation-delay: 3.2s; }
.data-rain span:nth-child(6) { right: 66%; animation-delay: 4s; }
.data-rain span:nth-child(7) { right: 78%; animation-delay: 4.8s; }
.data-rain span:nth-child(8) { right: 90%; animation-delay: 5.6s; }

.blob {
    width: 44vw;
    height: 44vw;
    max-width: 620px;
    max-height: 620px;
    min-width: 300px;
    min-height: 300px;
    border-radius: 54% 79% 75% 58% / 70% 66% 71% 47%;
    filter: blur(12px);
    opacity: .18;
}

.blob--a {
    top: 9%;
    right: 7%;
    background: #54d7ff;
    animation: move-a 12s ease-in-out infinite;
}

.blob--b {
    bottom: -16%;
    left: 14%;
    background: #0b64ff;
    animation: move-b 15s ease-in-out infinite;
}

.blob--c {
    top: 20%;
    left: -10%;
    background: #7bc7ff;
    animation: move-c 18s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 92px;
}

.hero-title {
    margin: 0;
    max-width: 1160px;
    font-family: "Unbounded", "Manrope", ui-sans-serif, sans-serif;
    font-size: clamp(42px, 5.9vw, 86px);
    font-weight: 800;
    line-height: .9;
    letter-spacing: 0;
}

.hero-title > span {
    display: block;
    overflow: hidden;
    padding-bottom: .08em;
}

.hero-title__mobile {
    display: none !important;
}

.hero-title > span > span {
    display: block;
    transform: translateY(112%);
    transition: transform 1s cubic-bezier(.19, 1, .22, 1);
}

.is-loaded .hero-title > span:nth-child(1) > span {
    transition-delay: .08s;
}

.is-loaded .hero-title > span:nth-child(2) > span {
    transition-delay: .18s;
}

.is-loaded .hero-title > span:nth-child(3) > span {
    transition-delay: .28s;
}

.is-loaded .hero-title > span:nth-child(4) > span {
    transition-delay: .38s;
}

.is-loaded .hero-title > span > span {
    transform: translateY(0);
}

.hero-lead {
    max-width: 660px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.45;
}

.hero-extra {
    max-width: 740px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, .7);
    font-size: 17px;
    line-height: 1.58;
}

.hero-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(260px, 1fr));
    gap: 16px;
    max-width: 100%;
    margin-top: 34px;
}

.hero-metrics div {
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
}

.hero-metrics strong {
    display: block;
    font-family: "Unbounded", "Manrope", sans-serif;
    font-size: clamp(18px, 1.35vw, 21px);
    line-height: 1.14;
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}

.hero-metrics span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    line-height: 1.3;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.hero-orbit {
    z-index: 1;
    pointer-events: none;
}

.orbit-card {
    position: absolute;
    display: grid;
    min-width: 74px;
    min-height: 42px;
    place-items: center;
    padding: 10px 14px;
    border: 1px solid rgba(127, 210, 255, .32);
    border-radius: 8px;
    color: rgba(255, 255, 255, .92);
    background: rgba(6, 20, 47, .42);
    box-shadow: 0 14px 44px rgba(0, 0, 0, .22);
    backdrop-filter: blur(14px);
    font-size: 13px;
    font-weight: 850;
    animation: circle 14s linear infinite;
}

.orbit-card--one {
    top: 29%;
    left: 74%;
}

.orbit-card--two {
    top: 16%;
    right: 22%;
    animation-duration: 19s;
    animation-direction: reverse;
}

.orbit-card--three {
    right: 7%;
    bottom: 25%;
    animation-duration: 16s;
}

.orbit-card--four {
    bottom: 13%;
    left: 58%;
    animation-duration: 22s;
    animation-direction: reverse;
}

.orbit-card--five {
    top: 48%;
    right: 28%;
    animation-duration: 24s;
}

.orbit-card--six {
    top: 71%;
    left: 42%;
    animation-duration: 17s;
    animation-direction: reverse;
}

.tech-marquee {
    overflow: hidden;
    border-block: 1px solid rgba(11, 100, 255, .16);
    background: linear-gradient(90deg, #ffffff, #eef6ff, #ffffff);
}

.tech-track {
    display: flex;
    width: max-content;
    gap: 16px;
    padding: 18px 0;
    animation: marquee-x 22s linear infinite;
    will-change: transform;
}

.tech-track.is-ready {
    gap: 0;
}

.tech-track__group {
    display: flex;
    flex: 0 0 auto;
    gap: 16px;
    padding-right: 16px;
}

.tech-track span {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-height: 48px;
    padding: 0 26px;
    border: 1px solid rgba(11, 100, 255, .14);
    border-radius: 8px;
    color: #0a2452;
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 10px 28px rgba(11, 100, 255, .08);
    font-family: "Unbounded", "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.advantages {
    background: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 56px;
}

.media-frame {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: 8px;
    background: #06142f;
    box-shadow: var(--shadow);
}

.media-frame img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    opacity: .88;
}

.media-frame__image--company {
    object-position: center center;
}

.media-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(3, 13, 30, .42));
}

.media-frame--plain img {
    opacity: 1;
}

.media-frame--plain::before {
    content: none;
}

.media-scan {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0, rgba(84, 215, 255, .28) 50%, transparent 100%);
    height: 34%;
    animation: scan 3.8s linear infinite;
    mix-blend-mode: screen;
}

.media-nodes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.media-nodes span {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, .74);
    border-radius: 50%;
    background: var(--blue-2);
    box-shadow: 0 0 24px rgba(84, 215, 255, .7);
    animation: node-float 6s ease-in-out infinite;
}

.media-nodes span:nth-child(1) { left: 15%; top: 20%; }
.media-nodes span:nth-child(2) { left: 78%; top: 18%; animation-delay: .5s; background: var(--accent); }
.media-nodes span:nth-child(3) { left: 68%; top: 72%; animation-delay: 1s; }
.media-nodes span:nth-child(4) { left: 28%; top: 78%; animation-delay: 1.5s; }
.media-nodes span:nth-child(5) { left: 49%; top: 43%; animation-delay: 2s; }

.media-nodes::before,
.media-nodes::after {
    content: "";
    position: absolute;
    inset: 20% 18%;
    border: 1px solid rgba(84, 215, 255, .28);
    border-radius: 50%;
    transform: rotate(-12deg);
    animation: spin-soft 22s linear infinite;
}

.media-nodes::after {
    inset: 31% 26%;
    border-color: rgba(255, 82, 98, .22);
    animation-duration: 26s;
    animation-direction: reverse;
}

.company-text {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.62;
}

.advantage-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.advantage-card {
    min-height: 260px;
    padding: 22px;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(160deg, #07152f, #103b78);
    box-shadow: 0 18px 42px rgba(7, 21, 47, .22);
}

.advantage-card--bright {
    color: var(--white);
    background: linear-gradient(160deg, #07152f, #103b78);
}

.advantage-card--dark {
    background: linear-gradient(160deg, #07152f, #103b78);
}

.advantage-card svg {
    width: 34px;
    height: 34px;
    margin-bottom: 28px;
}

.advantage-card h3,
.case-card h3,
.product-round h3,
.process-line h3 {
    margin: 0 0 12px;
    font-family: "Unbounded", "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.06;
}

.advantage-card h3 {
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.16;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}

.advantage-card p {
    font-size: 15px;
    line-height: 1.48;
}

.advantage-card p,
.case-card p,
.product-round p,
.process-line p {
    margin: 0;
    color: currentColor;
    line-height: 1.5;
    opacity: .78;
}

.product-accordion {
    background: var(--soft);
}

.accordion-layout {
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
    gap: 44px;
    align-items: stretch;
}

.product-visual {
    position: sticky;
    top: 112px;
    min-height: 610px;
    overflow: hidden;
    border-radius: 8px;
    background: radial-gradient(circle at 50% 26%, rgba(84, 215, 255, .28), transparent 36%),
        linear-gradient(150deg, #04122b, #0b2f66 58%, #0b64ff);
    box-shadow: var(--shadow);
}

.product-visual--photo {
    background: #eef5fb;
}

.product-visual--photo img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center center;
}

.product-visual__glow {
    position: absolute;
    inset: 11%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(84, 215, 255, .58), transparent 60%);
    filter: blur(18px);
    animation: pulse-glow 3s ease-in-out infinite;
}

.product-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.product-particles span {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 18px rgba(84, 215, 255, .8);
    animation: particle-rise 6s linear infinite;
}

.product-particles span:nth-child(1) { left: 12%; animation-delay: 0s; }
.product-particles span:nth-child(2) { left: 26%; animation-delay: .8s; }
.product-particles span:nth-child(3) { left: 40%; animation-delay: 1.5s; background: var(--accent); }
.product-particles span:nth-child(4) { left: 56%; animation-delay: 2.2s; }
.product-particles span:nth-child(5) { left: 72%; animation-delay: 2.9s; }
.product-particles span:nth-child(6) { left: 86%; animation-delay: 3.6s; background: var(--accent); }

.product-visual__screen {
    position: absolute;
    inset: 74px 38px 46px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    color: var(--white);
    background: rgba(4, 18, 43, .52);
    box-shadow: inset 0 0 32px rgba(84, 215, 255, .12);
    backdrop-filter: blur(18px);
}

.visual-chip {
    align-self: flex-start;
    padding: 9px 12px;
    border-radius: 999px;
    color: #dff8ff;
    background: rgba(84, 215, 255, .14);
    font-weight: 850;
}

.visual-bars,
.visual-chart {
    display: grid;
    gap: 12px;
}

.visual-bars {
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    height: 190px;
}

.visual-bars span {
    border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, #54d7ff, #0b64ff);
    animation: bar-rise 1.8s ease-in-out infinite alternate;
}

.visual-bars span:nth-child(1) { height: 38%; }
.visual-bars span:nth-child(2) { height: 74%; animation-delay: .16s; }
.visual-bars span:nth-child(3) { height: 54%; animation-delay: .28s; }
.visual-bars span:nth-child(4) { height: 88%; animation-delay: .4s; }
.visual-bars span:nth-child(5) { height: 66%; animation-delay: .52s; }

.visual-chart {
    grid-template-columns: repeat(4, 1fr);
}

.visual-chart span {
    height: 76px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(84, 215, 255, .18), transparent),
        repeating-linear-gradient(90deg, transparent 0 12px, rgba(255, 255, 255, .06) 13px 14px);
}

.mobile-product-map {
    display: none;
}

.product-visual__screen p {
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
    line-height: 1.45;
}

.accordion-list {
    display: grid;
    gap: 14px;
}

.accordion-item {
    overflow: hidden;
    border: 1px solid rgba(11, 100, 255, .14);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 34px rgba(15, 57, 112, .07);
    transition: border-color .25s ease, box-shadow .25s ease;
}

.accordion-item.is-active {
    border-color: rgba(11, 100, 255, .34);
    box-shadow: 0 18px 46px rgba(11, 100, 255, .14);
}

.accordion-head {
    width: 100%;
    display: grid;
    grid-template-columns: 56px 1fr 44px;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border: 0;
    color: var(--ink);
    background: transparent;
    text-align: left;
}

.accordion-head span {
    color: var(--blue);
    font-weight: 900;
}

.accordion-head strong {
    font-size: clamp(22px, 3vw, 38px);
    line-height: 1;
}

.accordion-head svg {
    justify-self: end;
    width: 22px;
    height: 22px;
    color: var(--blue);
    transition: transform .25s ease;
}

.accordion-item.is-active .accordion-head svg {
    transform: rotate(45deg);
}

.accordion-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .34s ease;
}

.accordion-body p {
    min-height: 0;
    margin: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--muted);
    line-height: 1.6;
}

.accordion-item.is-active .accordion-body {
    grid-template-rows: 1fr;
}

.accordion-item.is-active .accordion-body p {
    padding-bottom: 24px;
}

.usage {
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(145deg, #051024, #0b2f66);
}

.usage .container {
    width: min(100vw - 80px, 1720px);
}

.usage .section-kicker {
    color: var(--cyan);
}

.usage-lead {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 18px;
    line-height: 1.55;
}

.usage-slider {
    overflow: visible;
}

.case-card {
    width: min(360px, 82vw);
    height: 500px;
    display: flex;
    flex-direction: column;
    padding: 16px 16px 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 20px 58px rgba(0, 0, 0, .22);
    backdrop-filter: blur(16px);
}

.case-visual {
    position: relative;
    height: 240px;
    margin-bottom: 26px;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(84, 215, 255, .22), rgba(11, 100, 255, .08));
}

.case-visual::before,
.case-visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(84, 215, 255, .42);
    filter: blur(2px);
}

.case-visual::before {
    inset: 44px auto auto 46px;
    width: 76px;
    height: 76px;
    box-shadow: 120px 36px 0 rgba(11, 100, 255, .38), 184px 128px 0 rgba(84, 215, 255, .24);
    animation: circle-min 6s linear infinite;
}

.case-visual::after {
    right: 40px;
    bottom: 36px;
    width: 122px;
    height: 122px;
    background: conic-gradient(from 120deg, #54d7ff, #0b64ff, transparent, #54d7ff);
    opacity: .7;
}

.case-visual--two::before { box-shadow: 90px 84px 0 rgba(84, 215, 255, .32), 160px 24px 0 rgba(11, 100, 255, .42); }
.case-visual--three::after { border-radius: 8px; transform: rotate(12deg); }
.case-visual--four::before { animation-direction: reverse; }
.case-visual--five::after { width: 84px; height: 160px; border-radius: 999px; }

.capability-visual {
    isolation: isolate;
    background:
        linear-gradient(rgba(84, 215, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(84, 215, 255, .08) 1px, transparent 1px),
        radial-gradient(circle at 78% 20%, rgba(84, 215, 255, .22), transparent 28%),
        linear-gradient(135deg, rgba(9, 34, 74, .96), rgba(12, 66, 134, .66));
    background-size: 36px 36px, 36px 36px, auto, auto;
}

.capability-visual::before {
    inset: auto;
    left: 24px;
    bottom: 22px;
    z-index: -1;
    width: 138px;
    height: 138px;
    border: 1px solid rgba(84, 215, 255, .2);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(11, 100, 255, .42), transparent 62%);
    filter: none;
    box-shadow: none;
    animation: pulse-glow 4.8s ease-in-out infinite;
}

.capability-visual::after {
    right: 28px;
    bottom: 28px;
    z-index: -1;
    width: 118px;
    height: 118px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(11, 100, 255, .72), rgba(84, 215, 255, .38));
    opacity: .6;
    transform: rotate(10deg);
    filter: blur(.3px);
}

.capability-visual svg {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 1;
    width: 38px;
    height: 38px;
    color: #54d7ff;
    filter: drop-shadow(0 0 16px rgba(84, 215, 255, .42));
}

.capability-visual span {
    position: absolute;
    z-index: 1;
}

.endpoint,
.doc-pill,
.status-pill,
.service,
.message {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(84, 215, 255, .22);
    border-radius: 999px;
    color: #dff6ff;
    background: rgba(4, 18, 42, .62);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
    font-size: 13px;
    font-weight: 800;
}

.endpoint {
    top: 28px;
    right: 22px;
    padding: 0 14px;
}

.code-line,
.doc-row,
.cabinet-row {
    left: 26px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .62);
}

.code-line { top: 106px; width: 72%; }
.code-line--wide { top: 82px; width: 60%; background: rgba(84, 215, 255, .82); }
.code-line--short { top: 132px; width: 44%; background: rgba(11, 100, 255, .72); }

.doc-pill {
    top: 30px;
    right: 24px;
    padding: 0 13px;
    color: #062552;
    background: #54d7ff;
}

.doc-row {
    top: 92px;
    width: 72%;
}

.doc-row--small {
    top: 122px;
    width: 52%;
    background: rgba(255, 255, 255, .38);
}

.doc-row--accent {
    top: 152px;
    width: 62%;
    background: rgba(255, 82, 98, .72);
}

.wire {
    border: 1px solid rgba(84, 215, 255, .28);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
}

.wire--hero {
    top: 82px;
    left: 26px;
    right: 26px;
    height: 58px;
}

.wire--button {
    top: 156px;
    left: 26px;
    width: 118px;
    height: 30px;
    border-radius: 999px;
    background: #0b64ff;
}

.wire--card {
    right: 26px;
    bottom: 26px;
    width: 76px;
    height: 54px;
}

.wire--card-alt {
    right: 112px;
    background: rgba(84, 215, 255, .12);
}

.table {
    min-width: 98px;
    padding: 14px 16px;
    border: 1px solid rgba(84, 215, 255, .24);
    border-radius: 8px;
    color: #e8f7ff;
    background: rgba(4, 18, 42, .7);
    font-size: 13px;
    font-weight: 800;
}

.table::after {
    content: "";
    display: block;
    width: 68px;
    height: 7px;
    margin-top: 10px;
    border-radius: 999px;
    background: rgba(84, 215, 255, .46);
}

.table--one { top: 82px; left: 28px; }
.table--two { top: 126px; right: 30px; }
.table--three { bottom: 28px; left: 88px; }

.metric {
    width: 74px;
    height: 54px;
    border: 1px solid rgba(84, 215, 255, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
}

.metric--one { top: 82px; left: 26px; }
.metric--two { top: 82px; left: 112px; background: rgba(84, 215, 255, .18); }
.metric--three { top: 82px; left: 198px; }

.chart-bars {
    left: 28px;
    right: 28px;
    bottom: 30px;
    height: 78px;
    border-radius: 8px;
    background: linear-gradient(90deg, #54d7ff 0 12%, transparent 12% 20%, #0b64ff 20% 34%, transparent 34% 42%, #54d7ff 42% 54%, transparent 54% 62%, #ff5262 62% 76%, transparent 76% 84%, #54d7ff 84% 100%);
    opacity: .72;
}

.hub {
    top: 104px;
    left: 50%;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: radial-gradient(circle, #54d7ff, #0b64ff);
    transform: translateX(-50%);
    box-shadow: 0 0 0 26px rgba(84, 215, 255, .06), 0 0 36px rgba(84, 215, 255, .44);
}

.service {
    padding: 0 12px;
}

.service--one { top: 76px; left: 28px; }
.service--two { top: 76px; right: 28px; }
.service--three { bottom: 34px; left: 50%; transform: translateX(-50%); }

.profile-dot {
    top: 78px;
    left: 30px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #54d7ff, #0b64ff);
}

.cabinet-row {
    top: 94px;
    left: 110px;
    width: 56%;
}

.cabinet-row--short {
    top: 124px;
    width: 42%;
    background: rgba(255, 255, 255, .34);
}

.status-pill {
    right: 26px;
    bottom: 32px;
    padding: 0 12px;
    color: #062552;
    background: #54d7ff;
}

.message {
    padding: 0 14px;
    border-radius: 14px;
}

.message--left { top: 84px; left: 28px; }
.message--right { top: 128px; right: 30px; background: rgba(11, 100, 255, .78); }
.message--wide { top: 172px; width: auto; }

.slider-nav {
    display: flex;
    gap: 10px;
}

.slider-button {
    border-color: rgba(255, 255, 255, .26);
    color: var(--white);
}

.portfolio-section {
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(244, 248, 255, .98)),
        radial-gradient(circle at 12% 24%, rgba(84, 215, 255, .18), transparent 32%),
        radial-gradient(circle at 86% 40%, rgba(255, 82, 98, .12), transparent 28%);
}

.portfolio-section--page {
    padding-top: 84px;
}

.portfolio-beam {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .42;
    background:
        linear-gradient(90deg, transparent 0 12%, rgba(11, 100, 255, .13) 12.1% 12.25%, transparent 12.35%),
        linear-gradient(90deg, transparent 0 54%, rgba(84, 215, 255, .12) 54.1% 54.25%, transparent 54.35%),
        linear-gradient(90deg, transparent 0 82%, rgba(255, 82, 98, .1) 82.1% 82.25%, transparent 82.35%);
    transform: skewY(-7deg) translateY(-8%);
    animation: portfolio-beam 9s ease-in-out infinite alternate;
}

.portfolio-heading {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .72fr);
    align-items: end;
    gap: 42px;
}

.portfolio-lead,
.portfolio-intro {
    margin: 0;
    color: #36506f;
    font-size: 18px;
    line-height: 1.62;
}

.portfolio-lead {
    max-width: 560px;
}

.portfolio-intro {
    max-width: 940px;
    margin-top: 28px;
}

.portfolio-tabs {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0 26px;
}

.portfolio-tab {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 15px;
    border: 1px solid rgba(11, 100, 255, .16);
    border-radius: 999px;
    color: #183963;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 10px 28px rgba(11, 100, 255, .06);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    overflow: hidden;
    transition: transform .22s ease, color .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.portfolio-tab::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    opacity: 0;
    transition: opacity .22s ease;
}

.portfolio-tab span {
    position: relative;
    z-index: 1;
    overflow-wrap: anywhere;
}

.portfolio-tab:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 100, 255, .28);
}

.portfolio-tab.is-active {
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 18px 34px rgba(11, 100, 255, .18);
}

.portfolio-tab.is-active::before {
    opacity: 1;
}

.portfolio-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.portfolio-card {
    position: relative;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid rgba(11, 100, 255, .13);
    border-radius: 8px;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(246, 250, 255, .92)),
        radial-gradient(circle at 18% 12%, rgba(84, 215, 255, .16), transparent 36%);
    box-shadow: 0 18px 46px rgba(9, 40, 92, .09);
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.portfolio-card[hidden],
.portfolio-empty[hidden] {
    display: none !important;
}

.portfolio-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--cyan), var(--accent));
    transform: scaleX(.18);
    transform-origin: left;
    opacity: .65;
    transition: transform .35s ease, opacity .35s ease;
}

.portfolio-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(11, 100, 255, .11);
    border-radius: 50%;
    transform: rotate(-18deg);
    animation: spin-soft 18s linear infinite;
}

.portfolio-card:hover {
    border-color: rgba(11, 100, 255, .3);
    box-shadow: 0 28px 66px rgba(9, 40, 92, .14);
}

.portfolio-card:hover::before {
    transform: scaleX(1);
    opacity: 1;
}

.portfolio-card__glow {
    position: absolute;
    inset: -40% -35% auto auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(84, 215, 255, .18), transparent 68%);
    animation: portfolio-glow 5s ease-in-out infinite;
}

.portfolio-card__top,
.portfolio-card__tags,
.portfolio-card__actions {
    position: relative;
    z-index: 1;
}

.portfolio-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 34px;
}

.portfolio-card__index {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    font-weight: 900;
}

.portfolio-card__category {
    max-width: 210px;
    color: #4d6685;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.25;
    text-align: right;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.portfolio-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    font-family: "Unbounded", "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 750;
    line-height: 1.08;
    overflow-wrap: anywhere;
}

.portfolio-card__type,
.portfolio-card__text {
    position: relative;
    z-index: 1;
    margin: 0;
    line-height: 1.55;
}

.portfolio-card__type {
    color: var(--blue);
    font-size: 14px;
    font-weight: 850;
}

.portfolio-card__text {
    margin-top: 18px;
    color: var(--muted);
}

.portfolio-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.portfolio-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(11, 100, 255, .12);
    border-radius: 999px;
    color: #284a72;
    background: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.portfolio-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 12px;
    align-items: center;
    margin-top: auto;
    padding-top: 26px;
}

.portfolio-card__link,
.portfolio-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
    overflow-wrap: anywhere;
}

.portfolio-card__link {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    box-shadow: 0 14px 28px rgba(11, 100, 255, .2);
    transition: transform .22s ease, box-shadow .22s ease;
}

.portfolio-card__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(11, 100, 255, .26);
}

.portfolio-card__link svg {
    width: 16px;
    height: 16px;
}

.portfolio-status {
    color: #17365f;
    border: 1px solid rgba(11, 100, 255, .14);
    background: rgba(232, 242, 255, .9);
}

.portfolio-more {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.portfolio-page-hero {
    position: relative;
    min-height: 72svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at 76% 26%, rgba(84, 215, 255, .34), transparent 33%),
        linear-gradient(135deg, #040b1d 0%, #061c43 52%, #0b2f66 100%);
}

.portfolio-page-hero__bg,
.portfolio-page-arc {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.portfolio-page-hero__bg {
    opacity: .68;
    background-image:
        linear-gradient(rgba(84, 215, 255, .11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(84, 215, 255, .11) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: linear-gradient(90deg, transparent, #000 16%, #000 82%, transparent);
}

.portfolio-page-hero__bg span {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 28px rgba(84, 215, 255, .72);
    animation: node-float 5s ease-in-out infinite;
}

.portfolio-page-hero__bg span:nth-child(1) { top: 28%; left: 11%; }
.portfolio-page-hero__bg span:nth-child(2) { top: 18%; right: 23%; animation-delay: .8s; }
.portfolio-page-hero__bg span:nth-child(3) { right: 11%; bottom: 22%; animation-delay: 1.6s; background: var(--accent); }

.portfolio-page-arc {
    top: -10%;
    left: -14%;
    width: 128%;
    height: 78%;
    opacity: .52;
}

.portfolio-page-hero__inner {
    position: relative;
    z-index: 1;
    padding: 150px 0 86px;
}

.portfolio-page-hero__lead,
.portfolio-page-hero__text {
    max-width: 850px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.48;
}

.portfolio-page-hero__text {
    max-width: 960px;
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.62;
}

.portfolio-cta {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 16% 40%, rgba(84, 215, 255, .24), transparent 34%),
        radial-gradient(circle at 82% 64%, rgba(255, 82, 98, .16), transparent 30%),
        linear-gradient(145deg, #051024, #0b2f66);
}

.portfolio-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .32;
    background-image:
        linear-gradient(rgba(84, 215, 255, .12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(84, 215, 255, .12) 1px, transparent 1px);
    background-size: 70px 70px;
    animation: portfolio-grid-shift 12s linear infinite;
}

.portfolio-cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 48px;
    padding: 92px 0;
}

.portfolio-cta--compact .portfolio-cta__inner {
    padding: 76px 0;
}

.portfolio-cta h2 {
    margin: 0;
    max-width: 760px;
    font-family: "Unbounded", "Manrope", sans-serif;
    font-size: clamp(34px, 4.6vw, 62px);
    line-height: .95;
    letter-spacing: 0;
}

.portfolio-cta p:not(.section-kicker) {
    max-width: 790px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: 18px;
    line-height: 1.62;
}

.scroll-products {
    min-height: 360vh;
    padding: 0;
    color: var(--white);
    background: #051024;
}

.products-pin {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: clamp(28px, 4svh, 46px) 0;
    overflow: hidden;
}

.products-grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    align-items: center;
    gap: 64px;
}

.products-copy .section-kicker {
    color: var(--cyan);
    margin-bottom: 12px;
}

.scroll-products .section-title {
    max-width: 620px;
    font-size: clamp(34px, 3.3vw, 48px);
    line-height: 1;
}

.approach-text {
    max-width: 680px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
    line-height: 1.42;
}

.product-rounds {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.product-round {
    position: relative;
    padding: 12px 18px 12px 62px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    opacity: .78;
    transform: scale(.98);
    transition: opacity .32s ease, transform .32s ease, background .32s ease, border-color .32s ease;
}

.product-round.is-active {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(84, 215, 255, .42);
    background: linear-gradient(135deg, rgba(11, 100, 255, .34), rgba(84, 215, 255, .08));
}

.product-round > span {
    position: absolute;
    top: 12px;
    left: 18px;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    color: var(--bg);
    background: var(--cyan);
    font-size: 13px;
    font-weight: 900;
}

.scroll-products .product-round h3 {
    margin: 0;
    font-size: clamp(16px, 1.15vw, 19px);
    line-height: 1.08;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.scroll-products .product-round p {
    margin: 7px 0 0;
    font-size: 13px;
    line-height: 1.32;
}

.product-stage {
    position: relative;
    height: min(62svh, 610px);
    min-height: 460px;
}

.product-stage::before {
    content: "";
    position: absolute;
    inset: 12% 5%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(84, 215, 255, .34), transparent 60%);
    filter: blur(24px);
    animation: pulse-glow 4s ease-in-out infinite;
}

.product-screen {
    position: absolute;
    inset: 0;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background:
        radial-gradient(circle at 72% 18%, rgba(84, 215, 255, .26), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
    box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateY(90px) scale(.92);
    transition: opacity .38s ease, transform .38s ease;
}

.product-screen.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.product-screen > span {
    position: relative;
    z-index: 2;
    display: inline-flex;
    padding: 10px 12px;
    border-radius: 999px;
    color: var(--cyan);
    background: rgba(84, 215, 255, .12);
    font-family: "Unbounded", "Manrope", sans-serif;
    font-weight: 850;
}

.screen-lines {
    position: absolute;
    inset: 100px 28px 28px;
    opacity: .8;
    background:
        linear-gradient(rgba(84, 215, 255, .12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(84, 215, 255, .12) 1px, transparent 1px);
    background-size: 42px 42px;
}

.screen-network {
    position: absolute;
    right: 13%;
    bottom: 16%;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(84, 215, 255, .95) 0 7px, transparent 8px),
        radial-gradient(circle at 28% 28%, rgba(84, 215, 255, .7) 0 6px, transparent 7px),
        radial-gradient(circle at 73% 31%, rgba(11, 100, 255, .9) 0 7px, transparent 8px),
        radial-gradient(circle at 70% 76%, rgba(84, 215, 255, .55) 0 8px, transparent 9px),
        radial-gradient(circle at 24% 72%, rgba(11, 100, 255, .74) 0 7px, transparent 8px),
        conic-gradient(from 90deg, transparent, rgba(84, 215, 255, .32), transparent, rgba(11, 100, 255, .42), transparent);
    animation: spin-soft 16s linear infinite;
}

.screen-network--wide {
    width: 440px;
    border-radius: 8px;
}

.screen-network--dense {
    background-size: auto, auto, auto, auto, auto, 36px 36px;
    animation-duration: 10s;
}

.screen-network--pulse {
    animation: pulse-glow 2.4s ease-in-out infinite;
}

.approach-visual {
    position: absolute;
    inset: 118px 46px 46px;
    z-index: 1;
    display: grid;
    align-content: center;
    gap: 18px;
}

.process-node,
.process-note,
.data-card,
.journey-screen,
.journey-result,
.role-column {
    border: 1px solid rgba(127, 210, 255, .38);
    border-radius: 8px;
    color: rgba(255, 255, 255, .96);
    background: rgba(6, 20, 47, .78);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
    backdrop-filter: blur(14px);
}

.approach-visual--process {
    align-content: center;
}

.process-node {
    display: grid;
    min-height: 78px;
    place-items: center;
    padding: 16px;
    font-family: "Unbounded", "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
}

.process-node--wide {
    min-height: 86px;
    color: var(--cyan);
    background: linear-gradient(135deg, rgba(11, 100, 255, .52), rgba(84, 215, 255, .18));
}

.process-flow {
    display: grid;
    grid-template-columns: 1fr 42px 1fr 42px 1fr;
    align-items: center;
    gap: 0;
}

.process-arrow {
    position: relative;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.process-arrow::after {
    content: "";
    position: absolute;
    right: -1px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    transform: translateY(-50%) rotate(45deg);
}

.process-note {
    padding: 18px 20px;
    color: rgba(255, 255, 255, .74);
    line-height: 1.45;
    text-align: center;
}

.approach-visual--data {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: center;
}

.data-card {
    position: relative;
    min-height: 92px;
    display: grid;
    place-items: center;
    padding: 16px;
    font-weight: 850;
    text-align: center;
}

.data-card--main {
    color: var(--cyan);
    background: linear-gradient(135deg, rgba(11, 100, 255, .54), rgba(84, 215, 255, .18));
}

.data-card::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 2px;
    height: 20px;
    background: rgba(84, 215, 255, .28);
}

.data-card:nth-last-child(-n + 3)::before {
    display: none;
}

.approach-visual--journey {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: center;
    gap: 22px;
}

.journey-screen {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 178px;
    padding: 20px 18px;
    overflow: hidden;
}

.journey-screen::before {
    content: "";
    position: relative;
    order: 2;
    display: block;
    width: 100%;
    height: 64px;
    margin: 16px 0 22px;
    border-radius: 99px;
    background:
        linear-gradient(rgba(84, 215, 255, .68), rgba(84, 215, 255, .68)) 0 0 / 100% 8px no-repeat,
        linear-gradient(rgba(255, 255, 255, .2), rgba(255, 255, 255, .2)) 0 28px / 100% 8px no-repeat,
        linear-gradient(rgba(255, 255, 255, .16), rgba(255, 255, 255, .16)) 0 56px / 100% 8px no-repeat;
}

.journey-screen strong {
    order: 1;
    flex: 0 0 auto;
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: var(--bg);
    background: var(--cyan);
    font-size: 13px;
}

.journey-screen span {
    position: relative;
    order: 3;
    margin-top: auto;
    font-family: "Unbounded", "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.18;
}

.journey-result {
    grid-column: 1 / -1;
    padding: 18px 20px;
    color: var(--cyan);
    font-weight: 850;
    text-align: center;
}

.approach-visual--roles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: center;
}

.role-column {
    min-height: 260px;
    padding: 18px;
}

.role-column strong {
    display: block;
    margin-bottom: 18px;
    color: var(--cyan);
    text-shadow: 0 0 18px rgba(84, 215, 255, .28);
    font-family: "Unbounded", "Manrope", sans-serif;
    font-size: 15px;
    line-height: 1.18;
}

.role-column span {
    display: block;
    margin-top: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(84, 215, 255, .32);
    border-radius: 8px;
    color: rgba(255, 255, 255, .88);
    background: rgba(255, 255, 255, .1);
    font-weight: 750;
}

.partners {
    overflow: hidden;
    background: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
    align-items: center;
    gap: 56px;
}

.partners-text {
    max-width: 540px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.partner-columns {
    --partner-card-height: 92px;
    --partner-gap: 14px;
    --partner-loop-distance: calc((var(--partner-card-height) + var(--partner-gap)) * 3);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 520px;
    gap: var(--partner-gap);
    overflow: hidden;
    mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}

.partner-column {
    overflow: hidden;
    border-radius: 8px;
}

.partner-track {
    display: flex;
    flex-direction: column;
    gap: var(--partner-gap);
    animation: partners-left 15s linear infinite;
    will-change: transform;
}

.partner-track--right {
    animation-name: partners-right;
}

.partner-track--slow {
    animation-duration: 21s;
}

.partner-track span {
    display: grid;
    flex: 0 0 var(--partner-card-height);
    height: var(--partner-card-height);
    place-items: center;
    padding: 14px;
    border: 1px solid rgba(11, 100, 255, .12);
    border-radius: 8px;
    color: #17365f;
    background: #f6faff;
    font-weight: 850;
    line-height: 1.25;
    text-align: center;
}

.process {
    background: var(--soft);
}

.process-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-line::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
    animation: beam 2.8s linear infinite;
}

.process-line article {
    position: relative;
    min-height: 250px;
    padding: 76px 22px 22px;
    border: 1px solid rgba(11, 100, 255, .12);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(15, 57, 112, .08);
}

.process-line span {
    position: absolute;
    top: 12px;
    left: 20px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue);
    font-weight: 900;
}

.contact {
    color: var(--white);
    background: linear-gradient(145deg, #051024, #0b2f66);
}

.contact .section-kicker {
    color: var(--cyan);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: start;
}

.contact-copy p:not(.section-kicker) {
    max-width: 620px;
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
    line-height: 1.6;
}

.contact-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.contact-items a,
.contact-items span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    font-weight: 750;
}

.contact-items svg {
    width: 18px;
    height: 18px;
    color: var(--cyan);
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 26px 72px rgba(0, 0, 0, .25);
    backdrop-filter: blur(18px);
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form span {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    color: var(--white);
    background: rgba(3, 10, 25, .26);
    outline: 0;
    padding: 16px;
    resize: vertical;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form label.is-invalid input,
.contact-form label.is-invalid textarea {
    border-color: rgba(255, 82, 98, .78);
    background: rgba(255, 82, 98, .07);
    box-shadow: 0 0 0 4px rgba(255, 82, 98, .11);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(84, 215, 255, .72);
    box-shadow: 0 0 0 4px rgba(84, 215, 255, .12);
}

.contact-form label.is-invalid input:focus,
.contact-form label.is-invalid textarea:focus {
    border-color: rgba(255, 82, 98, .86);
    box-shadow: 0 0 0 4px rgba(255, 82, 98, .14);
}

.field-error {
    display: block;
    min-height: 18px;
    margin: -2px 0 0;
    color: #ff8b97;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.35;
}

.field-error:empty {
    display: none;
}

.form-status {
    min-height: 22px;
    margin: 0;
    color: var(--cyan);
    font-weight: 800;
}

.form-status.is-error {
    color: #ff8b97;
}

.footer {
    color: rgba(255, 255, 255, .72);
    background: #030814;
}

.footer-inner {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer p {
    margin: 0;
    text-align: right;
}

.footer .brand {
    flex: 0 0 auto;
}

.footer .brand-logo {
    position: static;
    width: 198px;
    height: auto;
}

.cookie {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 520px;
    padding: 16px;
    border: 1px solid rgba(11, 100, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
    transform: translateY(calc(100% + 40px));
    transition: transform .35s ease;
}

.cookie.is-visible {
    transform: translateY(0);
}

.cookie p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.cookie .button {
    flex: 0 0 auto;
    min-width: 142px;
    gap: 0;
    padding-inline: 18px;
    justify-content: center;
    text-align: center;
}

.cookie .button i,
.cookie .button svg {
    display: none;
}

.cookie .button span {
    display: block;
    line-height: 1;
}

.js-tilt {
    transform-style: preserve-3d;
    will-change: transform;
}

@media (pointer: fine) {
    body {
        cursor: none;
    }

    body * {
        cursor: none !important;
    }

    #cursor,
    #cursor-ring {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999;
        pointer-events: none;
        border-radius: 50%;
        opacity: 0;
        transform: translate(-50%, -50%);
    }

    body.is-pointer #cursor,
    body.is-pointer #cursor-ring {
        opacity: 1;
    }

    #cursor {
        width: 10px;
        height: 10px;
        background: #06142f;
        box-shadow: 0 0 18px rgba(11, 100, 255, .42);
        transition: width .15s ease, height .15s ease, background .15s ease, box-shadow .15s ease, opacity .2s ease;
    }

    #cursor-ring {
        width: 36px;
        height: 36px;
        border: 1.5px solid rgba(11, 100, 255, .45);
        background: rgba(84, 215, 255, .05);
        transition: width .2s ease, height .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
        mix-blend-mode: screen;
    }

    body.cursor-hover #cursor {
        width: 14px;
        height: 14px;
        background: var(--accent);
        box-shadow: 0 0 20px rgba(255, 82, 98, .7);
    }

    body.cursor-hover #cursor-ring {
        width: 48px;
        height: 48px;
        border-color: rgba(255, 82, 98, .55);
        background: rgba(255, 82, 98, .07);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.19, 1, .22, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.body-on-load .hero .reveal {
    opacity: 0;
}

@keyframes ripple {
    to {
        opacity: 0;
        transform: scale(12);
    }
}

@keyframes arc-draw {
    to { stroke-dashoffset: 0; }
}

@keyframes arc-pulse {
    0%, 100% { stroke-width: 4; opacity: .72; }
    50% { stroke-width: 7; opacity: 1; }
}

@keyframes data-rain {
    0% { transform: translateY(-90px); opacity: 0; }
    14% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(112vh); opacity: 0; }
}

@keyframes marquee-x {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-1 * var(--marquee-distance, 50%))); }
}

@keyframes node-float {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(14px, -18px, 0) scale(1.25); }
}

@keyframes particle-rise {
    0% { bottom: -20px; opacity: 0; transform: translateX(0) scale(.8); }
    20% { opacity: 1; }
    100% { bottom: 104%; opacity: 0; transform: translateX(42px) scale(1.5); }
}

@keyframes move-a {
    0%, 100% {
        border-radius: 54% 79% 75% 58% / 70% 66% 71% 47%;
        transform: translate(-4%, 2%) rotate(-20deg) scale(.98);
    }
    33% {
        border-radius: 79% 43% 56% 67% / 58% 64% 61% 60%;
        transform: translate(5%, -3%) rotate(4deg) scale(.88, .98);
    }
    67% {
        border-radius: 55% 77% 56% 67% / 58% 64% 61% 60%;
        transform: translate(2%, 4%) rotate(8deg) scale(1.12, .97);
    }
}

@keyframes move-b {
    0%, 100% {
        border-radius: 60% 59% 51% 58% / 69% 64% 52% 55%;
        transform: translate(0, 0) rotate(35deg) scale(1.08, .96);
    }
    33% {
        border-radius: 51% 95% 72% 59% / 75% 98% 54% 75%;
        transform: translate(-6%, 3%) rotate(0) scale(1);
    }
    67% {
        border-radius: 74% 85% 63% 87% / 81% 100% 62% 82%;
        transform: translate(4%, -4%) rotate(8deg) scale(.88, .97);
    }
}

@keyframes move-c {
    0%, 100% {
        border-radius: 52% 59% 50% 58% / 56% 80% 40% 59%;
        transform: translate(0, 0) rotate(0) scale(1);
    }
    25% {
        border-radius: 71% 58% 100% 43% / 68% 53% 85% 68%;
        transform: translate(4%, -2%) rotate(10deg) scaleX(.86);
    }
    50% {
        border-radius: 99% 62% 87% 69% / 93% 92% 79% 75%;
        transform: translate(0, 3%) rotate(0) scale(.74);
    }
    75% {
        border-radius: 78% 98% 100% 73% / 75% 76% 100% 91%;
        transform: translate(-3%, -1%) rotate(0) scale(.98);
    }
}

@keyframes circle {
    0% { transform: rotate(0) translate3d(-28px, 0, 0) rotate(0); }
    50% { transform: rotate(180deg) translate3d(34px, 12px, 0) rotate(-180deg); }
    100% { transform: rotate(360deg) translate3d(-28px, 0, 0) rotate(-360deg); }
}

@keyframes circle-min {
    0% { transform: rotate(0) translate3d(-12px, 0, 0); }
    50% { transform: rotate(180deg) translate3d(18px, 16px, 0); }
    100% { transform: rotate(360deg) translate3d(-12px, 0, 0); }
}

@keyframes scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(300%); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: .68; transform: scale(.96); }
    50% { opacity: 1; transform: scale(1.04); }
}

@keyframes bar-rise {
    to { transform: scaleY(.72); filter: brightness(1.2); }
}

@keyframes spin-soft {
    to { transform: rotate(360deg); }
}

@keyframes partners-left {
    from { transform: translateY(0); }
    to { transform: translateY(calc(-1 * var(--partner-loop-distance))); }
}

@keyframes partners-right {
    from { transform: translateY(calc(-1 * var(--partner-loop-distance))); }
    to { transform: translateY(0); }
}

@keyframes beam {
    0% { opacity: .22; transform: scaleX(.3); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: .22; transform: scaleX(.3); }
}

@keyframes portfolio-beam {
    from { transform: skewY(-7deg) translate3d(-2%, -8%, 0); }
    to { transform: skewY(-7deg) translate3d(2%, 0, 0); }
}

@keyframes portfolio-glow {
    0%, 100% { opacity: .55; transform: scale(.92) translate3d(0, 0, 0); }
    50% { opacity: 1; transform: scale(1.08) translate3d(-16px, 18px, 0); }
}

@keyframes portfolio-grid-shift {
    from { background-position: 0 0, 0 0; }
    to { background-position: 70px 70px, 70px 70px; }
}

@media (max-width: 1120px) {
    .main-nav,
    .header-actions .button {
        display: none;
    }

    .menu-button {
        display: grid;
    }

    body.menu-open .mobile-menu {
        display: block;
    }

    .advantages-grid,
    .accordion-layout,
    .products-grid,
    .partners-grid,
    .portfolio-heading,
    .portfolio-cta__inner,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-metrics {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
    }

    .portfolio-lead {
        max-width: 760px;
    }

    .portfolio-page-hero {
        min-height: 640px;
    }

    .product-visual {
        position: relative;
        top: auto;
        min-height: 470px;
    }

    .scroll-products {
        min-height: auto;
    }

    .products-pin {
        min-height: auto;
    }

    .product-stage {
        min-height: 460px;
        height: 520px;
    }

    .advantage-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .advantage-card {
        min-height: 240px;
    }

    .advantage-card h3 {
        font-size: 19px;
        line-height: 1.16;
    }

    .site-header .brand {
        width: 166px;
        height: 73px;
    }

    .brand-logo {
        width: 166px;
    }
}

@media (max-width: 820px) {
    :root {
        --container: min(100vw - 28px, 1180px);
    }

    html {
        scroll-padding-top: 86px;
    }

    .section {
        padding: 76px 0;
    }

    .usage .container {
        width: var(--container);
    }

    .header-inner {
        min-height: 72px;
    }

    .icon-link {
        display: none;
    }

    .hero-content {
        padding: 104px 0 70px;
    }

    .hero-image {
        width: 120vw;
        height: 54vh;
        right: -38vw;
        bottom: 2%;
        opacity: .42;
    }

    .hero-title {
        max-width: 100%;
        font-size: clamp(32px, 8.7vw, 44px);
        line-height: 1.02;
        text-wrap: balance;
    }

    .hero-title__desktop {
        display: none !important;
    }

    .hero-title__mobile {
        display: block !important;
        overflow: visible !important;
        padding-bottom: .02em;
    }

    .hero-title__mobile > span {
        transform: none !important;
        transition: none !important;
    }

    .eyebrow {
        max-width: 320px;
        font-size: 12px;
        line-height: 1.4;
    }

    .hero-lead {
        margin-top: 22px;
        font-size: 17px;
        line-height: 1.46;
    }

    .hero-extra {
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.48;
    }

    .hero-controls {
        gap: 12px;
        margin-top: 28px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        max-width: 340px;
    }

    .hero-orbit {
        display: none;
    }

    .brand-arc--hero {
        top: 4%;
        left: -34%;
        width: 168%;
        height: 48%;
        opacity: .18;
    }

    .data-rain {
        display: none;
    }

    .section-heading,
    .slider-heading {
        display: block;
    }

    .portfolio-heading {
        display: block;
    }

    .portfolio-lead {
        margin-top: 22px;
        font-size: 17px;
    }

    .portfolio-intro,
    .portfolio-page-hero__text,
    .portfolio-cta p:not(.section-kicker) {
        font-size: 16px;
    }

    .portfolio-tabs {
        flex-wrap: nowrap;
        margin-inline: calc((100vw - var(--container)) / -2);
        padding-inline: calc((100vw - var(--container)) / 2);
        overflow-x: auto;
        scrollbar-width: none;
    }

    .portfolio-tabs::-webkit-scrollbar {
        display: none;
    }

    .portfolio-tab {
        flex: 0 0 auto;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card {
        min-height: 390px;
    }

    .portfolio-card__top {
        margin-bottom: 26px;
    }

    .portfolio-card__category {
        max-width: 190px;
    }

    .portfolio-page-hero {
        min-height: auto;
    }

    .portfolio-page-hero__inner {
        padding: 124px 0 72px;
    }

    .portfolio-page-arc {
        left: -44%;
        width: 176%;
        height: 54%;
        opacity: .34;
    }

    .portfolio-cta__inner {
        padding: 76px 0;
    }

    .slider-nav {
        margin-top: 22px;
    }

    .advantage-cards,
    .process-line {
        grid-template-columns: 1fr;
    }

    .media-frame {
        min-height: 380px;
    }

    .accordion-head {
        grid-template-columns: 42px 1fr 34px;
        padding: 20px 18px;
    }

    .accordion-body p {
        padding-inline: 18px;
    }

    .product-visual__screen {
        inset: 48px 18px 24px;
        padding: 20px;
    }

    .products-grid {
        gap: 34px;
    }

    .product-rounds {
        gap: 14px;
        margin-top: 22px;
    }

    .product-round {
        min-height: 132px;
        padding: 22px 22px 22px 78px;
    }

    .product-round > span {
        top: 22px;
        left: 22px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .scroll-products .product-round h3 {
        font-size: clamp(22px, 6vw, 34px);
        line-height: 1.08;
    }

    .scroll-products .product-round p {
        margin-top: 12px;
        font-size: 17px;
        line-height: 1.42;
    }

    .product-stage {
        margin-top: 8px;
        display: none;
    }

    .approach-visual {
        inset: 92px 22px 24px;
        gap: 12px;
    }

    .process-flow {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .process-arrow {
        width: 2px;
        height: 22px;
        justify-self: center;
    }

    .process-arrow::after {
        right: 50%;
        top: auto;
        bottom: -1px;
        transform: translateX(50%) rotate(135deg);
    }

    .approach-visual--data {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .data-card {
        min-height: 68px;
        padding: 12px;
        font-size: 13px;
    }

    .approach-visual--journey,
    .approach-visual--roles {
        grid-template-columns: 1fr;
    }

    .journey-screen {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        align-items: center;
        gap: 14px;
        min-height: 96px;
        padding: 16px;
    }

    .journey-screen::before {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        height: 7px;
        margin: 0;
        background: rgba(84, 215, 255, .68);
    }

    .journey-screen strong {
        grid-column: 1;
        grid-row: 1;
    }

    .journey-screen span {
        grid-column: 2;
        grid-row: 1;
        position: relative;
        margin-top: 0;
        font-size: 14px;
    }

    .role-column {
        min-height: auto;
    }

    .role-column span {
        display: inline-block;
        margin-right: 6px;
    }

    .visual-chart {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-visual__screen {
        justify-content: flex-start;
        gap: 20px;
    }

    .product-visual__screen .visual-bars,
    .product-visual__screen .visual-chart {
        display: none;
    }

    .mobile-product-map {
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 16px;
        min-height: 154px;
        padding: 16px;
        border: 1px solid rgba(84, 215, 255, .18);
        border-radius: 8px;
        background:
            radial-gradient(circle at 50% 50%, rgba(84, 215, 255, .18), transparent 55%),
            linear-gradient(rgba(84, 215, 255, .07) 1px, transparent 1px),
            linear-gradient(90deg, rgba(84, 215, 255, .07) 1px, transparent 1px);
        background-size: auto, 24px 24px, 24px 24px;
    }

    .mobile-product-map::before,
    .mobile-product-map::after {
        content: "";
        position: absolute;
        inset: 50% 18px auto;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(84, 215, 255, .68), transparent);
    }

    .mobile-product-map::after {
        inset: 16px auto 16px 50%;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg, transparent, rgba(84, 215, 255, .68), transparent);
    }

    .map-node {
        position: relative;
        z-index: 1;
        display: grid;
        min-height: 56px;
        place-items: center;
        border: 1px solid rgba(84, 215, 255, .26);
        border-radius: 8px;
        color: #e6f8ff;
        background: rgba(6, 31, 67, .74);
        box-shadow: 0 12px 28px rgba(2, 13, 32, .22), inset 0 0 20px rgba(84, 215, 255, .08);
        font-size: 13px;
        font-weight: 850;
    }

    .map-node--api {
        color: #06142f;
        background: linear-gradient(135deg, #54d7ff, #0b64ff);
    }

    .map-node--data {
        border-color: rgba(255, 82, 98, .34);
    }

    .product-visual__screen p {
        margin-top: 4px;
    }

    .partner-columns {
        grid-template-columns: 1fr 1fr;
        height: 430px;
    }

    .partner-column:nth-child(3) {
        display: none;
    }

    .process-line::before {
        display: none;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 26px 0;
    }

    .footer p {
        text-align: left;
    }

    .cookie {
        right: 14px;
        bottom: 14px;
        left: 14px;
        max-width: none;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }

    .cookie p {
        font-size: 14px;
        line-height: 1.38;
    }
}

@media (max-width: 520px) {
    .button {
        width: 100%;
        min-height: 52px;
        padding-inline: 18px;
    }

    .cookie .button {
        min-height: 46px;
        padding-inline: 16px;
    }

    .hero-title {
        font-size: clamp(29px, 8.1vw, 36px);
        line-height: 1.04;
    }

    .hero-controls {
        width: 100%;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .case-card {
        width: min(320px, calc(100vw - 56px));
        height: 430px;
        padding: 14px 14px 22px;
    }

    .portfolio-card {
        padding: 20px;
        min-height: 420px;
    }

    .portfolio-card__top {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .portfolio-card__category {
        max-width: none;
        text-align: left;
    }

    .portfolio-card__link,
    .portfolio-status {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .portfolio-page-hero__lead {
        font-size: 17px;
    }

    .case-visual {
        height: 180px;
        margin-bottom: 22px;
    }

    .product-stage {
        min-height: 430px;
        height: 430px;
        margin-top: 12px;
    }

    .approach-visual {
        inset: 78px 18px 18px;
    }

    .process-node {
        min-height: 56px;
        padding: 10px;
        font-size: 13px;
    }

    .process-note {
        padding: 12px;
        font-size: 13px;
    }

    .journey-result {
        padding: 12px;
        font-size: 13px;
    }

    .product-round {
        min-height: 148px;
        padding: 22px 18px 22px 72px;
    }

    .product-round > span {
        left: 18px;
    }

    .scroll-products .product-round h3 {
        font-size: clamp(24px, 7.2vw, 34px);
    }

    .scroll-products .product-round p {
        font-size: 16px;
        line-height: 1.45;
    }

    .site-header .brand {
        width: 130px;
        height: 57px;
    }

    .brand-logo {
        width: 130px;
    }
}

.portfolio-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .72);
    text-align: center;
}

.project-page .portfolio-page-hero {
    min-height: 72vh;
}

.project-preview-note {
    display: inline-flex;
    width: max-content;
    margin: 0 0 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 210, 77, .14);
    color: #ffd24d;
    font-size: 13px;
    font-weight: 800;
}

.project-tags,
.project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tags {
    margin-top: 22px;
}

.project-tags span {
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 700;
}

.project-actions {
    margin-top: 28px;
    align-items: center;
}

.project-content-section {
    background: #f7f9fc;
}

.project-content {
    max-width: 920px;
    color: #152033;
    font-size: 20px;
    line-height: 1.75;
}

.project-content h2,
.project-content h3,
.project-content h4 {
    margin: 42px 0 14px;
    color: #071225;
    line-height: 1.2;
}

.project-content h2 {
    font-size: 36px;
}

.project-content h3 {
    font-size: 28px;
}

.project-content p,
.project-content ul,
.project-content ol,
.project-content blockquote,
.project-content pre,
.project-content figure {
    margin: 0 0 22px;
}

.project-content a {
    color: var(--accent-blue);
    font-weight: 800;
}

.project-content img {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 30px 0;
    border-radius: 14px;
    box-shadow: 0 28px 70px rgba(18, 32, 62, .14);
}

.project-content blockquote {
    padding: 20px 24px;
    border-left: 4px solid var(--accent-blue);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(18, 32, 62, .08);
}

.project-content pre {
    overflow-x: auto;
    padding: 18px;
    border-radius: 8px;
    background: #101828;
    color: #f4f7fb;
    font-size: 15px;
}

@media (max-width: 820px) {
    .project-page .portfolio-page-hero {
        min-height: auto;
    }

    .project-content {
        font-size: 17px;
    }

    .project-content h2 {
        font-size: 28px;
    }

    .project-content h3 {
        font-size: 23px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }
}

.blog-page .site-header:not(.is-scrolled) {
    color: var(--white);
}

.blog-hero,
.blog-post-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, #06142f 0%, #082b5f 54%, #0b64ff 100%);
}

.blog-hero__inner,
.blog-post-hero__inner {
    position: relative;
    z-index: 2;
    padding: 148px 0 88px;
}

.blog-hero .hero-title,
.blog-post-hero .hero-title {
    max-width: 980px;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.blog-filters a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .08);
    font-weight: 800;
}

.blog-filters a.is-active,
.blog-filters a:hover {
    color: #06142f;
    background: var(--white);
}

.blog-list-section {
    background: #f7f9fc;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: start;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.blog-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(11, 100, 255, .14);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 48px rgba(18, 32, 62, .08);
}

.blog-card__image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #dce8f8;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.04);
}

.blog-card__body {
    padding: 22px;
}

.blog-card__meta,
.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.blog-card__meta span,
.blog-card__meta time,
.blog-post-meta span,
.blog-post-meta time {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(11, 100, 255, .08);
}

.blog-card h2 {
    margin: 18px 0 12px;
    color: #071225;
    font-family: "Unbounded", "Manrope", sans-serif;
    font-size: clamp(21px, 2vw, 30px);
    line-height: 1.12;
}

.blog-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.blog-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.blog-card__links a,
.project-tags a {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    color: #0a3e9b;
    background: rgba(84, 215, 255, .18);
    font-size: 13px;
    font-weight: 800;
}

.blog-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 16px;
}

.blog-sidebar section,
.blog-rss {
    padding: 18px;
    border: 1px solid rgba(11, 100, 255, .14);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 48px rgba(18, 32, 62, .06);
}

.blog-sidebar h2 {
    margin: 0 0 12px;
    font-family: "Unbounded", "Manrope", sans-serif;
    font-size: 18px;
}

.blog-sidebar section > a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(96, 112, 137, .14);
    color: #152033;
    font-weight: 800;
}

.blog-sidebar section > a:first-of-type {
    border-top: 0;
}

.blog-sidebar p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.blog-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-tags-cloud a {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(11, 100, 255, .08);
    color: #0a3e9b;
    font-size: 13px;
    font-weight: 800;
}

.blog-rss {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0a3e9b;
    font-weight: 900;
}

.blog-rss svg {
    width: 18px;
    height: 18px;
}

.blog-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 26px;
    border: 1px solid rgba(11, 100, 255, .14);
    border-radius: 8px;
    background: var(--white);
    color: var(--muted);
    text-align: center;
}

.blog-post-meta {
    margin-top: 28px;
    color: rgba(255, 255, 255, .78);
}

.blog-post-meta span,
.blog-post-meta time {
    background: rgba(255, 255, 255, .1);
}

.blog-cover {
    padding: 34px 0 0;
    background: #f7f9fc;
}

.blog-cover img {
    width: 100%;
    max-height: 560px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.blog-content {
    max-width: 860px;
}

.blog-content h1 {
    font-size: 42px;
}

.blog-content table {
    display: block;
    overflow-x: auto;
    width: 100%;
    border-collapse: collapse;
}

.blog-content th,
.blog-content td {
    padding: 10px 12px;
    border: 1px solid rgba(96, 112, 137, .22);
}

@media (max-width: 1120px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-rss {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .blog-hero__inner,
    .blog-post-hero__inner {
        padding: 116px 0 72px;
    }

    .blog-grid,
    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-card__body {
        padding: 18px;
    }
}
