
:root {
    --ink: #0A0A0A;
    --ink-2: #111111;
    --ink-3: #181818;
    --paper: #F4F4F2;
    --card-gray: #EDEDED;
    --line-light: rgba(0, 0, 0, 0.08);
    --line-dark: rgba(255, 255, 255, 0.08);
    --text-light: #FFFFFF;
    --text-dark: #111111;
    --muted-dark: rgba(255, 255, 255, 0.65);
    --muted-light: #8A8A8A;
    --accent: #D8FF4D;
    --accent-2: #C8F542;
    --accent-3: #B7FF00;
    --glow: 0 0 80px 8px rgba(216, 255, 77, 0.45);
    --glow-sm: 0 0 30px 4px rgba(216, 255, 77, 0.35);
    --r-sm: 12px;
    --r-md: 16px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-2xl: 36px;
    --r-pill: 999px;
    --ease: cubic-bezier(.2, .7, .2, 1);
    --container: 1240px;
}

* {
    box-sizing: border-box
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px
}

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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--ink);
    color: var(--text-light);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
}

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

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

button {
    font-family: inherit;
    cursor: pointer
}

/* ============================================================
Layout
============================================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px
}

.section {
    padding: 120px 0
}

@media (min-width: 769px) {
    #cases.section {
        padding-top: 100px;
        padding-bottom: 100px
    }
}

.section.dark {
    background: var(--ink);
    color: var(--text-light)
}

.section.light {
    background: var(--paper);
    color: var(--text-dark)
}

.section.ink2 {
    background: var(--ink-2)
}

/* ============================================================
Type
============================================================ */
h1, h2, h3, h4, p {
    margin: 0
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 8px 14px;
    border: 1px solid rgba(216, 255, 77, .25);
    border-radius: var(--r-pill);
    background: rgba(216, 255, 77, .06);
}

.section.light .eyebrow {
    color: #5d7a00;
    border-color: rgba(0, 0, 0, .1);
    background: #fff
}

.h1 {
    font-weight: 800;
    font-size: clamp(36px, 5.4vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.h2 {
    font-weight: 700;
    font-size: clamp(28px, 3.8vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.h3 {
    font-weight: 600;
    font-size: clamp(20px, 1.6vw, 24px);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.lead {
    font-size: 18px;
    line-height: 1.55;
    color: var(--muted-dark)
}

.section.light .lead {
    color: #3a3a3a
}

.dim {
    color: var(--muted-dark)
}

.section.light .dim {
    color: var(--muted-light)
}

.hl {
    background: var(--accent);
    color: var(--ink);
    padding: 0 8px;
    border-radius: 8px;
    box-decoration-break: clone;
}

.amp {
    color: var(--accent)
}

/* ============================================================
Buttons
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    border: 1px solid transparent;
    transition: all .22s var(--ease);
    white-space: nowrap;
}

.btn .ar {
    transition: transform .22s var(--ease)
}

.btn:hover .ar {
    transform: translateX(3px)
}

.btn.lime {
    background: var(--accent);
    color: var(--ink);
}

.btn.lime:hover {
    box-shadow: var(--glow);
    transform: translateY(-1px)
}

.btn.ink {
    background: var(--ink);
    color: #fff;
}

.btn.ink:hover {
    background: #1a1a1a;
    transform: translateY(-1px)
}

.btn.ghost-d {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .18)
}

.btn.ghost-d:hover {
    background: rgba(255, 255, 255, .06)
}

.btn.ghost-l {
    background: transparent;
    color: var(--ink);
    border-color: rgba(0, 0, 0, .16)
}

.btn.ghost-l:hover {
    background: rgba(0, 0, 0, .04)
}

.btn.lg {
    padding: 18px 28px;
    font-size: 16px
}

.btn.sm {
    padding: 10px 16px;
    font-size: 13px
}

/* ============================================================
Header
============================================================ */
.hdr {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 10, 10, .78);
    backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid var(--line-dark);
}

.hdr .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    max-width: var(--container);
    margin: 0 auto;
}

.brand {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.brand .go {
    color: var(--accent)
}

.brand .dot {
    color: var(--accent);
    margin-left: 1px
}

.nav {
    display: flex;
    gap: 32px
}

.nav a {
    font-weight: 500;
    font-size: 14px;
    color: var(--muted-dark);
    transition: color .15s ease;
}

.nav a:hover {
    color: #fff
}

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

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--r-pill);
    border: 1px solid var(--line-dark);
    background: transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .18s ease;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, .06);
    transform: translateY(-1px)
}

.icon-btn svg {
    width: 18px;
    height: 18px
}

@media (max-width: 900px) {
    .nav {
        display: none
    }
}

/* ============================================================
Hero
============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 120px;
    background: var(--ink);
}

.hero .container {
    position: relative;
    z-index: 2
}

.hero .h1 {
    max-width: 18ch
}

.hero .lead {
    margin-top: 22px;
    max-width: 62ch
}

.hero .ctas {
    margin-top: 36px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-orb {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(40px);
}

.hero-orb.a {
    width: 560px;
    height: 560px;
    right: -180px;
    top: -220px;
    background: radial-gradient(circle, rgba(216, 255, 77, 0.5) 0%, rgba(184, 255, 0, 0.18) 38%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
}

.hero-orb.b {
    width: 380px;
    height: 380px;
    left: -160px;
    bottom: -200px;
    background: radial-gradient(circle, rgba(200, 245, 66, 0.35) 0%, transparent 65%);
    animation: pulse 7.5s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: .85
    }
    50% {
        transform: scale(1.08);
        opacity: 1
    }
}

/* hero grid lines (subtle texture) */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at 50% 35%, #000 30%, transparent 75%);
    z-index: 1;
}

/* USP strip */
.usp {
    margin-top: 64px;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 14px;
}

.usp .card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--line-dark);
    border-radius: var(--r-xl);
    padding: 24px;
    transition: all .22s var(--ease);
}

.usp .card:hover {
    border-color: rgba(216, 255, 77, .35);
    transform: translateY(-2px)
}

.usp .card.pulse {
    border-color: rgba(216, 255, 77, .45);
    background: rgba(216, 255, 77, .06);
    animation: cardPulse 2.6s ease-in-out infinite;
    position: relative;
}

.usp .card.pulse::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(216, 255, 77, 0) 30%, rgba(216, 255, 77, .18) 100%);
    pointer-events: none;
    z-index: 0;
}

.usp .card.pulse > * {
    position: relative;
    z-index: 1
}

.usp .card.pulse .tag {
    color: #0A0A0A;
    background: var(--accent);
    padding: 4px 10px;
    border-radius: var(--r-pill)
}

@keyframes cardPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(216, 255, 77, .18), 0 0 30px 0 rgba(216, 255, 77, .20);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(216, 255, 77, 0), 0 0 60px 8px rgba(216, 255, 77, .55);
    }
}

.usp .card .tag {
    display: inline-block;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.usp .card .ttl {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.usp .card .body {
    margin-top: 8px;
    font-size: 14px;
    color: var(--muted-dark);
    line-height: 1.5
}

@media (max-width: 900px) {
    .usp {
        grid-template-columns:1fr
    }
}

/* ============================================================
Block 2 — Pain quotes
============================================================ */
.pain-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns:repeat(6, 1fr);
    gap: 16px;
}

.pain {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 28px;
    border: 1px solid var(--line-light);
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color .3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pain:hover {
    transform: translateY(-6px) scale(1.015);
    border-color: var(--accent);
    box-shadow: 0 16px 36px rgba(216, 255, 77, 0.18);
}

.pain .icon {
    width: 42px;
    height: 42px;
    border-radius: var(--r-md);
    background: var(--accent);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.pain .icon svg {
    width: 22px;
    height: 22px
}

.pain .lbl {
    display: inline-block;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted-light);
    margin-bottom: 12px;
}

.pain .quote {
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-dark);
    font-weight: 500;
}

.pain.span3 {
    grid-column: span 3
}

.pain.span2 {
    grid-column: span 2
}

@media (max-width: 900px) {
    .pain-grid {
        grid-template-columns:1fr
    }

    .pain.span3, .pain.span2 {
        grid-column: span 1
    }
}

/* ============================================================
Block 3 — Founder
============================================================ */
.founder {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 64px;
    align-items: stretch;
    margin-top: 48px;
}

.founder .text {
    display: flex;
    flex-direction: column
}

.founder .photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--r-2xl);
    background: radial-gradient(circle at 30% 25%, rgba(216, 255, 77, .35) 0%, transparent 55%),
    linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid var(--line-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.founder .photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.founder .photo .name {
    position: relative;
    z-index: 1;
    padding: 24px;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, .7), transparent);
    font-weight: 700;
    font-size: 20px;
}

.founder .text .h2 {
    max-width: 18ch
}

.founder .text .lead {
    margin-top: 20px;
    max-width: 58ch
}

.founder .wins {
    margin-top: auto;
    padding-top: 28px;
    display: grid;
    gap: 12px
}

.founder .win {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--line-dark);
}

.founder .win .num {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
    min-width: 80px;
}

.founder .win .lbl {
    font-size: 15px;
    line-height: 1.4
}

@media (max-width: 900px) {
    .founder {
        grid-template-columns:1fr;
        gap: 36px
    }

    .founder .photo {
        max-width: 360px
    }
}

/* ============================================================
Block 3.5 — Case studies
============================================================ */
.cases-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case {
    position: relative;
    overflow: hidden;
    background: #1A1A1A;
    border: 1px solid rgba(216, 255, 77, 0.15);
    border-radius: 16px;
    padding: 32px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 460px;
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.case:hover {
    transform: translateY(-8px);
    border-color: rgba(216, 255, 77, 0.4);
    box-shadow: 0 20px 50px rgba(216, 255, 77, 0.22);
}

.case::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(135deg, rgba(216, 255, 77, 0.06) 1px, transparent 1px),
    linear-gradient(45deg, rgba(216, 255, 77, 0.04) 1px, transparent 1px);
    background-size: 48px 48px, 72px 72px;
    mask-image: radial-gradient(ellipse at 100% 0%, #000 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 100% 0%, #000 0%, transparent 70%);
    pointer-events: none;
}

.case > * {
    position: relative;
    z-index: 1
}

.case .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px
}

.case .folder {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(216, 255, 77, 0.10);
    border: 1px solid rgba(216, 255, 77, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
}

.case .industry {
    font: 800 28px/1.1 "Inter", sans-serif;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.case .metric {
    font: 600 24px/1.2 "Inter", sans-serif;
    color: #D8FF4D;
    letter-spacing: -0.01em;
}

.case .problem {
    font: 400 16px/1.5 "Inter", sans-serif;
    color: rgba(255, 255, 255, 0.72);
}

.case .solution {
    font: 600 15px/1.4 "Inter", sans-serif;
    color: #fff;
    padding: 14px 16px;
    background: rgba(216, 255, 77, 0.06);
    border-left: 2px solid #D8FF4D;
    border-radius: 8px;
}

.case .results {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.case .results li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font: 500 14px/1.45 "Inter", sans-serif;
    color: rgba(255, 255, 255, 0.85);
}

.case .results li::before {
    content: "✓";
    color: #D8FF4D;
    font-weight: 700;
    flex-shrink: 0;
}

.case .bottom {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.case .label {
    font: 600 12px/1 "Inter", sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8A8A8A;
}

.case .arr {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #D8FF4D;
    color: #0A0A0A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: transform .25s ease;
}

.case:hover .arr {
    transform: translate(2px, -2px)
}

@media (max-width: 1000px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 700px) {
    .cases-grid {
        grid-template-columns: 1fr
    }
}

/* ============================================================
Block 4 — Services
============================================================ */
.svc-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.svc {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 32px;
    border: 1px solid var(--line-light);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color .3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.svc:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(216, 255, 77, 0.15);
}

.svc.featured {
    background: var(--ink);
    color: #fff;
    border-color: var(--accent);
    box-shadow: var(--glow-sm);
}

.svc.featured:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(216, 255, 77, 0.35);
}

.svc .badge {
    position: absolute;
    top: -12px;
    left: 32px;
    background: var(--accent);
    color: var(--ink);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: var(--r-pill);
}

.svc .icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: var(--accent);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc.featured .icon {
    background: var(--accent);
    color: var(--ink)
}

.svc .icon svg {
    width: 24px;
    height: 24px
}

.svc .name {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.01em
}

.svc .desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted-light);
    flex: 1
}

.svc.featured .desc {
    color: rgba(255, 255, 255, .7)
}

.svc .meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px dashed var(--line-light);
}

.svc.featured .meta {
    border-top-color: var(--line-dark)
}

.svc .term {
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted-light)
}

.svc.featured .term {
    color: rgba(255, 255, 255, .5)
}

.svc .price {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums
}

.svc .price .from {
    font-weight: 500;
    font-size: 12px;
    color: var(--muted-light);
    display: block;
    margin-bottom: 4px;
    letter-spacing: .04em;
    text-transform: uppercase
}

.svc.featured .price .from {
    color: rgba(255, 255, 255, .5)
}

.svc .cta {
    margin-top: 4px
}

.svc.featured .btn.ghost-l {
    color: #fff;
    border-color: rgba(255, 255, 255, .2)
}

.svc.featured .btn.ghost-l:hover {
    background: rgba(255, 255, 255, .06)
}

@media (max-width: 1000px) {
    .svc-grid {
        grid-template-columns:1fr
    }
}

/* ============================================================
Block 5 — Process
============================================================ */
.steps {
    margin-top: 48px;
    display: grid;
    grid-template-columns:repeat(5, 1fr);
    gap: 14px;
}

.step {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--line-dark);
    border-radius: var(--r-xl);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color .3s cubic-bezier(0.4, 0, 0.2, 1),
    background .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover {
    border-color: var(--accent);
    background: rgba(216, 255, 77, .12);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(216, 255, 77, .22);
}

.step:hover .n {
    box-shadow: 0 0 20px rgba(216, 255, 77, .55)
}

.step .n {
    transition: box-shadow .3s ease
}

.step .n {
    width: 36px;
    height: 36px;
    border-radius: var(--r-pill);
    background: var(--accent);
    color: var(--ink);
    font-weight: 800;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-variant-numeric: tabular-nums;
}

.step .ttl {
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.01em
}

.step .body {
    font-size: 13px;
    color: var(--muted-dark);
    line-height: 1.5
}

.step.note {
    background: rgba(216, 255, 77, .08);
    border-color: rgba(216, 255, 77, .25)
}

@media (max-width: 1100px) {
    .steps {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 600px) {
    .steps {
        grid-template-columns:1fr
    }
}

/* ============================================================
Block 6 — Big stats + scenarios
============================================================ */
.stats-row {
    margin-top: 48px;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px;
}

.stat {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 32px;
    border: 1px solid var(--line-light);
}

.stat .n {
    font-weight: 800;
    font-size: 64px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}

.stat .n .unit {
    font-size: 32px;
    color: var(--muted-light);
    margin-left: 4px
}

.stat .lbl {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.45;
    color: #3a3a3a;
    max-width: 34ch
}

.stat.dark {
    background: var(--ink);
    color: #fff
}

.stat.dark .n {
    color: var(--accent)
}

.stat.dark .lbl {
    color: var(--muted-dark)
}

@media (max-width: 900px) {
    .stats-row {
        grid-template-columns:1fr
    }
}

.scen-row {
    margin-top: 48px;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px;
}

.scen {
    background: var(--card-gray);
    border-radius: var(--r-xl);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1),
    background .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scen:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(216, 255, 77, 0.20), 0 0 0 1px rgba(216, 255, 77, 0.6);
}

.scen:hover .icon {
    box-shadow: 0 0 18px rgba(216, 255, 77, 0.5)
}

.scen .icon {
    transition: box-shadow .3s ease
}

.scen .icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    background: var(--ink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scen .icon svg {
    width: 20px;
    height: 20px
}

.scen .ttl {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.01em
}

.scen .body {
    font-size: 14px;
    line-height: 1.55;
    color: #3a3a3a
}

.scen .body em {
    font-style: normal;
    font-weight: 600;
    color: var(--ink)
}

@media (max-width: 900px) {
    .scen-row {
        grid-template-columns:1fr
    }
}

/* ============================================================
Block 7 — Before/After table
============================================================ */
.compare {
    margin-top: 48px;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--line-light);
    background: #fff;
}

.compare .head {
    display: grid;
    grid-template-columns:1fr 1fr;
    background: #fff;
}

.compare .head .h {
    padding: 24px 32px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted-light);
    border-bottom: 1px solid var(--line-light);
}

.compare .head .h.right {
    background: var(--ink);
    color: var(--accent);
    border-bottom-color: var(--ink);
}

.compare .row {
    display: grid;
    grid-template-columns:1fr 1fr;
}

.compare .row .cell {
    padding: 22px 32px;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid var(--line-light);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.compare .row .cell.was {
    background: var(--card-gray);
    color: #3a3a3a
}

.compare .row .cell.now {
    background: var(--ink);
    color: #fff;
    font-weight: 500;
    border-bottom-color: rgba(255, 255, 255, 0.08)
}

.compare .row:last-child .cell {
    border-bottom: none
}

.compare .row .mark {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--muted-light)
}

.compare .row .cell.now .mark {
    color: var(--accent)
}

@media (max-width: 760px) {
    .compare .head, .compare .row {
        grid-template-columns:1fr
    }

    .compare .row .cell {
        padding: 18px 22px
    }
}

/* ============================================================
Block 8 — Final CTA + form
============================================================ */
.final {
    position: relative;
    overflow: hidden;
}

.final::before {
    content: "";
    position: absolute;
    inset: auto -200px -200px auto;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 255, 77, .3) 0%, transparent 65%);
    filter: blur(40px);
    pointer-events: none;
}

.final .grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
}

.final .h2 {
    max-width: 18ch
}

.final .lead {
    margin-top: 22px;
    max-width: 52ch
}

.final .ways {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.final .way {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--line-dark);
    transition: all .22s var(--ease);
}

.final .way:hover {
    border-color: rgba(216, 255, 77, .35);
    background: rgba(216, 255, 77, .06);
    transform: translateX(4px)
}

.final .way .ic {
    width: 42px;
    height: 42px;
    border-radius: var(--r-pill);
    background: var(--accent);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.final .way .ic svg {
    width: 20px;
    height: 20px
}

.final .way .meta {
    flex: 1
}

.final .way .meta .t {
    font-weight: 600;
    font-size: 15px
}

.final .way .meta .s {
    font-size: 13px;
    color: var(--muted-dark);
    margin-top: 2px
}

.final .way .ar {
    color: var(--muted-dark)
}

.form {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--line-dark);
    border-radius: var(--r-2xl);
    padding: 36px;
    backdrop-filter: blur(10px);
}

.form h3 {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.01em;
    margin-bottom: 6px
}

.form .helper {
    font-size: 13px;
    color: var(--muted-dark);
    margin-bottom: 24px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

.field label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted-dark)
}

.field input, .field textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r-md);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.4;
    transition: all .18s ease;
}

.field input::placeholder, .field textarea::placeholder {
    color: rgba(255, 255, 255, .32)
}

.field input:focus, .field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(216, 255, 77, .04);
}

.field textarea {
    resize: vertical;
    min-height: 96px
}

.messenger-pick {
    display: flex;
    gap: 8px
}

.messenger-pick label {
    flex: 1;
    padding: 14px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all .18s ease;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #fff;
}

.messenger-pick input {
    display: none
}

.messenger-pick input:checked + label {
    background: var(--accent);
    color: var(--ink);
    border-color: var(--accent);
}

.messenger-pick svg {
    width: 16px;
    height: 16px
}

.form .submit {
    width: 100%;
    margin-top: 8px;
    padding: 18px;
    border-radius: var(--r-pill);
    background: var(--accent);
    color: var(--ink);
    font-weight: 700;
    font-size: 16px;
    border: none;
    transition: all .22s var(--ease);
}

.form .submit:hover {
    box-shadow: var(--glow);
    transform: translateY(-1px)
}

.form .success {
    display: none;
    padding: 18px;
    border-radius: var(--r-md);
    background: rgba(216, 255, 77, .12);
    border: 1px solid rgba(216, 255, 77, .4);
    color: #fff;
    font-size: 14px;
}

.form.sent .grid-form {
    display: none
}

.form.sent .success {
    display: block
}

@media (max-width: 900px) {
    .final .grid {
        grid-template-columns:1fr;
        gap: 36px
    }

    .form {
        padding: 24px
    }
}

/* ============================================================
Footer
============================================================ */
.footer {
    background: var(--ink);
    border-top: 1px solid var(--line-dark);
    padding: 56px 0 32px;
}

.footer .grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer .col h4 {
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted-dark);
    margin-bottom: 14px
}

.footer .col .item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--muted-dark);
    transition: color .15s
}

.footer .col .item:hover {
    color: #fff
}

.footer .col .item svg {
    width: 16px;
    height: 16px;
    color: var(--accent)
}

.footer .social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.footer .social a {
    width: 40px;
    height: 40px;
    border-radius: var(--r-pill);
    border: 1px solid var(--line-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .18s ease;
}

.footer .social a:hover {
    background: var(--accent);
    color: var(--ink);
    border-color: var(--accent)
}

.footer .social svg {
    width: 18px;
    height: 18px
}

.footer .bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--line-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--muted-dark);
}

.footer .bottom a {
    text-decoration: underline;
    text-underline-offset: 3px
}

@media (max-width: 900px) {
    .footer .grid {
        grid-template-columns:1fr;
        gap: 32px
    }

    .footer .bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }
}

/* ============================================================
Scroll reveal
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease-out, transform .8s cubic-bezier(.2, .7, .2, 1)
}

.reveal.in {
    opacity: 1;
    transform: translateY(0)
}

.reveal[data-delay="1"] {
    transition-delay: .10s
}

.reveal[data-delay="2"] {
    transition-delay: .20s
}

.reveal[data-delay="3"] {
    transition-delay: .30s
}

.reveal[data-delay="4"] {
    transition-delay: .40s
}

.reveal[data-delay="5"] {
    transition-delay: .50s
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal.in {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important
    }
}

/* Lime pulse — subtle continuous glow on accent CTAs / badges */
@keyframes limePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(216, 255, 77, 0);
    }
    50% {
        box-shadow: 0 0 22px 4px rgba(216, 255, 77, 0.55);
    }
}

.lime-pulse {
    animation: limePulse 3s ease-in-out infinite
}

@media (prefers-reduced-motion: reduce) {
    .lime-pulse {
        animation: none
    }
}

/* Text shimmer — subtle moving gradient on hero headline.
Static state matches keyframe 0% so there's no visible jump
when the animation kicks in after reveal completes. */
@keyframes shimmerMove {
    0% {
        background-position: 200% 50%;
    }
    100% {
        background-position: -200% 50%;
    }
}

.shimmer {
    background: linear-gradient(110deg,
    #ffffff 25%,
    rgba(216, 255, 77, 0.55) 45%,
    #ffffff 65%);
    background-size: 220% 100%;
    background-position: 200% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.shimmer .hl {
    -webkit-text-fill-color: var(--ink);
    color: var(--ink);
}

/* Only animate once the reveal entry is done */
.shimmer.in,
.shimmer:not(.reveal) {
    animation: shimmerMove 6s linear infinite;
    animation-delay: 1.2s;
}

@media (prefers-reduced-motion: reduce) {
    .shimmer {
        animation: none
    }
}

/* Section heading wrap */
.shead {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 50ch
}

.shead.center {
    align-items: center;
    text-align: center;
    margin: 0 auto;
    max-width: 60ch
}

.shead.center .h2 {
    max-width: 28ch
}

.shead .h2 {
    max-width: 20ch
}

/* ============================================================
Mobile / touch — lighter animations, tap feedback instead of hover
============================================================ */
@media (max-width: 768px), (hover: none) and (pointer: coarse) {
    /* Reduce fade-in duration ~30% (keep fade-in itself) */
    .reveal {
        transition-duration: .56s
    }

    .reveal[data-delay="1"] {
        transition-delay: .05s
    }

    .reveal[data-delay="2"] {
        transition-delay: .10s
    }

    .reveal[data-delay="3"] {
        transition-delay: .15s
    }

    .reveal[data-delay="4"] {
        transition-delay: .20s
    }

    .reveal[data-delay="5"] {
        transition-delay: .25s
    }

    /* Trim continuous decorative animations ~30% */
    .lime-pulse {
        animation-duration: 2.1s
    }

    .usp .card.pulse {
        animation-duration: 1.8s
    }

    .shimmer {
        animation-duration: 4.2s
    }

    /* Defensive: any parallax-style decorative motion off on mobile */
    .hero-orb {
        animation: none
    }

    /* Cancel hover lifts so cards don't get stuck in hover state on tap */
    .svc:hover, .pain:hover, .step:hover, .scen:hover, .way:hover, .footer .social a:hover {
        transform: none;
        box-shadow: none;
        border-color: var(--line-light);
        background: initial;
    }

    .step:hover {
        border-color: var(--line-dark)
    }

    .step:hover .n {
        box-shadow: none
    }

    .svc.featured:hover {
        box-shadow: var(--glow-sm);
        border-color: var(--accent)
    }

    /* Tap feedback — quick scale-down on press */
    .svc:active, .pain:active, .step:active, .scen:active, .way:active {
        transform: scale(0.98);
        transition: transform .15s ease;
    }

    .svc:active {
        transform: none;
    }

    .svc {
        pointer-events: none; /* карточка не реагирует на тап */
    }

    .svc .cta {
        pointer-events: auto; /* но кнопка внутри — работает */
    }

    .btn:active {
        transform: scale(0.96)
    }

    .icon-btn:active {
        transform: scale(0.92)
    }

    /* Header: drop backdrop-filter + solid bg to kill repaint-induced flicker */
    .hdr {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: var(--ink);
        transform: translateZ(0);
    }

    /* Hide header utility icons + secondary hero CTA on mobile */
    .hdr .actions .icon-btn {
        display: none
    }

    .hero .ctas .btn.ghost-d {
        display: none
    }

    /* =============================================================
Pain section — scroll-locked card stack (mobile only)
============================================================= */
    #pain {
        padding: 56px 0 24px
    }

    #pain .shead {
        margin-bottom: 8px
    }

    .pain-stack {
        display: block;
        position: sticky;
        top: 72px;
        height: calc(100vh - 90px);
        margin: 0;
    }

    #pain .pain-grid {
        display: block;
        position: relative;
        height: 520vh;
        grid-template-columns: none;
        margin-top: 12px;
    }

    #pain .pain-grid .pain {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        width: calc(100% - 24px);
        max-width: 540px;
        margin: 0 auto;
        min-height: 64vh;
        padding: 32px 28px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 18px;
        transform: translateY(-50%) scale(0.94);
        opacity: 0;
        transition: opacity .45s ease, transform .45s cubic-bezier(0.2, 0.7, 0.2, 1);
        pointer-events: none;
        grid-column: auto;
    }

    #pain .pain-grid .pain .icon {
        width: 56px;
        height: 56px;
        margin-bottom: 6px
    }

    #pain .pain-grid .pain .icon svg {
        width: 28px;
        height: 28px
    }

    #pain .pain-grid .pain .lbl {
        font-size: 11px;
        margin-bottom: 0
    }

    #pain .pain-grid .pain .quote {
        font-size: 19px;
        line-height: 1.5;
        font-weight: 500
    }

    #pain .pain-grid .pain.is-active {
        opacity: 1;
        transform: translateY(-50%) scale(1);
        pointer-events: auto;
    }

    #pain .pain-grid .pain.is-prev {
        opacity: 0;
        transform: translateY(calc(-50% - 40px)) scale(0.94);
    }

    /* Step indicator below the stack */
    .pain-stack::after {
        content: attr(data-step);
        position: absolute;
        bottom: 4px;
        left: 24px;
        transform: none;
        font: 600 11px/1 Inter, sans-serif;
        letter-spacing: 0.16em;
        color: var(--muted-light);
        text-transform: uppercase;
        padding: 6px 12px;
        background: rgba(0, 0, 0, 0.04);
        border-radius: 999px;
    }

    /* =============================================================
Process section — scroll-locked step stack (mobile only)
============================================================= */
    #process {
        padding: 56px 0 24px
    }

    #process .shead {
        margin-bottom: 8px
    }

    .steps-stack {
        display: block;
        position: sticky;
        top: 72px;
        height: calc(100vh - 90px);
        margin: 0;
    }

    #process .steps {
        display: block;
        position: relative;
        height: 520vh;
        grid-template-columns: none;
        margin-top: 12px;
    }

    #process .steps .step {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        width: calc(100% - 24px);
        max-width: 540px;
        margin: 0 auto;
        min-height: 60vh;
        padding: 32px 28px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 18px;
        transform: translateY(-50%) scale(0.94);
        opacity: 0;
        transition: opacity .45s ease, transform .45s cubic-bezier(0.2, 0.7, 0.2, 1);
        pointer-events: none;
    }

    #process .steps .step .n {
        width: 48px;
        height: 48px;
        font-size: 18px;
        margin-bottom: 6px
    }

    #process .steps .step .ttl {
        font-size: 22px;
        line-height: 1.2
    }

    #process .steps .step .body {
        font-size: 15px;
        line-height: 1.55
    }

    #process .steps .step.is-active {
        opacity: 1;
        transform: translateY(-50%) scale(1);
        pointer-events: auto;
        background: rgba(216, 255, 77, .10);
        border-color: rgba(216, 255, 77, .45);
        box-shadow: 0 16px 40px rgba(216, 255, 77, 0.20);
    }

    #process .steps .step.is-prev {
        opacity: 0;
        transform: translateY(calc(-50% - 40px)) scale(0.94);
    }

    .steps-stack::after {
        content: attr(data-step);
        position: absolute;
        bottom: 4px;
        left: 24px;
        transform: none;
        font: 600 11px/1 Inter, sans-serif;
        letter-spacing: 0.16em;
        color: var(--muted-dark);
        text-transform: uppercase;
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 999px;
    }

    /* =============================================================
Cases section — scroll-locked stack (mobile only)
============================================================= */
    #cases {
        padding: 56px 0 24px
    }

    #cases .shead {
        margin-bottom: 8px
    }

    .cases-stack {
        display: block;
        position: sticky;
        top: 72px;
        height: calc(100vh - 90px);
        margin: 0;
    }

    #cases .cases-grid {
        display: block;
        position: relative;
        height: 320vh;
        grid-template-columns: none;
        margin-top: 12px;
    }

    #cases .cases-grid .case {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        width: calc(100% - 24px);
        max-width: 540px;
        margin: 0 auto;
        min-height: 64vh;
        padding: 28px 24px;
        transform: translateY(-50%) scale(0.94);
        opacity: 0;
        transition: opacity .45s ease, transform .45s cubic-bezier(0.2, 0.7, 0.2, 1);
        pointer-events: none;
    }

    #cases .cases-grid .case.is-active {
        opacity: 1;
        transform: translateY(-50%) scale(1);
        pointer-events: auto;
    }

    #cases .cases-grid .case.is-prev {
        opacity: 0;
        transform: translateY(calc(-50% - 40px)) scale(0.94);
    }

    .cases-stack::after {
        content: attr(data-step);
        position: absolute;
        bottom: 4px;
        left: 24px;
        transform: none;
        font: 600 11px/1 Inter, sans-serif;
        letter-spacing: 0.16em;
        color: var(--muted-dark);
        text-transform: uppercase;
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 999px;
    }
}

/* Desktop & tablets: stacks are invisible to layout, cards stay in grid */
@media (min-width: 769px) {
    .pain-stack, .steps-stack, .cases-stack {
        display: contents
    }
}

/* ============================================================
Preloader
============================================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: #0A0A0A;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: plIn .3s ease forwards;
}

#preloader span {
    font: 800 96px/1 "Inter", sans-serif;
    color: #D8FF4D;
    letter-spacing: -.04em;
    display: inline-block;
    animation: plSpin 2s ease-in-out infinite;
}

#preloader.hide {
    animation: plOut .5s ease forwards;
    pointer-events: none
}

@keyframes plIn {
    to {
        opacity: 1
    }
}

@keyframes plOut {
    to {
        opacity: 0;
        visibility: hidden
    }
}

@keyframes plSpin {
    to {
        transform: rotate(360deg)
    }
}

/* ============================================================
   Scroll hint — «Листайте вниз» (mobile only, inside sticky stacks)
   ============================================================ */
.scroll-hint { display: none }

@media (max-width: 768px), (hover: none) and (pointer: coarse) {
    .scroll-hint {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 4;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        pointer-events: none;
        transition: opacity .45s ease, transform .45s ease;
        color: var(--accent);
    }
    .section.light .scroll-hint { color: #5d5d5d }

    .scroll-hint.is-dismissed {
        opacity: 0;
        transform: translateY(-50%) translateX(18px);
    }

    .scroll-hint .lbl {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        font: 700 10px/1 "Inter", sans-serif;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: inherit;
        opacity: .75;
    }

    .scroll-hint .swipe {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        padding: 4px 6px;
    }
    .scroll-hint .ch {
        width: 10px;
        height: 10px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        opacity: 0;
        animation: hintArrow 1.4s cubic-bezier(.4,0,.2,1) infinite;
    }
    .scroll-hint .ch:nth-child(2) { animation-delay: .15s }
    .scroll-hint .ch:nth-child(3) { animation-delay: .30s }

    @keyframes hintArrow {
        0%   { opacity: 0; transform: rotate(45deg) translate(-4px, -4px) }
        50%  { opacity: 1 }
        100% { opacity: 0; transform: rotate(45deg) translate( 4px,  4px) }
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-hint .ch { animation: none; opacity: .6 }
}

/* ============================================================
   На планшетах/мобилках стрелка кейса смотрит вниз
   ============================================================ */
@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
    .case .arr { transform: rotate(90deg) }
    .case:hover .arr { transform: rotate(90deg) translate(2px, -2px) }
}

/* ============================================================
   Premium 3D tilt hover — Apple / Linear / Stripe-style
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
    .pain-grid, .cases-grid, .svc-grid {
        perspective: 1200px;
        perspective-origin: 50% 50%;
    }
    .pain, .case, .svc {
        transform-style: preserve-3d;
        will-change: transform, box-shadow;
        transition:
            transform    .5s cubic-bezier(.22,1,.36,1),
            box-shadow   .5s cubic-bezier(.22,1,.36,1),
            border-color .5s cubic-bezier(.22,1,.36,1);
    }
    .pain .icon, .case .folder, .svc .icon,
    .case .industry, .case .arr, .svc .name {
        transform: translateZ(0);
        transition: transform .5s cubic-bezier(.22,1,.36,1);
    }
    .pain.is-tilt:hover,
    .case.is-tilt:hover,
    .svc.is-tilt:hover {
        transform:
            perspective(1200px)
            rotateX(var(--ry, 0deg))
            rotateY(var(--rx, 0deg))
            translateZ(10px);
        box-shadow: 0 24px 50px rgba(216,255,77,0.30);
        border-color: rgba(216,255,77,0.45);
    }
    .pain.is-tilt:hover .icon,
    .case.is-tilt:hover .folder,
    .svc.is-tilt:hover  .icon  { transform: translateZ(28px) }
    .case.is-tilt:hover .industry { transform: translateZ(18px) }
    .case.is-tilt:hover .arr      { transform: translateZ(22px) }
    .svc.is-tilt:hover  .name     { transform: translateZ(16px) }
}

@media (hover: none), (pointer: coarse) {
    .pain.is-tilt, .case.is-tilt, .svc.is-tilt {
        transition: transform .25s ease-out;
    }
    .pain.is-tilt:active,
    .case.is-tilt:active,
    .svc.is-tilt:active { transform: scale(1.02) }
}

@media (prefers-reduced-motion: reduce) {
    .pain.is-tilt:hover,
    .case.is-tilt:hover,
    .svc.is-tilt:hover { transform: translateY(-4px) !important }
}
