:root {
    --splus-green: #10d451;
    --splus-green-dark: #00a83f;
    --splus-magenta: #d52b9a;
    --splus-plum: #2d001f;
    --splus-black: #050505;
    --splus-ink: #111111;
    --splus-mint: #e0ebe7;
    --splus-white: #ffffff;
    --splus-line: rgba(17, 17, 17, .14);
}

.splus-lp,
.splus-lp * {
    box-sizing: border-box;
}

.splus-lp {
    position: relative;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    overflow: clip;
    background: var(--splus-black);
    color: var(--splus-white);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.splus-lp button,
.splus-lp a {
    font: inherit;
}

.splus-lp button {
    border: 0;
}

.splus-lp img,
.splus-lp video,
.splus-lp svg {
    display: block;
    max-width: 100%;
}

.splus-lp h1,
.splus-lp h2,
.splus-lp h3,
.splus-lp p {
    margin-top: 0;
}

.splus-shell {
    position: relative;
    width: min(1240px, calc(100% - 96px));
    margin-inline: auto;
}

.splus-section {
    position: relative;
    padding: clamp(94px, 9vw, 142px) 0;
}

.splus-eyebrow {
    margin: 0 0 16px;
    color: var(--splus-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.splus-eyebrow--dark {
    color: var(--splus-green-dark);
}

.splus-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 50px;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease;
}

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

.splus-button svg,
.splus-header__cta svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.splus-button--green {
    background: var(--splus-green);
    color: var(--splus-black);
    box-shadow: 0 14px 34px rgba(16, 212, 81, .16);
}

.splus-button--green:hover {
    background: #24e361;
    box-shadow: 0 18px 42px rgba(16, 212, 81, .24);
}

.splus-button--dark {
    background: var(--splus-black);
    color: var(--splus-green);
}

.splus-button--dark:hover {
    background: #151515;
}

/* Header */
.splus-header {
    position: fixed;
    z-index: 90;
    top: 18px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1240px, calc(100% - 48px));
    min-height: 62px;
    padding: 10px 12px 10px 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(5, 5, 5, .48);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .16);
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    transform: translateX(-50%);
    transition: background .3s ease, border-color .3s ease;
}

.splus-header.is-scrolled {
    background: rgba(5, 5, 5, .91);
    border-color: rgba(16, 212, 81, .22);
}

.splus-header__brand {
    display: block;
    width: 168px;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.splus-header__brand img {
    width: 100%;
    height: auto;
}

.splus-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 17px;
    border-radius: 999px;
    background: var(--splus-green);
    color: var(--splus-black);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

/* Progress */
.splus-progress {
    position: fixed;
    z-index: 85;
    top: 50%;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateY(-50%);
}

.splus-progress__item {
    display: grid;
    grid-template-columns: 22px 18px;
    align-items: center;
    gap: 8px;
    padding: 2px;
    background: transparent;
    color: rgba(255, 255, 255, .42);
    cursor: pointer;
}

.splus-progress__item span {
    font-size: 9px;
    font-weight: 700;
}

.splus-progress__item i {
    display: block;
    width: 8px;
    height: 8px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    transition: width .3s ease, border-radius .3s ease, background .3s ease, border-color .3s ease;
}

.splus-progress__item.is-active {
    color: var(--splus-green);
}

.splus-progress__item.is-active i {
    width: 18px;
    border-color: var(--splus-green);
    border-radius: 999px;
    background: var(--splus-green);
}

/* Hero */
.splus-hero {
    --hero-progress: 0;
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 4%, rgba(67, 0, 48, .92), transparent 42%),
        linear-gradient(135deg, #250019 0%, #090507 48%, #030403 100%);
}

.splus-hero__texture {
    position: absolute;
    inset: 0;
    background: var(--splus-pattern) center / cover no-repeat;
    opacity: .07;
    mix-blend-mode: screen;
    pointer-events: none;
}

.splus-hero__line {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.splus-hero__line path {
    fill: none;
    stroke-width: 1.4;
    vector-effect: non-scaling-stroke;
    stroke-dasharray: 2200;
    stroke-dashoffset: var(--hero-line-offset, 2200);
    opacity: .78;
}

.splus-hero__layout {
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
    gap: clamp(58px, 7vw, 104px);
    align-items: center;
    min-height: 100svh;
    padding-top: 132px;
    padding-bottom: 70px;
}

.splus-hero__copy {
    max-width: 590px;
}

.splus-hero h1 {
    max-width: 650px;
    margin: 0 0 24px;
    color: var(--splus-white);
    font-size: clamp(42px, 4.35vw, 68px);
    font-weight: 400;
    letter-spacing: -.052em;
    line-height: 1.02;
}

.splus-hero h1 strong {
    color: var(--splus-green);
    font-weight: 700;
}

.splus-hero__question {
    max-width: 540px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .76);
    font-size: clamp(16px, 1.35vw, 20px);
    font-weight: 400;
    line-height: 1.52;
}

.splus-hero__question b {
    color: var(--splus-white);
    font-weight: 700;
}

.splus-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
}

.splus-scroll-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .45);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.splus-scroll-label i {
    position: relative;
    display: block;
    width: 17px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 999px;
}

.splus-scroll-label i::after {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 3px;
    height: 6px;
    border-radius: 99px;
    background: var(--splus-green);
    content: "";
    transform: translateX(-50%);
    animation: splus-wheel 1.8s ease-in-out infinite;
}

.splus-hero__visual {
    --visual-shift: 0px;
    position: relative;
    justify-self: end;
    width: min(100%, 650px);
    padding: 48px;
    transform: translate3d(0, var(--visual-shift), 0);
    will-change: transform;
}

.splus-ripple-frame,
.splus-mais__frame {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.splus-ripple-frame span {
    position: absolute;
    inset: calc(var(--line-index) * 9px);
    border: 1px solid rgba(16, 212, 81, calc(.92 - var(--line-index) * .055));
    border-radius: 34px 34px 92px 34px;
    transform: translate3d(calc(var(--line-index) * 1.2px), calc(var(--hero-progress) * var(--line-index) * .65px), 0);
}

.splus-hero__video-wrap {
    position: relative;
    z-index: 2;
    aspect-ratio: 1.18;
    overflow: hidden;
    border-radius: 26px 26px 76px 26px;
    background: #111;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
}

.splus-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.86) contrast(1.02);
    transform: scale(var(--hero-video-scale, 1.035));
    will-change: transform;
}

.splus-hero__video-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, .08), rgba(5, 5, 5, .26));
    pointer-events: none;
}

.splus-hero__tag {
    position: absolute;
    z-index: 4;
    right: 30px;
    bottom: 24px;
    max-width: 300px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--splus-green);
    color: var(--splus-black);
    font-size: 11px;
    font-weight: 700;
}

/* Shared headings */
.splus-intro h2,
.splus-mais h2,
.splus-capabilities__heading h2,
.splus-endtoend h2,
.splus-results h2,
.splus-cta h2 {
    margin: 0;
    font-size: clamp(34px, 3.85vw, 58px);
    font-weight: 600;
    letter-spacing: -.052em;
    line-height: 1.05;
}

/* Intro */
.splus-intro {
    overflow: hidden;
    background: var(--splus-mint);
    color: var(--splus-ink);
}

.splus-corner-line,
.splus-endtoend__line,
.splus-cta__line {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.splus-corner-line path,
.splus-endtoend__line path,
.splus-cta__line path {
    fill: none;
    stroke: var(--splus-green);
    stroke-width: 1.25;
    vector-effect: non-scaling-stroke;
    stroke-dasharray: 1800;
    stroke-dashoffset: var(--section-line-offset, 1800);
    opacity: .82;
}

.splus-intro__heading {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    gap: clamp(58px, 8vw, 118px);
    align-items: start;
    margin-bottom: 62px;
}

.splus-intro__heading > div p {
    margin: 0 0 18px;
    color: rgba(17, 17, 17, .72);
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.65;
}

.splus-intro__heading strong {
    color: var(--splus-black);
}

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

.splus-friction-card {
    position: relative;
    min-height: 272px;
    padding: 25px;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, .11);
    border-radius: 22px;
    background: rgba(255, 255, 255, .66);
    transition: transform .3s cubic-bezier(.22, 1, .36, 1), background .3s ease, border-color .3s ease;
}

.splus-friction-card:hover {
    z-index: 2;
    border-color: rgba(16, 212, 81, .52);
    background: rgba(255, 255, 255, .95);
    transform: translateY(-6px);
}

.splus-friction-card::after {
    position: absolute;
    right: -46px;
    bottom: -46px;
    width: 116px;
    height: 116px;
    border: 1px solid rgba(16, 212, 81, .35);
    border-radius: 28px 28px 52px 28px;
    content: "";
}

.splus-friction-card > span {
    color: rgba(17, 17, 17, .38);
    font-size: 10px;
    font-weight: 700;
}

.splus-friction-card svg {
    width: 40px;
    height: 40px;
    margin: 28px 0 25px;
    fill: none;
    stroke: var(--splus-green-dark);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.splus-friction-card h3 {
    max-width: 310px;
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.25;
}

.splus-friction-card p {
    max-width: 330px;
    margin: 0;
    color: rgba(17, 17, 17, .64);
    font-size: 13px;
    line-height: 1.55;
}

/* mAIs */
.splus-mais {
    overflow: hidden;
    background: var(--splus-white);
    color: var(--splus-ink);
}

.splus-mais::before {
    position: absolute;
    top: -220px;
    right: -240px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(213, 43, 154, .16);
    border-radius: 48%;
    content: "";
}

.splus-mais__layout {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
    gap: clamp(70px, 8vw, 126px);
    align-items: center;
}

.splus-mais__copy > img {
    width: 190px;
    margin-bottom: 30px;
}

.splus-mais__copy h2 {
    margin-bottom: 24px;
}

.splus-mais__copy > p:not(.splus-eyebrow) {
    max-width: 590px;
    margin: 0 0 17px;
    color: rgba(17, 17, 17, .69);
    font-size: 15px;
    line-height: 1.65;
}

.splus-mais__copy strong {
    color: var(--splus-black);
}

.splus-mais__stage {
    --system-progress: 0;
    position: relative;
    justify-self: end;
    width: min(620px, 100%);
    aspect-ratio: 1.12;
    min-height: 520px;
}

.splus-mais__frame span {
    position: absolute;
    inset: calc(var(--line-index) * 10px);
    border: 1px solid rgba(16, 212, 81, calc(.74 - var(--line-index) * .075));
    border-radius: 32px 32px 84px 32px;
}

.splus-mais__connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.splus-mais__connections path {
    fill: none;
    stroke: rgba(17, 17, 17, .26);
    stroke-width: 1.2;
    vector-effect: non-scaling-stroke;
    stroke-dasharray: 420;
    stroke-dashoffset: var(--system-line-offset, 420);
}

.splus-mais__core {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 210px;
    min-height: 156px;
    padding: 26px;
    border-radius: 28px 28px 58px 28px;
    background: var(--splus-black);
    color: var(--splus-white);
    box-shadow: 0 26px 64px rgba(0, 0, 0, .16);
    transform: translate(-50%, -50%) scale(var(--system-core-scale, .94));
}

.splus-mais__core small {
    color: var(--splus-green);
    font-size: 15px;
    font-weight: 700;
}

.splus-mais__core strong {
    font-size: 23px;
    font-weight: 500;
    letter-spacing: -.03em;
    line-height: 1.08;
}

.splus-module {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    max-width: 178px;
    padding: 11px 15px;
    border: 1px solid rgba(17, 17, 17, .13);
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    color: var(--splus-ink);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .07);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    opacity: var(--module-opacity, .16);
    transform: translateY(var(--module-y, 12px)) scale(var(--module-scale, .96));
    transition: border-color .3s ease, background .3s ease;
}

.splus-module.is-active {
    border-color: var(--splus-green);
    background: #f7fff9;
}

.splus-module i {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--splus-green);
    box-shadow: 0 0 14px rgba(16, 212, 81, .55);
}

.splus-module--1 { top: 9%; left: 6%; }
.splus-module--2 { top: 9%; right: 4%; }
.splus-module--3 { bottom: 9%; left: 0; }
.splus-module--4 { bottom: 9%; right: 0; }
.splus-module--5 { bottom: 0; left: 50%; transform: translate(-50%, var(--module-y, 12px)) scale(var(--module-scale, .96)); }

/* Capabilities */
.splus-capabilities-scene {
    --cap-scene-height: 3600px;
    position: relative;
    min-height: var(--cap-scene-height);
    background: var(--splus-black);
}

.splus-capabilities-stage {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100svh;
    overflow: hidden;
    padding: 92px 0 46px;
    background:
        radial-gradient(circle at 92% 0%, rgba(16, 212, 81, .13), transparent 28%),
        radial-gradient(circle at 0 100%, rgba(213, 43, 154, .10), transparent 30%),
        var(--splus-black);
}

.splus-capabilities__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .65fr);
    gap: 72px;
    align-items: end;
    margin-bottom: 42px;
}

.splus-capabilities__heading h2 {
    max-width: 720px;
    color: var(--splus-white);
}

.splus-capabilities__heading > p {
    max-width: 470px;
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 15px;
    line-height: 1.6;
}

.splus-capabilities-viewport {
    width: 100%;
    overflow: hidden;
}

.splus-capabilities-track {
    display: flex;
    gap: 14px;
    width: max-content;
    padding: 0 max(48px, calc((100vw - 1240px) / 2));
    transform: translate3d(var(--cap-translate, 0px), 0, 0);
    will-change: transform;
}

.splus-capability-card {
    position: relative;
    flex: 0 0 clamp(330px, 30vw, 410px);
    min-height: 470px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px 24px 64px 24px;
    background: var(--splus-white);
    color: var(--splus-ink);
}

.splus-capability-card::after {
    position: absolute;
    right: -54px;
    bottom: -54px;
    width: 148px;
    height: 148px;
    border: 1px solid rgba(16, 212, 81, .38);
    border-radius: 42px 42px 76px 42px;
    content: "";
}

.splus-capability-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 38px;
    margin-bottom: 58px;
}

.splus-capability-card__top span {
    color: rgba(17, 17, 17, .35);
    font-size: 10px;
    font-weight: 700;
}

.splus-capability-card__top b {
    max-width: 265px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(16, 212, 81, .12);
    color: #078c37;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.25;
    text-align: right;
}

.splus-capability-card h3 {
    max-width: 330px;
    margin: 0 0 14px;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.13;
}

.splus-capability-card > p {
    max-width: 335px;
    margin: 0 0 20px;
    color: rgba(17, 17, 17, .65);
    font-size: 13px;
    line-height: 1.58;
}

.splus-capability-card ul,
.splus-service-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.splus-capability-card li,
.splus-service-card li {
    position: relative;
    padding-left: 13px;
    color: rgba(17, 17, 17, .62);
    font-size: 11px;
    line-height: 1.55;
}

.splus-capability-card li::before,
.splus-service-card li::before {
    position: absolute;
    top: .66em;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--splus-green);
    content: "";
}

.splus-capabilities__progress {
    display: grid;
    grid-template-columns: 28px 1fr 28px;
    align-items: center;
    gap: 13px;
    margin-top: 28px;
    color: rgba(255, 255, 255, .45);
    font-size: 10px;
    font-weight: 700;
}

.splus-capabilities__progress > div {
    position: relative;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, .14);
}

.splus-capabilities__progress i {
    position: absolute;
    inset: 0;
    background: var(--splus-green);
    transform: scaleX(0);
    transform-origin: left;
}

/* End to end */
.splus-endtoend {
    overflow: hidden;
    background: var(--splus-mint);
    color: var(--splus-ink);
}

.splus-endtoend__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
    gap: clamp(62px, 8vw, 120px);
    align-items: end;
    margin-bottom: 64px;
}

.splus-endtoend__heading p:last-child {
    margin: 0;
    color: rgba(17, 17, 17, .68);
    font-size: 16px;
    line-height: 1.65;
}

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

.splus-service-card {
    position: relative;
    min-height: 288px;
    padding: 25px;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, .13);
    border-radius: 22px 22px 52px 22px;
    background: rgba(255, 255, 255, .62);
}

.splus-service-card:nth-child(1),
.splus-service-card:nth-child(2),
.splus-service-card:nth-child(3) {
    grid-column: span 4;
}

.splus-service-card:nth-child(4) {
    grid-column: span 7;
}

.splus-service-card:nth-child(5) {
    grid-column: span 5;
}

.splus-service-card > span {
    color: rgba(17, 17, 17, .35);
    font-size: 10px;
    font-weight: 700;
}

.splus-service-card h3 {
    max-width: 360px;
    margin: 48px 0 18px;
    color: #078c37;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.12;
}

.splus-service-card h3 small {
    display: block;
    margin-top: 6px;
    color: var(--splus-magenta);
    font-size: 9px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Results */
.splus-results {
    overflow: hidden;
    background:
        linear-gradient(180deg, #020503 0%, #001e0c 54%, #08b849 100%);
}

.splus-results__texture {
    position: absolute;
    inset: 0;
    background: var(--splus-pattern) center / cover no-repeat;
    opacity: .06;
    mix-blend-mode: screen;
}

.splus-results__heading {
    display: grid;
    grid-template-columns: minmax(260px, .58fr) minmax(0, 1.12fr);
    gap: clamp(60px, 8vw, 120px);
    align-items: end;
    margin-bottom: 62px;
}

.splus-results__heading h2 {
    color: var(--splus-white);
}

.splus-results__badge {
    max-width: 300px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px 20px 44px 20px;
    background: rgba(0, 0, 0, .28);
}

.splus-results__badge img {
    width: 90px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.splus-results__badge p {
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: 12px;
    line-height: 1.5;
}

.splus-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.splus-metric {
    min-height: 220px;
    padding: 32px 26px;
    border-right: 1px solid rgba(255, 255, 255, .18);
}

.splus-metric:last-child {
    border-right: 0;
}

.splus-metric strong {
    display: block;
    margin-bottom: 34px;
    color: var(--splus-green);
    font-size: clamp(44px, 4.4vw, 66px);
    font-weight: 400;
    letter-spacing: -.065em;
    line-height: 1;
}

.splus-metric span {
    display: block;
    max-width: 235px;
    color: var(--splus-white);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.splus-metric small {
    display: block;
    color: rgba(255, 255, 255, .48);
    font-size: 10px;
    font-weight: 500;
}

.splus-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.splus-proof p {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 106px;
    margin: 0;
    padding: 22px 26px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px 18px 40px 18px;
    background: rgba(0, 0, 0, .2);
}

.splus-proof strong {
    color: var(--splus-green);
    font-size: 25px;
    font-weight: 600;
    white-space: nowrap;
}

.splus-proof span {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.45;
}

.splus-proof > small {
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, .42);
    font-size: 9px;
}

/* CTA */
.splus-cta {
    overflow: hidden;
    background: var(--splus-mint);
    color: var(--splus-ink);
}

.splus-cta__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 80px;
    align-items: end;
}

.splus-cta__layout > div {
    max-width: 760px;
}

.splus-cta h2 {
    margin-bottom: 22px;
}

.splus-cta__layout p:not(.splus-eyebrow) {
    max-width: 620px;
    margin: 0 0 28px;
    color: rgba(17, 17, 17, .68);
    font-size: 16px;
    line-height: 1.62;
}

.splus-cta__layout > img {
    justify-self: end;
    width: 280px;
    margin-bottom: 6px;
}

/* Footer */
.splus-footer {
    padding: 28px 0;
    background: var(--splus-black);
}

.splus-footer .splus-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.splus-footer img {
    width: 150px;
}

.splus-footer span {
    color: rgba(255, 255, 255, .48);
    font-size: 11px;
    font-weight: 600;
}

/* Reveals */
.splus-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1);
}

.splus-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes splus-wheel {
    0% { opacity: 0; transform: translate(-50%, 0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 9px); }
}

/* Tablet */
@media (max-width: 1100px) {
    .splus-shell { width: min(100% - 56px, 1100px); }
    .splus-hero__layout { grid-template-columns: .9fr 1.1fr; gap: 42px; }
    .splus-hero__visual { padding: 36px; }
    .splus-hero h1 { font-size: clamp(40px, 5vw, 58px); }
    .splus-intro__heading,
    .splus-endtoend__heading { gap: 54px; }
    .splus-mais__layout { grid-template-columns: .9fr 1.1fr; gap: 48px; }
    .splus-mais__stage { min-height: 460px; }
    .splus-friction-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .splus-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .splus-service-card:nth-child(n) { grid-column: auto; }
    .splus-service-card:last-child { grid-column: 1 / -1; }
    .splus-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .splus-metric:nth-child(2) { border-right: 0; }
    .splus-metric:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .18); }
}

/* Mobile */
@media (max-width: 767px) {
    .splus-lp { overflow: clip; }
    .splus-lp .splus-corner-line, .splus-lp .splus-endtoend__line, .splus-lp .splus-cta__line { display: none; }
    .splus-shell { width: calc(100% - 36px); }
    .splus-section { padding: 82px 0; }
    .splus-progress { display: none; }

    .splus-header {
        top: 10px;
        width: calc(100% - 20px);
        min-height: 56px;
        padding: 9px 9px 9px 15px;
        border-radius: 16px;
    }

    .splus-header__brand { width: 126px; }
    .splus-header__cta { padding: 10px 13px; font-size: 10px; }
    .splus-header__cta svg { display: none; }

    .splus-hero { min-height: auto; }
    .splus-hero__line { opacity: .5; }
    .splus-hero__layout {
        display: flex;
        flex-direction: column;
        gap: 44px;
        min-height: 100svh;
        padding-top: 104px;
        padding-bottom: 44px;
    }

    .splus-hero__copy { max-width: 100%; }
    .splus-hero h1 { font-size: clamp(37px, 11vw, 50px); line-height: 1.04; }
    .splus-hero__question { font-size: 15px; line-height: 1.55; }
    .splus-hero__actions { align-items: flex-start; gap: 16px; }
    .splus-scroll-label { display: none; }
    .splus-button { width: 100%; }

    .splus-hero__visual {
        align-self: stretch;
        width: 100%;
        padding: 24px;
    }

    .splus-ripple-frame span {
        inset: calc(var(--line-index) * 5px);
        border-radius: 24px 24px 58px 24px;
    }

    .splus-ripple-frame span:nth-child(n+8) { display: none; }
    .splus-hero__video-wrap { aspect-ratio: .92; border-radius: 20px 20px 54px 20px; }
    .splus-hero__video { object-position: center; }
    .splus-hero__tag {
        right: 12px;
        bottom: 6px;
        max-width: 245px;
        padding: 10px 14px;
        font-size: 9px;
    }

    .splus-intro__heading,
    .splus-endtoend__heading,
    .splus-results__heading,
    .splus-cta__layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .splus-intro h2,
    .splus-mais h2,
    .splus-capabilities__heading h2,
    .splus-endtoend h2,
    .splus-results h2,
    .splus-cta h2 {
        font-size: clamp(31px, 9vw, 43px);
        line-height: 1.08;
    }

    .splus-friction-grid {
        display: flex;
        gap: 12px;
        margin-right: -18px;
        overflow-x: auto;
        padding-right: 18px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .splus-friction-grid::-webkit-scrollbar { display: none; }
    .splus-friction-card {
        flex: 0 0 min(82vw, 320px);
        min-height: 270px;
        scroll-snap-align: start;
    }

    .splus-mais__layout { grid-template-columns: 1fr; gap: 46px; }
    .splus-mais__copy > img { width: 150px; margin-bottom: 24px; }
    .splus-mais__stage { width: 100%; min-height: 470px; }
    .splus-mais__core { width: 168px; min-height: 128px; padding: 21px; }
    .splus-mais__core strong { font-size: 19px; }
    .splus-module { max-width: 142px; min-height: 42px; padding: 9px 11px; font-size: 9px; }
    .splus-module--1 { top: 5%; left: 0; }
    .splus-module--2 { top: 5%; right: 0; }
    .splus-module--3 { bottom: 8%; left: 0; }
    .splus-module--4 { bottom: 8%; right: 0; }
    .splus-module--5 { bottom: 0; }
    .splus-mais__frame span { inset: calc(var(--line-index) * 6px); border-radius: 24px 24px 58px 24px; }

    .splus-capabilities-scene { min-height: auto !important; }
    .splus-capabilities-stage {
        position: relative;
        display: block;
        min-height: auto;
        padding: 82px 0 70px;
    }

    .splus-capabilities__heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 34px; }
    .splus-capabilities-viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .splus-capabilities-viewport::-webkit-scrollbar { display: none; }
    .splus-capabilities-track {
        gap: 12px;
        padding: 0 18px;
        transform: none !important;
    }
    .splus-capability-card {
        flex-basis: min(86vw, 350px);
        min-height: 455px;
        padding: 24px;
        scroll-snap-align: center;
    }
    .splus-capability-card__top { margin-bottom: 46px; }
    .splus-capability-card h3 { font-size: 23px; }
    .splus-capabilities__progress { width: calc(100% - 36px); margin-top: 24px; }

    .splus-services-grid { grid-template-columns: 1fr; }
    .splus-service-card:nth-child(n) { grid-column: auto; min-height: 265px; }
    .splus-service-card h3 { margin-top: 38px; font-size: 22px; }

    .splus-results__heading { margin-bottom: 42px; }
    .splus-results__badge { max-width: 100%; }
    .splus-metrics { grid-template-columns: 1fr; }
    .splus-metric,
    .splus-metric:nth-child(n) {
        min-height: 170px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
    }
    .splus-metric:last-child { border-bottom: 0; }
    .splus-metric strong { margin-bottom: 20px; font-size: 48px; }
    .splus-proof { grid-template-columns: 1fr; }
    .splus-proof p { align-items: flex-start; flex-direction: column; gap: 7px; }
    .splus-proof > small { grid-column: auto; }

    .splus-cta__layout > img { justify-self: start; width: 220px; margin-top: 14px; }
    .splus-footer .splus-shell { gap: 24px; }
    .splus-footer img { width: 125px; }
}

@media (prefers-reduced-motion: reduce) {
    .splus-lp *,
    .splus-lp *::before,
    .splus-lp *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .splus-reveal { opacity: 1; transform: none; }
}
