@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&display=swap');

body {

    background: var(--blue-deep);

    color: var(--black);

    font-family: var(--font-sans);

    overflow-x: hidden;

}

/* =========================
   CUSTOM CURSOR
========================= */

.cursor {

    display: none;

}

html.has-custom-cursor,
html.has-custom-cursor body,
html.has-custom-cursor a,
html.has-custom-cursor button {
    cursor: none;
}

html.has-custom-cursor .cursor {

    display: block;

    position: fixed;

    inset: 0;

    z-index: 10000;

    pointer-events: none;

}

.cursor-dot,
.cursor-ring {

    position: fixed;

    top: 0;
    left: 0;

    border-radius: 50%;

    pointer-events: none;

    will-change: transform;

}

.cursor-dot {

    width: 8px;

    height: 8px;

    background: var(--primary-light);

    transition:
        width .25s var(--ease-out),
        height .25s var(--ease-out);

}

.cursor-ring {

    width: 40px;

    height: 40px;

    border: 1px solid rgba(65, 160, 255, .7);

    transition:
        width .3s var(--ease-out),
        height .3s var(--ease-out),
        border-color .25s ease;

}

.cursor.is-hovering .cursor-dot {

    width: 14px;

    height: 14px;

}

.cursor.is-hovering .cursor-ring {

    width: 56px;

    height: 56px;

    border-color: var(--primary-light);

}

/* =========================
   HEADER
========================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    height: var(--header-height);

    padding:
        0 clamp(24px, 5vw, 80px);

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 500;

    color: var(--primary);

    transition: color .3s ease;

}

.site-header.on-dark {

    color: white;

}

.site-logo {

    color: inherit;

    font-family: var(--font-display);

    font-size: 22px;

    font-weight: 700;

    letter-spacing: -1px;

    text-transform: lowercase;

}

.header-right {

    display: flex;

    align-items: center;

    gap: 14px;

}

.header-battery {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    font-family: var(--font-mono);

    font-size: 11px;

    letter-spacing: .04em;

    color: inherit;

    opacity: .85;

    user-select: none;

}

.battery-icon {

    position: relative;

    display: inline-flex;

    align-items: center;

}

.battery-shell {

    display: block;

    width: 22px;

    height: 11px;

    padding: 1.5px;

    border: 1.5px solid currentColor;

    border-radius: 2.5px;

    box-sizing: border-box;

}

.battery-level {

    display: block;

    height: 100%;

    background: currentColor;

    border-radius: 1px;

    transition: width .4s ease, background .3s ease;

}

.battery-level.is-low {

    background: #f87171;

}

.battery-level.is-charging {

    background: #57D98B;

}

.battery-nub {

    display: block;

    width: 2px;

    height: 5px;

    margin-left: 1px;

    background: currentColor;

    border-radius: 0 1px 1px 0;

    opacity: .85;

}

.battery-bolt {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-65%, -50%);

    font-size: 8px;

    line-height: 1;

    color: var(--blue-deep);

    text-shadow: 0 0 0 transparent;

    pointer-events: none;

}

.site-header.on-dark .battery-bolt {

    color: var(--blue-deep);

}

.battery-percent {

    min-width: 2.4em;

}

.logo-dot {

    color: var(--primary-light);

    transition: color .3s ease;

}

.site-header.on-dark .logo-dot {

    color: white;

}

.menu-button {

    width: 48px;

    height: 48px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 7px;

    background: transparent;

    border: 0;

    color: inherit;

}

.menu-button span {

    display: block;

    width: 24px;

    height: 1.5px;

    background: currentColor;

    transition:
        transform .4s var(--ease-out),
        width .4s var(--ease-out);

}

.menu-button span:last-child {

    width: 16px;

    align-self: flex-end;

    margin-right: 12px;

}

.menu-button.active span:first-child {

    transform: translateY(4.25px) rotate(45deg);

}

.menu-button.active span:last-child {

    width: 24px;

    transform: translateY(-4.25px) rotate(-45deg);

    margin-right: 0;

}

/* =========================
   MENU
========================= */

.fullscreen-menu {

    position: fixed;

    inset: 0;

    z-index: 400;

    background: var(--blue-deep);

    color: white;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    gap: 28px;

    padding:
        calc(var(--header-height) + 20px)
        clamp(24px, 7vw, 100px)
        28px;

    overflow-y: auto;

    clip-path: inset(0 0 100% 0);

    transition:
        clip-path .7s var(--ease-out);

}

.fullscreen-menu.open {

    clip-path: inset(0 0 0 0);

}

.menu-background-text {

    position: absolute;

    right: -2vw;

    bottom: -4vw;

    font-family: var(--font-display);

    font-size: clamp(80px, 14vw, 220px);

    font-weight: 700;

    text-transform: lowercase;

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

    pointer-events: none;

    user-select: none;

}

.main-navigation {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: clamp(28px, 5vw, 72px);

    row-gap: 0;

    margin: auto 0;

    width: 100%;

    max-width: 1100px;

}

.nav-link {

    display: grid;

    grid-template-columns: 40px 1fr 28px;

    align-items: center;

    padding: 10px 0;

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

    transition: color .25s ease;

}

.nav-link:hover,
.nav-link.active {

    color: var(--primary-light);

}

.nav-number {

    font-family: var(--font-mono);

    font-size: 11px;

    opacity: .45;

}

.nav-label {

    font-family: var(--font-display);

    font-size: clamp(26px, 3.6vw, 48px);

    font-weight: 700;

    letter-spacing: -.06em;

    line-height: .95;

    text-transform: lowercase;

}

.nav-arrow {

    font-size: 18px;

    opacity: .4;

    transition: transform .35s var(--ease-out);

}

.nav-link:hover .nav-arrow {

    transform: translate(4px, -4px);

}

.menu-footer {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 16px;

    margin-top: auto;

    padding-top: 8px;

    font-family: var(--font-mono);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .08em;

    opacity: .55;

}

.menu-socials {

    display: flex;

    gap: 24px;

}

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

.hero {

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, .95fr);

    min-height: 100vh;

    min-height: 100dvh;

}

.hero-left {

    position: relative;

    padding:
        calc(var(--header-height) + 40px)
        clamp(28px, 5vw, 72px)
        72px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            150deg,
            var(--primary) 0%,
            var(--blue-dark) 55%,
            var(--blue-deep) 100%
        );

    color: white;

}

.hero-left::before {

    content: '';

    position: absolute;

    inset: 0;

    opacity: .12;

    background-image:
        linear-gradient(
            135deg,
            transparent 42%,
            rgba(255,255,255,.2) 42%,
            transparent 58%
        );

    background-size: 28px 28px;

    pointer-events: none;

}

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 560px;

}

.eyebrow {

    margin-bottom: 22px;

    font-family: var(--font-mono);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .14em;

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

}

.hero-title {

    margin: 0;

    font-family: var(--font-display);

    font-size: clamp(56px, 8.5vw, 128px);

    line-height: .86;

    letter-spacing: -.08em;

    font-weight: 700;

    text-transform: lowercase;

}

.hero-title span {

    display: block;

}

.hero-title .outline {

    color: transparent;

    -webkit-text-stroke: 1.5px rgba(255, 255, 255, .9);

}

.hero-description {

    max-width: 400px;

    margin-top: 28px;

    font-size: 17px;

    line-height: 1.65;

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

}

.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 36px;

}

.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 50px;

    padding: 0 24px;

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

    color: white;

    font-family: var(--font-mono);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .08em;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;

}

.button:hover {

    background: white;

    color: var(--blue-deep);

    border-color: white;

}

.button.secondary {

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

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

}

.button.secondary:hover {

    background: rgba(255, 255, 255, .1);

    color: white;

    border-color: rgba(255, 255, 255, .55);

}

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

.hero-right {

    position: relative;

    overflow: hidden;

    background: #9BB4D1;

}

.hero-image {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center 35%;

}

.image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 41, 82, .4) 0%,
            transparent 40%
        );

    pointer-events: none;

}

.image-label {

    position: absolute;

    left: 22px;

    bottom: 22px;

    z-index: 2;

    font-family: var(--font-mono);

    font-size: 10px;

    letter-spacing: .1em;

    text-transform: uppercase;

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

}

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

.page-intro,
.intro-section {

    display: grid;

    grid-template-columns: minmax(65px, .7fr) minmax(0, 3fr);

    gap: clamp(24px, 5vw, 64px);

    padding:
        clamp(88px, 12vw, 140px)
        clamp(28px, 7vw, 100px);

    background: var(--blue-deep);

    color: white;

}

.page-intro--compact {

    padding-top: calc(var(--header-height) + clamp(36px, 6vw, 64px));

    padding-bottom: clamp(40px, 6vw, 64px);

}

.page-intro--compact .intro-text {

    margin-bottom: 0;

}

.page-intro .werk-empty,
.page-intro .projects-list {

    margin-top: 36px;

}

.section-number {

    display: block;

    color: var(--primary-light);

    font-family: var(--font-mono);

    font-size: 12px;

    letter-spacing: .14em;

    text-transform: uppercase;

}

.intro-title {

    max-width: 10000px;

    margin: 0;

    color: white;

    font-family: var(--font-display);

    font-size: clamp(30px, 4.4vw, 58px);

    line-height: 1.12;

    letter-spacing: -.045em;

    font-weight: 700;

    text-transform: lowercase;

}

.intro-title strong {

    color: var(--primary-light);

    font-weight: 700;

}

.intro-text {

    max-width: 520px;

    margin: 24px 0 0;

    font-size: 16px;

    line-height: 1.7;

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

}

.vision-lead {

    margin-top: 20px;

}

.text-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 32px;

    font-family: var(--font-mono);

    font-size: 11px;

    letter-spacing: .1em;

    text-transform: uppercase;

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

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

    padding-bottom: 5px;

    transition:
        color .25s ease,
        border-color .25s ease;

}

.text-link:hover {

    color: var(--primary-light);

    border-color: var(--primary-light);

}

.text-link span {

    transition: transform .3s var(--ease-out);

}

.text-link:hover span {

    transform: translate(3px, -3px);

}

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

.projects-section {

    padding:
        clamp(80px, 10vw, 130px)
        clamp(24px, 7vw, 100px)
        clamp(100px, 12vw, 160px);

    background: var(--blue-deep);

    color: white;

}

.projects-section--page {

    padding-top: 24px;

}

.projects-section--side {

    padding-top: 0;

    border-top: 1px solid rgba(255, 255, 255, .08);

}

.projects-heading {

    display: grid;

    grid-template-columns: 1fr minmax(0, 1.15fr);

    gap: 28px;

    margin-bottom: clamp(48px, 7vw, 80px);

    align-items: end;

}

.projects-label {

    font-family: var(--font-mono);

    font-size: 12px;

    letter-spacing: .14em;

    text-transform: uppercase;

    color: var(--primary-light);

}

.projects-heading h2 {

    margin: 0;

    max-width: 750px;

    font-family: var(--font-display);

    font-size: clamp(34px, 5vw, 64px);

    font-weight: 700;

    line-height: 1;

    letter-spacing: -.055em;

    text-transform: lowercase;

}

.projects-heading h2 em {

    font-style: normal;

    color: var(--primary-light);

}

.projects-list {

    border-top: 1px solid rgba(255, 255, 255, .14);

}

.project-row {

    display: grid;

    grid-template-columns:
        52px
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: clamp(16px, 3vw, 40px);

    padding: clamp(28px, 4vw, 44px) 0;

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

    color: white;

    text-decoration: none;

    transition: background-color .25s ease;

}

.project-row:hover {

    background:
        linear-gradient(
            90deg,
            rgba(65, 160, 255, .07),
            transparent 70%
        );

}

.project-number {

    align-self: start;

    padding-top: 6px;

    font-family: var(--font-mono);

    font-size: 11px;

    letter-spacing: .06em;

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

}

.project-info {

    max-width: 580px;

}

.project-type {

    display: block;

    margin-bottom: 10px;

    font-family: var(--font-mono);

    font-size: 10px;

    letter-spacing: .12em;

    text-transform: uppercase;

    color: var(--primary-light);

}

.project-info h3 {

    margin: 0 0 12px;

    font-family: var(--font-display);

    font-size: clamp(30px, 4.2vw, 48px);

    font-weight: 700;

    line-height: .95;

    letter-spacing: -.05em;

}

.project-info h3.brand-pbyte {

    font-family: 'Poppins', sans-serif;

}

.project-info h3.brand-bitroute {

    font-family: 'Montserrat', sans-serif;

    font-weight: 800;

}

.project-info p {

    max-width: 400px;

    margin: 0;

    font-size: 15px;

    line-height: 1.55;

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

}

.project-action {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    justify-self: end;

    font-family: var(--font-mono);

    font-size: 10px;

    letter-spacing: .1em;

    text-transform: uppercase;

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

    white-space: nowrap;

    transition: color .25s ease;

}

.project-action span {

    font-size: 16px;

    transition: transform .3s var(--ease-out);

}

.project-row:hover .project-action {

    color: var(--primary-light);

}

.project-row:hover .project-action span {

    transform: translate(4px, -4px);

}

.projects-more {

    margin-top: 48px;

}

/* =========================
   ABOUT
========================= */

.about-story,
.about-vision,
.about-cta {

    padding:
        clamp(72px, 9vw, 120px)
        clamp(28px, 7vw, 100px);

    background: var(--blue-deep);

    color: white;

}

.about-story--tight,
.pcms-section,
.stack-section,
.about-cta--tight {

    padding:
        clamp(48px, 6vw, 72px)
        clamp(28px, 7vw, 100px);

}

.about-story-header,
.about-vision-header {

    max-width: 640px;

    margin-bottom: clamp(40px, 6vw, 64px);

}

.section-heading {

    margin: 18px 0 0;

    font-family: var(--font-display);

    font-size: clamp(28px, 3.8vw, 44px);

    line-height: 1.1;

    letter-spacing: -.04em;

    font-weight: 700;

    text-transform: lowercase;

}

.timeline {

    list-style: none;

    margin: 0;

    padding: 0;

    border-top: 1px solid rgba(255, 255, 255, .14);

}

.timeline-item {

    display: grid;

    grid-template-columns: minmax(88px, 140px) minmax(0, 1fr);

    gap: clamp(16px, 3vw, 36px);

    padding: clamp(24px, 3.5vw, 32px) 0;

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

}

.timeline-year {

    font-family: var(--font-mono);

    font-size: 12px;

    letter-spacing: .06em;

    color: var(--primary-light);

    padding-top: 4px;

}

.timeline-body h3 {

    margin: 0 0 8px;

    font-size: clamp(20px, 2.2vw, 24px);

    letter-spacing: -.02em;

}

.timeline-body p {

    margin: 0;

    max-width: 480px;

    font-size: 15px;

    line-height: 1.65;

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

}

.vision-grid {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: clamp(24px, 4vw, 40px) clamp(28px, 5vw, 56px);

}

.vision-grid--dense {

    gap: clamp(18px, 3vw, 28px) clamp(24px, 4vw, 40px);

}

.vision-grid--dense .vision-block {

    padding-top: 14px;

}

.vision-grid--dense .vision-block p {

    max-width: none;

}

.vision-block {

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, .16);

}

.vision-label {

    display: block;

    margin-bottom: 12px;

    font-family: var(--font-mono);

    font-size: 11px;

    letter-spacing: .12em;

    text-transform: uppercase;

    color: var(--primary-light);

}

.vision-block h3 {

    margin: 0 0 10px;

    font-size: clamp(20px, 2.2vw, 24px);

    letter-spacing: -.02em;

}

.vision-block p {

    margin: 0;

    max-width: 400px;

    font-size: 15px;

    line-height: 1.65;

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

}

.about-cta .intro-title {

    max-width: 560px;

}

/* =========================
   WERK
========================= */

.list-empty {

    margin: 0;

    font-size: 15px;

    line-height: 1.65;

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

}

.werk-empty {

    max-width: 520px;

    padding: 8px 0 12px;

}

.werk-empty p {

    margin: 0 0 28px;

    font-size: 15px;

    line-height: 1.65;

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

}

.werk-stack {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    list-style: none;

    margin: 14px 0 0;

    padding: 0;

}

.werk-stack li {

    font-family: var(--font-mono);

    font-size: 10px;

    letter-spacing: .08em;

    text-transform: uppercase;

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

}

.werk-stack li:not(:last-child)::after {

    content: '·';

    margin-left: 8px;

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

}

/* =========================
   THE WALL
========================= */

.wall-intro-quote {

    max-width: 560px;

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

}

.wall-intro-quote em {

    font-style: italic;

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

}

.wall-section {

    padding:
        12px
        clamp(24px, 7vw, 100px)
        clamp(80px, 10vw, 140px);

    background: var(--blue-deep);

    color: white;

}

.wall-grid {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: clamp(36px, 5vw, 72px) clamp(28px, 4vw, 56px);

}

.wall-item {

    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 18px;

    margin: 0;

    padding: 0;

    border: 0;

    background: none;

    color: inherit;

    text-align: left;

    cursor: none;

    appearance: none;

    -webkit-appearance: none;

}

html.no-custom-cursor .wall-item,
html:not(.has-custom-cursor) .wall-item {
    cursor: pointer;
}

.wall-item__media {

    position: relative;

    display: block;

    overflow: hidden;

    aspect-ratio: 16 / 11;

    border-radius: 10px;

    background: rgba(255, 255, 255, .06);

    box-shadow: 0 0 0 1px rgba(255, 255, 255, .08);

}

.wall-item__media img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: top center;

    display: block;

    transition: transform .55s var(--ease-out);

}

.wall-item:hover .wall-item__media img,
.wall-item:focus-visible .wall-item__media img {

    transform: scale(1.035);

}

.wall-item__placeholder {

    display: grid;

    place-items: center;

    width: 100%;

    height: 100%;

    font-family: var(--font-display);

    font-size: clamp(48px, 8vw, 88px);

    font-weight: 700;

    letter-spacing: -.04em;

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

    background:
        linear-gradient(
            145deg,
            rgba(65, 160, 255, .18),
            rgba(0, 41, 82, .4)
        );

}

.wall-item__title {

    font-family: var(--font-display);

    font-size: clamp(22px, 2.4vw, 34px);

    font-weight: 700;

    letter-spacing: -.03em;

    line-height: 1.15;

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

}

.wall-item:focus-visible {

    outline: none;

}

.wall-item:focus-visible .wall-item__media {

    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .08),
        0 0 0 3px rgba(65, 160, 255, .55);

}

/* Custom “view” cursor for wall items */

.wall-view-cursor {

    position: fixed;

    top: 0;
    left: 0;

    z-index: 10001;

    display: none;

    pointer-events: none;

    will-change: transform;

    transform: translate3d(-9999px, -9999px, 0);

}

.wall-view-cursor.is-active {

    display: block;

}

.wall-view-cursor__label {

    display: inline-block;

    font-family: var(--font-sans);

    font-size: clamp(22px, 5.5vw, 32px);

    font-weight: 700;

    letter-spacing: -.06em;

    line-height: 1;

    color: rgba(248, 250, 252, .58);

    text-shadow: 0 4px 28px rgba(0, 15, 35, .45);

}

.wall-view-cursor__i {

    position: relative;

    display: inline-block;

}

.wall-view-cursor__i::before {

    content: '';

    position: absolute;

    left: 60%;

    top: 0;

    width: .25em;

    height: .25em;

    border-radius: 50%;

    background: currentColor;

    transform: translateX(-50%);

}

html.has-custom-cursor.wall-viewing .cursor {
    opacity: 0;
}

html.has-custom-cursor.wall-viewing,
html.has-custom-cursor.wall-viewing body,
html.has-custom-cursor.wall-viewing .wall-item {
    cursor: none;
}

/* Case pages (/werk/{slug}/) */

.case-page {

    min-height: calc(100vh - var(--header-height));

    padding:
        calc(var(--header-height) + clamp(28px, 5vw, 48px))
        clamp(24px, 6vw, 80px)
        clamp(64px, 8vw, 100px);

    background: #f4f4f4;

    color: #1a1a1a;

}

body:has(.case-page) {

    background: #f4f4f4;

}

.case-layout {

    display: grid;

    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);

    gap: clamp(32px, 5vw, 64px);

    align-items: start;

    max-width: 1180px;

    margin: 0 auto;

}

.case-media {

    display: flex;

    flex-direction: column;

    gap: 18px;

    min-width: 0;

    position: sticky;

    top: calc(var(--header-height) + 20px);

}

.case-stage {

    position: relative;

    overflow: hidden;

    border-radius: 2px;

    background: #e8e8e8;

    aspect-ratio: 4 / 3;

}

.case-stage img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: contain;

    object-position: center;

    opacity: 0;

    pointer-events: none;

    transition: opacity .35s ease;

}

.case-stage img.is-active {

    opacity: 1;

    pointer-events: auto;

}

.case-stage__empty {

    display: grid;

    place-items: center;

    width: 100%;

    height: 100%;

    font-family: var(--font-display);

    font-size: 88px;

    font-weight: 700;

    color: rgba(0, 0, 0, .18);

}

.case-controls {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

}

.case-arrow {

    width: 36px;

    height: 36px;

    margin: 0;

    padding: 0;

    border: 0;

    background: none;

    color: #222;

    font-size: 28px;

    line-height: 1;

    cursor: pointer;

    transition: opacity .2s ease;

}

.case-arrow:hover,
.case-arrow:focus-visible {

    opacity: .55;

    outline: none;

}

.case-bars {

    display: flex;

    align-items: center;

    gap: 7px;

}

.case-bar {

    width: 3px;

    height: 18px;

    padding: 0;

    border: 0;

    border-radius: 1px;

    background: rgba(0, 0, 0, .22);

    cursor: pointer;

    transition:
        background .2s ease,
        height .2s ease;

}

.case-bar.is-active {

    height: 22px;

    background: #111;

}

.case-info {

    min-width: 0;

    padding-top: 8px;

}

.case-heading {

    display: flex;

    align-items: flex-start;

    gap: 14px;

}

.case-heading h1 {

    margin: 0;

    font-family: var(--font-display);

    font-size: clamp(28px, 3.4vw, 44px);

    font-weight: 800;

    letter-spacing: -.03em;

    line-height: 1.05;

    text-transform: uppercase;

    color: #111;

}

.case-ext {

    display: grid;

    place-items: center;

    flex-shrink: 0;

    width: 34px;

    height: 34px;

    margin-top: 6px;

    border: 1px solid rgba(0, 0, 0, .28);

    border-radius: 50%;

    color: #222;

    font-size: 12px;

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease;

}

.case-ext:hover,
.case-ext:focus-visible {

    background: #111;

    border-color: #111;

    color: #fff;

    outline: none;

}

.case-url {

    margin: 10px 0 0;

    font-family: var(--font-mono);

    font-size: 11px;

    letter-spacing: .12em;

    text-transform: uppercase;

    color: rgba(0, 0, 0, .42);

}

.case-role {

    margin: 14px 0 0;

    font-size: 14px;

    color: rgba(0, 0, 0, .55);

}

.case-body {

    margin-top: 28px;

    font-size: 15px;

    line-height: 1.75;

    color: rgba(0, 0, 0, .72);

}

.case-body p,
.case-body blockquote {

    margin: 0 0 1em;

}

.case-body p:last-child,
.case-body blockquote:last-child {

    margin-bottom: 0;

}

.case-body h2,
.case-body h3 {

    margin: 1.6em 0 .55em;

    font-family: var(--font-display);

    font-size: clamp(20px, 2.2vw, 26px);

    font-weight: 700;

    letter-spacing: -.02em;

    color: #111;

}

.case-body strong {

    color: #111;

    font-weight: 700;

}

.case-body a {

    color: #111;

    text-decoration: underline;

    text-underline-offset: 3px;

}

.case-body blockquote {

    padding-left: 16px;

    border-left: 2px solid rgba(0, 0, 0, .2);

    font-style: italic;

    color: rgba(0, 0, 0, .62);

}

.case-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    list-style: none;

    margin: 36px 0 0;

    padding: 0;

}

.case-tags li {

    padding: 8px 16px;

    border: 1px solid rgba(0, 0, 0, .28);

    border-radius: 999px;

    font-size: 13px;

    color: #222;

    line-height: 1;

}

.case-footer {

    max-width: 1180px;

    margin: clamp(48px, 8vw, 80px) auto 0;

    padding-top: 28px;

    border-top: 1px solid rgba(0, 0, 0, .08);

    text-align: center;

}

.case-footer p {

    margin: 0 0 12px;

    font-size: 14px;

    color: rgba(0, 0, 0, .5);

}

.case-footer .text-link {

    margin-top: 0;

    color: #111;

    border-bottom-color: rgba(0, 0, 0, .25);

}

.case-footer .text-link:hover {

    color: var(--primary);

    border-color: var(--primary);

}

/* Long story pages — modular blocks */

.case-page--long {

    padding-left: 0;

    padding-right: 0;

}

.case-long-hero {

    max-width: 720px;

    margin: 0 auto;

    padding: 0 clamp(24px, 6vw, 80px);

}

.case-long-lead {

    margin-top: 28px;

    font-size: clamp(17px, 1.5vw, 20px);

    line-height: 1.7;

    color: rgba(0, 0, 0, .72);

}

.case-long-lead p {

    margin: 0 0 1em;

}

.case-long-lead p:last-child {

    margin-bottom: 0;

}

.case-long-lead strong {

    color: #111;

}

.case-tags--hero {

    margin-top: 28px;

}

.case-long-stream {

    margin-top: clamp(40px, 6vw, 72px);

    display: flex;

    flex-direction: column;

    gap: clamp(40px, 7vw, 88px);

}

.case-block__inner--narrow {

    max-width: 720px;

    margin: 0 auto;

    padding: 0 clamp(24px, 6vw, 80px);

}

.case-block--text h2,
.case-split__copy h2 {

    margin: 0 0 .55em;

    font-family: var(--font-display);

    font-size: clamp(24px, 2.8vw, 34px);

    font-weight: 700;

    letter-spacing: -.03em;

    line-height: 1.15;

    color: #111;

}

.case-block__body {

    font-size: 16px;

    line-height: 1.75;

    color: rgba(0, 0, 0, .72);

}

.case-block__body p {

    margin: 0 0 1em;

}

.case-block__body p:last-child {

    margin-bottom: 0;

}

.case-block__body strong {

    color: #111;

}

.case-block__body a {

    color: #111;

    text-decoration: underline;

    text-underline-offset: 3px;

}

.case-block--quote {

    padding: 0 clamp(24px, 6vw, 80px);

}

.case-quote {

    max-width: 640px;

    margin: 0 auto;

    text-align: center;

}

.case-quote blockquote {

    margin: 0;

}

.case-quote blockquote p {

    margin: 0;

    font-family: var(--font-display);

    font-size: clamp(22px, 2.6vw, 32px);

    font-weight: 600;

    letter-spacing: -.02em;

    line-height: 1.35;

    color: #111;

}

.case-quote figcaption {

    margin-top: 18px;

    font-family: var(--font-mono);

    font-size: 11px;

    letter-spacing: .1em;

    text-transform: uppercase;

    color: rgba(0, 0, 0, .45);

}

.case-figure {

    margin: 0;

}

.case-figure img {

    display: block;

    width: 100%;

    height: auto;

}

.case-figure figcaption {

    margin-top: 12px;

    font-size: 13px;

    color: rgba(0, 0, 0, .48);

}

.case-figure--contained {

    max-width: 960px;

    margin: 0 auto;

    padding: 0 clamp(24px, 6vw, 80px);

}

.case-figure--contained img {

    border-radius: 2px;

    background: #e8e8e8;

}

.case-figure--bleed img {

    width: 100%;

    object-fit: cover;

    object-position: center;

}

.case-figure--bleed figcaption {

    max-width: 960px;

    margin-left: auto;

    margin-right: auto;

    padding: 12px clamp(24px, 6vw, 80px) 0;

}

.case-gallery {

    display: grid;

    gap: clamp(12px, 2vw, 20px);

    max-width: 1100px;

    margin: 0 auto;

    padding: 0 clamp(24px, 6vw, 80px);

}

.case-gallery--cols-2 {

    grid-template-columns: repeat(2, minmax(0, 1fr));

}

.case-gallery--cols-3 {

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

}

.case-gallery .case-figure img {

    border-radius: 2px;

    background: #e8e8e8;

    aspect-ratio: 4 / 3;

    object-fit: cover;

}

.case-split {

    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    gap: clamp(24px, 4vw, 48px);

    align-items: center;

    max-width: 1180px;

    margin: 0 auto;

    padding: 0 clamp(24px, 6vw, 80px);

}

.case-block--split-right .case-split__media {

    order: 2;

}

.case-block--split-right .case-split__copy {

    order: 1;

}

.case-split__media img {

    display: block;

    width: 100%;

    border-radius: 2px;

    background: #e8e8e8;

    aspect-ratio: 4 / 3;

    object-fit: cover;

}

.case-split__copy {

    max-width: 420px;

}

.case-page--long .case-footer {

    max-width: none;

    margin-left: clamp(24px, 6vw, 80px);

    margin-right: clamp(24px, 6vw, 80px);

    padding-left: 0;

    padding-right: 0;

}

/* =========================
   DIENSTEN / pCMS / STACK
========================= */

.pcms-section,
.stack-section {

    background: var(--blue-deep);

    color: white;

}

.pcms-header,
.stack-header {

    max-width: 640px;

    margin-bottom: clamp(28px, 4vw, 40px);

}

.stack-header {

    margin-bottom: clamp(20px, 3vw, 28px);

}

.about-story--tight .about-story-header {

    margin-bottom: clamp(28px, 4vw, 40px);

}

.about-story--tight .section-heading {

    margin-top: 10px;

}

.pcms-split {

    display: grid;

    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);

    gap: clamp(28px, 5vw, 64px);

    align-items: start;

}

.pcms-split .pcms-header {

    margin-bottom: 0;

}

.pcms-points {

    list-style: none;

    margin: 0;

    padding: 0;

    border-top: 1px solid rgba(255, 255, 255, .14);

}

.pcms-points li {

    display: grid;

    grid-template-columns: 110px minmax(0, 1fr);

    gap: 16px;

    padding: 16px 0;

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

    font-size: 15px;

    line-height: 1.5;

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

}

.pcms-points li span {

    font-family: var(--font-mono);

    font-size: 11px;

    letter-spacing: .1em;

    text-transform: uppercase;

    color: var(--primary-light);

    padding-top: 3px;

}

.stack-groups {

    display: flex;

    flex-direction: column;

    gap: clamp(28px, 4vw, 40px);

}

.stack-group-label {

    margin: 0 0 14px;

    font-family: var(--font-mono);

    font-size: 11px;

    font-weight: 500;

    letter-spacing: .12em;

    text-transform: uppercase;

    color: var(--primary-light);

}

.stack-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));

    gap: 0;

    list-style: none;

    margin: 0;

    padding: 0;

    border-top: 1px solid rgba(255, 255, 255, .14);

}

.stack-item {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;

    padding: 20px 16px 20px 0;

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

}

.stack-item i {

    font-size: 22px;

    color: var(--primary-light);

    line-height: 1;

}

.stack-item i.ti {

    font-size: 24px;

}

.stack-item span {

    font-family: var(--font-mono);

    font-size: 10px;

    letter-spacing: .1em;

    text-transform: uppercase;

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

}

/* =========================
   CONTACT
========================= */

.contact-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 36px;

}

.contact-email {
    padding: 1.5rem;
    background: var(--blue-dark);
    font-weight: 500;
    min-width: 835px;
}

.contact-email a {
    text-decoration: underline !important;
    color: var(--primary-light) !important;
}

/* =========================
   FOOTER
========================= */

.site-footer {

    padding:
        40px clamp(28px, 7vw, 100px)
        28px;

    background: var(--blue-deep);

    color: white;

    border-top: 1px solid rgba(255, 255, 255, .08);

}

.footer-top {

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

    font-family: var(--font-mono);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .08em;

}

.footer-big-text {

    margin-top: 18px;

    font-family: var(--font-display);

    font-size: clamp(48px, 10vw, 100px);

    font-weight: 700;

    letter-spacing: -.08em;

    line-height: .85;

    text-transform: lowercase;

}

.footer-big-text span {

    color: var(--primary-light);

}

.footer-socials {

    display: flex;

    align-items: center;

    gap: 6px;

    margin-top: 28px;

}

.footer-social {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 36px;

    height: 36px;

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

    transition: color .25s ease, opacity .25s ease;

}

.footer-social:hover {

    color: var(--primary-light);

}

/* =========================
   BLOG
========================= */

.blog-list-section {

    padding:
        0 clamp(28px, 7vw, 100px)
        clamp(100px, 12vw, 160px);

    background: var(--blue-deep);

    color: white;

}

.blog-list {

    list-style: none;

    margin: 0;

    padding: 0;

    border-top: 1px solid rgba(255, 255, 255, .14);

}

.blog-list-item {

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

}

.blog-list-link {

    display: block;

    padding: clamp(28px, 4vw, 40px) 0;

    color: white;

    text-decoration: none;

    transition: background-color .25s ease;

}

.blog-list-link:hover {

    background:
        linear-gradient(
            90deg,
            rgba(65, 160, 255, .07),
            transparent 70%
        );

}

.blog-list-link time {

    display: block;

    margin-bottom: 12px;

    font-family: var(--font-mono);

    font-size: 11px;

    letter-spacing: .1em;

    text-transform: uppercase;

    color: var(--primary-light);

}

.blog-list-link h2 {

    margin: 0 0 12px;

    font-family: var(--font-display);

    font-size: clamp(26px, 3.5vw, 40px);

    font-weight: 700;

    letter-spacing: -.04em;

    line-height: 1.1;

    text-transform: lowercase;

}

.blog-list-link p {

    margin: 0;

    max-width: 520px;

    font-size: 15px;

    line-height: 1.6;

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

}

.blog-list-more {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 20px;

    font-family: var(--font-mono);

    font-size: 10px;

    letter-spacing: .1em;

    text-transform: uppercase;

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

}

.blog-list-link:hover .blog-list-more {

    color: var(--primary-light);

}

.blog-post {

    background: var(--blue-deep);

    color: white;

}

.blog-post-header.page-intro {

    padding-bottom: 40px;

}

.blog-post-date {

    display: block;

    margin-bottom: 18px;

    font-family: var(--font-mono);

    font-size: 12px;

    letter-spacing: .1em;

    text-transform: uppercase;

    color: var(--primary-light);

}

.blog-post-body {

    max-width: 680px;

    margin: 0 auto;

    padding: 0 clamp(28px, 7vw, 100px) 40px;

    font-size: 17px;

    line-height: 1.75;

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

}

.blog-post-body h2 {

    margin: 2.2em 0 0.7em;

    font-size: clamp(22px, 2.5vw, 28px);

    letter-spacing: -.03em;

    color: white;

}

.blog-post-body p {

    margin: 0 0 1.2em;

}

.blog-post-body a {

    color: var(--primary-light);

    text-decoration: underline;

    text-underline-offset: 3px;

}

.blog-post-body ul,
.blog-post-body ol {

    margin: 0 0 1.2em;

    padding-left: 1.3em;

}

.blog-post-body li {

    margin-bottom: 0.4em;

}

.blog-post-body code {

    font-family: var(--font-mono);

    font-size: 0.86em;

    padding: 0.12em 0.35em;

    background: rgba(255, 255, 255, .08);

    border-radius: 3px;

}

.blog-post-body pre {

    margin: 0 0 1.4em;

    padding: 1.1rem 1.2rem;

    overflow-x: auto;

    background: rgba(0, 0, 0, .25);

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

    border-radius: 4px;

}

.blog-post-body pre code {

    padding: 0;

    background: none;

}

.blog-post-body strong {

    color: white;

    font-weight: 700;

}

.blog-back {

    max-width: 680px;

    margin: 0 auto;

    padding:
        20px clamp(28px, 7vw, 100px)
        clamp(80px, 10vw, 120px);

}

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

@media (max-width: 900px) {

    html.has-custom-cursor,
    html.has-custom-cursor body,
    html.has-custom-cursor a,
    html.has-custom-cursor button {
        cursor: auto;
    }

    .cursor,
    .wall-view-cursor {
        display: none !important;
    }

    .page-intro,
    .intro-section {

        grid-template-columns: 1fr;

        gap: 18px;

    }

    .projects-heading {

        grid-template-columns: 1fr;

        gap: 14px;

    }

    .wall-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .wall-item {
        cursor: pointer;
    }

    .case-layout {

        grid-template-columns: 1fr;

        gap: 28px;

    }

    .case-media {

        position: static;

    }

    .case-stage {

        aspect-ratio: 16 / 11;

    }

    .case-page {

        padding-left: 20px;

        padding-right: 20px;

    }

    .case-page--long {

        padding-left: 0;

        padding-right: 0;

    }

    .case-gallery--cols-2,
    .case-gallery--cols-3 {

        grid-template-columns: 1fr;

    }

    .case-split {

        grid-template-columns: 1fr;

        gap: 20px;

    }

    .case-block--split-right .case-split__media,
    .case-block--split-right .case-split__copy {

        order: unset;

    }

    .case-split__copy {

        max-width: none;

    }

    .case-figure--bleed img {

        max-height: 52vh;

    }

    .vision-grid {

        grid-template-columns: 1fr;

    }

    .pcms-split {

        grid-template-columns: 1fr;

        gap: 28px;

    }

    .pcms-points li {

        grid-template-columns: 1fr;

        gap: 6px;

    }

    .main-navigation {

        grid-template-columns: 1fr;

        margin: 12px 0;

    }

    .nav-label {

        font-size: clamp(30px, 8vw, 40px);

    }

    .menu-footer {

        flex-direction: column;

        align-items: flex-start;

        gap: 16px;

    }

}

@media (max-width: 800px) {

    .hero {

        display: flex;

        flex-direction: column;

        min-height: 0;

    }

    .hero-left {

        width: 100%;

        padding-top: calc(var(--header-height) + 28px);

        padding-bottom: 56px;

        justify-content: flex-start;

    }

    .hero-right {

        width: 100%;

        height: 52vh;

        min-height: 360px;

        max-height: 560px;

    }

    .project-row {

        grid-template-columns: 36px 1fr;

        gap: 12px;

        padding: 26px 0;

    }

    .project-action {

        grid-column: 2;

        justify-self: start;

        margin-top: 4px;

    }

    .timeline-item {

        grid-template-columns: 1fr;

        gap: 6px;

    }

}

@media (max-width: 600px) {

    .hero-title {

        font-size: 58px;

    }

    .hero-actions,
    .contact-actions {

        flex-direction: column;

        align-items: stretch;

    }

    .button {

        width: 100%;

    }

    .nav-link {

        grid-template-columns: 36px 1fr 28px;

    }

    .site-header {

        background: rgba(0, 41, 82, .94);

        color: white;

    }

    .site-header .logo-dot {

        color: white;

    }

}

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

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;

    }

}
