/* Website-first public studio layer. Loaded last by base_pivot.html. */

.site-header .main-nav .nav-product,
.site-header .main-nav .nav-product.is-current {
    color: var(--ink);
    position: relative;
}

.site-header .main-nav .nav-product::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--blue));
    content: "";
    transform: scaleX(.45);
    transform-origin: left;
    transition: transform .24s cubic-bezier(.22, 1, .36, 1);
}

.site-header .main-nav .nav-product:hover::after,
.site-header .main-nav .nav-product.is-current::after { transform: scaleX(1); }

.page-studio-home main { background: #fffdf8; }

.page-studio-home .swrl-chat-nudge {
    width: min(320px, calc(100vw - 36px));
    box-shadow: 0 20px 55px rgba(21, 20, 30, .16);
}

.studio-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-bottom: 1px solid rgba(16, 16, 20, .06);
    background:
        linear-gradient(rgba(255, 253, 248, .82), rgba(255, 250, 240, .9)),
        radial-gradient(circle at 16% 12%, rgba(135, 95, 170, .17), transparent 31rem),
        radial-gradient(circle at 88% 42%, rgba(40, 120, 216, .14), transparent 32rem);
}

.studio-hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(16, 16, 20, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 16, 20, .025) 1px, transparent 1px);
    background-size: 44px 44px;
    content: "";
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.studio-orb {
    position: absolute;
    z-index: -1;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(2px);
    opacity: .52;
    pointer-events: none;
}

.studio-orb--one {
    top: -190px;
    right: 31%;
    background: radial-gradient(circle at 35% 35%, rgba(223, 248, 234, .95), rgba(120, 103, 255, .12) 62%, transparent 72%);
}

.studio-orb--two {
    right: -180px;
    bottom: -230px;
    background: radial-gradient(circle at 40% 40%, rgba(40, 120, 216, .22), rgba(243, 232, 251, .48) 58%, transparent 72%);
}

.studio-hero-grid {
    min-height: min(770px, calc(100svh - 65px));
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(470px, 1.1fr);
    align-items: center;
    gap: clamp(24px, 4.2vw, 64px);
    padding-block: clamp(64px, 8vw, 104px);
}

.studio-hero-copy { position: relative; z-index: 2; }
.page-studio-home .studio-hero-copy h1 {
    max-width: 690px;
    margin: 0 0 18px;
    font-size: clamp(3.25rem, 5.1vw, 5.5rem);
    line-height: .91;
    letter-spacing: -.066em;
    text-wrap: balance;
}

.studio-hero-copy .lead {
    max-width: 585px;
    margin: 0;
    color: #514f59;
    font-size: clamp(1.12rem, 1.65vw, 1.32rem);
    line-height: 1.52;
}

.studio-hero-actions { margin-top: 24px; }

.studio-scorecard-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #4d4a55;
    font-size: .92rem;
    font-weight: 750;
    text-decoration: underline;
    text-decoration-color: rgba(135, 95, 170, .3);
    text-underline-offset: 4px;
}

.studio-scorecard-link span {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border: 1px solid rgba(16, 16, 20, .11);
    border-radius: 50%;
    background: rgba(255, 255, 255, .7);
    text-decoration: none;
}

.studio-hero-art {
    --studio-x: 0deg;
    --studio-y: 0deg;
    position: relative;
    z-index: 1;
    margin: 0 -8% 0 0;
    perspective: 1100px;
    transform: translate3d(0, 0, 0);
}

.studio-hero-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(16, 16, 20, .1);
    border-radius: clamp(24px, 3.2vw, 42px);
    background: #fffaf4;
    box-shadow: 0 34px 90px rgba(25, 29, 54, .19), 0 3px 0 rgba(255, 255, 255, .9) inset;
    transform: rotateX(var(--studio-x)) rotateY(var(--studio-y));
    transition: transform .2s ease-out, box-shadow .3s ease;
}

.studio-hero-art:hover .studio-hero-frame { box-shadow: 0 42px 110px rgba(25, 29, 54, .24), 0 3px 0 rgba(255, 255, 255, .9) inset; }
.studio-hero-frame img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }

.studio-hero-art figcaption {
    position: absolute;
    right: 24px;
    bottom: 18px;
    padding: 6px 10px;
    border: 1px solid rgba(16, 16, 20, .09);
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    color: #55515b;
    font-size: .7rem;
    font-weight: 750;
    backdrop-filter: blur(12px);
}

.studio-float-note {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(16, 16, 20, .09);
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 14px 36px rgba(24, 27, 48, .13);
    font: 800 .78rem/1 Inter, Arial, sans-serif;
    backdrop-filter: blur(14px);
    animation: studio-float 4.8s ease-in-out 1 both;
}

.studio-float-note::before { width: 8px; height: 8px; border-radius: 50%; background: var(--green); content: ""; }
.studio-float-note--top { top: 7%; left: -4%; }
.studio-float-note--bottom { right: -2%; bottom: 10%; animation-delay: -2.4s; }

@keyframes studio-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

.studio-capability-strip {
    border-bottom: 1px solid rgba(16, 16, 20, .075);
    background: #fff;
}

.studio-capability-strip .wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 72px;
    align-items: center;
}

.studio-capability-strip span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #4c4952;
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.studio-capability-strip span::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px rgba(135, 95, 170, .1);
    content: "";
}

.studio-section { padding: clamp(74px, 8.5vw, 116px) 0; }

.studio-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    align-items: end;
    gap: clamp(32px, 8vw, 120px);
    margin-bottom: 40px;
}

.studio-section-head h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.4rem, 4.7vw, 4.9rem);
    line-height: .96;
    letter-spacing: -.058em;
    text-wrap: balance;
}

.studio-section-head > p { margin: 0 0 6px; color: #625e68; font-size: 1.03rem; }

.studio-service-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(270px, .78fr);
    grid-template-rows: repeat(2, minmax(255px, auto));
    gap: 18px;
}

.studio-service-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    border: 1px solid rgba(16, 16, 20, .1);
    border-radius: 30px;
    padding: clamp(24px, 3vw, 38px);
    background: #fff;
    box-shadow: 0 16px 48px rgba(25, 20, 35, .07);
    transition: transform .32s cubic-bezier(.22, 1, .36, 1), box-shadow .32s ease, border-color .24s ease;
}

.studio-service-card:hover,
.studio-service-card:focus-visible {
    transform: translateY(-7px);
    border-color: rgba(135, 95, 170, .35);
    box-shadow: 0 28px 72px rgba(35, 25, 48, .14);
}

.studio-service-card:focus-visible { outline-offset: 5px; }
.studio-service-card h3 { margin: 8px 0 12px; font-size: clamp(2rem, 3.6vw, 3.7rem); }
.studio-service-card p { max-width: 480px; margin: 0; color: #5c5963; }
.studio-service-kicker { color: var(--brand-ink); font: 800 .76rem/1 Inter, Arial, sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.studio-card-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 22px; font-weight: 850; }
.studio-card-link b { transition: transform .24s ease; }
.studio-service-card:hover .studio-card-link b { transform: translateX(6px); }

.studio-service-card--website {
    grid-row: 1 / span 2;
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 528px;
    background:
        radial-gradient(circle at 84% 14%, rgba(40, 120, 216, .18), transparent 20rem),
        linear-gradient(145deg, #fff, #f5effd 64%, #eaf4ff);
}

.studio-service-card--automation { background: linear-gradient(150deg, #fbfff9, #ecfbf3); }
.studio-service-card--apps { background: linear-gradient(150deg, #fbfcff, #eef2ff); }

.mini-site {
    align-self: end;
    justify-self: end;
    width: min(94%, 560px);
    margin: 30px -5% -7% 0;
    overflow: hidden;
    border: 8px solid #171923;
    border-bottom-width: 14px;
    border-radius: 17px 17px 9px 9px;
    background: #fffdf8;
    box-shadow: 0 24px 55px rgba(23, 25, 35, .2);
    transform: rotate(-2.8deg) translateY(14px);
    transform-origin: bottom right;
    transition: transform .65s cubic-bezier(.22, 1, .36, 1);
}

.mini-site.is-inview,
.studio-service-card:hover .mini-site { transform: rotate(-1deg) translateY(0); }

.mini-site-bar { height: 28px; display: flex; align-items: center; gap: 5px; padding: 0 10px; border-bottom: 1px solid #e2dcd2; }
.mini-site-bar i { width: 7px; height: 7px; border-radius: 50%; background: #d3cbd6; }
.mini-site-bar i:first-child { background: #ff7a64; }
.mini-site-bar i:nth-child(2) { background: #f5bd43; }
.mini-site-bar i:nth-child(3) { background: #13a36f; }
.mini-site-bar span { width: 34%; height: 6px; margin-left: auto; border-radius: 999px; background: #e6e1e8; }
.mini-site-body { display: grid; grid-template-columns: 1fr .95fr; gap: 13px; padding: 17px; }
.mini-site-copy { display: grid; align-content: center; gap: 8px; }
.mini-site-copy b { display: block; height: 12px; border-radius: 5px; background: #1b1d27; }
.mini-site-copy b:nth-child(2) { width: 76%; background: #474a57; }
.mini-site-copy i { width: 45%; height: 24px; margin-top: 5px; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--blue)); }
.mini-site-photo { min-height: 126px; border-radius: 12px; background: radial-gradient(circle at 70% 30%, #dff8ea 0 14%, transparent 15%), linear-gradient(145deg, #d9d0f2, #a7cdf7 54%, #f9e4be); }
.mini-site-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 0 17px 17px; }
.mini-site-cards i { height: 46px; border: 1px solid #e8e1d9; border-radius: 9px; background: #fff; }

.service-visual-flow {
    position: relative;
    height: 82px;
    margin-bottom: 32px;
}

.service-visual-flow::before,
.service-visual-flow::after {
    position: absolute;
    top: 39px;
    height: 3px;
    border-radius: 999px;
    background: rgba(12, 106, 73, .18);
    content: "";
}
.service-visual-flow::before { left: 17%; right: 50%; }
.service-visual-flow::after { left: 50%; right: 17%; }
.service-visual-flow i { position: absolute; top: 20px; z-index: 1; width: 42px; height: 42px; border: 7px solid #fff; border-radius: 14px; background: var(--green); box-shadow: 0 8px 22px rgba(12, 106, 73, .18); }
.service-visual-flow i:first-child { left: 3%; }
.service-visual-flow i:nth-child(2) { left: calc(50% - 21px); background: var(--gold); }
.service-visual-flow i:nth-child(3) { right: 3%; background: var(--blue); }
.service-visual-flow span { position: absolute; top: 35px; z-index: 2; width: 10px; height: 10px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(19, 163, 111, .2); opacity: 0; }
.service-visual-flow span:nth-of-type(1) { left: 33%; }
.service-visual-flow span:nth-of-type(2) { left: 67%; }
.service-visual-flow.is-inview span { animation: flow-pulse 2.2s ease-in-out 1 both; }
.service-visual-flow.is-inview span:nth-of-type(2) { animation-delay: .8s; }

@keyframes flow-pulse { 0%, 100% { opacity: 0; transform: scale(.7); } 40%, 65% { opacity: 1; transform: scale(1); } }

.service-visual-app {
    width: 100%;
    height: 104px;
    margin-bottom: 14px;
    padding: 13px;
    border: 1px solid rgba(31, 111, 208, .14);
    border-radius: 17px;
    background: rgba(255, 255, 255, .85);
    box-shadow: 0 14px 30px rgba(31, 111, 208, .08);
}
.service-visual-app > span { display: block; width: 38%; height: 8px; border-radius: 999px; background: #293042; }
.service-visual-app > div { display: flex; align-items: end; gap: 8px; height: 55px; padding-top: 12px; }
.service-visual-app i { flex: 1; height: 28%; border-radius: 6px 6px 3px 3px; background: #d8dff5; transition: height .75s cubic-bezier(.22, 1, .36, 1); }
.service-visual-app i:nth-child(2) { height: 44%; background: #b8c9f5; }
.service-visual-app i:nth-child(3) { height: 62%; background: linear-gradient(#7867ff, #2878d8); }
.service-visual-app.is-inview i:first-child { height: 48%; }
.service-visual-app.is-inview i:nth-child(2) { height: 72%; }
.service-visual-app.is-inview i:nth-child(3) { height: 92%; }
.service-visual-app b { position: absolute; }

.studio-secondary-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 18px;
    padding: 18px 24px;
    border: 1px solid rgba(16, 16, 20, .09);
    border-radius: 20px;
    background: rgba(255, 255, 255, .62);
    color: #4f4c55;
    transition: background .2s ease, transform .2s ease;
}
.studio-secondary-product:hover { transform: translateY(-2px); background: #fff; }
.studio-secondary-product small { display: block; margin-bottom: 2px; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.studio-secondary-product strong { color: var(--ink); font-family: Inter, Arial, sans-serif; }

.studio-section--ink {
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 0%, rgba(120, 103, 255, .23), transparent 33rem),
        radial-gradient(circle at 3% 100%, rgba(19, 163, 111, .13), transparent 28rem),
        #12131b;
    color: #fff;
}

.studio-section-head--light > p { color: rgba(255, 255, 255, .64); }
.studio-section-head--light .eyebrow { color: #bda8db; }

.studio-process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.studio-process::before {
    position: absolute;
    top: 28px;
    right: 10%;
    left: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.1s cubic-bezier(.22, 1, .36, 1);
}
.studio-process.is-inview::before { transform: scaleX(1); }
.studio-process li { position: relative; padding: 21px; border: 1px solid rgba(255, 255, 255, .11); border-radius: 22px; background: rgba(255, 255, 255, .055); backdrop-filter: blur(10px); }
.studio-process li span { display: grid; width: 42px; height: 42px; margin-bottom: 38px; place-items: center; border: 1px solid rgba(255, 255, 255, .18); border-radius: 50%; background: #1c1e28; color: #c9b9e0; font: 800 .75rem/1 Inter, Arial, sans-serif; }
.studio-process li strong { display: block; margin-bottom: 4px; font: 800 1.28rem/1.1 Inter, Arial, sans-serif; }
.studio-process li small { color: rgba(255, 255, 255, .58); }
.studio-process-actions { display: flex; align-items: center; gap: 24px; margin-top: 32px; }
.text-link--light { color: #fff; }

.studio-scorecard-band {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(22px, 4vw, 48px);
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(135, 95, 170, .24);
    border-radius: 30px;
    background: linear-gradient(125deg, #f6effd, #fff 48%, #eaf7ff);
    box-shadow: 0 22px 65px rgba(50, 34, 70, .1);
}
.studio-scorecard-band h2 { margin: 0 0 8px; font-size: clamp(2rem, 3.4vw, 3.4rem); }
.studio-scorecard-band p:last-child { margin: 0; color: #5d5965; }
.studio-scorecard-mark { position: relative; display: grid; width: 92px; height: 92px; place-items: center; border-radius: 26px; background: #fff; box-shadow: 0 15px 35px rgba(50, 34, 70, .12); }
.studio-scorecard-mark span { position: absolute; top: 16px; left: 17px; color: var(--brand); font: 850 1.7rem/1 Inter, Arial, sans-serif; }
.studio-scorecard-mark i { position: absolute; right: 16px; left: 44px; height: 6px; border-radius: 99px; background: #d8d2df; }
.studio-scorecard-mark i:nth-of-type(1) { top: 25px; }
.studio-scorecard-mark i:nth-of-type(2) { top: 43px; width: 25px; background: #9bdabe; }
.studio-scorecard-mark i:nth-of-type(3) { top: 61px; width: 32px; background: #a9c7ec; }

.studio-founder-strip { border-top: 1px solid rgba(16, 16, 20, .07); background: #f5efe5; }
.studio-founder-strip .wrap { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(20px, 4vw, 42px); padding-block: 34px; }
.studio-founder-photo { width: 72px; height: 72px; overflow: hidden; border: 4px solid #fff; border-radius: 24px; box-shadow: 0 12px 26px rgba(24, 20, 29, .12); }
.studio-founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.studio-founder-strip h2 { max-width: 690px; margin: 0; font-size: clamp(1.55rem, 2.5vw, 2.45rem); line-height: 1.03; }
.studio-founder-links { display: grid; gap: 6px; text-align: right; font-weight: 800; }
.studio-founder-links a:last-child { color: var(--brand-ink); }

/* Shared product-page system. */
.page-solution-websites,
.page-solution-automation,
.page-solution-apps { --solution-accent: var(--brand); --solution-tint: #f5effd; }
.page-solution-automation { --solution-accent: var(--green); --solution-tint: #eaf8f1; }
.page-solution-apps { --solution-accent: var(--blue); --solution-tint: #edf3fd; }

.solution-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(16, 16, 20, .065);
    background: linear-gradient(140deg, #fffdf8 0 44%, var(--solution-tint));
}
.solution-hero::after { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(16,16,20,.06) 0 1px, transparent 1.8px); background-size: 24px 24px; content: ""; opacity: .38; mask-image: linear-gradient(90deg, transparent 25%, #000); pointer-events: none; }
.solution-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: clamp(36px, 5vw, 64px); min-height: 600px; padding-block: clamp(54px, 7vw, 78px); }
.solution-hero h1 { max-width: 720px; margin-bottom: 18px; font-size: clamp(3rem, 4.7vw, 5rem); line-height: .94; letter-spacing: -.06em; text-wrap: balance; }
.solution-hero .lead { max-width: 610px; margin: 0; color: #55525d; font-size: clamp(1.08rem, 1.55vw, 1.25rem); }
.solution-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.solution-meta span { padding: 7px 10px; border: 1px solid rgba(16,16,20,.1); border-radius: 999px; background: rgba(255,255,255,.66); color: #55515c; font-size: .76rem; font-weight: 800; }
.solution-art { position: relative; min-height: 390px; }

.website-art-window { position: absolute; inset: 5% 6% 7% 0; overflow: hidden; border: 8px solid #171923; border-radius: 24px; background: #fff; box-shadow: 0 33px 70px rgba(22, 24, 38, .22); transform: rotate(-2deg); }
.website-art-top { display: flex; gap: 6px; align-items: center; height: 35px; padding: 0 13px; background: #f4f0e8; }
.website-art-top i { width: 8px; height: 8px; border-radius: 50%; background: #c5bec8; }
.website-art-top i:first-child { background: #ff765c; }
.website-art-top i:nth-child(2) { background: #f5bd43; }
.website-art-top i:nth-child(3) { background: var(--green); }
.website-art-screen { padding: 20px; }
.website-art-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.website-art-nav b { width: 74px; height: 10px; border-radius: 99px; background: #232631; }
.website-art-nav span { width: 42%; height: 7px; border-radius: 99px; background: #ded9df; }
.website-art-hero { display: grid; grid-template-columns: 1fr .95fr; gap: 14px; min-height: 174px; }
.website-art-copy { display: grid; align-content: center; gap: 9px; }
.website-art-copy i { display: block; height: 15px; border-radius: 5px; background: #22242f; }
.website-art-copy i:nth-child(2) { width: 72%; }
.website-art-copy b { width: 46%; height: 27px; margin-top: 4px; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--blue)); }
.website-art-photo { border-radius: 16px; background: radial-gradient(circle at 73% 30%, rgba(255,255,255,.8) 0 9%, transparent 10%), linear-gradient(145deg, #b8d4f3, #e8d5f2 53%, #b9e4ce); }
.website-art-phone { position: absolute; right: -1%; bottom: 0; width: 31%; min-height: 260px; padding: 13px 9px; border: 7px solid #141620; border-radius: 30px; background: #fff; box-shadow: 0 24px 55px rgba(22,24,38,.24); transform: rotate(5deg); }
.website-art-phone::before { display: block; width: 38%; height: 7px; margin: 0 auto 14px; border-radius: 99px; background: #191b25; content: ""; }
.website-art-phone span { display: block; height: 105px; border-radius: 13px; background: linear-gradient(145deg, #c2daf5, #e6d7f0 55%, #c4ead6); }
.website-art-phone i { display: block; height: 8px; margin: 14px 5px 0; border-radius: 99px; background: #2a2c38; }
.website-art-phone i:nth-of-type(2) { width: 62%; background: #c8c5cc; }
.website-art-phone b { display: block; width: 68%; height: 24px; margin: 17px auto 0; border-radius: 999px; background: var(--blue); }

.automation-art { position: absolute; inset: 7%; padding: 26px; border: 1px solid rgba(16,16,20,.1); border-radius: 30px; background: rgba(255,255,255,.88); box-shadow: 0 30px 70px rgba(20,45,35,.15); transform: rotate(1.5deg); }
.automation-art header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.automation-art header b { width: 38%; height: 11px; border-radius: 999px; background: #22252e; }
.automation-art header i { width: 70px; height: 25px; border-radius: 999px; background: #dff8ea; }
.automation-lane { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; gap: 36px; }
.automation-lane::before { position: absolute; top: 50%; right: 13%; left: 13%; height: 3px; border-radius: 99px; background: #c7e8d8; content: ""; }
.automation-node { position: relative; z-index: 1; display: grid; min-height: 94px; place-items: center; border: 6px solid #fff; border-radius: 22px; background: #eaf8f1; box-shadow: 0 10px 24px rgba(12,106,73,.12); }
.automation-node::before { width: 24px; height: 24px; border: 5px solid var(--green); border-radius: 8px; content: ""; }
.automation-node:nth-child(2) { background: #fff4d9; }
.automation-node:nth-child(2)::before { border-color: var(--gold); border-radius: 50%; }
.automation-node:nth-child(3) { background: #eaf3fd; }
.automation-node:nth-child(3)::before { border-color: var(--blue); }
.automation-pulse { position: absolute; top: calc(50% - 6px); left: 15%; z-index: 2; width: 12px; height: 12px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 5px rgba(19,163,111,.18); animation: automation-run 3.4s ease-in-out 1 both; }
@keyframes automation-run { 0% { left: 15%; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: 83%; opacity: 0; } }

.app-art { position: absolute; inset: 2% 3% 4% 5%; overflow: hidden; border: 7px solid #171923; border-radius: 28px; background: #f7f8fc; box-shadow: 0 32px 72px rgba(24,32,63,.22); transform: rotate(-1deg); }
.app-art-side { position: absolute; inset: 0 auto 0 0; width: 25%; padding: 22px 13px; background: #202330; }
.app-art-side b { display: block; width: 58%; height: 10px; margin: 0 0 28px; border-radius: 99px; background: #fff; }
.app-art-side i { display: block; height: 8px; margin: 13px 0; border-radius: 99px; background: rgba(255,255,255,.22); }
.app-art-side i:nth-of-type(2) { width: 78%; background: #7867ff; }
.app-art-main { margin-left: 25%; padding: 23px; }
.app-art-main > header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.app-art-main > header b { width: 37%; height: 13px; border-radius: 99px; background: #262a37; }
.app-art-main > header i { width: 34px; height: 34px; border-radius: 50%; background: #d8dff5; }
.app-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.app-metrics i { height: 72px; border: 1px solid #e3e5ec; border-radius: 13px; background: #fff; }
.app-chart { display: flex; align-items: end; gap: 8px; height: 142px; margin-top: 12px; padding: 16px; border: 1px solid #e3e5ec; border-radius: 16px; background: #fff; }
.app-chart i { flex: 1; height: 28%; border-radius: 6px 6px 2px 2px; background: #dfe5f5; animation: app-bars 3.8s ease-in-out 1 both; }
.app-chart i:nth-child(2) { height: 56%; animation-delay: -.7s; }
.app-chart i:nth-child(3) { height: 79%; background: #9aaef0; animation-delay: -1.1s; }
.app-chart i:nth-child(4) { height: 47%; animation-delay: -1.8s; }
.app-chart i:nth-child(5) { height: 92%; background: linear-gradient(#7867ff, #2878d8); animation-delay: -2.2s; }
@keyframes app-bars { 0%, 100% { transform: scaleY(1); transform-origin: bottom; } 50% { transform: scaleY(.72); transform-origin: bottom; } }

.solution-section { padding: clamp(64px, 7.5vw, 96px) 0; }
.solution-section--soft { border-block: 1px solid rgba(16,16,20,.06); background: #f8f4ec; }
.solution-heading { max-width: 750px; margin-bottom: 32px; }
.solution-heading h2 { margin-bottom: 12px; font-size: clamp(2.25rem, 4.1vw, 4rem); }
.solution-heading p { color: #5d5963; }
.solution-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.solution-value-card { min-height: 190px; padding: 25px; border: 1px solid rgba(16,16,20,.09); border-radius: 23px; background: #fff; box-shadow: 0 13px 38px rgba(25,20,35,.055); transition: transform .26s ease, box-shadow .26s ease; }
.solution-value-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(25,20,35,.1); }
.solution-value-card span { display: grid; width: 39px; height: 39px; margin-bottom: 29px; place-items: center; border-radius: 13px; background: var(--solution-tint); color: var(--solution-accent); font: 850 .72rem/1 Inter,Arial,sans-serif; }
.solution-value-card h3 { margin-bottom: 8px; font-size: 1.35rem; }
.solution-value-card p { margin: 0; color: #5c5962; }
.solution-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.solution-pills span { padding: 9px 12px; border: 1px solid rgba(16,16,20,.09); border-radius: 999px; background: #fff; font-size: .86rem; font-weight: 750; }
.solution-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 0; padding: 0; counter-reset: solution-step; list-style: none; }
.solution-process li { position: relative; min-height: 150px; padding: 24px; border-top: 2px solid var(--solution-accent); background: linear-gradient(180deg, var(--solution-tint), transparent); }
.solution-process li::before { display: block; margin-bottom: 28px; color: var(--solution-accent); content: counter(solution-step, decimal-leading-zero); counter-increment: solution-step; font: 850 .75rem/1 Inter,Arial,sans-serif; }
.solution-process strong { display: block; margin-bottom: 4px; font-family: Inter,Arial,sans-serif; }
.solution-process small { color: #66616b; }
.solution-details { margin-top: 34px; border: 1px solid rgba(16,16,20,.1); border-radius: 20px; background: #fff; }
.solution-details summary { display: flex; justify-content: space-between; gap: 20px; padding: 19px 22px; cursor: pointer; font-weight: 850; list-style: none; }
.solution-details summary::-webkit-details-marker { display: none; }
.solution-details summary::after { color: var(--solution-accent); content: "+"; font-size: 1.4rem; line-height: 1; }
.solution-details[open] summary::after { content: "−"; }
.solution-details > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding: 0 22px 22px; color: #5e5a63; font-size: .92rem; }
.solution-details strong { display: block; margin-bottom: 5px; color: var(--ink); }
.solution-final { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: clamp(28px,4vw,44px); border-radius: 29px; background: linear-gradient(130deg, #171923, #25273a); color: #fff; }
.solution-final h2 { margin: 0 0 8px; font-size: clamp(2rem,3.7vw,3.7rem); }
.solution-final p { margin: 0; color: rgba(255,255,255,.64); }

/* Pricing/scope page: no featured monthly product. */
.scope-page-hero { padding: clamp(66px,9vw,110px) 0 50px; text-align: center; }
.scope-page-hero h1 { max-width: 900px; margin-inline: auto; font-size: clamp(3rem,6vw,6.1rem); }
.scope-page-hero .lead { max-width: 660px; margin-inline: auto; }
.scope-service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }
.scope-service-card { display: flex; min-height: 260px; flex-direction: column; padding: 27px; border: 1px solid rgba(16,16,20,.09); border-radius: 24px; background: #fff; }
.scope-service-card:first-child { grid-column: span 2; background: linear-gradient(140deg,#fff,#f4edfb); }
.scope-service-card h2 { margin-top: 20px; font-size: clamp(1.8rem,3vw,3rem); }
.scope-service-card p { color: #5e5a64; }
.scope-service-card .text-link { margin-top: auto; }

@media (max-width: 1060px) {
    .studio-hero-grid,
    .solution-hero-grid { grid-template-columns: 1fr; }
    .studio-hero-grid { padding-top: 72px; }
    .studio-hero-copy { max-width: 760px; }
    .studio-hero-art { width: min(850px, 100%); margin: 0 auto; }
    .solution-hero-grid { padding-bottom: 50px; }
    .solution-art { width: min(720px,100%); min-height: 410px; margin-inline: auto; }
    .studio-service-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
    .studio-service-card--website { grid-column: 1 / -1; grid-row: auto; min-height: 500px; }
}

@media (max-width: 820px) {
    .site-header .main-nav .nav-product::after { display: none; }
    .studio-hero-grid { min-height: auto; }
    .page-studio-home .studio-hero-copy h1 { font-size: clamp(3rem,11vw,4.8rem); }
    .studio-capability-strip .wrap { grid-template-columns: repeat(5, auto); overflow-x: auto; justify-content: start; gap: 26px; padding-block: 19px; scrollbar-width: none; }
    .studio-capability-strip span { white-space: nowrap; }
    .studio-section-head { grid-template-columns: 1fr; gap: 18px; }
    .studio-service-grid { grid-template-columns: 1fr; }
    .studio-service-card--website { grid-column: auto; min-height: 480px; }
    .studio-process,
    .solution-process { grid-template-columns: repeat(2,1fr); }
    .studio-scorecard-band { grid-template-columns: auto 1fr; }
    .studio-scorecard-band .button { grid-column: 1 / -1; width: 100%; }
    .studio-founder-strip .wrap { grid-template-columns: auto 1fr; }
    .studio-founder-links { grid-column: 1 / -1; grid-template-columns: repeat(2,auto); justify-content: start; gap: 24px; text-align: left; }
    .solution-value-grid { grid-template-columns: 1fr; }
    .solution-details > div { grid-template-columns: 1fr; }
    .scope-service-grid { grid-template-columns: 1fr; }
    .scope-service-card:first-child { grid-column: auto; }
}

@media (max-width: 620px) {
    .studio-hero-grid { gap: 44px; padding-block: 48px 58px; }
    .page-studio-home .studio-hero-copy h1 { font-size: clamp(2.8rem,13.4vw,4rem); }
    .studio-hero-copy .lead { font-size: 1.05rem; }
    .studio-hero-art { margin-inline: -7%; width: 114%; }
    .studio-hero-frame { border-radius: 24px; }
    .studio-float-note { padding: 8px 10px; font-size: .68rem; }
    .studio-float-note--top { left: 2%; }
    .studio-float-note--bottom { right: 3%; bottom: 7%; }
    .studio-hero-art figcaption { right: 9%; bottom: 12px; font-size: .63rem; }
    .studio-section { padding-block: 66px; }
    .studio-section-head h2 { font-size: clamp(2.25rem,11vw,3.5rem); }
    .studio-service-card { border-radius: 24px; }
    .studio-service-card--website { min-height: 455px; }
    .studio-service-card h3 { font-size: 2.2rem; }
    .mini-site { width: 105%; margin-right: -13%; }
    .studio-secondary-product { align-items: flex-start; flex-direction: column; }
    .studio-process,
    .solution-process { grid-template-columns: 1fr; }
    .studio-process::before { display: none; }
    .studio-process li span { margin-bottom: 24px; }
    .studio-process-actions { align-items: stretch; flex-direction: column; }
    .studio-scorecard-band { grid-template-columns: 1fr; text-align: left; }
    .studio-scorecard-mark { width: 74px; height: 74px; }
    .studio-founder-strip .wrap { grid-template-columns: 1fr; }
    .studio-founder-links { grid-column: auto; }
    .solution-hero-grid { min-height: auto; padding-block: 48px 54px; }
    .solution-hero h1 { font-size: clamp(2.75rem,13vw,4.1rem); }
    .solution-art { min-height: 315px; }
    .website-art-window { inset: 5% 5% 8% 0; border-width: 5px; }
    .website-art-phone { width: 34%; min-height: 210px; border-width: 5px; }
    .automation-art { inset: 4% 0; padding: 17px; }
    .automation-lane { gap: 15px; }
    .automation-node { min-height: 72px; }
    .app-art { inset: 4% 0; border-width: 5px; }
    .app-art-main { padding: 15px; }
    .solution-final { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .studio-float-note,
    .automation-pulse,
    .app-chart i { animation: none !important; }
    .service-visual-flow.is-inview span { animation: none !important; opacity: 1; transform: none; }
    .service-visual-app i { transition: none; }
    .app-chart i { transform: none; }
    .studio-hero-frame { transform: none !important; transition: none; }
    .studio-process::before { transform: scaleX(1); transition: none; }
    .mini-site { transform: rotate(-1deg); transition: none; }
    .studio-service-card,
    .studio-card-link b,
    .solution-value-card { transition: none; }
}
