:root {
    --bg: #f4f8ff;
    --ink: #14213d;
    --text: #44506b;
    --line: #dfe7f7;
    --primary: #1153f4;
    --primary-deep: #0832a8;
    --surface: #ffffff;
    --soft: #edf2ff;
    --radius: 18px;
    --shadow: 0 22px 50px rgba(14, 41, 113, 0.14);
    --header-height: 82px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Bricolage Grotesque", sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #f8fbff 0%, #f2f6ff 100%);
    line-height: 1.6;
}

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

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

.shell {
    width: min(1216px, 92vw);
    margin: 0 auto;
}

h1,
h2,
h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    line-height: 1.12;
    margin: 0;
}

p {
    margin: 0;
    color: var(--text);
}

.hero-lead,
.section-head p,
.platform .section-head p,
.collab-production-head p,
.capabilities-head p,
.impact-head p,
.pricing-head p,
.footer-tagline {
    font-family: "Inter", sans-serif;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248, 251, 255, 0.86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(17, 83, 244, 0.07);
    transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

header.site-header {
    height: 70px;
}

.site-header.is-scrolled {
    height: 58px;
    background: rgba(248, 251, 255, 0.94);
    border-bottom-color: rgba(17, 83, 244, 0.12);
    box-shadow: 0 10px 28px rgba(17, 37, 86, 0.08);
}

.header-shell {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    transition: min-height 0.25s ease;
}

.site-header.is-scrolled .header-shell {
    min-height: 58px;
}

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

.brand-logo {
    height: 36px;
    width: auto;
    transition: height 0.25s ease;
}

.site-header.is-scrolled .brand-logo {
    height: 28px;
}

.site-header .btn {
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled .btn {
    padding: 8px 14px;
    font-size: 0.82rem;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 22px;
}

.nav-links a {
    color: #2a3554;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-switcher {
    position: relative;
    display: inline-flex;
}

.lang-switcher__toggle {
    min-width: 86px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #d3def7;
    background: rgba(255, 255, 255, 0.92);
    color: #2f4578;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.lang-switcher__toggle:hover {
    border-color: #a9c2fb;
}

.lang-switcher__flag {
    font-size: 0.95rem;
    line-height: 1;
}

.lang-switcher__code {
    line-height: 1;
}

.lang-switcher__caret {
    width: 14px;
    height: 14px;
    fill: currentColor;
    opacity: 0.75;
    transition: transform 0.2s ease;
}

.lang-switcher.is-open .lang-switcher__caret {
    transform: rotate(180deg);
}

.lang-switcher__menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 70;
    list-style: none;
    margin: 0;
    padding: 8px;
    min-width: 200px;
    border-radius: 14px;
    border: 1px solid #d3def7;
    background: #fff;
    box-shadow: 0 16px 32px rgba(19, 41, 95, 0.16);
}

.lang-switcher__menu[hidden] {
    display: none !important;
}

.lang-switcher--footer .lang-switcher__menu {
    top: auto;
    bottom: calc(100% + 8px);
}

.lang-switcher__option {
    display: grid;
    grid-template-columns: 20px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    color: #31487a;
    font-size: 0.86rem;
}

.lang-switcher__option:hover {
    background: #f1f6ff;
}

.lang-switcher__option.is-active {
    background: #eaf1ff;
    color: #173eab;
    font-weight: 700;
}

.lang-switcher__name {
    white-space: nowrap;
}

.editor-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #2e69ff;
    background: transparent;
    font-size: clamp(1rem, 1vw, 1.18rem);
    font-weight: 600;
    line-height: 1;
}

.editor-btn-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex: 0 0 auto;
}

.hero-editor-btn {
    display: flex;
    margin: 0 auto 18px;
    width: fit-content;
}

.btn {
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-solid {
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, #2a73ff 100%);
    box-shadow: 0 12px 28px rgba(17, 83, 244, 0.28);
}

.btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(17, 83, 244, 0.34);
}

.btn-ghost {
    background: var(--surface);
    color: #1153f4;
    /* border: 1px solid #256cfd; */
}

.btn-ghost:hover {
    transform: translateY(-2px);
    border-color: #aac3fb;
}

.btn-snake-border {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-color: transparent;
    background: #1153f4;
    color: #fff;
    /* box-shadow: 0 12px 28px rgba(17, 83, 244, 0.24); */
}

.btn-snake-border::before {
    content: "";
    position: absolute;
    top: -35%;
    left: -70%;
    z-index: 0;
    width: 42%;
    height: 170%;
    border-radius: 999px;
    background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.22) 35%, rgba(255, 255, 255, 0.72) 50%, rgba(255, 255, 255, 0.22) 65%, transparent 100%);
    transform: skewX(-22deg);
    animation: buttonShine 2.8s ease-in-out infinite;
}

.btn-snake-border > span:not(.btn-snake-label) {
    display: none;
}

.btn-snake-label {
    position: relative;
    z-index: 1;
}

@keyframes buttonShine {
    0%,
    35% {
        left: -70%;
    }
    70%,
    100% {
        left: 130%;
    }
}

.btn-hero-snake {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-color: #1153f4;
    background: #fff;
    color: #1153f4;
}

.btn-hero-snake::before {
    content: "";
    position: absolute;
    inset: 2px;
    z-index: -1;
    border-radius: 10px;
    background: #fff;
}

.btn-hero-snake > span:not(.btn-snake-label) {
    position: absolute;
    display: block;
    pointer-events: none;
}

.btn-hero-snake > span:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #1153f4, #45a6ff);
    animation: snakeBorderTop 2s linear infinite;
}

.btn-hero-snake > span:nth-child(2) {
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #1153f4, #45a6ff);
    animation: snakeBorderRight 2s linear infinite;
    animation-delay: 1s;
}

.btn-hero-snake > span:nth-child(3) {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, transparent, #1153f4, #45a6ff);
    animation: snakeBorderBottom 2s linear infinite;
}

.btn-hero-snake > span:nth-child(4) {
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to top, transparent, #1153f4, #45a6ff);
    animation: snakeBorderLeft 2s linear infinite;
    animation-delay: 1s;
}

@keyframes snakeBorderTop {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}

@keyframes snakeBorderRight {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(100%);
    }
}

@keyframes snakeBorderBottom {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes snakeBorderLeft {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(-100%);
    }
}

.hero {
    position: relative;
    padding: 72px 0 0px;
    overflow: hidden;
}

@media (min-width: 981px) {
    .hero {
        padding: 72px 0 0;
    }

    .hero-editor-btn {
        margin-bottom: 18px;
    }

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

    .hero-lead {
        margin-top: 20px;
    }

    .hero-cta {
        margin-top: 28px;
    }

    .hero-preview {
        margin-top: 44px;
    }

    .hero-stack {
        height: clamp(340px, 34vw, 520px);
        min-height: 340px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 20%, rgba(101, 147, 255, 0.22), transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(139, 217, 255, 0.32), transparent 44%),
        linear-gradient(180deg, #edf3ff 0%, #e8f0ff 100%);
    z-index: -1;
}

.hero-chip {
    width: fit-content;
    margin: 0 auto 18px;
    padding: 7px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    background: #fff;
    border: 1px solid #b9ceff;
    border-radius: 999px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    text-align: center;
    color: #2f3546;
}

.hero-lead {
    margin: 20px auto 0;
    max-width: 820px;
    text-align: center;
    font-size: 1.06rem;
}

.hero-cta {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-preview {
    margin-top: 44px;
    border-radius: 5px;
    overflow: hidden;
    /* border: 1px solid #d8e5ff; */
}

.hero-stack {
    --stack-peek: 14px;
    --stack-duration: 1150ms;
    --stack-ease: cubic-bezier(0.22, 1, 0.36, 1);

    position: relative;
    width: 100%;
    height: clamp(320px, 36vw, 500px);
    min-height: 320px;
    padding-top: 58px;
    perspective: 1800px;
    overflow: hidden;
    isolation: isolate;
}

.hero-stack::before {
    content: "";
    position: absolute;
    inset: 38px 3% 0;
    border-radius: 34px 34px 0 0;
    background:
        radial-gradient(circle at 16% 0%, rgba(17, 83, 244, 0.16), transparent 38%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.72), rgba(235, 244, 255, 0.46));
    opacity: 0.9;
    z-index: -1;
}

.hero-stack__slide {
    position: absolute;
    inset: 58px 0 0;
    width: 100%;
    height: calc(100% - 58px);
    border-radius: 26px 26px 0 0;
    overflow: hidden;
    background: #fff;
    box-shadow: none;
    transform-origin: center top;
    backface-visibility: hidden;
    pointer-events: none;
    opacity: 0;
    will-change: transform, opacity, filter;
    transition:
        transform var(--stack-duration) var(--stack-ease),
        opacity var(--stack-duration) var(--stack-ease),
        filter var(--stack-duration) var(--stack-ease);
}

.hero-stack__slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    background: #fff;
}

.hero-stack__slide.is-active {
    z-index: 50;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotateX(0deg);
    filter: blur(0);
    box-shadow: none;
}

.hero-stack__slide.is-back-1 {
    z-index: 40;
    opacity: 0.9;
    transform: translate3d(0, calc(var(--stack-peek) * -1), -22px) scale(0.982);
    filter: brightness(1.015);
}

.hero-stack__slide.is-back-2 {
    z-index: 30;
    opacity: 0.62;
    transform: translate3d(0, calc(var(--stack-peek) * -2), -44px) scale(0.964);
    filter: brightness(1.03);
}

.hero-stack__slide.is-back-3 {
    z-index: 20;
    opacity: 0.38;
    transform: translate3d(0, calc(var(--stack-peek) * -3), -66px) scale(0.946);
    filter: brightness(1.045);
}

.hero-stack__slide.is-hidden {
    z-index: 0;
    opacity: 0;
    transform: translate3d(0, calc(var(--stack-peek) * -4), -88px) scale(0.93);
}

.hero-stack__slide.is-leaving {
    z-index: 70;
    opacity: 0;
    transform: translate3d(0, 78px, 0) scale(0.985) rotateX(-7deg);
    filter: blur(0.4px);
    box-shadow: none;
}

.hero-stack__slide.is-entering {
    z-index: 60;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotateX(0deg);
    filter: blur(0);
}
/* .hero-preview  img{
    box-shadow: var(--shadow);
} */
.production-problem {
    padding: 56px 0 34px;
    background: #ffff;
}

.production-problem-panel {
    width: 100%;
    margin: 17px auto;
    padding: 40px;
    border-radius: 28px;
    background: rgba(232, 232, 232, 0.3);
    /* box-shadow: 0 18px 48px rgba(22, 29, 46, 0.05); */
}

.problem-badge {
    width: fit-content;
    margin: 0 auto 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border: 1px solid #ff3f57;
    border-radius: 999px;
    color: #ff3f57;
    background: #fff6f7;
    font-size: 0.76rem;
    line-height: 1;
}

.problem-badge img {
    width: 14px;
    height: 14px;
}

.production-problem h2 {
    max-width: 620px;
    margin: 0 auto 32px;
    color: #4d4d4f;
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 800;
    text-align: center;
}

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

.workflow-card,
.gauge-card,
.problem-point {
    border: 1px solid #e4e6ea;
    border-radius: 10px;
    background: linear-gradient(120deg, #ffffff 0%, #fffaf5 100%);
}

.workflow-card {
    min-height: 235px;
    padding: 24px 26px 18px;
    overflow: hidden;
}

.workflow-card h3 {
    color: #4f4f52;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 800;
}

.workflow-card p {
    margin-top: 1px;
    color: #75777d;
    font-size: 0.9rem;
}

.workflow-visual {
    position: relative;
    margin: 32px -18px 0;
}

.workflow-visual::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -35%;
    width: 34%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 53, 74, 0.18) 45%, transparent 100%);
    animation: workflowSweep 3.8s ease-in-out infinite;
}

.workflow-visual img {
    width: 100%;
    min-width: 520px;
    animation: workflowFloat 5.5s ease-in-out infinite;
}

.gauge-card {
    min-height: 235px;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(140deg, #ffffff 8%, #ffe4e4 100%);
}

.gauge-image {
    width: 100%;
    margin: 22px auto 0;
    transform-origin: 50% 82%;
    animation: gaugePulse 3.6s ease-in-out infinite;
}

.gauge-copy {
    margin-top: -6px;
    padding: 0 24px 18px;
}

.gauge-copy strong {
    display: block;
    color: #626264;
    font-size: 2.25rem;
    line-height: 1;
    font-weight: 800;
}

.gauge-copy p {
    margin-top: 5px;
    color: #626264;
    font-size: 0.94rem;
    line-height: 1.28;
}

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

.problem-point {
    min-height: 150px;
    padding: 27px 30px 22px;
    background: #fff;
    box-shadow: 0 16px 28px rgba(30, 45, 72, 0.03);
    animation: pointRise 0.9s ease both;
}

.problem-point:nth-child(2) {
    animation-delay: 0.12s;
}

.problem-point:nth-child(3) {
    animation-delay: 0.24s;
}

.problem-point-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 8px;
    background: #f8fbff;
    box-shadow: 0 7px 18px rgba(42, 108, 253, 0.12);
}

.problem-point-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.problem-point h3 {
    color: #515154;
    font-size: 1.04rem;
    line-height: 1.16;
    font-weight: 800;
}

@keyframes workflowSweep {
    0%,
    18% {
        transform: translateX(0);
        opacity: 0;
    }
    35% {
        opacity: 1;
    }
    72%,
    100% {
        transform: translateX(420%);
        opacity: 0;
    }
}

@keyframes workflowFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes gaugePulse {
    0%,
    100% {
        transform: rotate(-1deg) scale(1);
    }
    50% {
        transform: rotate(1.5deg) scale(1.025);
    }
}

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

.production-problem .clm-block {
    min-height: 690px;
    overflow: hidden;
}

.production-problem .problem-pill {
    display: block;
    width: 115px;
    height: auto;
    margin: 0 auto 14px;
}

.production-problem .clm-block h2 {
    margin: 0 auto 38px;
    max-width: 780px;
    text-align: center;
    color: #505050;
    font-size: clamp(34px, 3.2vw, 46px);
    font-weight: 800;
    line-height: 1.18;
}

.production-problem .clm-layout {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.production-problem .clm-top-row {
    display: grid;
    grid-template-columns: minmax(0, 2.35fr) minmax(260px, 0.85fr);
    gap: 22px;
}

.production-problem .clm-bottom-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.production-problem .clm-card {
    position: relative;
    border: 1px solid rgba(218, 218, 218, 0.78);
    border-radius: 20px;
    background: #fffdfb;
    box-shadow: 0 18px 42px rgba(30, 30, 30, 0.035);
}

.production-problem .workflow-card {
    height: 290px;
    min-height: 0;
    padding: 34px 38px 0;
    overflow: hidden;
    border-radius: 14px;
}

.production-problem .workflow-copy h3 {
    margin: 0;
    color: #4f4f4f;
    font-size: 30px;
    line-height: 1.05;
    font-weight: 800;
}

.production-problem .workflow-copy p {
    margin: 8px 0 0;
    color: #6d6d6d;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 500;
}

.production-problem .schema-frame {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 126px;
    overflow: visible;
}

.production-problem .schema-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    will-change: clip-path, opacity, transform;
}

.production-problem .schema-workflow {
    --schema-card: #4a4a4a;
    --schema-card-active: #555;
    --schema-card-border: #969696;
    --schema-text: #f1f1f1;
    --schema-line: #242a31;
    --schema-accent: #ff284b;
    display: none;
    width: 100%;
    overflow: visible;
    background: transparent;
}

.production-problem .schema-workflow__svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.production-problem .schema-workflow .endpoint-dots circle {
    fill: var(--schema-line);
    opacity: .42;
    transform-box: fill-box;
    transform-origin: center;
}

.production-problem .schema-workflow .endpoint-dots circle:nth-child(2) { opacity: .55; }
.production-problem .schema-workflow .endpoint-dots circle:nth-child(3) { opacity: .7; }
.production-problem .schema-workflow .endpoint-dots circle:nth-child(4) { opacity: .9; }

.production-problem .schema-workflow .endpoint-dots .accent-dot {
    fill: var(--schema-accent);
    opacity: 1;
    filter: url(#schemaRedGlow);
    animation: endpointPulse 1.8s ease-in-out infinite;
}

.production-problem .schema-workflow .endpoint-end .accent-dot {
    animation-delay: .9s;
}

.production-problem .schema-workflow .route-base,
.production-problem .schema-workflow .route-pulse {
    fill: none;
    vector-effect: non-scaling-stroke;
}

.production-problem .schema-workflow .route-base {
    stroke: var(--schema-line);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .35s ease, opacity .35s ease;
}

.production-problem .schema-workflow .connector.done .route-base {
    stroke: #353c45;
}

.production-problem .schema-workflow .route-pulse {
    stroke: var(--schema-accent);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    filter: url(#schemaRedGlow);
    stroke-dasharray: .11 1.2;
    stroke-dashoffset: .11;
}

.production-problem .schema-workflow .connector.running .route-pulse {
    opacity: 1;
    animation: workflowTravel 1.05s cubic-bezier(.45, 0, .2, 1) forwards;
}

.production-problem .schema-workflow .node {
    opacity: .7;
    transform-box: fill-box;
    transform-origin: center;
    transition: opacity .35s ease, transform .35s cubic-bezier(.2, .8, .2, 1);
}

.production-problem .schema-workflow .node .card {
    fill: var(--schema-card);
    stroke: var(--schema-card-border);
    stroke-width: 1.15;
    vector-effect: non-scaling-stroke;
    transition: fill .35s ease, stroke .35s ease, filter .35s ease;
}

.production-problem .schema-workflow .node .label,
.production-problem .schema-workflow .node .icon {
    color: var(--schema-text);
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.production-problem .schema-workflow .node .label {
    fill: var(--schema-text);
    stroke: none;
    font-size: 26px;
    font-weight: 450;
    letter-spacing: -.3px;
    dominant-baseline: middle;
}

.production-problem .schema-workflow .node.active {
    opacity: 1;
    transform: scale(1.028);
}

.production-problem .schema-workflow .node.active .card {
    fill: var(--schema-card-active);
    stroke: #b8b8b8;
    filter: url(#schemaSoftGlow);
}

.production-problem .schema-workflow .node.done {
    opacity: 1;
}

.production-problem .schema-workflow .icon-image {
    pointer-events: none;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
}

@keyframes endpointPulse {
    0%, 100% {
        transform: scale(.8);
        opacity: .55;
    }
    50% {
        transform: scale(1.25);
        opacity: 1;
    }
}

@keyframes workflowTravel {
    from { stroke-dashoffset: .11; }
    to { stroke-dashoffset: -1; }
}

.production-problem .schema-scan {
    position: absolute;
    top: 1px;
    left: 0;
    width: 70px;
    height: 126px;
    pointer-events: none;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255, 55, 80, 0.18), transparent);
    filter: blur(3px);
    opacity: 0;
    display: none;
}

@media (min-width: 1024px) {
    .production-problem .workflow-card {
        overflow: visible;
    }

    .production-problem .schema-frame {
        bottom: 0;
        height: 158px;
    }

    .production-problem .schema-workflow {
        display: block;
        transform: translateY(-12px);
    }

    .production-problem .schema-img,
    .production-problem .schema-scan {
        display: none;
    }
}

.production-problem .gauge-card {
    height: 290px;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 26px 22px 28px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(circle at 100% 0%, rgba(255, 55, 80, 0.13) 0, rgba(255, 55, 80, 0.10) 22%, transparent 52%), #fffdfb;
}

.production-problem .gauge-wrap {
    position: absolute;
    top: 32px;
    left: 50%;
    width: 210px;
    height: 104px;
    transform: translateX(-50%);
}

.production-problem .gauge-arc {
    position: absolute;
    inset: 0;
    width: 210px;
    height: auto;
    display: block;
}

.production-problem .gauge-needle {
    position: absolute;
    left: 100px;
    bottom: 5px;
    width: 68px;
    height: 10px;
    border-radius: 999px;
    background: #4b4b4b;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    transform-origin: 4px 50%;
    transform: rotate(-164deg);
}

.production-problem .gauge-hub {
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 32px;
    height: 32px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #545454;
    box-shadow: 0 0 0 2px #6b6b6b;
    transform: translateX(-50%);
}

.production-problem .gauge-card strong {
    margin: 0;
    color: #575757;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.production-problem .gauge-card p {
    margin: 8px 0 0;
    color: #626262;
    font-size: 17px;
    line-height: 1.22;
    font-weight: 500;
}

.production-problem .info-card {
    height: 208px;
    min-height: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    border: 1px solid rgba(224, 224, 224, 0.95);
    border-radius: 20px;
    background: linear-gradient(137deg, #f8fbff 0%, #ffffff 42%, #fbfbfb 100%);
    /* box-shadow: 0 18px 44px rgba(20, 68, 150, 0.06); */
}

.production-problem .info-card img {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
    padding: 0;
    /* border: 2px solid #dfeaff; */
    border-radius: 10px;
    /* background: #fff; */
    /* box-shadow: 0 12px 28px rgba(24, 86, 216, 0.08); */
    margin-left: -10px;
}

.production-problem .info-card p {
    margin: 0;
    color: #4f4f4f;
    font-size: clamp(24px, 2.25vw, 22px);
    line-height: 1.14;
    font-weight: 800;
    /* letter-spacing: -0.7px; */
}

.production-problem .clm-block:not(.is-visible) .problem-pill,
.production-problem .clm-block:not(.is-visible) h2,
.production-problem .clm-block:not(.is-visible) .clm-card {
    opacity: 0;
    transform: translateY(12px);
}

.production-problem .clm-block.is-visible .problem-pill,
.production-problem .clm-block.is-visible h2,
.production-problem .clm-block.is-visible .clm-card {
    animation: clmRiseIn 720ms both cubic-bezier(.22, .85, .22, 1);
}

.production-problem .clm-block.is-visible .problem-pill { animation-delay: 20ms; }
.production-problem .clm-block.is-visible h2 { animation-delay: 90ms; }
.production-problem .clm-block.is-visible .workflow-card { animation-delay: 180ms; }
.production-problem .clm-block.is-visible .gauge-card { animation-delay: 250ms; }
.production-problem .clm-block.is-visible .info-card--one { animation-delay: 330ms; }
.production-problem .clm-block.is-visible .info-card--two { animation-delay: 400ms; }
.production-problem .clm-block.is-visible .info-card--three { animation-delay: 470ms; }

.production-problem .clm-block:not(.is-visible) .schema-img {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
}

.production-problem .clm-block:not(.is-visible) .schema-workflow {
    opacity: 0;
    transform: translateY(8px);
}

.production-problem .clm-block.is-visible .schema-img {
    animation: clmSchemaReveal 1900ms 620ms both cubic-bezier(.32, .72, .24, 1);
}

.production-problem .clm-block.is-visible .schema-workflow {
    animation: clmFadeRise 900ms 520ms both cubic-bezier(.2, .9, .2, 1);
}

.production-problem .clm-block.is-visible .schema-scan {
    animation: clmSchemaScan 1900ms 620ms both ease-in-out;
}

.production-problem .clm-block.is-visible .gauge-arc {
    animation: clmArcPop 900ms 520ms both cubic-bezier(.2, .9, .2, 1);
}

.production-problem .clm-block.is-visible .gauge-needle {
    animation: clmNeedleRun 1450ms 760ms both cubic-bezier(.2, 1.22, .32, 1);
}

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

@keyframes clmSchemaReveal {
    0% {
        clip-path: inset(0 100% 0 0);
        opacity: 0.25;
        transform: translateY(2px);
    }
    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes clmSchemaScan {
    0% {
        opacity: 0;
        transform: translateX(-35px);
    }
    18%,
    72% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(760px);
    }
}

@keyframes clmArcPop {
    from {
        opacity: 0;
        transform: scale(.88) translateY(3px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes clmNeedleRun {
    0% { transform: rotate(-164deg); }
    70% { transform: rotate(-20deg); }
    100% { transform: rotate(-38deg); }
}

.home-features {
    padding: 62px 0 26px;
    background: linear-gradient(180deg, rgba(236, 242, 255, 0.66) 0%, rgba(244, 248, 255, 0.08) 100%);
}

.home-features-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 24px;
}

.home-features-head h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.02em;
    color: #102447;
    max-width: 760px;
}

.home-features-head p {
    margin-top: 12px;
    max-width: 710px;
    font-size: 1.12rem;
}

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

.home-feature-card {
    background: #fff;
    border: 1px solid #dbe6ff;
    border-radius: 18px;
    padding: 22px;
    min-height: 188px;
    box-shadow: 0 16px 32px rgba(14, 41, 113, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 40px rgba(14, 41, 113, 0.12);
}

.home-feature-icon {
    width: 50px;
    height: 50px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 14px;
    color: #2d59ff;
    background: linear-gradient(145deg, #edf2ff 0%, #e1eaff 100%);
    border: 1px solid #ccdbff;
    border-radius: 14px;
}

.home-feature-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.home-feature-card h3 {
    font-size: 1.9rem;
    color: #102447;
    margin-bottom: 8px;
}

.home-feature-card p {
    font-size: 1.08rem;
    color: #4d5f86;
}

.templates-showcase {
    padding: 56px 0 18px;
    background:
        radial-gradient(circle at 10% 10%, rgba(79, 130, 255, 0.12), transparent 38%),
        radial-gradient(circle at 90% 0%, rgba(84, 185, 255, 0.18), transparent 42%),
        linear-gradient(180deg, rgba(244, 248, 255, 0.86) 0%, rgba(237, 243, 255, 0.5) 100%);
}

.templates-head {
    margin-bottom: 18px;
}

.templates-head h2 {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    color: #15274f;
}

.templates-head p {
    margin-top: 10px;
    max-width: 820px;
}

.template-carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
}

.template-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #c9dbff;
    color: #2451cd;
    background: #fff;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(18, 44, 113, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.template-nav:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: #9cb7f7;
    box-shadow: 0 14px 26px rgba(18, 44, 113, 0.16);
}

.template-nav:disabled {
    opacity: 0.45;
    cursor: default;
    box-shadow: none;
}

.template-viewport {
    overflow: hidden;
    padding: 10px 2px;
}

.template-track {
    display: flex;
    gap: 18px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.template-card {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dbe7ff;
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 16px 34px rgba(14, 41, 113, 0.09);
    transform: translateY(0) scale(1);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.template-card::after {
    content: "";
    position: absolute;
    inset: -20% auto -20% -48%;
    width: 34%;
    pointer-events: none;
    background: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.55) 48%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(10deg) translateX(0);
    opacity: 0;
}

.template-preview {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d6e3ff;
    background: linear-gradient(140deg, #f6f9ff 0%, #eaf1ff 100%);
    margin-bottom: 12px;
}

.template-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 15%, rgba(78, 133, 255, 0.22), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.template-preview svg {
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(0) scale(1);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.template-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: #adc6ff;
    box-shadow: 0 24px 44px rgba(17, 51, 132, 0.18);
}

.template-card:hover::after {
    opacity: 1;
    animation: templateSheen 0.7s ease forwards;
}

.template-card:hover .template-preview::before {
    opacity: 1;
}

.template-card:hover .template-preview svg {
    transform: translateY(-2px) scale(1.03);
    filter: saturate(1.08);
}

.template-card:hover h3 {
    color: #1b46b8;
}

.template-card:hover p {
    color: #415986;
}

.template-card h3 {
    font-size: 1.05rem;
    color: #13295c;
    margin-bottom: 6px;
}

.template-card p {
    font-size: 0.9rem;
    color: #516389;
}

.template-dots {
    margin-top: 16px;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.template-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
    background: #b8ccf8;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.template-dot.is-active {
    background: #2d59ff;
    transform: scale(1.15);
}

@keyframes templateSheen {
    from {
        transform: rotate(10deg) translateX(0);
    }
    to {
        transform: rotate(10deg) translateX(430%);
    }
}

.platform,
.feed-slice,
.content-wrap,
.article-shell {
    padding: 72px 0;
}

.platform {
    overflow: hidden;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 42px;
}

.platform-solution-badge {
    display: block;
    width: 115px;
    height: auto;
    margin: 0 auto 12px;
    object-fit: contain;
}

.section-head h2,
.split-head h2,
.archive-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: #31353e;
}

.section-head p,
.split-head p,
.archive-hero p {
    margin-top: 12px;
}

.platform .section-head h2 {
    color: #505050;
    font-size: clamp(30px, 3.6vw, 48px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.35px;
}

.platform .section-head p {
    max-width: 600px;
    margin: 12px auto 0;
    color: #505050;
    font-size: clamp(9px, 1vw, 21px);
    line-height: 1.3;
    font-weight: 500;
}

.platform-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 34px;
    align-items: center;
}

.steps {
    margin: 0;
    padding: 0;
    list-style: none;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.step-item {
    padding: 8px 0 14px;
    border-bottom: 1px solid #dbe4f5;
}

.step-item:last-child {
    border-bottom: 0;
}

.step-trigger {
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.step-title {
    display: inline-block;
    font-size: clamp(13px, 1vw, 23px);
    font-weight: 700;
    color: #8f96a7;
    font-family: "Bricolage Grotesque", sans-serif;
    transition: color 0.25s ease;
}

.step-copy {
    margin-top: 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    color: #505050;
    font-size: clamp(11px, 0.86vw, 14px);
    line-height: 1.32;
    font-weight: 500;
    transition: max-height 0.38s ease, opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-4px);
}

.step-item.is-active .step-title {
    color: var(--primary);
}

.step-item.is-active .step-copy {
    max-height: 72px;
    opacity: 1;
    transform: translateY(0);
}

.dual-frame {
    position: relative;
    width: min(787px, 100%);
    min-height: 484px;
    justify-self: end;
    border-radius: 49px;
    background: linear-gradient(130deg, #d8e4ff 0%, #c4dafd 100%);
    /* box-shadow: var(--shadow); */
    padding: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.platform-media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
    border-radius: inherit;
    overflow: hidden;
}

.platform-shot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    transition: opacity 0.55s ease, transform 0.65s cubic-bezier(.22, .85, .22, 1);
}

.platform-shot.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.platform:not(.is-visible) .section-head,
.platform:not(.is-visible) .steps,
.platform:not(.is-visible) .dual-frame {
    opacity: 0;
    transform: translateY(24px);
}

.platform.is-visible .section-head,
.platform.is-visible .steps,
.platform.is-visible .dual-frame {
    animation: platformRiseIn 780ms both cubic-bezier(.22, .85, .22, 1);
}

.platform.is-visible .section-head {
    animation-delay: 60ms;
}

.platform.is-visible .steps {
    animation-delay: 160ms;
}

.platform.is-visible .dual-frame {
    animation-delay: 260ms;
}

.platform.is-visible .step-item {
    animation: platformStepIn 620ms both cubic-bezier(.22, .85, .22, 1);
}

.platform.is-visible .step-item:nth-child(1) {
    animation-delay: 260ms;
}

.platform.is-visible .step-item:nth-child(2) {
    animation-delay: 340ms;
}

.platform.is-visible .step-item:nth-child(3) {
    animation-delay: 420ms;
}

@keyframes platformRiseIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes platformStepIn {
    from {
        opacity: 0;
        transform: translateX(-14px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.collab-production {
    padding: 54px 0 72px;
    overflow: hidden;
    background: #fff;
}

.collab-production-head {
    max-width: 980px;
    margin: 0 auto 38px;
    text-align: center;
}

.collab-production-head h2 {
    margin: 0;
    color: #4f4f4f;
    font-size: clamp(30px, 3.6vw, 48px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.collab-production-head p {
    margin-top: 18px;
    color: #5d5d5d;
    font-size: clamp(18px, 2.1vw, 28px);
    line-height: 1.08;
    font-weight: 600;
}

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

.collab-card {
    min-height: 420px;
    padding: 18px 18px 28px;
    border: 1px solid #e4e8f0;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
    /* box-shadow: 0 18px 40px rgba(21, 43, 86, 0.04); */
}

.collab-card img {
    width: 100%;
    aspect-ratio: 1.68 / 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 26px;
}

.collab-card h3 {
    margin: 0 0 18px;
    color: #075dff;
    font-size: clamp(16px, 1.35vw, 22px);
    line-height: 1.12;
    font-weight: 800;
}

.collab-card p {
    color: #515151;
    font-size: clamp(13px, 1vw, 16px);
    line-height: 1.45;
    font-weight: 500;
}

[data-fade-section]:not(.is-visible) .collab-production-head,
[data-fade-section]:not(.is-visible) .collab-card {
    opacity: 0;
    transform: translateY(28px);
}

[data-fade-section].is-visible .collab-production-head,
[data-fade-section].is-visible .collab-card {
    animation: collabFadeIn 760ms both cubic-bezier(.22, .85, .22, 1);
}

[data-fade-section].is-visible .collab-production-head {
    animation-delay: 40ms;
}

[data-fade-section].is-visible .collab-card:nth-child(1) {
    animation-delay: 140ms;
}

[data-fade-section].is-visible .collab-card:nth-child(2) {
    animation-delay: 240ms;
}

[data-fade-section].is-visible .collab-card:nth-child(3) {
    animation-delay: 340ms;
}

@keyframes collabFadeIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.capabilities-section {
    padding: 42px 0 92px;
    overflow: hidden;
    background: #fff;
}

.capabilities-section h2 {
    margin: 0 auto 48px;
    max-width: 620px;
    color: #4f4f4f;
    text-align: center;
    font-size: clamp(32px, 3.3vw, 48px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.7px;
}

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

.capability-card {
    min-width: 0;
}

.capability-visual {
    position: relative;
    min-height: 228px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    /* border: 1px solid #e5e8ef; */
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    overflow: hidden;
}

.capability-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.capability-card h3 {
    margin: 0 0 14px;
    color: #4f4f4f;
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.16;
    font-weight: 800;
}

.capability-card p {
    max-width: 330px;
    color: #515151;
    font-size: clamp(12px, 0.86vw, 14px);
    line-height: 1.45;
    font-weight: 500;
}

.capabilities-section:not(.is-visible) h2,
.capabilities-section:not(.is-visible) .capability-card {
    opacity: 0;
    transform: translateY(28px);
}

.capabilities-section.is-visible h2,
.capabilities-section.is-visible .capability-card {
    animation: collabFadeIn 760ms both cubic-bezier(.22, .85, .22, 1);
}

.capabilities-section.is-visible h2 {
    animation-delay: 40ms;
}

.capabilities-section.is-visible .capability-card:nth-child(1) { animation-delay: 120ms; }
.capabilities-section.is-visible .capability-card:nth-child(2) { animation-delay: 240ms; }
.capabilities-section.is-visible .capability-card:nth-child(3) { animation-delay: 360ms; }
.capabilities-section.is-visible .capability-card:nth-child(4) { animation-delay: 480ms; }
.capabilities-section.is-visible .capability-card:nth-child(5) { animation-delay: 600ms; }
.capabilities-section.is-visible .capability-card:nth-child(6) { animation-delay: 720ms; }

.impact-section {
    padding: 46px 0 92px;
    overflow: hidden;
    background: #fff;
}

.impact-head {
    max-width: 720px;
    margin: 0 auto 34px;
    text-align: center;
}

.impact-head h2 {
    margin: 0;
    color: #4f4f4f;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.13;
    font-weight: 800;
    letter-spacing: -0.55px;
}

.impact-head p {
    margin-top: 16px;
    color: #515151;
    font-size: clamp(12px, 0.9vw, 14px);
    line-height: 1.45;
    font-weight: 500;
}

.impact-banner {
    min-height: 112px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    align-items: center;
    gap: 24px;
    margin-bottom: 42px;
    padding: 24px 34px;
    border: 1px solid #e5e8ef;
    border-radius: 14px;
    background:
        radial-gradient(circle at 8% 18%, rgba(17, 83, 244, 0.08), transparent 28%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 42%, #ffffff 100%);
    /* box-shadow: 0 16px 36px rgba(21, 43, 86, 0.035); */
}

.impact-banner-main {
    display: flex;
    align-items: center;
    gap: 24px;
}

.impact-icon {
    width: 62px;
    height: 62px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    /* border: 1px solid #d9e7ff; */
    /* border-radius: 10px; */
    /* background: #fff; */
    /* box-shadow: 0 10px 24px rgba(18, 88, 255, 0.08); */
}

.impact-icon img {
    width: 64px;
    height: 63px;
    object-fit: contain;
}

.impact-banner strong {
    color: #075dff;
    font-size: clamp(14px, 1.1vw, 17px);
    line-height: 1.25;
    font-weight: 800;
}

.impact-banner p {
    justify-self: center;
    color: #515151;
    font-size: clamp(12px, 0.88vw, 14px);
    line-height: 1.4;
    font-weight: 500;
}

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

.impact-card {
    min-height: 310px;
    padding: 34px;
    border: 1px solid #e5e8ef;
    border-radius: 12px;
    background:
        radial-gradient(circle at 12% 12%, rgba(17, 83, 244, 0.09), transparent 32%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 44%, #ffffff 100%);
    /* box-shadow: 0 16px 36px rgba(21, 43, 86, 0.035); */
}

.impact-card h3 {
    margin: 34px 0 28px;
    color: #075dff;
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.18;
    font-weight: 800;
}

.impact-card p {
    max-width: 270px;
    color: #515151;
    font-size: clamp(12px, 0.85vw, 14px);
    line-height: 1.5;
    font-weight: 500;
}

.impact-card strong {
    display: block;
    margin-top: 28px;
    color: #00a65a;
    font-size: clamp(12px, 0.86vw, 14px);
    line-height: 1.35;
    font-weight: 400;
}

.impact-section:not(.is-visible) .impact-head,
.impact-section:not(.is-visible) .impact-banner,
.impact-section:not(.is-visible) .impact-card {
    opacity: 0;
    transform: translateY(28px);
}

.impact-section.is-visible .impact-head,
.impact-section.is-visible .impact-banner,
.impact-section.is-visible .impact-card {
    animation: collabFadeIn 760ms both cubic-bezier(.22, .85, .22, 1);
}

.impact-section.is-visible .impact-head { animation-delay: 40ms; }
.impact-section.is-visible .impact-banner { animation-delay: 160ms; }
.impact-section.is-visible .impact-card:nth-child(1) { animation-delay: 300ms; }
.impact-section.is-visible .impact-card:nth-child(2) { animation-delay: 420ms; }
.impact-section.is-visible .impact-card:nth-child(3) { animation-delay: 540ms; }

.split-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 26px;
}

.pricing-section {
    padding: 86px 0;
    background: #fff;
}

.pricing-panel {
    padding: 0;
    background: #fff;
}

.pricing-head {
    text-align: center;
    margin-bottom: 34px;
}

.pricing-head h2 {
    color: #4f4f4f;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
    font-weight: 800;
    margin-bottom: 14px;
}

.pricing-head p {
    color: #505050;
    font-size: clamp(12px, 0.9vw, 14px);
    line-height: 1.4;
    margin-bottom: 30px;
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 5px;
    border-radius: 999px;
    background: #f4f4f4;
    margin-bottom: 0;
}

.pricing-toggle button {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 0;
    border-radius: 999px;
    padding: 9px;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    color: #a5a5a5;
    background: transparent;
    cursor: pointer;
    font-family: "Inter", sans-serif;
}

.pricing-toggle button.is-active {
    color: #fff;
    background: #4c4c4c;
    box-shadow: none;
    border-radius: 999px;
    /* padding-left: 0; */
    /* padding-right: 0; */
    padding: 3px 5px;
}

.pricing-toggle-deal {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-left: 4px;
    padding: 0 5px;
    border-radius: 999px;
    color: #fff;
    background: #1fc36a;
    font-size: 12px;
    font-weight: 400;
}

.pricing-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #dfe5ef;
    box-shadow: none;
    padding: 30px 24px 22px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 610px;
}

.pricing-card.is-recommended {
    z-index: 1;
    border: 2px solid #1262ff;
    background: #fff;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #1262ff;
    color: #fff;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 700;
}

.pricing-card h3 {
    color: #4f4f4f;
    font-size: clamp(31px, 2.35vw, 40px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.pricing-subtitle {
    margin-top: 14px;
    color: #505050;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 400;
}

.pricing-price {
    margin-top: 34px;
    min-height: 30px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    color: #4f4f4f;
}

.pricing-price small {
    font-size: 13px;
    color: #4f4f4f;
    font-weight: 400;
}

.pricing-note {
    /* margin-top: 6px; */
    min-height: 35px;
    font-size: 13px;
    line-height: 1.35;
    color: #505050;
    font-weight: 400;
}

.pricing-note[aria-hidden="true"] {
    visibility: hidden;
}

.pricing-cta {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 0;
    padding: 12px 16px;
    border: 1.5px solid #2d59ff;
    border-radius: 8px;
    color: #2d59ff;
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
    background: #fff;
}

.pricing-card.is-recommended .pricing-cta {
    border-color: #2d59ff;
    color: #2d59ff;
    background: #fff;
}

.pricing-meta {
    margin-top: 28px;
    color: #4f4f4f;
    font-size: 12px;
    font-weight: 800;
}

.pricing-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 13px;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: #4f4f4f;
    font-size: 14px;
    line-height: 1.28;
    font-weight: 400;
}

.pricing-icon {
    flex: 0 0 auto;
    margin-top: 0;
    width: 14px;
    height: 14px;
    display: inline-grid;
    place-items: center;
}

.pricing-icon img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.pricing-icon.is-positive {
    border: 0;
    background: transparent;
}

.pricing-icon.is-negative {
    border: 0;
    background: transparent;
}

.pricing-feature-text {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    min-width: 0;
}

.pricing-feature-text strong {
    color: #4f4f4f;
    font-weight: 800;
}

.pricing-feature.is-negative {
    color: #8f8f8f;
}

.pricing-feature.is-negative .pricing-feature-text strong,
.pricing-feature.is-negative .pricing-feature-suffix {
    color: #8f8f8f;
    font-weight: 400;
}

.pricing-feature-suffix {
    color: #4f4f4f;
    font-weight: 400;
}

.pricing-feature-badge {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 8px;
    border-radius: 5px;
    color: #7a43ff;
    background: #efe6ff;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
}

.team-calculator {
    margin-top: 35px;
    padding: 18px;
    border-radius: 10px;
    border: 0;
    background: #eef5ff;
    box-shadow: none;
}

.team-calculator h4 {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: 0;
    color: #111;
}

.team-calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #111;
    font-weight: 600;
}

.team-calc-row > span:first-child {
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    font-size: 11px;
    color: #111;
}

.team-calc-total {
    font-size: 11px;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.01em;
}

.team-calculator input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(45, 89, 255, 0.85), rgba(92, 197, 255, 0.6));
    appearance: none;
    outline: none;
    border: 0;
}

.team-calculator input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    margin-top: -6px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: linear-gradient(180deg, #2d59ff 0%, #1b41cf 100%);
    box-shadow: 0 4px 12px rgba(19, 52, 142, 0.35);
    cursor: pointer;
}

.team-calculator input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(45, 89, 255, 0.85), rgba(92, 197, 255, 0.6));
}

.team-calculator input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    margin-top: 0;
    border-radius: 50%;
    border: 2px solid #fff;
    background: linear-gradient(180deg, #2d59ff 0%, #1b41cf 100%);
    box-shadow: 0 4px 12px rgba(19, 52, 142, 0.35);
    cursor: pointer;
}

.team-calculator input[type="range"]::-moz-range-track {
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(45, 89, 255, 0.85), rgba(92, 197, 255, 0.6));
}

.team-calculator input[type="range"]:focus-visible {
    outline: 2px solid #2d59ff;
    outline-offset: 4px;
}

.team-calc-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 10px;
    color: #505050;
}

.team-credits {
    margin-top: 24px;
}

.team-credits h5 {
    margin: 0 0 12px;
    color: #075dff;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 800;
}

.team-credit-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.team-credit-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 9px;
    border-radius: 6px;
    background: #fff;
    color: #075dff;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
}

.team-credit-pills strong {
    font-weight: 500;
}

.pricing-addon {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    margin-top: 54px;
    padding: 24px 30px;
    border: 1px solid #dfe5ef;
    border-radius: 15px;
    background:
        radial-gradient(circle at 8% 18%, rgba(17, 83, 244, 0.08), transparent 28%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 42%, #ffffff 100%);
}

.pricing-addon-copy {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.pricing-addon-icon {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
}

.pricing-addon-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.pricing-addon h3 {
    margin: 0 0 8px;
    color: #075dff;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 800;
}

.pricing-addon p {
    max-width: 720px;
    color: #505050;
    font-size: 12px;
    line-height: 1.45;
}

.pricing-addon-price {
    text-align: right;
    color: #111;
}

.pricing-addon-price strong {
    font-size: 19px;
    line-height: 1;
    font-weight: 800;
}

.pricing-addon-price span {
    margin-left: 2px;
    color: #505050;
    font-size: 12px;
}

.pricing-addon-price small {
    display: block;
    width: fit-content;
    margin: 9px 0 0 auto;
    padding: 4px 9px;
    border-radius: 4px;
    color: #7a43ff;
    background: #efe6ff;
    font-size: 10px;
    font-weight: 700;
}

.feed-slice,
.contact-section,
.home-features,
.templates-showcase,
.newsletter-strip {
    display: none;
}

.alt {
    background: linear-gradient(180deg, #f4f8ff 0%, #ecf2ff 100%);
}

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

.card {
    background: var(--surface);
    border-radius: 18px;
    border: 1px solid #dbe6ff;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(14, 41, 113, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(14, 41, 113, 0.13);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
}

.card-meta {
    font-size: 0.82rem;
    font-weight: 600;
    color: #516cae;
    margin-bottom: 8px;
}

.term-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.card-body .term-chips-tags {
    margin-top: auto;
    padding-top: 14px;
}

.term-chips-categories {
    margin-top: 8px;
}

.term-chips-tags {
    margin-top: 14px;
}

.term-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.term-chip.category {
    color: #1d4cc9;
    background: #e8f0ff;
    border: 1px solid #c6d8ff;
}

.term-chip.tag {
    color: #196c8d;
    background: #e7f8ff;
    border: 1px solid #b9e8ff;
}

.term-chip.category::before {
   
}

.term-chip.tag::before {
    content: "#";
    font-size: 0.75rem;
    line-height: 1;
}

.term-chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(16, 41, 99, 0.12);
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.card h3 a:hover {
    color: var(--primary);
}

.archive-hero {
    padding: 60px 0 20px;
}

.single-entry {
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #dbe6ff;
    box-shadow: 0 14px 32px rgba(14, 41, 113, 0.08);
    padding: clamp(22px, 4vw, 44px);
}

.single-entry h1 {
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.single-entry .term-chips {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e1e9fb;
}

.single-entry .term-chips-categories {
    margin-top: 10px;
    padding-top: 0;
    border-top: 0;
}

.single-cover {
    border-radius: 14px;
    margin-bottom: 20px;
}

.single-content > * {
    margin-bottom: 16px;
}

.empty-state {
    background: #fff;
    border: 1px dashed #b7c9f2;
    border-radius: 14px;
    padding: 22px;
    color: #405481;
}

.newsletter-strip {
    padding: 30px 0 0;
}

.newsletter-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 20px;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f3f8ff 100%);
    border: 1px solid #d4e2ff;
    border-radius: 22px;
    box-shadow: 0 20px 42px rgba(15, 37, 93, 0.1);
    padding: 24px;
}

.newsletter-copy {
    display: grid;
    gap: 8px;
}

.newsletter-icon {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid #cddcff;
    background: linear-gradient(140deg, #eef3ff 0%, #e2ecff 100%);
    color: #264ff0;
}

.newsletter-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.newsletter-copy h2 {
    font-size: clamp(1.35rem, 2.1vw, 1.95rem);
    color: #0f1d3d;
}

.newsletter-copy p {
    max-width: 640px;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    min-width: 0;
    border: 1px solid #c5d8ff;
    border-radius: 12px;
    background: #fff;
    color: #1a2d5e;
    padding: 12px 14px;
    font-size: 0.94rem;
}

.newsletter-form input[type="email"]:focus-visible {
    outline: 2px solid #2d59ff;
    outline-offset: 1px;
}

.newsletter-form button {
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #2d59ff 0%, #36a3f0 100%);
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
}

.newsletter-form button:hover {
    filter: brightness(0.98);
}

.newsletter-status {
    margin: 10px 4px 0;
    font-size: 0.88rem;
    color: #5b6a91;
}

.newsletter-status-success {
    color: #117347;
}

.newsletter-status-invalid,
.newsletter-status-spam,
.newsletter-status-error {
    color: #b33e3e;
}

.newsletter-popup {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 80;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: min(460px, calc(100vw - 24px));
    padding: 14px 14px 14px 16px;
    border-radius: 14px;
    border: 1px solid #d5e2ff;
    background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
    box-shadow: 0 18px 36px rgba(15, 37, 93, 0.18);
    transform: translateY(0);
    opacity: 1;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.newsletter-popup.is-hidden {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

.newsletter-popup__body {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.newsletter-popup__icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.newsletter-popup__icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.newsletter-popup p {
    margin: 0;
    color: #1b2b55;
    font-size: 0.92rem;
    line-height: 1.45;
}

.newsletter-popup-success .newsletter-popup__icon {
    color: #117347;
}

.newsletter-popup-error .newsletter-popup__icon {
    color: #b33e3e;
}

.newsletter-popup__close {
    margin: -2px -2px 0 auto;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #6479a9;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
}

.newsletter-popup__close:hover {
    background: #eaf1ff;
    color: #304e93;
}

.newsletter-trap {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    width: 1px !important;
    height: 1px !important;
    pointer-events: none !important;
}

.contact-section {
    padding: 20px 0 72px;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 24px;
    padding: 28px;
    border-radius: 22px;
    border: 1px solid #d4e2ff;
    background: linear-gradient(135deg, #ffffff 0%, #f2f7ff 100%);
    box-shadow: 0 18px 40px rgba(15, 37, 93, 0.1);
}

.contact-copy {
    display: grid;
    align-content: start;
    gap: 10px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    border: 1px solid #cddcff;
    background: linear-gradient(140deg, #eef3ff 0%, #e2ecff 100%);
    color: #264ff0;
    box-shadow: 0 10px 24px rgba(33, 71, 190, 0.18);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-copy h2 {
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
    color: #0f1d3d;
    line-height: 1.15;
}

.contact-copy p {
    margin-top: 10px;
    max-width: 460px;
    color: #495a82;
    font-size: 1rem;
}

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

.contact-form label {
    font-size: 0.86rem;
    font-weight: 700;
    color: #304067;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #c5d8ff;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    color: #1a2d5e;
    padding: 11px 14px;
    font-size: 0.94rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
    border-color: #7ea1ff;
    box-shadow: 0 0 0 3px rgba(45, 89, 255, 0.16);
    outline: none;
}

.contact-form button {
    margin-top: 4px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #2d59ff 0%, #36a3f0 100%);
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
}

.contact-form button:hover {
    filter: brightness(0.98);
}

.contact-status {
    margin: 10px 4px 0;
    font-size: 0.9rem;
    color: #5b6a91;
}

.contact-status-success {
    color: #117347;
}

.contact-status-invalid,
.contact-status-spam,
.contact-status-error {
    color: #b33e3e;
}

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

.site-footer {
    /* margin-top: 28px; */
    border-top: 0;
    /* background:
        radial-gradient(circle at 12% -30%, rgba(45, 89, 255, 0.09), transparent 44%),
        linear-gradient(180deg, #f7faff 0%, #eff5ff 100%); */
    padding: 54px 0 0;
    background: #F2F6FF;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: start;
    min-height: 230px;
}

.footer-brand-block {
    max-width: 540px;
}

.footer-language {
    margin-top: 18px;
    max-width: 230px;
    display: none;
}

.footer-language .lang-switcher {
    width: 100%;
}

.footer-language .lang-switcher__toggle {
    width: 100%;
    justify-content: space-between;
}

.footer-brand-link {
    display: inline-flex;
    margin-bottom: 22px;
}

.footer-logo {
    height: 34px;
    width: auto;
}

.footer-tagline {
    max-width: 330px;
    color: #505050;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
}

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

.footer-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;
    color: #1e2b48;
    margin-bottom: 10px;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.site-footer a {
    color: #324975;
}

.site-footer a:hover {
    color: #1f4ffa;
}

.footer-social {
    margin-top: 16px;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social-links a {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
    border: 1px solid #d0defb;
    background: #fff;
    color: #3157de;
}

.footer-social-links a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-contact-block {
    justify-self: end;
    width: min(185px, 100%);
    text-align: right;
}

.footer-contact-block h2 {
    margin: 0 0 34px;
    color: #4f4f4f;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 800;
}

.footer-contact-list {
    display: grid;
    gap: 20px;
}

.footer-contact-list li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: #505050;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 400;
    text-align: left;
}

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

.footer-bottom {
    min-height: 46px;
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-bottom p {
    font-size: 12px;
    color: #505050;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #505050;
    font-size: 12px;
    line-height: 1;
}

.footer-bottom-links svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.lead-modal-open {
    overflow: hidden;
}

.lead-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lead-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lead-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 27, 52, 0.46);
    backdrop-filter: blur(14px);
}

.lead-modal__dialog {
    position: relative;
    width: min(640px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 34px;
    border: 1px solid rgba(216, 228, 255, 0.96);
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 0%, rgba(17, 83, 244, 0.13), transparent 36%),
        radial-gradient(circle at 100% 10%, rgba(116, 180, 255, 0.2), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 34px 90px rgba(17, 37, 86, 0.28);
    transform: translateY(18px) scale(0.98);
    transition: transform 0.25s ease;
}

.lead-modal.is-open .lead-modal__dialog {
    transform: translateY(0) scale(1);
}

.lead-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid #dce7ff;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: #4f4f4f;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lead-modal__close:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(17, 83, 244, 0.12);
}

.lead-modal__header {
    max-width: 500px;
    margin-bottom: 24px;
}

.lead-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 14px;
    padding: 0 12px;
    border: 1px solid rgba(17, 83, 244, 0.18);
    border-radius: 999px;
    background: rgba(17, 83, 244, 0.08);
    color: #1153f4;
    font-size: 12px;
    font-weight: 800;
}

.lead-modal__header h2 {
    margin: 0 0 10px;
    color: #30394f;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(34px, 4.2vw, 48px);
    line-height: 0.98;
    font-weight: 800;
}

.lead-modal__header p {
    margin: 0;
    color: #60708f;
    font-size: 16px;
    line-height: 1.55;
}

.lead-modal__form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.lead-modal__field {
    display: grid;
    gap: 8px;
    color: #4f4f4f;
    font-size: 13px;
    font-weight: 800;
}

.lead-modal__field input {
    width: 100%;
    min-height: 52px;
    border: 1px solid #dbe7ff;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: #29334d;
    font: inherit;
    font-weight: 600;
    padding: 0 16px;
    outline: none;
    box-shadow: 0 12px 28px rgba(17, 83, 244, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-modal__field input:focus {
    border-color: #1153f4;
    box-shadow: 0 0 0 4px rgba(17, 83, 244, 0.12);
}

.lead-modal__field input::placeholder {
    color: #a1abc1;
}

.lead-modal__submit {
    grid-column: 1 / -1;
    min-height: 56px;
    margin-top: 6px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #1153f4 0%, #2d7cff 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(17, 83, 244, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lead-modal__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(17, 83, 244, 0.3);
}

.lead-modal__privacy {
    grid-column: 1 / -1;
    margin: 0;
    color: #7b879c;
    font-size: 12px;
    line-height: 1.5;
}

.lead-modal__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.lead-popup-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 130;
    max-width: min(420px, calc(100vw - 48px));
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #ffffff;
    color: #30394f;
    box-shadow: 0 22px 54px rgba(17, 37, 86, 0.2);
    border: 1px solid #dce7ff;
    font-weight: 800;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.lead-popup-toast--success {
    border-color: rgba(35, 195, 117, 0.32);
}

.lead-popup-toast--error {
    border-color: rgba(255, 70, 92, 0.32);
}

.lead-popup-toast.is-hidden {
    opacity: 0;
    transform: translateY(10px);
}

.lead-popup-toast button {
    border: 0;
    background: transparent;
    color: #7b879c;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.cookie-consent {
    position: fixed;
    inset: auto 0 0;
    z-index: 80;
    padding: 0 0 14px;
}

.cookie-consent__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    background: rgba(18, 31, 62, 0.97);
    color: #f3f7ff;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 16px 36px rgba(6, 12, 28, 0.36);
}

.cookie-consent__copy h2 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 4px;
}

.cookie-consent__copy p {
    color: #d9e4ff;
    font-size: 0.92rem;
}

.cookie-consent__policy {
    margin-top: 8px;
    display: inline-block;
    color: #93b8ff;
    font-size: 0.88rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-consent__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 10px 14px;
    cursor: pointer;
}

.cookie-btn--ghost {
    color: #dce7ff;
    border-color: #4d669f;
    background: rgba(255, 255, 255, 0.04);
}

.cookie-btn--solid {
    color: #fff;
    border-color: #2d66ff;
    background: linear-gradient(135deg, #2d66ff 0%, #3b86ff 100%);
}

.reveal-up {
    animation: revealUp 0.75s ease both;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 980px) {
    .platform-grid {
        grid-template-columns: 1fr;
    }

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

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

    .pricing-addon {
        grid-template-columns: 1fr;
    }

    .pricing-addon-price {
        text-align: left;
    }

    .pricing-addon-price small {
        margin-left: 0;
    }

    .home-features-head {
        align-items: flex-start;
        flex-direction: column;
    }

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

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

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

    .impact-banner {
        grid-template-columns: 1fr;
    }

    .impact-banner p {
        justify-self: start;
    }

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

    .production-problem-panel {
        padding: 28px 22px 24px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .gauge-card {
        display: grid;
        grid-template-columns: 220px 1fr;
        align-items: center;
        min-height: 0;
        text-align: left;
    }

    .gauge-image {
        margin: 12px 0 0 10px;
    }

    .gauge-copy {
        margin-top: 0;
        padding: 24px;
    }

    .template-card {
        flex: 0 0 calc((100% - 18px) / 2);
    }

    .header-shell {
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .newsletter-card {
        grid-template-columns: 1fr;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 38px;
    }

    .footer-contact-block {
        justify-self: start;
        text-align: left;
    }

    .footer-bottom {
        min-height: 0;
        padding: 14px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        gap: 16px;
    }

    .cookie-consent__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 740px) {
    .main-nav {
        width: 100%;
        order: 3;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .split-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card.is-recommended {
        margin-top: 15px;
    }

    .pricing-section {
        padding: 56px 0;
    }

    .pricing-toggle {
        padding: 5px;
    }

    .pricing-toggle button {
        padding: 9px;
        font-size: 12px;
    }

    .pricing-toggle-deal {
        min-height: 30px;
        margin-left: 4px;
        padding: 0 5px;
        font-size: 12px;
    }

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

    .pricing-addon {
        margin-top: 28px;
        padding: 20px;
    }

    .pricing-addon-copy {
        gap: 12px;
    }

    .home-features-grid {
        grid-template-columns: 1fr;
    }

    .collab-production {
        padding: 42px 0 56px;
    }

    .collab-production-head {
        margin-bottom: 26px;
    }

    .collab-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .collab-card {
        min-height: 0;
        padding: 14px 14px 24px;
    }

    .collab-card img {
        margin-bottom: 20px;
    }

    .capabilities-section {
        padding: 34px 0 62px;
    }

    .capabilities-section h2 {
        margin-bottom: 30px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .capability-visual {
        min-height: 210px;
        margin-bottom: 18px;
    }

    .capability-card p {
        max-width: none;
    }

    .impact-section {
        padding: 34px 0 62px;
    }

    .impact-banner {
        margin-bottom: 24px;
        padding: 22px;
    }

    .impact-banner-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .impact-banner strong {
        max-width: 220px;
    }

    .impact-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .impact-card {
        min-height: 0;
        padding: 26px;
    }

    .impact-card h3 {
        margin: 24px 0 16px;
    }

    .production-problem {
        padding: 34px 0 24px;
    }

    .production-problem-panel {
        border-radius: 20px;
        padding: 24px 14px 16px;
    }

    .production-problem h2 {
        margin-bottom: 22px;
        font-size: clamp(1.75rem, 8vw, 2.25rem);
    }

    .workflow-card {
        min-height: 0;
        padding: 20px 18px 16px;
    }

    .workflow-visual {
        margin: 26px -10px 0;
        overflow-x: hidden;
    }

    .workflow-visual img {
        min-width: 390px;
    }

    .gauge-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gauge-image {
        max-width: 230px;
        margin: 18px auto 0;
    }

    .gauge-copy {
        padding: 0 24px 22px;
    }

    .problem-points {
        grid-template-columns: 1fr;
    }

    .problem-point {
        min-height: 0;
        padding: 22px 24px;
    }

    .problem-point-icon {
        margin-bottom: 14px;
    }

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

    .template-nav {
        width: 100%;
        height: 40px;
        border-radius: 12px;
    }

    .template-card {
        flex: 0 0 100%;
    }

    .dual-frame {
        width: 100%;
        justify-self: stretch;
        min-height: 215px;
        border-radius: 28px;
    }

    .step-item.is-active .step-copy {
        max-height: 120px;
    }

    .hero {
        padding-top: 44px;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .newsletter-form button {
        width: 100%;
    }

    .newsletter-popup {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }

    .footer-bottom-links {
        gap: 14px;
    }

    .cookie-consent {
        padding-bottom: 8px;
    }

    .cookie-consent__inner {
        gap: 14px;
        padding: 14px;
        border-radius: 14px;
    }

    .cookie-consent__actions {
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .brand-logo {
        height: 30px;
        width: auto;
        transition: height 0.25s ease;
    }

    .step-title {
        display: inline-block;
        font-size: clamp(20px, 1vw, 23px);
        font-weight: 700;
        color: #8f96a7;
        font-family: "Bricolage Grotesque", sans-serif;
        transition: color 0.25s ease;
    }

    .footer-bottom {
        min-height: 46px;
        margin-top: 15px;
        padding-top: 0;
        border-top: 1px solid #e5e5e5;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2px;
    }

    .hero-stack {
        --stack-peek: 8px;
        height: clamp(220px, 54vw, 310px);
        min-height: 220px;
        padding-top: 34px;
    }

    .hero-stack::before {
        inset: 22px 4% 0;
        border-radius: 18px 18px 0 0;
    }

    .hero-stack__slide {
        inset: 34px 0 0;
        height: calc(100% - 34px);
        border-radius: 16px 16px 0 0;
    }

    .lead-modal {
        padding: 14px;
    }

    .lead-modal__dialog {
        max-height: calc(100vh - 28px);
        padding: 28px 20px 22px;
        border-radius: 22px;
    }

    .lead-modal__close {
        top: 12px;
        right: 12px;
    }

    .lead-modal__header h2 {
        font-size: 34px;
    }

    .lead-modal__form {
        grid-template-columns: 1fr;
    }

    .lead-popup-toast {
        right: 14px;
        bottom: 14px;
        max-width: calc(100vw - 28px);
    }

    .production-problem .clm-block {
        min-height: 0;
        padding: 28px 20px;
    }

    .production-problem .clm-layout,
    .production-problem .clm-top-row,
    .production-problem .clm-bottom-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .production-problem .workflow-card,
    .production-problem .gauge-card {
        height: 245px;
    }

    .production-problem .schema-img {
        width: 100%;
        min-width: 560px;
    }

    .production-problem .info-card {
        height: 208px;
        padding: 30px;
        border-radius: 20px;
    }

    .production-problem .info-card p {
        font-size: clamp(13px, 5vw, 18px);
    }
}

@media (max-width: 520px) {
    .production-problem .clm-block {
        border-radius: 20px;
        padding: 24px 16px;
    }

    .production-problem .clm-block h2 {
        margin-bottom: 22px;
        font-size: 23px;
    }

    .production-problem .workflow-card {
        height: 220px;
        padding: 22px 18px 0;
    }

    .production-problem .workflow-copy h3 {
        font-size: 20px;
    }

    .production-problem .workflow-copy p {
        font-size: 11px;
    }

    .production-problem .schema-frame {
        bottom: 28px;
        height: 82px;
    }

    .production-problem .schema-img {
        min-width: 100%;
        transform-origin: left center;
    }

    .production-problem .gauge-wrap {
        width: 178px;
        height: 88px;
    }

    .production-problem .gauge-arc {
        width: 178px;
    }

    .production-problem .gauge-needle {
        left: 84px;
        width: 58px;
    }

    .production-problem .gauge-card strong {
        font-size: 20px;
    }

    .production-problem .gauge-card p {
        font-size: 14px;
    }

    .production-problem .info-card {
        height: 160px;
        padding: 30px;
        border-radius: 20px;
    }

    .production-problem .info-card img {
        width: 64px;
        height: 64px;
        padding: 0;
        border-radius: 10px;
    }
}

@media (max-width: 425px) {
    a.btn.btn-ghost.btn-snake-border {
        padding: 10px 10px;
    }
}

@media (max-width: 768px) {
    .footer-contact-block {
        justify-self: start;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .production-problem .schema-workflow {
        display: none !important;
    }

    .production-problem .schema-img {
        display: block !important;
    }

    .btn-snake-border::before,
    .btn-hero-snake > span:not(.btn-snake-label),
    .hero-stack__slide,
    .lead-modal,
    .lead-modal__dialog,
    .lead-popup-toast,
    .production-problem *,
    .production-problem *::before,
    .production-problem *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }

    .production-problem .clm-block:not(.is-visible) .schema-img,
    .production-problem .clm-block.is-visible .schema-img {
        clip-path: none;
        opacity: 1;
    }

    .production-problem .gauge-needle {
        transform: rotate(-38deg);
    }
}
