/* =========================================================
   MICHAEL WOOD — HOMEPAGE V4
   Clean, developer-led, less colour noise
========================================================= */

:root {
    --home-ink: #081225;
    --home-copy: #53617a;
    --home-dark: #050b1a;
    --home-dark-2: #081126;
    --home-soft: #f8faff;
    --home-border: #e1e6ed;
    --home-blue: #3f67e8;
    --home-cyan: #62d9f4;
    --home-purple: #825fe7;
}

.homeContainer {
    width: min(1500px, calc(100% - 60px));
    margin: 0 auto;
}

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

.homeSoft {
    color: var(--home-ink);
    background: var(--home-soft);
}

.homeDark {
    color: #fff;
    background: var(--home-dark);
}


/* =========================================================
   SHARED
========================================================= */

.homeEyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--home-cyan);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.homeEyebrow>span {
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--home-cyan), var(--home-purple));
}

.homeEyebrow--dark {
    color: #315f93;
}

.homeEyebrow--dark>span {
    background: #5577a0;
}

.homeButton {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0 20px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.homeButton--primary {
    color: #fff;
    border: 1px solid rgba(98, 217, 244, .28);
    background: linear-gradient(110deg, #3f67e8, #7659df);
    box-shadow: 0 18px 42px rgba(54, 75, 210, .19);
}

.homeButton--outline {
    color: rgba(255, 255, 255, .75);
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .025);
}

.homeButton--light {
    color: var(--home-ink);
    border: 1px solid #d6dde7;
    background: #fff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, .05);
}

.homeTextLink {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #263653;
    font-size: 10px;
    font-weight: 850;
    text-decoration: none;
}

.homeTextLink span {
    color: var(--home-blue);
}

.homeSectionHead {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 90px;
    align-items: end;
    margin-bottom: 38px;
}

.homeSectionHead h2,
.homeIntro h2,
.homeDeveloper h2,
.homePricing__intro h2,
.homeReviews h2 {
    max-width: 920px;
    margin: 15px 0 0;
    font-size: clamp(44px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -.06em;
}

.homeWhite h2,
.homeSoft h2 {
    color: var(--home-ink);
}

.homeWhite h2 span,
.homeSoft h2 span {
    background: linear-gradient(100deg, #4769df 0%, #6d63da 48%, #8a62df 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.homeDark h2 {
    color: #fff;
}

.homeDark h2 span {
    background: linear-gradient(100deg, #4769df 0%, #6d63da 48%, #8a62df 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.homeSectionHead__copy {
    margin: 0;
    color: var(--home-copy);
    font-size: 14px;
    line-height: 1.75;
}

.homeSwipeHint {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    color: #647089;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}


/* =========================================================
   REVEALS — DIFFERENT DIRECTIONS
========================================================= */

.homeReveal {
    opacity: 0;
    transition:
        opacity .8s ease,
        transform .9s cubic-bezier(.2, .8, .2, 1);
}

.homeReveal--left {
    transform: translateX(-52px);
}

.homeReveal--right {
    transform: translateX(52px);
}

.homeReveal--swing {
    transform: translateY(46px) rotate(2.2deg);
    transform-origin: 50% 0%;
}

.homeReveal.is-visible {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
}

.homeDelay1 {
    transition-delay: .08s;
}

.homeDelay2 {
    transition-delay: .16s;
}

.homeDelay3 {
    transition-delay: .24s;
}

.homeDelay4 {
    transition-delay: .32s;
}


/* =========================================================
   HERO
========================================================= */

.homeHero {
    position: relative;
    overflow: hidden;
    background: var(--home-dark);
}

.homeHero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
}

.homeHero__glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(95px);
    pointer-events: none;
}

.homeHero__glow--one {
    left: -180px;
    top: 10%;
    background: rgba(64, 99, 224, .12);
}

.homeHero__glow--two {
    right: -210px;
    bottom: -220px;
    background: rgba(115, 79, 218, .10);
}

.homeHero__inner {
    position: relative;
    z-index: 2;
    min-height: 760px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 90px;
    align-items: center;
    padding: 90px 0 110px;
}

.homeHero h1 {
    max-width: 930px;
    margin: 25px 0 24px;
    color: #fff;
    font-size: clamp(58px, 6.2vw, 102px);
    line-height: .91;
    letter-spacing: -.075em;
}

.homeHero h1 span {
    display: block;
    color: #aeb8cc;
}

.homeHero__lead {
    max-width: 760px;
    margin: 0;
    color: rgba(238, 243, 255, .65);
    font-size: 16px;
    line-height: 1.75;
}

.homeHero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 34px;
}

.homeHero__proof {
    max-width: 830px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 56px;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.homeHero__proof>div {
    padding: 0 18px;
    border-left: 1px solid rgba(255, 255, 255, .08);
}

.homeHero__proof>div:first-child {
    padding-left: 0;
    border-left: 0;
}

.homeHero__proof strong,
.homeHero__proof span {
    display: block;
}

.homeHero__proof strong {
    color: #fff;
    font-size: 13px;
}

.homeHero__proof span {
    margin-top: 5px;
    color: rgba(238, 243, 255, .38);
    font-size: 9px;
}


/* developer window */

.homeHero__dev {
    position: relative;
    min-height: 480px;
    display: grid;
    place-items: center;
}

.homeDevWindow {
    width: min(100%, 620px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    background: #071021;
    box-shadow: 0 40px 90px rgba(0, 0, 0, .28);
    animation: homeWindowFloat 6s ease-in-out infinite;
}

.homeDevWindow__bar {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.homeDevWindow__bar>span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
}

.homeDevWindow__bar small {
    margin-left: auto;
    color: rgba(255, 255, 255, .26);
    font-size: 8px;
}

.homeDevWindow__body {
    padding: 38px 28px;
    display: grid;
    gap: 22px;
}

.homeDevLine {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 12px;
    opacity: .58;
}

.homeDevLine--active {
    opacity: 1;
}

.homeDevLine__num {
    color: rgba(255, 255, 255, .23);
    font-size: 8px;
}

.homeDevLine code {
    color: #b8c3da;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 12px;
}

.homeDevLine code b {
    color: #72dcf4;
    font-weight: 700;
}

.homeDevLine code i {
    color: #b59df2;
    font-style: normal;
}

.homeDevCursor {
    width: 2px;
    height: 16px;
    background: #66e3ff;
    animation: homeCursor 1s steps(1) infinite;
}

.homeDevChip {
    position: absolute;
    min-width: 155px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 10px;
    background: rgba(5, 12, 29, .9);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .18);
}

.homeDevChip small,
.homeDevChip strong {
    display: block;
}

.homeDevChip small {
    color: rgba(255, 255, 255, .36);
    font-size: 7px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.homeDevChip strong {
    margin-top: 4px;
    color: #fff;
    font-size: 10px;
}

.homeDevChip--one {
    left: -20px;
    top: 55px;
    animation: homeChipFloat 5.2s ease-in-out infinite;
}

.homeDevChip--two {
    right: -15px;
    top: 150px;
    animation: homeChipFloat 6.4s ease-in-out infinite reverse;
}

.homeDevChip--three {
    right: 35px;
    bottom: 35px;
    animation: homeChipFloat 5.7s ease-in-out infinite;
}

@keyframes homeWindowFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-.4deg);
    }

    50% {
        transform: translateY(-10px) rotate(.4deg);
    }
}

@keyframes homeChipFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes homeCursor {

    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}


/* =========================================================
   CAPABILITY
========================================================= */

.homeCapability {
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    background: #040916;
}

.homeCapability__track {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: none;
    background: linear-gradient(100deg, #4769df 0%, #6d63da 48%, #8a62df 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.homeCapability__track::-webkit-scrollbar {
    display: none;
}

.homeCapability__track span {
    white-space: nowrap;
}

.homeCapability__track i {
    width: 3px;
    height: 3px;
    flex: 0 0 3px;
    border-radius: 50%;
    background: rgba(98, 217, 244, .5);
}


/* =========================================================
   INTRO
========================================================= */

.homeIntro {
    padding: 120px 0;
}

.homeIntro__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 90px;
    align-items: end;
}

.homeIntro__lead {
    color: #202a40 !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
}

.homeIntro__copy p {
    margin: 0 0 16px;
    color: var(--home-copy);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   SERVICES
========================================================= */

.homeServices {
    padding: 105px 0 115px;
}

.homeServices__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}

.homeService {
    min-height: 345px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--home-border);
    border-radius: 17px;
    color: var(--home-ink);
    background: #fff;
    box-shadow: 0 10px 27px rgba(15, 23, 42, .035);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.homeService:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(15, 23, 42, .075);
}

.homeService__number {
    color: #5973a3;
    font-size: 8px;
    font-weight: 900;
}

.homeService__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-top: 38px;
    border: 1px solid #dae1eb;
    border-radius: 12px;
    color: #4266b5;
    background: #f7f9fc;
    font-size: 10px;
    font-weight: 900;
}

.homeService h3 {
    margin: 22px 0 11px;
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.homeService p {
    margin: 0;
    color: var(--home-copy);
    font-size: 12px;
    line-height: 1.65;
}

.homeService footer {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    color: #3c465c;
    font-size: 9px;
    font-weight: 850;
}

.homeService footer span {
    color: var(--home-blue);
}


/* =========================================================
   DEVELOPER
========================================================= */

.homeDeveloper {
    padding: 120px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.homeDeveloper__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 95px;
    align-items: center;
}

.homeDeveloper__copy>p {
    max-width: 640px;
    margin: 20px 0 0;
    color: rgba(238, 243, 255, .55);
    font-size: 14px;
    line-height: 1.75;
}

.homeDeveloper__skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 28px 0 30px;
}

.homeDeveloper__skills span {
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 999px;
    color: rgba(255, 255, 255, .58);
    background: rgba(255, 255, 255, .02);
    font-size: 8px;
    font-weight: 800;
}

.homeDeveloper__visual {
    position: relative;
    min-height: 500px;
}

.homeStackCard {
    position: absolute;
    left: 50%;
    width: min(82%, 570px);
    min-height: 260px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 18px;
    background: #091225;
    box-shadow: 0 30px 65px rgba(0, 0, 0, .24);
}

.homeStackCard small {
    color: #66e3ff;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.homeStackCard strong {
    display: block;
    margin-top: 14px;
    color: #fff;
    font-size: 19px;
}

.homeStackCard--back {
    top: 30px;
    transform: translateX(-50%) rotate(-7deg) scale(.88);
    opacity: .38;
}

.homeStackCard--middle {
    top: 92px;
    transform: translateX(-50%) rotate(5deg) scale(.94);
    opacity: .65;
}

.homeStackCard--front {
    top: 155px;
    transform: translateX(-50%) rotate(-1deg);
}

.homeStackCode {
    margin-top: 45px;
    display: grid;
    gap: 9px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.homeStackCode span {
    color: rgba(255, 255, 255, .28);
    font-size: 10px;
}

.homeStackCode b {
    color: #b5c8f5;
    font-size: 18px;
}


/* =========================================================
   PROJECTS
========================================================= */

.homeProjectsSection {
    padding: 115px 0;
}

.homeProjectsSection__intro p {
    margin: 0 0 14px;
    color: var(--home-copy);
    font-size: 14px;
    line-height: 1.7;
}

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

.homeProject {
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .045);
}

.homeProject__media {
    position: relative;
    min-height: 320px;
    display: grid;
    place-items: center;
    padding: 42px 25px 36px;
    overflow: hidden;
    background: linear-gradient(145deg, #f4f6f9, #e8edf3);
    text-decoration: none;
}

.homeProject__badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 3;
    padding: 8px 10px;
    border-radius: 7px;
    color: #fff;
    background: rgba(8, 15, 30, .85);
    font-size: 7px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.homeLaptop {
    width: 90%;
    filter: drop-shadow(0 22px 28px rgba(8, 15, 30, .2));
}

.homeLaptop__lid {
    padding: 7px 7px 8px;
    border-radius: 11px 11px 7px 7px;
    background: linear-gradient(145deg, #202737, #0b101d);
}

.homeLaptop__camera {
    width: 3px;
    height: 3px;
    margin: -1px auto 4px;
    border-radius: 50%;
    background: #343d50;
}

.homeLaptop__screen {
    overflow: hidden;
    aspect-ratio: 16/10;
    border-radius: 5px;
    background: #fff;
}

.homeLaptop__screen img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform .6s ease;
}

.homeProject:hover .homeLaptop__screen img {
    transform: scale(1.035);
}

.homeLaptop__base {
    position: relative;
    width: 110%;
    height: 11px;
    margin-left: -5%;
    border-radius: 2px 2px 15px 15px;
    background: linear-gradient(180deg, #d3d7df, #7c838f);
}

.homeLaptop__base>span {
    position: absolute;
    left: 50%;
    top: 0;
    width: 15%;
    height: 3px;
    transform: translateX(-50%);
    background: rgba(70, 77, 88, .5);
}

.homeProject__body {
    min-height: 270px;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.homeProject__type {
    color: #5b75a5;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.homeProject h3 {
    margin: 14px 0 10px;
    color: var(--home-ink);
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.homeProject p {
    margin: 0;
    color: var(--home-copy);
    font-size: 12px;
    line-height: 1.65;
}

.homeProject__body>a {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #edf0f4;
    color: #3c465c;
    font-size: 9px;
    font-weight: 850;
    text-decoration: none;
}

.homeProject__body>a span {
    color: var(--home-blue);
}


/* =========================================================
   PRICING
========================================================= */

.homePricing {
    padding: 110px 0;
}

.homePricing__grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 80px;
    align-items: center;
}

.homePricing__intro>p {
    max-width: 570px;
    margin: 18px 0 26px;
    color: var(--home-copy);
    font-size: 14px;
    line-height: 1.75;
}

.homePricing__track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.homePrice {
    min-height: 190px;
    padding: 24px;
    border: 1px solid var(--home-border);
    border-radius: 16px;
    background: #fff;
}

.homePrice>span {
    color: #5b75a5;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.homePrice strong {
    display: inline-block;
    margin: 28px 6px 0 0;
    color: var(--home-ink);
    font-size: 37px;
    line-height: 1;
    letter-spacing: -.05em;
}

.homePrice small {
    color: #8b94a5;
    font-size: 9px;
}

.homePrice p {
    margin: 11px 0 0;
    color: var(--home-copy);
    font-size: 11px;
    line-height: 1.55;
}


/* =========================================================
   PROCESS
========================================================= */

.homeProcess {
    padding: 110px 0;
}

.homeProcess__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #dde3eb;
}

.homeProcessCard {
    min-height: 230px;
    padding: 25px 26px 0 0;
    border-right: 1px solid #dde3eb;
}

.homeProcessCard+.homeProcessCard {
    padding-left: 26px;
}

.homeProcessCard:last-child {
    border-right: 0;
}

.homeProcessCard>span {
    color: #5b75a5;
    font-size: 8px;
    font-weight: 900;
}

.homeProcessCard h3 {
    margin: 42px 0 10px;
    font-size: 22px;
    letter-spacing: -.035em;
}

.homeProcessCard p {
    margin: 0;
    color: var(--home-copy);
    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   REVIEWS
========================================================= */

.homeReviews {
    padding: 115px 0;
}

.homeReviews__head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 55px;
    align-items: end;
    margin-bottom: 40px;
}

.homeReviews__score {
    display: flex;
    align-items: center;
    gap: 14px;
}

.homeReviews__score>strong {
    color: #fff;
    font-size: 44px;
    letter-spacing: -.05em;
}

.homeReviews__score div span,
.homeReviews__score div small {
    display: block;
}

.homeReviews__score div span {
    color: #ffd86a;
    letter-spacing: .08em;
    font-size: 11px;
}

.homeReviews__score div small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .35);
    font-size: 8px;
}

.homeReviewSlider {
    width: 100%;
    overflow: hidden;
}

.homeReviews__track {
    display: flex;
    align-items: stretch;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
}

.homeReviews__track::-webkit-scrollbar {
    display: none;
}

.homeReview {
    flex: 0 0 420px;
    width: 420px;
    min-width: 420px;
    height: 300px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 17px;
    background: rgba(255, 255, 255, .02);
    box-sizing: border-box;
}

.homeReview__stars {
    flex: 0 0 auto;
    color: #ffd86a;
    font-size: 10px;
    letter-spacing: .08em;
}

.homeReview__content {
    min-height: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 27px;
    overflow: hidden;
}

.homeReview__text {
    margin: 0;
    color: rgba(238, 243, 255, .7);
    font-size: 13px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
}

.homeReview.is-expanded .homeReview__text {
    display: block;
    max-height: 176px;
    padding-right: 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-line-clamp: unset;
    scrollbar-width: thin;
    scrollbar-color: rgba(98, 217, 244, .35) rgba(255, 255, 255, .04);
}

.homeReview.is-expanded .homeReview__text::-webkit-scrollbar {
    width: 4px;
}

.homeReview.is-expanded .homeReview__text::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .04);
}

.homeReview.is-expanded .homeReview__text::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(98, 217, 244, .35);
}

.homeReview__more {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    padding: 0;
    border: 0;
    color: #74dff5;
    background: transparent;
    font: inherit;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
}

.homeReview__more span {
    display: inline-block;
    transition: transform .2s ease;
}

.homeReview.is-expanded .homeReview__more span {
    transform: rotate(180deg);
}

.homeReview footer {
    flex: 0 0 auto;
    margin-top: auto;
    padding-top: 22px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.homeReview__avatar {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .04);
    font-size: 10px;
    font-weight: 850;
}

.homeReview footer strong,
.homeReview footer small {
    display: block;
}

.homeReview footer strong {
    color: #fff;
    font-size: 10px;
}

.homeReview footer small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .3);
    font-size: 8px;
}

.homeSliderControls {
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    gap: 12px;
    align-items: center;
    margin-top: 22px;
}

.homeSliderControls button {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .025);
    cursor: pointer;
}

.homeSliderControls>span {
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
}

.homeSliderControls>span i {
    width: 12%;
    height: 100%;
    display: block;
    background: #66e3ff;
    transition: width .2s ease;
}


/* =========================================================
   FINAL
========================================================= */

.homeFinal {
    padding: 0 30px 90px;
}

.homeFinal__inner {
    padding: 52px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: end;
    border-radius: 22px;
    background: #071021;
}

.homeFinal h2 {
    max-width: 900px;
    margin: 15px 0 0;
    color: #fff;
    font-size: clamp(42px, 5vw, 70px);
    line-height: .98;
    letter-spacing: -.06em;
}

.homeFinal h2 span {
    color: rgba(255, 255, 255, .42);
}

.homeFinal__actions {
    min-width: 215px;
    display: grid;
    gap: 10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1150px) {

    .homeHero__inner,
    .homeDeveloper__grid,
    .homePricing__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .homeHero__dev {
        max-width: 760px;
        width: 100%;
    }

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

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

    .homeProject:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
    }
}

@media (max-width: 980px) {

    .homeSectionHead,
    .homeIntro__grid,
    .homeReviews__head {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

@media (max-width: 720px) {

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

    .homeHero__inner {
        min-height: 0;
        padding: 68px 0 75px;
    }

    .homeHero h1 {
        font-size: clamp(49px, 14.5vw, 74px);
    }

    .homeHero__lead {
        font-size: 15px;
    }

    .homeHero__actions {
        display: grid;
    }

    .homeButton {
        justify-content: space-between;
    }

    .homeHero__proof {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 0;
        margin-top: 42px;
    }

    .homeHero__proof>div {
        padding: 0 10px 14px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .homeHero__dev {
        min-height: 365px;
    }

    .homeDevWindow__body {
        padding: 28px 16px;
    }

    .homeDevLine code {
        font-size: 9px;
    }

    .homeDevChip {
        min-width: 130px;
        padding: 10px 11px;
    }

    .homeDevChip--one {
        left: 0;
        top: 25px;
    }

    .homeDevChip--two {
        right: 0;
        top: 120px;
    }

    .homeDevChip--three {
        right: 15px;
        bottom: 15px;
    }

    .homeCapability__track {
        width: 100%;
        max-width: 100%;

        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 30px;

        overflow-x: auto;
        overflow-y: hidden;

        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        touch-action: pan-x;

        scrollbar-width: none;

        padding-right: 30px;
    }

    .homeCapability__track::-webkit-scrollbar {
        display: none;
    }

    .homeCapability__track span {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .homeCapability__track i {
        flex: 0 0 3px;
    }

    .homeIntro,
    .homeServices,
    .homeDeveloper,
    .homeProjectsSection,
    .homePricing,
    .homeProcess,
    .homeReviews {
        padding: 78px 0;
    }

    .homeMobileSlider {
        width: 100%;
        max-width: 100%;
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
        padding-right: 14px;
    }

    .homeMobileSlider::-webkit-scrollbar {
        display: none;
    }

    .homeMobileSlider>* {
        scroll-snap-align: start;
    }

    .homeSwipeHint {
        display: flex;
    }

    .homeServices__track .homeService,
    .homeProjects__track .homeProject,
    .homePricing__track .homePrice,
    .homeProcess__track .homeProcessCard {
        width: calc(100vw - 52px);
        min-width: calc(100vw - 52px);
    }

    .homeService {
        min-height: 320px;
    }

    .homeDeveloper__visual {
        min-height: 400px;
    }

    .homeStackCard {
        width: 88%;
        min-height: 220px;
    }

    .homeStackCard--front {
        top: 130px;
    }

    .homeProjects__track {
        display: flex;
    }

    .homeProject:last-child {
        max-width: none;
    }

    .homeProject__media {
        min-height: 260px;
    }

    .homeProject__body {
        min-height: 250px;
    }

    .homePricing__track {
        display: flex;
    }

    .homePrice {
        min-height: 190px;
    }

    .homeProcess__track {
        border-top: 0;
    }

    .homeProcessCard,
    .homeProcessCard+.homeProcessCard {
        min-height: 220px;
        padding: 23px;
        border: 1px solid var(--home-border);
        border-radius: 16px;
        background: #fff;
    }

    .homeReview {
        flex-basis: calc(100vw - 52px);
        width: calc(100vw - 52px);
        min-width: calc(100vw - 52px);
        height: 390px;
        padding: 24px;
    }

    .homeFinal {
        padding: 0 14px 70px;
    }

    .homeFinal__inner {
        padding: 34px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .homeReveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .homeDevWindow,
    .homeDevChip {
        animation: none;
    }

    .homeDevCursor {
        animation: none;
    }
}

/* =========================================================
   HOMEPAGE V5 — RESTORED IMAGE HERO + REAL VISUALS
========================================================= */

/* ---------------------------------------------------------
   FULL WIDTH HERO BANNER
--------------------------------------------------------- */

.homeHero--image {
    min-height: calc(100vh - 125px);
    display: flex;
    align-items: center;
}

.homeHero__media {
    position: absolute;
    inset: 0;
    z-index: 0;

    background-image:
        url('/assets/images/home/hero.webp');

    background-position:
        center center;

    background-size:
        cover;

    background-repeat:
        no-repeat;

    transform:
        scale(1.015);

    animation:
        homeHeroImageBreath 14s ease-in-out infinite alternate;
}

.homeHero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(4, 9, 23, .97) 0%,
            rgba(4, 9, 23, .91) 43%,
            rgba(4, 9, 23, .70) 67%,
            rgba(4, 9, 23, .38) 100%),
        linear-gradient(0deg,
            rgba(5, 11, 26, .96) 0%,
            transparent 42%);
}

.homeHero--image .homeHero__grid {
    z-index: 2;
}

.homeHero--image .homeHero__glow {
    z-index: 2;
}

.homeHero--image .homeContainer {
    position: relative;
    z-index: 3;
}

.homeHero__bannerInner {
    width: 100%;
    min-height: 700px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.22fr) minmax(260px, .78fr);

    align-items: center;

    gap: 70px;

    padding:
        92px 0 112px;
}

.homeHero--image .homeHero__copy {
    max-width: 970px;
}

.homeHero--image h1 {
    max-width: 980px;

    font-size:
        clamp(58px, 6vw, 100px);
}

.homeHero--image h1 span {
    display: inline;

    background:
        linear-gradient(90deg,
            #d7e5ff,
            #aab9ff,
            #aa90ff,
            #71dfff);

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;
}

.homeHero__sideTags {
    display: grid;
    gap: 12px;

    justify-self: end;

    width:
        min(100%, 330px);
}

.homeHeroTag {
    padding:
        17px 18px;

    border:
        1px solid rgba(255, 255, 255, .12);

    border-radius:
        11px;

    background:
        rgba(5, 12, 29, .72);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, .18);

    animation:
        homeTagFloat 6s ease-in-out infinite;
}

.homeHeroTag:nth-child(2) {
    margin-left:
        34px;

    animation-delay:
        -2s;
}

.homeHeroTag:nth-child(3) {
    margin-left:
        8px;

    animation-delay:
        -4s;
}

.homeHeroTag small,
.homeHeroTag strong {
    display: block;
}

.homeHeroTag small {
    color:
        rgba(255, 255, 255, .36);

    font-size:
        7px;

    font-weight:
        900;

    letter-spacing:
        .12em;

    text-transform:
        uppercase;
}

.homeHeroTag strong {
    margin-top:
        5px;

    color:
        #fff;

    font-size:
        11px;
}

.homeHero__scroll {
    position: absolute;

    z-index: 4;

    left: 50%;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 9px;

    transform:
        translateX(-50%);

    color:
        rgba(255, 255, 255, .38);

    font-size:
        8px;

    font-weight:
        850;

    letter-spacing:
        .12em;

    text-decoration:
        none;

    text-transform:
        uppercase;
}

.homeHero__scroll>span {
    width: 26px;
    height: 1px;

    background:
        rgba(255, 255, 255, .28);
}

@keyframes homeHeroImageBreath {
    from {
        transform:
            scale(1.015);
    }

    to {
        transform:
            scale(1.055);
    }
}

@keyframes homeTagFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-8px);
    }
}


/* ---------------------------------------------------------
   REAL SYSTEM SHOWCASE IMAGE
--------------------------------------------------------- */

.homeDeveloper__visual--image {
    position: relative;

    min-height:
        520px;

    display: grid;

    place-items:
        center;
}

.homeSystemBrowser {
    width:
        min(92%, 690px);

    overflow:
        hidden;

    border:
        1px solid rgba(255, 255, 255, .11);

    border-radius:
        18px;

    background:
        #071021;

    box-shadow:
        0 36px 90px rgba(0, 0, 0, .30);

    transform:
        rotate(1deg);

    transition:
        transform .5s cubic-bezier(.2, .8, .2, 1);
}

.homeDeveloper__visual--image:hover .homeSystemBrowser {
    transform:
        rotate(0deg) translateY(-5px);
}

.homeSystemBrowser__bar {
    height:
        45px;

    display:
        flex;

    align-items:
        center;

    gap:
        6px;

    padding:
        0 14px;

    border-bottom:
        1px solid rgba(255, 255, 255, .07);
}

.homeSystemBrowser__bar i {
    width:
        6px;

    height:
        6px;

    border-radius:
        50%;

    background:
        rgba(255, 255, 255, .19);
}

.homeSystemBrowser__bar span {
    margin-left:
        auto;

    color:
        rgba(255, 255, 255, .3);

    font-size:
        8px;
}

.homeSystemBrowser__screen {
    overflow:
        hidden;

    aspect-ratio:
        16 / 10;

    background:
        #fff;
}

.homeSystemBrowser__screen img {
    width:
        100%;

    height:
        100%;

    display:
        block;

    object-fit:
        cover;

    object-position:
        top center;

    transition:
        transform .7s ease,
        object-position 1.3s ease;
}

.homeDeveloper__visual--image:hover .homeSystemBrowser__screen img {
    transform:
        scale(1.025);

    object-position:
        center 7%;
}

.homeSystemChip {
    position:
        absolute;

    min-width:
        165px;

    padding:
        13px 15px;

    border:
        1px solid rgba(255, 255, 255, .11);

    border-radius:
        10px;

    background:
        rgba(5, 12, 29, .90);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 18px 38px rgba(0, 0, 0, .2);

    animation:
        homeSystemFloat 5.8s ease-in-out infinite;
}

.homeSystemChip small,
.homeSystemChip strong {
    display:
        block;
}

.homeSystemChip small {
    color:
        rgba(255, 255, 255, .34);

    font-size:
        7px;

    font-weight:
        900;

    letter-spacing:
        .1em;

    text-transform:
        uppercase;
}

.homeSystemChip strong {
    margin-top:
        4px;

    color:
        #fff;

    font-size:
        10px;
}

.homeSystemChip--one {
    left:
        -4px;

    top:
        70px;
}

.homeSystemChip--two {
    right:
        -6px;

    top:
        170px;

    animation-delay:
        -2s;
}

.homeSystemChip--three {
    right:
        40px;

    bottom:
        28px;

    animation-delay:
        -4s;
}

@keyframes homeSystemFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-8px);
    }
}


/* ---------------------------------------------------------
   PROJECT IMAGE PRESENTATION
--------------------------------------------------------- */

.homeProject__media {
    background:
        radial-gradient(360px 210px at 50% 42%,
            rgba(72, 93, 159, .08),
            transparent 72%),
        linear-gradient(145deg,
            #f8faff,
            #e9edf3);
}

.homeLaptop__screen img {
    object-fit:
        cover;

    object-position:
        top center;
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 980px) {

    .homeHero__bannerInner {
        grid-template-columns:
            1fr;

        min-height:
            0;

        gap:
            35px;
    }

    .homeHero__sideTags {
        width:
            min(100%, 600px);

        grid-template-columns:
            repeat(3, 1fr);

        justify-self:
            start;
    }

    .homeHeroTag:nth-child(2),
    .homeHeroTag:nth-child(3) {
        margin-left:
            0;
    }
}

@media (max-width: 720px) {

    .homeHero--image {
        min-height:
            auto;
    }

    .homeHero__media {
        background-position:
            62% center;
    }

    .homeHero__overlay {
        background:
            linear-gradient(90deg,
                rgba(4, 9, 23, .97) 0%,
                rgba(4, 9, 23, .90) 63%,
                rgba(4, 9, 23, .64) 100%),
            linear-gradient(0deg,
                rgba(5, 11, 26, .98) 0%,
                transparent 48%);
    }

    .homeHero__bannerInner {
        padding:
            67px 0 84px;
    }

    .homeHero--image h1 {
        font-size:
            clamp(48px, 14vw, 72px);
    }

    .homeHero__sideTags {
        display:
            flex;

        overflow-x:
            auto;

        gap:
            10px;

        padding-bottom:
            4px;

        scrollbar-width:
            none;
    }

    .homeHero__sideTags::-webkit-scrollbar {
        display:
            none;
    }

    .homeHeroTag {
        min-width:
            185px;

        flex:
            0 0 185px;
    }

    .homeHero__scroll {
        display:
            none;
    }

    .homeDeveloper__visual--image {
        min-height:
            390px;
    }

    .homeSystemBrowser {
        width:
            96%;

        transform:
            none;
    }

    .homeSystemChip {
        min-width:
            135px;

        padding:
            10px 11px;
    }

    .homeSystemChip--one {
        left:
            0;

        top:
            20px;
    }

    .homeSystemChip--two {
        right:
            0;

        top:
            108px;
    }

    .homeSystemChip--three {
        right:
            12px;

        bottom:
            10px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .homeHero__media,
    .homeHeroTag,
    .homeSystemChip {
        animation:
            none;
    }
}


/* =========================================================
   SERVICEFLOWOS — PRODUCT FEATURE
========================================================= */

.homeServiceFlow {
    position: relative;
    overflow: hidden;
    padding: 118px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: #fff;
    background:
        radial-gradient(circle at 8% 12%, rgba(98, 217, 244, .07), transparent 28%),
        radial-gradient(circle at 92% 82%, rgba(130, 95, 231, .14), transparent 34%),
        #050b1a;
}

.homeServiceFlow__grid,
.homeServiceFlow__glow {
    position: absolute;
    pointer-events: none;
}

.homeServiceFlow__grid {
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .72), transparent);
}

.homeServiceFlow__glow {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(105px);
}

.homeServiceFlow__glow--one {
    left: -190px;
    top: 10%;
    background: rgba(63, 103, 232, .14);
}

.homeServiceFlow__glow--two {
    right: -170px;
    bottom: -170px;
    background: rgba(130, 95, 231, .15);
}

.homeServiceFlow__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 90px;
    align-items: center;
}

.homeServiceFlow__brand {
    margin-top: 25px;
    color: #fff;
    font-size: 17px;
    font-weight: 950;
    letter-spacing: -.035em;
}

.homeServiceFlow__brand span {
    color: var(--home-cyan);
}

.homeServiceFlow h2 {
    max-width: 690px;
    margin: 18px 0 20px;
    color: #fff;
    font-size: clamp(44px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -.06em;
}

.homeServiceFlow h2 span {
    display: block;
    background: linear-gradient(100deg, #73ddf5 0%, #748cf4 50%, #ad8df4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.homeServiceFlow__lead {
    max-width: 650px;
    margin: 0;
    color: rgba(238, 243, 255, .58);
    font-size: 14px;
    line-height: 1.78;
}

.homeServiceFlow__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.homeServiceFlow__features span {
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 999px;
    color: rgba(255, 255, 255, .62);
    background: rgba(255, 255, 255, .025);
    font-size: 8px;
    font-weight: 850;
}

.homeServiceFlow__price {
    margin-top: 30px;
    padding: 21px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.homeServiceFlow__price small,
.homeServiceFlow__price strong,
.homeServiceFlow__price p {
    display: block;
}

.homeServiceFlow__price small {
    color: var(--home-cyan);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.homeServiceFlow__price strong {
    margin-top: 8px;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -.045em;
}

.homeServiceFlow__price strong span {
    color: rgba(255, 255, 255, .43);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0;
}

.homeServiceFlow__price p {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, .36);
    font-size: 9px;
}

.homeServiceFlow__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.homeServiceFlow__visual {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
    color: inherit;
    text-decoration: none;
}

.homeServiceFlow__browser {
    width: min(100%, 780px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 17px;
    background: #0a1325;
    box-shadow: 0 42px 95px rgba(0, 0, 0, .30);
    transform: rotate(-.6deg);
    transition: transform .4s ease, box-shadow .4s ease;
}

.homeServiceFlow__visual:hover .homeServiceFlow__browser {
    transform: translateY(-5px) rotate(0);
    box-shadow: 0 50px 105px rgba(0, 0, 0, .36);
}

.homeServiceFlow__browserBar {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .34);
    font-size: 8px;
}

.homeServiceFlow__browserBar i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
}

.homeServiceFlow__browserBar span {
    margin-left: 6px;
}

.homeServiceFlow__screen {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #fff;
}

.homeServiceFlow__screen img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform .65s ease;
}

.homeServiceFlow__visual:hover .homeServiceFlow__screen img {
    transform: scale(1.018);
}

.homeServiceFlow__device {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    background: #0a1325;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .28);
}

.homeServiceFlow__device img {
    width: 100%;
    display: block;
}

.homeServiceFlow__device--tablet {
    width: 31%;
    right: -2%;
    bottom: 2%;
    border-radius: 17px;
    transform: rotate(3deg);
}

.homeServiceFlow__device--mobile {
    width: 14%;
    left: 2%;
    bottom: -2%;
    border-radius: 18px;
    transform: rotate(-4deg);
}

.homeServiceFlow__chip {
    position: absolute;
    min-width: 170px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 11px;
    background: rgba(5, 12, 29, .90);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .20);
}

.homeServiceFlow__chip small,
.homeServiceFlow__chip strong {
    display: block;
}

.homeServiceFlow__chip small {
    color: rgba(255, 255, 255, .34);
    font-size: 7px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.homeServiceFlow__chip strong {
    margin-top: 4px;
    color: #fff;
    font-size: 10px;
}

.homeServiceFlow__chip--one {
    left: -15px;
    top: 64px;
    animation: homeServiceFlowFloat 5.4s ease-in-out infinite;
}

.homeServiceFlow__chip--two {
    right: 12px;
    top: 135px;
    animation: homeServiceFlowFloat 6.1s ease-in-out infinite reverse;
}

@keyframes homeServiceFlowFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@media (max-width: 1050px) {

    .homeServiceFlow__inner {
        grid-template-columns: .9fr 1.1fr;
        gap: 55px;
    }

    .homeServiceFlow__visual {
        min-height: 480px;
    }

    .homeServiceFlow__chip {
        min-width: 145px;
    }
}

@media (max-width: 820px) {

    .homeServiceFlow {
        padding: 90px 0;
    }

    .homeServiceFlow__inner {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .homeServiceFlow__copy {
        max-width: 760px;
    }

    .homeServiceFlow__visual {
        min-height: 500px;
    }

    .homeServiceFlow__browser {
        width: 92%;
    }

    .homeServiceFlow__device--tablet {
        width: 32%;
        right: 1%;
    }

    .homeServiceFlow__device--mobile {
        width: 15%;
        left: 1%;
    }
}

@media (max-width: 620px) {

    .homeServiceFlow {
        padding: 72px 0 82px;
    }

    .homeServiceFlow h2 {
        font-size: clamp(39px, 12vw, 54px);
    }

    .homeServiceFlow__lead {
        font-size: 13px;
    }

    .homeServiceFlow__actions {
        flex-direction: column;
    }

    .homeServiceFlow__actions .homeButton {
        width: 100%;
    }

    .homeServiceFlow__visual {
        min-height: 355px;
    }

    .homeServiceFlow__browser {
        width: 96%;
        border-radius: 12px;
        transform: none;
    }

    .homeServiceFlow__browserBar {
        min-height: 34px;
    }

    .homeServiceFlow__device--tablet {
        width: 38%;
        right: -2%;
        bottom: 0;
        border-radius: 12px;
    }

    .homeServiceFlow__device--mobile {
        width: 18%;
        left: 0;
        bottom: -1%;
        border-radius: 13px;
    }

    .homeServiceFlow__chip {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    .homeServiceFlow__chip {
        animation: none;
    }
}
/* =========================================================
   V5.2 — MOBILE OVERFLOW / SWIPE / DEVELOPER VISUAL FIXES
   Added 17 Aug 2026
========================================================= */

.homePage,
.homePage * {
    box-sizing: border-box;
}

.homePage {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

/* Replacement for the previously empty developer visual. */
.homeArchitecture {
    position: relative;
    z-index: 2;
    width: min(94%, 720px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 20px;
    background: #071021;
    box-shadow: 0 38px 90px rgba(0, 0, 0, .34);
    transform: rotate(.8deg);
    transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s ease;
}

.homeDeveloper__visual--image:hover .homeArchitecture {
    transform: translateY(-5px) rotate(0deg);
    box-shadow: 0 48px 105px rgba(0, 0, 0, .39);
}

.homeArchitecture__bar {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .32);
    font-size: 8px;
}

.homeArchitecture__bar>i {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .19);
}

.homeArchitecture__bar>span {
    margin-left: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.homeArchitecture__bar>strong {
    margin-left: auto;
    padding: 5px 7px;
    border: 1px solid rgba(98, 217, 244, .18);
    border-radius: 999px;
    color: #7fe5f7;
    background: rgba(98, 217, 244, .06);
    font-size: 6px;
    letter-spacing: .12em;
}

.homeArchitecture__body {
    min-height: 390px;
    display: grid;
    grid-template-columns: 54px 1fr;
}

.homeArchitecture__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 20px 9px;
    border-right: 1px solid rgba(255, 255, 255, .06);
    background: rgba(255, 255, 255, .012);
}

.homeArchitecture__nav b {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    margin-bottom: 8px;
    border: 1px solid rgba(98, 217, 244, .18);
    border-radius: 9px;
    color: #72dcf4;
    font-size: 8px;
}

.homeArchitecture__nav span {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: rgba(255, 255, 255, .26);
    font-size: 7px;
}

.homeArchitecture__nav span.is-active {
    color: #fff;
    background: rgba(100, 117, 255, .14);
}

.homeArchitecture__main {
    min-width: 0;
    padding: 24px;
}

.homeArchitecture__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.homeArchitecture__heading small,
.homeArchitecture__heading strong {
    display: block;
}

.homeArchitecture__heading small,
.homeArchitecture__flow>small,
.homeArchitecture__activity>small {
    color: rgba(255, 255, 255, .30);
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .11em;
}

.homeArchitecture__heading strong {
    margin-top: 6px;
    color: #fff;
    font-size: 18px;
    letter-spacing: -.025em;
}

.homeArchitecture__heading>span {
    padding: 7px 9px;
    border-radius: 999px;
    color: #7ee3b4;
    background: rgba(73, 205, 142, .08);
    font-size: 7px;
    font-weight: 850;
}

.homeArchitecture__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 25px;
}

.homeArchitecture__stats>div {
    min-width: 0;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 11px;
    background: rgba(255, 255, 255, .022);
}

.homeArchitecture__stats small,
.homeArchitecture__stats strong,
.homeArchitecture__stats em {
    display: block;
}

.homeArchitecture__stats small {
    color: rgba(255, 255, 255, .33);
    font-size: 7px;
}

.homeArchitecture__stats strong {
    margin-top: 12px;
    color: #fff;
    font-size: 24px;
    letter-spacing: -.04em;
}

.homeArchitecture__stats em {
    margin-top: 5px;
    color: #6fdff6;
    font-size: 7px;
    font-style: normal;
}

.homeArchitecture__workspace {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 10px;
    margin-top: 10px;
}

.homeArchitecture__flow,
.homeArchitecture__activity {
    min-width: 0;
    min-height: 145px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 11px;
    background: rgba(255, 255, 255, .018);
}

.homeArchitecture__flow>div {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 31px;
    overflow: hidden;
}

.homeArchitecture__flow span {
    flex: 0 0 auto;
    padding: 8px 9px;
    border: 1px solid rgba(115, 135, 255, .14);
    border-radius: 8px;
    color: #cbd5ee;
    background: rgba(91, 106, 230, .06);
    font-size: 7px;
}

.homeArchitecture__flow i {
    color: rgba(98, 217, 244, .45);
    font-size: 8px;
    font-style: normal;
}

.homeArchitecture__activity p {
    display: grid;
    grid-template-columns: 7px 1fr auto;
    gap: 8px;
    align-items: center;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, .55);
    font-size: 7px;
}

.homeArchitecture__activity p b {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #66dff6;
    box-shadow: 0 0 0 4px rgba(102, 223, 246, .06);
}

.homeArchitecture__activity p em {
    color: rgba(255, 255, 255, .24);
    font-style: normal;
}

/* Give horizontal tracks a predictable drag cursor on desktop. */
[data-home-slider] {
    -webkit-user-select: none;
    user-select: none;
}

[data-home-slider].is-dragging,
[data-home-track].is-dragging {
    cursor: grabbing;
    scroll-behavior: auto !important;
    scroll-snap-type: none !important;
}

@media (max-width: 720px) {

    .homePage {
        overflow-x: clip;
    }

    .homeContainer {
        width: calc(100% - 28px);
        max-width: calc(100% - 28px);
        min-width: 0;
    }

    /* Side-to-side reveals are the main cause of the page appearing
       to jump sideways on narrow screens. Mobile uses a small vertical
       fade instead. Slider cards do not move vertically at all. */
    .homeReveal--left,
    .homeReveal--right,
    .homeReveal--swing {
        transform: translateY(22px);
    }

    .homeMobileSlider .homeReveal,
    .homeHero__sideTags.homeReveal {
        transform: none;
    }

    .homeReveal.is-visible {
        transform: none;
    }

    /* Generic mobile slider. The next card deliberately peeks into view. */
    .homeMobileSlider,
    .homeReviews__track,
    .homeHero__sideTags,
    .homeCapability__track {
        max-width: 100%;
        min-width: 0;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        scrollbar-width: none;
        cursor: grab;
    }

    .homeMobileSlider::-webkit-scrollbar,
    .homeReviews__track::-webkit-scrollbar,
    .homeHero__sideTags::-webkit-scrollbar,
    .homeCapability__track::-webkit-scrollbar {
        display: none;
    }

    .homeMobileSlider {
        width: 100%;
        display: flex !important;
        flex-wrap: nowrap !important;
        grid-template-columns: none !important;
        gap: 12px;
        padding: 2px 18px 10px 0;
    }

    .homeMobileSlider > * {
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        flex: 0 0 calc(100% - 30px) !important;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .homeProjects__track,
    .homePricing__track,
    .homeServices__track,
    .homeProcess__track {
        display: flex !important;
    }

    .homeProject:last-child {
        grid-column: auto;
        max-width: none !important;
    }

    /* Reviews use the same easy swipe behaviour. */
    .homeReviews__track {
        width: 100%;
        gap: 12px;
        padding: 2px 18px 8px 0;
    }

    .homeReview {
        width: auto !important;
        min-width: 0 !important;
        flex: 0 0 calc(100% - 30px) !important;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    /* Capability strip: enough width to physically scroll and auto-step. */
    .homeCapability .homeContainer {
        overflow: visible;
    }

    .homeCapability__track {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 25px;
        padding: 0 22px 0 0;
    }

    .homeCapability__track span,
    .homeCapability__track i {
        flex: 0 0 auto;
    }

    /* Hero mini-cards also swipe rather than wrapping vertically. */
    .homeHero__sideTags {
        width: 100%;
        display: flex !important;
        flex-wrap: nowrap;
        gap: 10px;
        padding: 2px 28px 8px 0;
    }

    .homeHeroTag,
    .homeHeroTag:nth-child(2),
    .homeHeroTag:nth-child(3) {
        min-width: 0;
        flex: 0 0 78%;
        margin-left: 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        animation: none;
    }

    /* Replacement system visual is self-contained and cannot hang off screen. */
    .homeDeveloper__visual--image {
        min-height: 430px;
        overflow: hidden;
    }

    .homeArchitecture {
        width: 100%;
        max-width: 100%;
        transform: none;
        border-radius: 15px;
    }

    .homeArchitecture__body {
        min-height: 350px;
        grid-template-columns: 42px 1fr;
    }

    .homeArchitecture__nav {
        padding: 14px 6px;
    }

    .homeArchitecture__nav b,
    .homeArchitecture__nav span {
        width: 27px;
        height: 27px;
    }

    .homeArchitecture__main {
        padding: 17px 14px;
    }

    .homeArchitecture__heading strong {
        font-size: 14px;
    }

    .homeArchitecture__stats {
        gap: 7px;
        margin-top: 18px;
    }

    .homeArchitecture__stats>div {
        padding: 10px 8px;
    }

    .homeArchitecture__stats strong {
        margin-top: 8px;
        font-size: 18px;
    }

    .homeArchitecture__workspace {
        grid-template-columns: 1fr;
        gap: 7px;
        margin-top: 7px;
    }

    .homeArchitecture__flow,
    .homeArchitecture__activity {
        min-height: 100px;
        padding: 11px;
    }

    .homeArchitecture__flow>div {
        margin-top: 18px;
        gap: 5px;
    }

    .homeArchitecture__flow span {
        padding: 6px;
        font-size: 6px;
    }

    .homeArchitecture__activity {
        display: none;
    }

    .homeSystemChip {
        z-index: 4;
        min-width: 118px;
        padding: 9px 10px;
        animation: none !important;
    }

    .homeSystemChip--one {
        left: 8px;
        top: 48px;
    }

    .homeSystemChip--two {
        right: 8px;
        top: 112px;
    }

    .homeSystemChip--three {
        right: 15px;
        bottom: 12px;
    }

    .homeSwipeHint {
        margin-top: 8px;
    }
}

@media (max-width: 430px) {
    .homeMobileSlider > *,
    .homeReview {
        flex-basis: calc(100% - 24px) !important;
    }

    .homeHeroTag {
        flex-basis: 84%;
    }

    .homeArchitecture__heading>span,
    .homeArchitecture__stats em {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .homeArchitecture,
    .homeDeveloper__visual--image:hover .homeArchitecture {
        transform: none;
        transition: none;
    }
}

/* =========================================================
   V5.2.1 — CAPABILITY STRIP FINAL FIX
   Continuous marquee. No nested mobile slider, no clipping,
   no vertical fighting, no 100vw overflow.
========================================================= */

.homeCapability {
    overflow: hidden;
}

.homeCapability__viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.homeCapability__viewport::before,
.homeCapability__viewport::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(18px, 4vw, 72px);
    z-index: 2;
    pointer-events: none;
}

.homeCapability__viewport::before {
    left: 0;
    background: linear-gradient(90deg, #040916 0%, rgba(4, 9, 22, 0) 100%);
}

.homeCapability__viewport::after {
    right: 0;
    background: linear-gradient(270deg, #040916 0%, rgba(4, 9, 22, 0) 100%);
}

.homeCapability__track {
    width: max-content !important;
    max-width: none !important;
    min-height: 72px;
    display: flex !important;
    align-items: center;
    gap: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
    touch-action: auto !important;
    animation: homeCapabilityMarquee 28s linear infinite;
    will-change: transform;
}

.homeCapability__group {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 26px;
    padding-right: 26px;
}

.homeCapability__group span {
    flex: 0 0 auto;
    white-space: nowrap;
    background: linear-gradient(100deg, #4769df 0%, #6d63da 48%, #8a62df 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.homeCapability__group i {
    width: 3px;
    height: 3px;
    flex: 0 0 3px;
    border-radius: 50%;
    background: rgba(98, 217, 244, .5);
}

@keyframes homeCapabilityMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.homeCapability__viewport:hover .homeCapability__track {
    animation-play-state: paused;
}

@media (max-width: 720px) {
    .homeCapability__track {
        min-height: 64px;
        animation-duration: 22s;
    }

    .homeCapability__group {
        gap: 24px;
        padding-right: 24px;
    }

    .homeCapability__group span {
        font-size: 8px;
        letter-spacing: .11em;
    }

    /* Neutralise every older mobile capability-slider rule above. */
    .homeCapability .homeContainer {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        overflow: hidden !important;
    }

    .homeCapability__track span,
    .homeCapability__track i {
        flex: 0 0 auto !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .homeCapability__track {
        animation: none;
        transform: none;
    }

    .homeCapability__viewport {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .homeCapability__viewport::-webkit-scrollbar {
        display: none;
    }
}
