:root {
    --blue: #005FE9;
    --dark: #151515;
    --charcoal: #1D1D1D;
    --near-black: #0F0F0F;
    --white: #FFFFFF;
    --soft: #F4F4F4;
    --muted: #6F6F6F;
    --dark-gray: #2C2C2C;
    --line: #DCDCDC;
    --max: 1240px;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --menu-ease: cubic-bezier(.77, 0, .175, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Urbanist", Arial, sans-serif;
    color: var(--near-black);
    background: var(--white);
    line-height: 1.45;
    text-rendering: geometricPrecision;
}

body.menu-open,
body.menu-closing {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 80px), var(--max));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    left: 24px;
    top: 18px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--white);
    color: var(--near-black);
    transform: translateY(-160%);
    transition: transform .25s var(--ease);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    color: var(--white);
    pointer-events: none;
}

.header-shell {
    position: relative;
    z-index: 3;
    width: min(calc(100% - 96px), 1760px);
    min-height: 112px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    pointer-events: auto;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.brand-mark img {
    display: block;
    width: auto;
    height: 44px;
    object-fit: contain;
}

.brand-mark span {
    color: currentColor;
    white-space: nowrap;
}

.brand-mark .logo-dark {
    display: none;
}

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

.header-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    color: currentColor;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cta-text {
    display: inline-flex;
    white-space: nowrap;
}

.cta-text span {
    display: inline-block;
    transform: translateY(0);
}

.cta-text-short {
    display: none;
}

.header-cta::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 1px;
    background: currentColor;
    transform-origin: left;
    transition: background .2s var(--ease);
}

.header-cta:hover::after {
    background: currentColor;
    animation: ctaLineSweep .58s var(--menu-ease) both;
}

.header-cta:hover .cta-text span {
    animation: ctaLetterWave .44s var(--ease) both;
    animation-delay: calc(var(--i) * 34ms);
}

.menu-toggle {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--near-black);
    cursor: pointer;
    transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}

.menu-toggle:hover {
    transform: scale(1.06);
    background: var(--blue);
    color: var(--white);
}

.menu-toggle span {
    grid-area: 1 / 1;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform .3s var(--ease);
}

.menu-toggle span:first-child {
    transform: translateY(-4px);
}

.menu-toggle span:last-child {
    transform: translateY(4px);
}

.menu-open .menu-toggle span:first-child {
    transform: rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
    transform: rotate(-45deg);
}

.menu-closing .menu-toggle span:first-child {
    transform: rotate(45deg);
}

.menu-closing .menu-toggle span:last-child {
    transform: rotate(-45deg);
}

.is-light .header-shell {
    color: var(--near-black);
}

.is-light .brand-mark .logo-light {
    display: none;
}

.is-light .brand-mark .logo-dark {
    display: block;
}

.is-light .menu-toggle {
    background: var(--near-black);
    color: var(--white);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.menu-theme-light.menu-open .header-shell,
.menu-theme-light.menu-closing .header-shell {
    color: var(--near-black);
}

.menu-theme-light.menu-open .brand-mark .logo-light,
.menu-theme-light.menu-closing .brand-mark .logo-light {
    display: none;
}

.menu-theme-light.menu-open .brand-mark .logo-dark,
.menu-theme-light.menu-closing .brand-mark .logo-dark {
    display: block;
}

.menu-theme-dark.menu-open .header-shell,
.menu-theme-dark.menu-closing .header-shell {
    color: var(--white);
}

.menu-theme-dark.menu-open .brand-mark .logo-light,
.menu-theme-dark.menu-closing .brand-mark .logo-light {
    display: block;
}

.menu-theme-dark.menu-open .brand-mark .logo-dark,
.menu-theme-dark.menu-closing .brand-mark .logo-dark {
    display: none;
}

.menu-open .menu-toggle,
.menu-closing .menu-toggle {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 18px 42px rgba(0, 95, 233, .22);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    z-index: 1;
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 16%, rgba(0, 95, 233, .055), transparent 26%),
        var(--menu-bg, var(--white));
    clip-path: circle(0 at var(--menu-x, calc(100vw - 80px)) var(--menu-y, 56px));
    color: var(--near-black);
    opacity: 0;
    pointer-events: none;
    transition:
        clip-path .86s var(--menu-ease),
        opacity .01s linear .86s,
        background .25s var(--ease),
        color .25s var(--ease);
    will-change: clip-path;
}

.menu-overlay::before {
    content: "";
    position: absolute;
    right: max(42px, 7vw);
    top: 118px;
    width: min(38vw, 620px);
    height: min(38vw, 620px);
    border-radius: 50%;
    border: 1px solid var(--menu-orbit, rgba(15, 15, 15, .07));
    background: transparent;
    transform: scale(.92) rotate(0deg);
    transition: opacity .5s var(--ease), transform 1.1s var(--ease);
    will-change: transform;
}

.menu-overlay::after {
    content: "";
    position: absolute;
    right: 11vw;
    bottom: 8vh;
    width: 180px;
    height: 180px;
    opacity: .28;
    background-image: radial-gradient(circle, var(--menu-dot, rgba(15, 15, 15, .24)) 1.2px, transparent 1.4px);
    background-size: 16px 16px;
    mask-image: radial-gradient(circle, #000 0 55%, transparent 76%);
    transform: translateY(22px);
    transition: opacity .45s var(--ease), transform .65s var(--ease);
}

.menu-open .menu-overlay,
.menu-closing .menu-overlay {
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
}

.menu-open .menu-overlay {
    clip-path: circle(160vmax at var(--menu-x, calc(100vw - 80px)) var(--menu-y, 56px));
}

.menu-open .menu-overlay::before {
    transform: scale(1) rotate(14deg);
}

.menu-open .menu-overlay::after {
    opacity: .28;
    transform: translateY(0);
    transition-delay: .55s;
}

.menu-closing .menu-overlay {
    pointer-events: none;
    clip-path: circle(0 at var(--menu-x, calc(100vw - 80px)) var(--menu-y, 56px));
    transition-delay: .16s, .98s, 0s, 0s;
}

.menu-theme-dark {
    --menu-bg: var(--near-black);
    --menu-fg: var(--white);
    --menu-muted: rgba(255, 255, 255, .62);
    --menu-line: rgba(255, 255, 255, .14);
    --menu-dot: rgba(255, 255, 255, .22);
    --menu-orbit: rgba(255, 255, 255, .09);
}

.menu-theme-light {
    --menu-bg: var(--white);
    --menu-fg: var(--near-black);
    --menu-muted: rgba(15, 15, 15, .58);
    --menu-line: rgba(15, 15, 15, .12);
    --menu-dot: rgba(15, 15, 15, .24);
    --menu-orbit: rgba(15, 15, 15, .07);
}

.menu-overlay-inner {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 80px), 1040px);
    margin-inline: auto;
    padding-top: 80px;
}

.overlay-label,
.eyebrow {
    margin: 0 0 24px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .42em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow.light {
    color: var(--white);
}

.overlay-links {
    display: grid;
    gap: 10px;
}

.overlay-links a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 86px;
    border-bottom: 1px solid var(--menu-line, rgba(15, 15, 15, .12));
    color: var(--menu-fg, var(--near-black));
    font-size: clamp(42px, 6vw, 86px);
    font-weight: 900;
    line-height: .9;
    opacity: 0;
    transform: translateY(30px);
    transition:
        color .18s ease,
        padding-left .28s var(--ease),
        border-color .22s ease;
}

.overlay-links a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .42s var(--ease);
}

.overlay-links a::after {
    content: "+";
    position: absolute;
    right: 8px;
    top: 50%;
    color: var(--blue);
    font-size: clamp(22px, 2.4vw, 36px);
    font-weight: 700;
    opacity: 0;
    transform: translate(-14px, -50%);
    transition: opacity .3s var(--ease), transform .35s var(--ease);
}

.overlay-links a > span {
    display: inline-block;
    transform: translateX(0);
    transition: transform .28s var(--ease);
}

.menu-open .overlay-label {
    transition-delay: .48s;
}

.menu-open .overlay-links a {
    animation: menuLinkIn .68s var(--ease) forwards;
}

.menu-open .overlay-links a:nth-child(1) {
    animation-delay: .56s;
}

.menu-open .overlay-links a:nth-child(2) {
    animation-delay: .65s;
}

.menu-open .overlay-links a:nth-child(3) {
    animation-delay: .74s;
}

.menu-open .overlay-links a:nth-child(4) {
    animation-delay: .83s;
}

.menu-open .overlay-links a:nth-child(5) {
    animation-delay: .92s;
}

.menu-open .overlay-links a:nth-child(6) {
    animation-delay: 1.01s;
}

.menu-closing .overlay-links a {
    animation: none;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .18s ease, transform .22s var(--ease), color .18s ease;
}

.overlay-links a:hover,
.overlay-links a[aria-current="page"] {
    color: var(--blue);
    padding-left: 20px;
    transition-delay: 0s;
}

.overlay-links a:hover {
    transition-delay: 0s;
}

.overlay-links a:hover > span {
    transform: translateX(14px);
}

.overlay-links a:hover::before,
.overlay-links a[aria-current="page"]::before {
    transform: scaleX(1);
}

.overlay-links a:hover::after,
.overlay-links a[aria-current="page"]::after {
    opacity: 1;
    transform: translate(0, -50%);
}

.overlay-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 42px;
    margin-top: 36px;
    color: var(--menu-muted, rgba(15, 15, 15, .58));
    font-weight: 700;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .45s var(--ease), transform .55s var(--ease);
}

.overlay-label {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .45s var(--ease), transform .55s var(--ease);
}

.menu-open .overlay-label,
.menu-open .overlay-contact {
    opacity: 1;
    transform: translateY(0);
}

.menu-open .overlay-label {
    transition-delay: .48s;
}

.menu-open .overlay-contact {
    transition-delay: 1.08s;
}

.menu-closing .overlay-label,
.menu-closing .overlay-contact {
    opacity: 0;
    transform: translateY(12px);
    transition-duration: .18s;
    transition-delay: 0s;
}

@keyframes menuLinkIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ctaLetterWave {
    0%,
    100% {
        transform: translateY(0);
    }
    42% {
        transform: translateY(-5px);
    }
}

@keyframes ctaLineSweep {
    0% {
        transform: scaleX(1);
        transform-origin: right;
    }
    45% {
        transform: scaleX(0);
        transform-origin: right;
    }
    46% {
        transform: scaleX(0);
        transform-origin: left;
    }
    100% {
        transform: scaleX(1);
        transform-origin: left;
    }
}

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

h1,
h2,
h3 {
    letter-spacing: -.04em;
}

.hero-dark {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
    padding: 150px 0 92px;
}

.hero-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 6;
    background: var(--white);
    clip-path: inset(0 0 0 0);
    animation: heroWipe 1.25s var(--ease) .55s forwards;
    pointer-events: none;
}

.hero-loader-sv {
    position: absolute;
    right: -2vw;
    top: 1vh;
    z-index: 7;
    color: rgba(15, 15, 15, .06);
    font-size: clamp(360px, 43vw, 840px);
    font-weight: 900;
    letter-spacing: -.12em;
    line-height: .78;
    animation: heroLoaderSv 2.35s var(--ease) forwards;
    pointer-events: none;
}

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

.hero-copy {
    max-width: 820px;
    margin-left: clamp(0px, 14vw, 220px);
}

.hero h1 {
    max-width: 820px;
    margin-bottom: 32px;
    font-size: clamp(60px, 7vw, 122px);
    line-height: .88;
    font-weight: 900;
}

.hero-text {
    max-width: 670px;
    margin-bottom: 56px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(19px, 1.65vw, 25px);
    line-height: 1.55;
}

.hero-bg-word {
    position: absolute;
    right: -3vw;
    top: 5vh;
    z-index: 1;
    color: rgba(255, 255, 255, .045);
    font-size: clamp(360px, 43vw, 840px);
    font-weight: 900;
    letter-spacing: -.12em;
    line-height: .78;
    transform: translate3d(0, var(--hero-sv-y, 0px), 0);
    transition: color .4s var(--ease);
    pointer-events: none;
}

.hero-outline {
    position: absolute;
    right: 7vw;
    top: 5vh;
    width: min(58vw, 980px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
}

.pattern,
.blue-pattern {
    position: absolute;
    width: 138px;
    height: 138px;
    opacity: .9;
    background-image: radial-gradient(circle, rgba(255,255,255,.55) 1.4px, transparent 1.5px);
    background-size: 16px 16px;
    mask-image: radial-gradient(circle, #000 0 54%, transparent 72%);
}

.pattern::after,
.blue-pattern::after {
    content: "+";
    position: absolute;
    left: 38px;
    top: 44px;
    color: var(--blue);
    font-size: 22px;
    font-weight: 900;
}

.pattern-one {
    right: 21vw;
    top: 48vh;
    transform: translate3d(0, var(--hero-pattern-y, 0px), 0);
}

.pattern-two {
    left: 56vw;
    bottom: 7vh;
    transform: translate3d(0, var(--hero-pattern-y, 0px), 0) scale(.8);
    opacity: .55;
}

.scroll-mark {
    position: fixed;
    right: 52px;
    bottom: 72px;
    z-index: 3;
    display: grid;
    justify-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, .72);
    mix-blend-mode: difference;
    pointer-events: none;
}

.scroll-mark span {
    width: 1px;
    height: 56px;
    background: var(--white);
}

.scroll-mark p {
    margin: 0;
    writing-mode: vertical-rl;
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .32em;
    text-transform: uppercase;
}

.text-circle-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 26px;
    min-height: 56px;
    padding-left: 22px;
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.text-circle-link::before {
    content: "";
    position: absolute;
    left: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    transition: width .35s var(--ease), background .35s var(--ease);
}

.text-circle-link span,
.text-circle-link strong {
    position: relative;
    z-index: 1;
}

.text-circle-link strong {
    color: var(--blue);
    font-size: 18px;
}

.text-circle-link:hover::before {
    width: 100%;
    background: var(--blue);
}

.text-circle-link:hover strong {
    color: var(--white);
}

.text-circle-link.dark {
    color: var(--near-black);
}

.text-circle-link.dark::before {
    background: rgba(0, 0, 0, .08);
}

.section-white,
.featured-work,
.services-list-section,
.blog-editorial {
    background: var(--white);
}

.featured-work {
    padding: 132px 0 156px;
}

.work-head,
.blog-head,
.list-head,
.partners-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 92px;
}

.work-head h2,
.blog-head h2,
.list-head h2,
.partners-head h2,
.what-copy h2 {
    max-width: 800px;
    margin-bottom: 0;
    font-size: clamp(52px, 6vw, 104px);
    line-height: .88;
    font-weight: 900;
}

.work-head > p,
.blog-head > p {
    color: var(--muted);
    font-size: 22px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

.work-tile {
    position: relative;
    min-height: 620px;
    grid-column: span 6;
    display: block;
    overflow: hidden;
    background: var(--soft);
    isolation: isolate;
}

.work-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, .72) 100%);
    pointer-events: none;
}

.work-tile:nth-child(2n) {
    margin-top: 120px;
}

.work-tile.tile-wide {
    grid-column: span 7;
}

.work-tile.tile-lepinjica {
    grid-column: span 7;
    min-height: 620px;
    margin-top: 0;
}

.work-tile.tile-tall {
    min-height: 700px;
}

.work-tile.tile-lift {
    margin-top: 42px;
}

.work-tile.tile-dark {
    background: var(--charcoal);
    color: var(--white);
}

.work-tile img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    filter: grayscale(1) contrast(1.05);
    transition: transform .8s var(--ease), filter .8s var(--ease);
}

.work-tile:hover img {
    transform: scale(1.045);
    filter: grayscale(.1) contrast(1.02);
}

.work-info {
    position: absolute;
    right: 34px;
    bottom: 30px;
    z-index: 2;
    max-width: 360px;
    padding: 18px 0 0 24px;
    text-align: right;
    color: var(--white);
    text-shadow: 0 12px 32px rgba(0, 0, 0, .45);
}

.tile-dark .work-info {
    color: var(--white);
}

.work-info h3 {
    margin-bottom: 6px;
    font-size: clamp(34px, 3vw, 52px);
    line-height: .9;
    font-weight: 900;
}

.work-info p {
    margin: 0;
    color: currentColor;
    font-weight: 700;
}

.abstract-visual {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.abstract-visual span {
    position: absolute;
    display: block;
    border-radius: 999px;
}

.abstract-visual span:nth-child(1) {
    width: 64%;
    aspect-ratio: 1;
    left: -18%;
    top: 10%;
    border: 54px solid var(--blue);
}

.abstract-visual span:nth-child(2) {
    width: 78%;
    height: 28%;
    right: -28%;
    top: 30%;
    background: rgba(255, 255, 255, .08);
    transform: rotate(-22deg);
}

.abstract-visual span:nth-child(3) {
    width: 120px;
    height: 120px;
    right: 15%;
    bottom: 22%;
    background-image: radial-gradient(circle, rgba(0,95,233,.85) 2px, transparent 2px);
    background-size: 18px 18px;
}

.work-more {
    margin-top: 92px;
}

.agency-blue {
    position: relative;
    overflow: hidden;
    padding: 172px 0;
    background: var(--blue);
    color: var(--white);
}

.agency-blue-inner {
    position: relative;
    z-index: 2;
}

.agency-blue h2 {
    max-width: 1040px;
    margin: 0;
    font-size: clamp(54px, 7vw, 126px);
    line-height: .9;
    font-weight: 900;
}

.blue-pattern {
    right: 9vw;
    top: 96px;
    width: 210px;
    height: 210px;
    background-image: radial-gradient(circle, rgba(255,255,255,.36) 1.5px, transparent 1.7px);
}

.blue-pattern::after {
    color: var(--white);
}

.what-we-do {
    position: relative;
    overflow: hidden;
    min-height: 880px;
    padding: 154px 0;
    background: var(--soft);
}

.service-bg-word {
    position: absolute;
    left: -4vw;
    top: 9vh;
    color: rgba(15, 15, 15, .045);
    font-size: clamp(150px, 21vw, 390px);
    font-weight: 900;
    line-height: .8;
    letter-spacing: -.08em;
    transform: translate3d(0, var(--digital-y, 0px), 0);
    pointer-events: none;
}

.what-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .72fr);
    gap: 90px;
    align-items: center;
}

.what-copy p:not(.eyebrow) {
    max-width: 620px;
    margin: 30px 0 46px;
    color: var(--muted);
    font-size: 22px;
}

.tilted-visual {
    position: relative;
    width: min(100%, 520px);
    min-height: 610px;
    justify-self: center;
    overflow: hidden;
    clip-path: polygon(9% 4%, 100% 0, 91% 96%, 0 100%);
    transform: rotate(-5deg);
    background: var(--charcoal);
}

.tilted-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 48%, rgba(0, 95, 233, .65));
    mix-blend-mode: screen;
}

.tilted-visual img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
    filter: grayscale(1) contrast(1.1);
}

.services-list-section {
    position: relative;
    overflow: hidden;
    padding: 140px 0 152px;
}

.services-list-section > .container,
.blog-editorial > .container {
    position: relative;
    z-index: 2;
}

.services-list-section .home-section-art,
.blog-editorial .home-section-art {
    top: 6px;
    left: clamp(150px, 15vw, 300px);
    right: auto;
    z-index: 1;
    opacity: 1;
    transform: none;
}

.services-list-section .home-services-art {
    width: min(56vw, 1020px);
    height: 780px;
}

.blog-editorial .home-blog-art {
    top: 6px;
    left: clamp(140px, 14vw, 300px);
    width: min(52vw, 705px);
    height: 570px;
    opacity: 1;
}

.home-services-art .system-node-main {
    left: 42%;
    top: 31%;
}

.home-services-art .system-node-one {
    left: 10%;
    top: 7%;
}

.home-services-art .system-node-two {
    right: 11%;
    top: 9%;
}

.home-services-art .system-node-three {
    left: 9%;
    bottom: 31%;
}

.home-services-art .system-node-four {
    right: 14%;
    bottom: 28%;
}

.home-services-art .system-line-one {
    left: 20%;
    top: 28%;
}

.home-services-art .system-line-two {
    left: 51%;
    top: 29%;
}

.home-services-art .system-line-three {
    left: 20%;
    bottom: 43%;
}

.home-services-art .system-line-four {
    left: 51%;
    bottom: 42%;
}

.home-services-art .system-pulse-one {
    left: 25%;
    top: 29%;
}

.home-services-art .system-pulse-two {
    left: 58%;
    bottom: 43%;
}

.home-services-art .system-plus {
    right: 2%;
    top: 37%;
}

.home-services-art .system-dots {
    right: 10%;
    bottom: 24%;
}

.service-lines {
    border-top: 1px solid var(--line);
}

.service-line {
    border-bottom: 1px solid var(--line);
}

.service-line button {
    width: 100%;
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--near-black);
    cursor: pointer;
    text-align: left;
}

.service-line button span {
    font-size: clamp(30px, 4.7vw, 78px);
    line-height: .94;
    font-weight: 900;
    letter-spacing: -.04em;
}

.service-line button strong {
    flex: 0 0 auto;
    color: var(--blue);
    font-size: 42px;
    font-weight: 700;
    transition: transform .3s var(--ease);
}

.service-line p {
    max-width: 760px;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 20px;
    transition: max-height .35s var(--ease), margin .35s var(--ease);
}

.service-line:hover p,
.service-line.is-open p {
    max-height: 120px;
    margin: -18px 0 34px;
}

.service-line:hover button strong,
.service-line.is-open button strong {
    transform: rotate(45deg);
}

.partners-section {
    padding: 128px 0 146px;
    background: var(--near-black);
    color: var(--white);
}

.partners-head {
    margin-bottom: 66px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-left: 1px solid rgba(255, 255, 255, .16);
}

.partner-wordmark {
    min-height: 170px;
    display: grid;
    place-items: center;
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, .16);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .72);
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 900;
    letter-spacing: -.02em;
    text-align: center;
    transition: color .25s var(--ease), background .25s var(--ease);
}

.partner-wordmark img {
    max-width: min(72%, 260px);
    max-height: 86px;
    object-fit: contain;
    filter: grayscale(1);
    transition: transform .3s var(--ease), filter .3s var(--ease), opacity .3s var(--ease);
}

.partner-wordmark:hover {
    background: var(--blue);
    color: var(--white);
}

.partner-wordmark:hover img {
    transform: scale(1.045);
    filter: grayscale(0);
}

.blog-editorial {
    position: relative;
    overflow: hidden;
    padding: 140px 0 160px;
}

.editorial-list {
    border-top: 1px solid var(--line);
}

.editorial-post {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 180px;
    gap: 42px;
    padding: 42px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
}

.post-meta {
    display: grid;
    gap: 10px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.post-main h3 {
    margin-bottom: 18px;
    font-size: clamp(32px, 4vw, 66px);
    line-height: .94;
    font-weight: 900;
}

.post-main h3 a,
.blog-card h2 a {
    transition: color .2s var(--ease);
}

.post-main h3 a:hover,
.blog-card h2 a:hover {
    color: var(--blue);
}

.post-main p {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: 19px;
}

.editorial-post a {
    justify-self: end;
    color: var(--near-black);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: color .25s var(--ease);
}

.editorial-post a:hover {
    color: var(--blue);
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 156px 0 38px;
    background: var(--dark);
    color: var(--white);
}

.footer-bg-word {
    position: absolute;
    right: -4vw;
    bottom: -10vw;
    color: rgba(255, 255, 255, .035);
    font-size: clamp(260px, 36vw, 720px);
    font-weight: 900;
    letter-spacing: -.13em;
    line-height: .8;
}

.footer-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .8fr);
    gap: 90px;
}

.footer-brand {
    margin-bottom: 58px;
}

.footer-statement h2 {
    max-width: 720px;
    margin-bottom: 26px;
    font-size: clamp(46px, 6vw, 98px);
    line-height: .9;
    font-weight: 900;
}

.footer-statement p {
    max-width: 430px;
    color: rgba(255, 255, 255, .62);
    font-size: 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px;
    align-self: end;
}

.footer-label {
    margin-bottom: 24px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .26em;
    text-transform: uppercase;
}

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

.site-footer li,
.site-footer a {
    color: rgba(255, 255, 255, .7);
    font-size: 18px;
    font-weight: 700;
    transition: color .25s var(--ease);
}

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 112px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .48);
}

.footer-bottom p {
    margin: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
}

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

.hero-dark .hero-copy.reveal,
.hero-dark .hero-copy.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.hero-dark .hero-copy .eyebrow,
.hero-dark .hero-text,
.hero-dark .text-circle-link {
    opacity: 0;
    transform: translateY(18px);
    animation: heroContentPiece .72s var(--ease) forwards;
}

.hero-dark .hero-copy .eyebrow {
    animation-delay: 2.35s;
}

.hero-dark .hero-text {
    animation-delay: 3.55s;
}

.hero-dark .text-circle-link {
    animation-delay: 3.82s;
}

.word-reveal .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(34px);
    animation: heroWordIn .68s var(--ease) forwards;
    animation-delay: calc(2.58s + (var(--word-index) * .16s));
}

@keyframes heroWipe {
    0% {
        clip-path: inset(0 0 0 0);
    }
    100% {
        clip-path: inset(0 0 0 100%);
    }
}

@keyframes heroLoaderSv {
    0% {
        opacity: 1;
        color: rgba(15, 15, 15, .06);
        transform: translate3d(0, 0, 0) scale(1);
    }
    38% {
        opacity: 1;
        color: rgba(15, 15, 15, .11);
    }
    58% {
        opacity: 1;
        color: rgba(0, 95, 233, .26);
    }
    100% {
        opacity: 0;
        color: rgba(0, 95, 233, .08);
        transform: translate3d(-4vw, 0, 0) scale(.98);
        visibility: hidden;
    }
}

@keyframes heroWordIn {
    0% {
        opacity: 0;
        transform: translateY(34px);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes heroContentPiece {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Existing inner pages keep a clean editorial baseline. */
.section,
.page-hero,
.article {
    padding: 118px 0;
}

.section-light {
    background: var(--white);
}

.section-dark {
    background: var(--near-black);
    color: var(--white);
}

.page-hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 170px 0 120px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 82% 24%, rgba(0, 95, 233, .07), transparent 28%),
        radial-gradient(circle at 12% 86%, rgba(15, 15, 15, .04), transparent 28%),
        var(--white);
}

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

.page-hero-art {
    position: absolute;
    top: 50%;
    right: max(38px, 6vw);
    z-index: 1;
    width: min(42vw, 680px);
    height: min(58vh, 560px);
    pointer-events: none;
    opacity: .9;
    transform: translateY(-50%);
}

.page-hero-art span,
.page-hero-art i,
.page-hero-art b,
.page-hero-art em {
    position: absolute;
    display: block;
    font-size: 0;
    line-height: 0;
}

.page-hero-art--services {
    right: max(50px, 7vw);
    opacity: .9;
}

.page-hero-art--projects {
    right: max(36px, 5vw);
    opacity: .9;
}

.page-hero-art--blog {
    right: max(42px, 6vw);
    opacity: .82;
}

.page-hero-art--about {
    right: max(38px, 6vw);
    opacity: .74;
}

.page-hero-art--contact {
    right: max(36px, 5vw);
    opacity: .84;
}

.inner-page .page-hero h1 {
    max-width: 980px;
}

.inner-page .page-hero p:not(.eyebrow) {
    max-width: 690px;
}

.system-node {
    border: 1px solid rgba(15, 15, 15, .11);
    background: rgba(255, 255, 255, .62);
    backdrop-filter: blur(14px);
}

.system-node-main {
    left: 42%;
    top: 39%;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 22px rgba(0, 95, 233, .055);
    animation: artBreathe 6s var(--ease) infinite alternate;
}

.system-node-main::after {
    content: "";
    position: absolute;
    inset: 38px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 12px rgba(0, 95, 233, .1);
}

.system-node-one,
.system-node-two,
.system-node-three,
.system-node-four {
    width: 132px;
    height: 82px;
    border-radius: 8px;
    animation: artFloat 7s var(--ease) infinite alternate;
}

.system-node-one {
    left: 16%;
    top: 12%;
}

.system-node-two {
    right: 9%;
    top: 16%;
    animation-delay: -2s;
}

.system-node-three {
    left: 12%;
    bottom: 15%;
    animation-delay: -3.8s;
}

.system-node-four {
    right: 13%;
    bottom: 10%;
    animation-delay: -1.2s;
}

.system-node-one::before,
.system-node-two::before,
.system-node-three::before,
.system-node-four::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 22px;
    height: 8px;
    border-radius: 999px;
    background: rgba(15, 15, 15, .12);
    box-shadow: 0 17px 0 rgba(15, 15, 15, .07);
}

.system-line {
    height: 1px;
    width: 210px;
    background: linear-gradient(90deg, transparent, rgba(15, 15, 15, .14), transparent);
    transform-origin: left center;
}

.system-line-one {
    left: 25%;
    top: 33%;
    transform: rotate(28deg);
}

.system-line-two {
    left: 51%;
    top: 35%;
    transform: rotate(-24deg);
}

.system-line-three {
    left: 24%;
    bottom: 31%;
    transform: rotate(-25deg);
}

.system-line-four {
    left: 51%;
    bottom: 30%;
    transform: rotate(24deg);
}

.system-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    animation: systemPulseMove 5.8s linear infinite;
}

.system-pulse-one {
    left: 29%;
    top: 34%;
}

.system-pulse-two {
    left: 58%;
    bottom: 31%;
    animation-delay: -2.9s;
}

.system-plus {
    right: 3%;
    top: 50%;
    width: 28px;
    height: 28px;
}

.system-plus::before,
.system-plus::after {
    content: "";
    position: absolute;
    background: var(--blue);
}

.system-plus::before {
    left: 13px;
    top: 3px;
    width: 2px;
    height: 22px;
}

.system-plus::after {
    left: 3px;
    top: 13px;
    width: 22px;
    height: 2px;
}

.system-dots,
.editorial-dots,
.message-grid {
    width: 150px;
    height: 150px;
    opacity: .5;
    background-image: radial-gradient(circle, rgba(15, 15, 15, .22) 1.2px, transparent 1.4px);
    background-size: 15px 15px;
    mask-image: radial-gradient(circle, #000 0 55%, transparent 78%);
}

.system-dots {
    right: 14%;
    bottom: 30%;
    animation: artDrift 8s var(--ease) infinite alternate;
}

.case-card,
.article-card {
    border: 1px solid rgba(15, 15, 15, .1);
    background: rgba(255, 255, 255, .66);
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 60px rgba(15, 15, 15, .035);
    animation: artFloat 7.5s var(--ease) infinite alternate;
}

.case-card {
    width: 270px;
    height: 178px;
    border-radius: 9px;
}

.case-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 28px;
    border-bottom: 1px solid rgba(15, 15, 15, .08);
}

.case-card i {
    left: 20px;
    top: 48px;
    width: 86px;
    height: 58px;
    background: rgba(0, 95, 233, .11);
}

.case-card b {
    right: 20px;
    top: 52px;
    width: 112px;
    height: 7px;
    border-radius: 999px;
    background: rgba(15, 15, 15, .18);
    box-shadow: 0 18px 0 rgba(15, 15, 15, .09), 0 36px 0 rgba(15, 15, 15, .06);
}

.case-card em {
    right: 20px;
    bottom: 22px;
    width: 60px;
    height: 18px;
    border-radius: 999px;
    background: var(--blue);
    opacity: .5;
}

.case-card-one {
    right: 18%;
    top: 8%;
    transform: rotate(-5deg);
}

.case-card-two {
    right: 2%;
    top: 37%;
    transform: rotate(4deg);
    animation-delay: -2.5s;
}

.case-card-three {
    left: 10%;
    bottom: 8%;
    transform: rotate(-2deg);
    animation-delay: -4s;
}

.case-chart {
    left: 7%;
    top: 20%;
    width: 140px;
    height: 84px;
    border-left: 1px solid rgba(15, 15, 15, .12);
    border-bottom: 1px solid rgba(15, 15, 15, .12);
}

.case-chart::before {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 18px;
    width: 92px;
    height: 42px;
    clip-path: polygon(0 78%, 22% 62%, 44% 68%, 70% 32%, 100% 12%, 100% 22%, 71% 43%, 46% 82%, 22% 76%, 0 92%);
    background: rgba(0, 95, 233, .5);
}

.case-arrow {
    right: 14%;
    bottom: 10%;
    width: 82px;
    height: 1px;
    background: var(--blue);
    transform: rotate(-24deg);
}

.case-arrow::after {
    content: "";
    position: absolute;
    right: -2px;
    top: -5px;
    width: 11px;
    height: 11px;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    transform: rotate(45deg);
}

.case-orbit,
.growth-orbit {
    border: 1px solid rgba(15, 15, 15, .075);
    border-radius: 50%;
    animation: artOrbit 28s linear infinite;
}

.case-orbit {
    right: -8%;
    top: 1%;
    width: 430px;
    height: 430px;
}

.article-card {
    width: 286px;
    height: 190px;
    border-radius: 8px;
}

.article-card i {
    left: 22px;
    top: 28px;
    width: 74%;
    height: 12px;
    border-radius: 999px;
    background: rgba(15, 15, 15, .15);
}

.article-card b {
    left: 22px;
    top: 66px;
    width: 80%;
    height: 7px;
    border-radius: 999px;
    background: rgba(15, 15, 15, .1);
    box-shadow: 0 18px 0 rgba(15, 15, 15, .08), 0 36px 0 rgba(15, 15, 15, .06), 0 54px 0 rgba(15, 15, 15, .045);
}

.article-card em {
    left: 22px;
    bottom: 22px;
    width: 42%;
    height: 3px;
    border-radius: 999px;
    background: var(--blue);
    opacity: .55;
}

.article-card-one {
    right: 12%;
    top: 9%;
    transform: rotate(3deg);
}

.article-card-two {
    left: 12%;
    top: 36%;
    transform: rotate(-4deg);
    animation-delay: -2.2s;
}

.article-card-three {
    right: 4%;
    bottom: 7%;
    transform: rotate(2deg);
    animation-delay: -4s;
}

.editorial-highlight {
    right: 38%;
    top: 32%;
    width: 190px;
    height: 5px;
    border-radius: 999px;
    background: var(--blue);
    opacity: .5;
    animation: highlightWrite 4.2s var(--ease) infinite alternate;
}

.editorial-cursor {
    right: 28%;
    top: 45%;
    width: 2px;
    height: 46px;
    background: var(--blue);
    animation: cursorBlink 1.1s steps(1) infinite;
}

.editorial-dots {
    right: 21%;
    bottom: 21%;
}

.growth-orbit-one {
    right: -3%;
    top: 4%;
    width: 430px;
    height: 430px;
}

.growth-orbit-two {
    right: 18%;
    top: 24%;
    width: 260px;
    height: 260px;
    animation-direction: reverse;
}

.growth-path {
    left: 11%;
    top: 24%;
    width: 76%;
    height: 48%;
    border-top: 1px solid rgba(15, 15, 15, .14);
    border-right: 1px solid rgba(15, 15, 15, .14);
    border-radius: 52% 48% 42% 58%;
    transform: rotate(-12deg);
}

.growth-station {
    width: 14px;
    height: 14px;
    border: 1px solid rgba(15, 15, 15, .24);
    border-radius: 50%;
    background: var(--white);
}

.growth-station-one {
    left: 17%;
    top: 58%;
}

.growth-station-two {
    left: 34%;
    top: 36%;
}

.growth-station-three {
    right: 32%;
    top: 30%;
}

.growth-station-four {
    right: 13%;
    top: 51%;
}

.growth-dot {
    left: 17%;
    top: 58%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 10px rgba(0, 95, 233, .08);
    animation: growthMove 8s var(--ease) infinite;
}

.message-bubble {
    left: 12%;
    top: 16%;
    width: 250px;
    height: 158px;
    border: 1px solid rgba(15, 15, 15, .12);
    border-radius: 26px;
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(14px);
    animation: artFloat 7s var(--ease) infinite alternate;
}

.message-bubble::after {
    content: "";
    position: absolute;
    left: 56px;
    bottom: -19px;
    width: 36px;
    height: 36px;
    border-right: 1px solid rgba(15, 15, 15, .12);
    border-bottom: 1px solid rgba(15, 15, 15, .12);
    background: rgba(255, 255, 255, .55);
    transform: rotate(45deg);
}

.message-line {
    left: 42%;
    top: 47%;
    width: 250px;
    height: 1px;
    background: linear-gradient(90deg, rgba(15, 15, 15, .15), rgba(0, 95, 233, .55), transparent);
    transform: rotate(-13deg);
}

.message-signal {
    right: 9%;
    top: 28%;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(0, 95, 233, .22);
    border-radius: 50%;
    animation: signalWave 2.8s var(--ease) infinite;
}

.message-signal::before,
.message-signal::after {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(0, 95, 233, .18);
    border-radius: 50%;
}

.message-signal::after {
    inset: 57px;
    background: var(--blue);
    opacity: .55;
}

.message-dot {
    left: 43%;
    top: 45%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue);
    animation: messageTravel 4.8s linear infinite;
}

.message-grid {
    right: 28%;
    bottom: 10%;
}

.message-node {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(15, 15, 15, .18);
}

.message-node-one {
    left: 9%;
    bottom: 24%;
}

.message-node-two {
    right: 23%;
    bottom: 27%;
    background: var(--blue);
}

@keyframes artFloat {
    0% {
        translate: 0 0;
    }
    100% {
        translate: 0 -22px;
    }
}

@keyframes artBreathe {
    0% {
        transform: scale(.96);
    }
    100% {
        transform: scale(1.04);
    }
}

@keyframes artDrift {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-18px, 18px, 0);
    }
}

@keyframes artOrbit {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes systemPulseMove {
    0% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(92px, 42px, 0);
    }
    100% {
        transform: translate3d(184px, 0, 0);
    }
}

@keyframes highlightWrite {
    0% {
        transform: scaleX(.2);
        transform-origin: left;
    }
    100% {
        transform: scaleX(1);
        transform-origin: left;
    }
}

@keyframes cursorBlink {
    0%,
    49% {
        opacity: 1;
    }
    50%,
    100% {
        opacity: 0;
    }
}

@keyframes growthMove {
    0% {
        transform: translate3d(0, 0, 0);
    }
    30% {
        transform: translate3d(118px, -96px, 0);
    }
    63% {
        transform: translate3d(304px, -118px, 0);
    }
    100% {
        transform: translate3d(452px, -24px, 0);
    }
}

@keyframes signalWave {
    0% {
        transform: scale(.85);
        opacity: .18;
    }
    100% {
        transform: scale(1.18);
        opacity: .54;
    }
}

@keyframes messageTravel {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(238px, -54px, 0);
    }
}

.page-hero h1,
.article h1 {
    max-width: 1060px;
    margin-bottom: 28px;
    font-size: clamp(54px, 8vw, 118px);
    line-height: .9;
    font-weight: 900;
}

.page-hero p:not(.eyebrow),
.article .lead,
.contact-info p,
.about-copy p {
    max-width: 780px;
    color: var(--muted);
    font-size: 21px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid var(--near-black);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.btn-dark {
    background: var(--near-black);
    color: var(--white);
}

.btn-light {
    background: transparent;
    color: var(--near-black);
}

.detailed-services,
.process-list,
.values-grid,
.contact-grid,
.blog-grid,
.project-grid,
.service-grid,
.about-layout {
    width: min(calc(100% - 80px), var(--max));
    margin-inline: auto;
}

.detailed-services {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
}

.detail-card,
.process-item {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(280px, 1fr);
    gap: 46px;
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
}

.detail-card h2 {
    margin-bottom: 18px;
    font-size: clamp(36px, 5vw, 72px);
    line-height: .9;
}

.detail-card p,
.detail-card li {
    color: var(--muted);
}

.detail-card ul {
    columns: 2;
    margin: 0;
    padding-left: 18px;
}

.process-list {
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.process-item {
    grid-template-columns: 90px 1fr 1.3fr;
    color: var(--white);
    border-color: rgba(255, 255, 255, .18);
}

.process-item span {
    color: var(--blue);
    font-weight: 900;
}

.process-item h3,
.process-item p {
    margin: 0;
}

.process-item p {
    color: rgba(255, 255, 255, .68);
}

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

.project-card,
.service-card,
.blog-card,
.value-card {
    border-top: 1px solid var(--line);
    padding: 28px 0;
}

.project-card img {
    width: 100%;
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter .65s var(--ease), transform .65s var(--ease);
}

.project-card:hover img {
    filter: grayscale(0) contrast(1.02);
    transform: translateY(-4px);
}

.project-card-body h2,
.project-card-body h3,
.blog-card h2,
.blog-card h3,
.value-card h3 {
    font-size: clamp(28px, 3vw, 48px);
    line-height: .95;
}

.blog-grid,
.service-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.contact-grid,
.about-layout {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
    gap: 80px;
}

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

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    padding: 16px 18px;
    background: var(--white);
}

.form-note {
    color: var(--muted);
}

.article-wrap {
    max-width: 840px;
}

.article h2 {
    margin-top: 54px;
    font-size: clamp(32px, 4vw, 56px);
    line-height: .95;
}

.article p {
    color: var(--muted);
    font-size: 20px;
}

@media (max-width: 1080px) {
    .container,
    .detailed-services,
    .process-list,
    .values-grid,
    .contact-grid,
    .blog-grid,
    .project-grid,
    .service-grid,
    .about-layout {
        width: min(calc(100% - 48px), var(--max));
    }

    .header-shell {
        width: min(calc(100% - 48px), 1760px);
        min-height: 92px;
        padding: 10px 12px;
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 20px;
        background: rgba(15, 15, 15, .72);
        box-shadow: 0 18px 52px rgba(0, 0, 0, .14);
        backdrop-filter: blur(16px);
    }

    .is-light .header-shell,
    .menu-theme-light.menu-open .header-shell,
    .menu-theme-light.menu-closing .header-shell {
        border-color: rgba(15, 15, 15, .08);
        background: rgba(255, 255, 255, .86);
        box-shadow: 0 18px 52px rgba(15, 15, 15, .1);
    }

    .menu-theme-dark.menu-open .header-shell,
    .menu-theme-dark.menu-closing .header-shell {
        border-color: rgba(255, 255, 255, .1);
        background: rgba(15, 15, 15, .72);
    }

    .work-tile img,
    .project-card img {
        filter: grayscale(0) contrast(1.02);
    }

    .services-list-section .home-section-art,
    .blog-editorial .home-section-art {
        top: 0;
        left: clamp(70px, 10vw, 150px);
        right: auto;
        width: min(64vw, 585px);
        height: 525px;
        opacity: 1;
    }

    .page-hero-art {
        right: 24px;
        width: min(48vw, 520px);
        height: 480px;
        opacity: .73;
    }

    .case-card-three,
    .article-card-three,
    .system-node-three,
    .system-line-three {
        display: none;
    }

    .hero-copy {
        margin-left: 0;
    }

    .work-head,
    .blog-head,
    .list-head,
    .partners-head,
    .what-layout,
    .footer-layout,
    .contact-grid,
    .about-layout {
        grid-template-columns: 1fr;
    }

    .work-tile,
    .work-tile.tile-wide,
    .work-tile.tile-lepinjica {
        grid-column: span 12;
    }

    .work-tile:nth-child(2n),
    .work-tile.tile-lift {
        margin-top: 0;
    }

    .partner-grid,
    .blog-grid,
    .service-grid,
    .values-grid,
    .project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .editorial-post {
        grid-template-columns: 150px minmax(0, 1fr);
    }

    .editorial-post a {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 720px) {
    .container,
    .detailed-services,
    .process-list,
    .values-grid,
    .contact-grid,
    .blog-grid,
    .project-grid,
    .service-grid,
    .about-layout {
        width: min(calc(100% - 30px), var(--max));
    }

    .header-shell {
        width: min(calc(100% - 28px), 1760px);
        min-height: 76px;
    }

    .brand-mark {
        gap: 9px;
        font-size: 12px;
    }

    .brand-mark img {
        height: 42px;
    }

    .header-actions {
        gap: 10px;
    }

    .header-cta {
        min-height: 34px;
        font-size: 10px;
        letter-spacing: .08em;
    }

    .cta-text-full {
        display: none;
    }

    .cta-text-short {
        display: inline-flex;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .menu-overlay-inner {
        width: min(calc(100% - 30px), 1040px);
        padding-top: 76px;
    }

    .menu-overlay::before {
        right: 22px;
        top: 38px;
        width: 172vmax;
        height: 172vmax;
    }

    .menu-overlay::after {
        right: -20px;
        bottom: 10vh;
        width: 120px;
        height: 120px;
        opacity: .18;
    }

    .menu-open .menu-overlay {
        clip-path: circle(200vmax at var(--menu-x, calc(100vw - 44px)) var(--menu-y, 38px));
    }

    .overlay-links a {
        min-height: 64px;
        font-size: clamp(38px, 13vw, 62px);
    }

    .overlay-contact {
        gap: 12px 24px;
        font-size: 14px;
    }

    .hero-dark {
        min-height: 100svh;
        padding: 120px 0 72px;
    }

    .hero h1 {
        font-size: clamp(54px, 16vw, 82px);
    }

    .hero-text {
        margin-bottom: 40px;
        font-size: 18px;
    }

    .hero-bg-word {
        right: -26vw;
        top: 20vh;
        font-size: 330px;
    }

    .hero-outline {
        right: -48vw;
        top: 18vh;
        width: 130vw;
    }

    .pattern-one {
        right: 12vw;
        top: 62vh;
    }

    .pattern-two {
        display: none;
    }

    .scroll-mark {
        right: 18px;
        bottom: 34px;
    }

    .featured-work,
    .services-list-section,
    .blog-editorial,
    .partners-section,
    .what-we-do,
    .agency-blue {
        padding-block: 86px;
    }

    .work-head,
    .blog-head,
    .list-head,
    .partners-head {
        gap: 24px;
        margin-bottom: 48px;
    }

    .work-head h2,
    .blog-head h2,
    .list-head h2,
    .partners-head h2,
    .what-copy h2,
    .agency-blue h2 {
        font-size: clamp(42px, 13vw, 70px);
    }

    .work-grid {
        gap: 34px;
    }

    .work-tile,
    .work-tile.tile-tall,
    .work-tile.tile-lepinjica {
        min-height: 440px;
    }

    .work-info {
        right: 20px;
        bottom: 18px;
        max-width: 270px;
    }

    .work-info h3 {
        font-size: 34px;
    }

    .tilted-visual {
        width: 88%;
        min-height: 430px;
        justify-self: start;
    }

    .tilted-visual img {
        min-height: 430px;
    }

    .service-line button {
        min-height: 86px;
    }

    .service-line button span {
        font-size: clamp(30px, 10vw, 48px);
    }

    .service-line button strong {
        font-size: 34px;
    }

    .service-line:hover p,
    .service-line.is-open p {
        max-height: 180px;
        margin: -8px 0 26px;
    }

    .partner-grid,
    .blog-grid,
    .service-grid,
    .values-grid,
    .project-grid,
    .footer-columns {
        grid-template-columns: 1fr;
    }

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

    .partner-wordmark {
        min-height: 120px;
        padding: 18px;
        font-size: 17px;
    }

    .editorial-post {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 34px 0;
    }

    .editorial-post a {
        grid-column: auto;
    }

    .site-footer {
        padding-top: 96px;
    }

    .footer-columns {
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        margin-top: 76px;
    }

    .page-hero {
        min-height: 92svh;
        padding: 122px 0 78px;
    }

    .header-shell {
        padding: 8px 10px;
        border-radius: 16px;
    }

    .page-hero-art {
        top: auto;
        right: -18vw;
        bottom: 24px;
        width: 82vw;
        height: 280px;
        opacity: .22;
        transform: none;
    }

    .page-hero h1 {
        font-size: clamp(46px, 15vw, 76px);
    }

    .page-hero p:not(.eyebrow) {
        font-size: 18px;
    }

    .services-list-section .home-section-art,
    .blog-editorial .home-section-art {
        top: 0;
        left: auto;
        right: -46vw;
        bottom: auto;
        width: 132vw;
        height: 375px;
        opacity: 1;
    }

    .system-node-two,
    .system-node-four,
    .system-line-two,
    .system-line-four,
    .system-pulse-two,
    .case-card-two,
    .case-card-three,
    .article-card-two,
    .article-card-three,
    .growth-orbit-two,
    .message-grid,
    .message-node {
        display: none;
    }

    .system-node-main {
        left: 36%;
        top: 34%;
    }

    .case-card,
    .article-card {
        width: 230px;
        height: 154px;
    }

    .growth-path {
        width: 88%;
        left: 2%;
    }

    .message-bubble {
        left: 10%;
        top: 22%;
        width: 220px;
        height: 138px;
    }

    .message-signal {
        right: 16%;
        top: 25%;
        width: 126px;
        height: 126px;
    }

    .detail-card,
    .process-item {
        grid-template-columns: 1fr;
    }

    .detail-card ul {
        columns: 1;
    }
}
