@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("/fonts/inter-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+20A0-20AB, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("/fonts/inter-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Unbounded";
    font-style: normal;
    font-weight: 600 800;
    font-display: swap;
    src: url("/fonts/unbounded-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+20A0-20AB, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Unbounded";
    font-style: normal;
    font-weight: 600 800;
    font-display: swap;
    src: url("/fonts/unbounded-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Fira Code";
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url("/fonts/fira-code-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+20A0-20AB, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Fira Code";
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url("/fonts/fira-code-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    color-scheme: light;
    --paper: #fff9f2;
    --paper-deep: #f7eee5;
    --surface: #ffffff;
    --surface-warm: #fff0e3;
    --surface-orange: #ffd8c2;
    --section-light: rgba(255, 255, 255, .86);
    --section-cream: rgba(255, 240, 227, .72);
    --section-warm: rgba(255, 216, 194, .5);
    --ink: #080706;
    --ink-soft: #3c342f;
    --muted: #514740;
    --orange: #ff5a1f;
    --orange-dark: #aa3300;
    --orange-deep: #7f2500;
    --line: #e8d8cd;
    --line-strong: #b9a69a;
    --focus: #1e55d8;
    --text-main: var(--ink);
    --text-muted: var(--ink-soft);
    --shadow-sm: 0 10px 28px rgba(72, 42, 24, .08);
    --shadow: 0 24px 70px rgba(72, 42, 24, .12);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 28px;
    --shell: 1240px;
    --header-height: 80px;
    --space-head: clamp(30px, 3vw, 42px);
    --space-section-tight: clamp(36px, 3.5vw, 48px);
    --space-section: clamp(50px, 4.8vw, 68px);
    --space-page-end: clamp(52px, 5vw, 72px);
    --space-footer: clamp(46px, 5vw, 68px);
    --font-display: "Unbounded", Arial Black, Arial, sans-serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-code: "Fira Code", ui-monospace, SFMono-Regular, Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 1px);
    background: var(--paper);
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    min-width: 0;
    margin: 0;
    background:
        linear-gradient(90deg, transparent calc(100% - 1px), rgba(196, 61, 0, .035) 1px),
        linear-gradient(transparent calc(100% - 1px), rgba(196, 61, 0, .035) 1px),
        var(--paper);
    background-size: 72px 72px;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: auto;
    text-rendering: optimizeLegibility;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background: radial-gradient(circle at 88% 9%, rgba(255, 90, 31, .13), transparent 27rem);
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4, fieldset { margin-top: 0; }

::selection { background: var(--orange); color: var(--ink); }

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 4px;
    border-radius: 5px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: max(12px, env(safe-area-inset-top, 0px));
    left: max(12px, env(safe-area-inset-left, 0px));
    z-index: 1000;
    padding: 10px 16px;
    border: 2px solid var(--ink);
    border-radius: 10px;
    background: var(--orange);
    color: var(--ink);
    font-weight: 800;
    box-shadow: 4px 4px 0 var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-100% - 24px));
    transition: opacity .16s ease, transform .2s cubic-bezier(.2, .8, .2, 1);
}

.skip-link:focus,
.skip-link:focus-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.site-shell,
.wrap {
    width: min(var(--shell), calc(100% - 48px));
    margin-inline: auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding-top: env(safe-area-inset-top, 0px);
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    background: rgba(255, 249, 242, .96);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
    border-color: var(--ink);
    background: rgba(255, 249, 242, .96);
    box-shadow: 0 8px 30px rgba(72, 42, 24, .05);
}

.site-header__inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    overflow: hidden;
}

.site-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.site-brand__mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--orange);
    color: var(--ink);
    font: 800 .72rem/1 var(--font-display);
    letter-spacing: -.06em;
    box-shadow: 4px 4px 0 var(--ink);
    transition: transform .2s ease, box-shadow .2s ease;
}

.site-brand:hover .site-brand__mark {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--ink);
}

.site-brand__name {
    color: var(--ink);
    font: 750 .67rem/1.18 var(--font-display);
    letter-spacing: .055em;
}

.site-brand__dot {
    width: 7px;
    height: 7px;
    margin-left: -3px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 90, 31, .13);
}

.site-header__domain { display: none; }

.site-nav {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(15px, 1.7vw, 26px);
    flex: 1;
}

.site-nav__links,
.site-nav__actions,
.lang-switch { display: flex; align-items: center; }
.site-nav__links { gap: clamp(10px, 1.1vw, 18px); }
.site-nav__actions { gap: 14px; }

.site-nav__links > a {
    position: relative;
    padding-block: 9px;
    color: var(--ink-soft);
    font-size: .76rem;
    font-weight: 740;
    white-space: nowrap;
    transition: color .2s ease;
}

.site-nav__links > a::after {
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 3px;
    height: 2px;
    content: "";
    background: var(--orange);
    transition: right .24s ease;
}

.site-nav__links > a:hover { color: var(--ink); }
.site-nav__links > a:hover::after,
.site-nav__links > a[aria-current]::after { right: 0; }
.site-nav__contact-link { display: none; }

.lang-switch { gap: 2px; }
.lang-switch .l-opt {
    min-width: 29px;
    padding: 6px 4px;
    border: 1px solid transparent;
    border-radius: 7px;
    color: var(--muted);
    font: 650 .61rem/1 var(--font-code);
    text-align: center;
}
.lang-switch .l-opt:hover { color: var(--ink); }
.lang-switch .l-opt.active {
    border-color: var(--ink);
    background: var(--surface);
    color: var(--orange-dark);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 2px solid var(--ink);
    border-radius: 10px;
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Buttons and type */
.button,
.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border: 2px solid var(--ink);
    border-radius: 11px;
    font-size: .86rem;
    font-weight: 780;
    line-height: 1.2;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.button:hover,
.btn:hover { transform: translate(-2px, -2px); }
.button--compact { min-height: 42px; padding: 9px 14px; font-size: .75rem; }

.button--primary,
.btn-primary {
    background: var(--orange);
    color: var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
}

.button--primary:hover,
.btn-primary:hover { box-shadow: 8px 8px 0 var(--ink); }

.button--secondary,
.btn-ghost { background: var(--surface); color: var(--ink); }
.button--secondary:hover,
.btn-ghost:hover { background: var(--surface-warm); box-shadow: 5px 5px 0 var(--orange); }
.button--text { min-height: auto; padding: 4px 0; border: 0; color: var(--orange-dark); }
.button--text:hover { transform: translateX(3px); }
.button.is-disabled { pointer-events: none; opacity: .55; }

.eyebrow,
.section-kicker,
.lp-spec-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: var(--orange-dark);
    font: 650 .69rem/1.3 var(--font-code);
    letter-spacing: .13em;
    text-transform: uppercase;
}

.eyebrow > i {
    width: 9px;
    height: 9px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 3px 3px 0 var(--ink);
}

.section-kicker::before,
.lp-spec-badge::before {
    width: 25px;
    height: 2px;
    content: "";
    background: currentColor;
}

h1, h2, h3 {
    color: var(--ink);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}
p, li, summary, blockquote, figcaption { text-wrap: pretty; }
html[lang="de"] h1,
html[lang="de"] h2,
html[lang="de"] h3,
html[lang="de"] p,
html[lang="de"] li,
html[lang="de"] summary {
    -webkit-hyphens: auto;
    hyphens: auto;
}
h1, h2 { font-family: var(--font-display); }
h1 {
    margin-bottom: 25px;
    font-size: clamp(3.05rem, 6.25vw, 6.35rem);
    line-height: .98;
    letter-spacing: -.065em;
}
h2 {
    margin-bottom: 20px;
    font-size: clamp(2.15rem, 4.35vw, 4.55rem);
    line-height: 1.03;
    letter-spacing: -.055em;
}
h1 em, h2 em { color: var(--orange-dark); font-style: normal; }
h3 { line-height: 1.2; }

/* Hero */
.hero {
    position: relative;
    min-height: auto;
    display: grid;
    align-items: start;
    padding: clamp(22px, 2.5vw, 40px) 0 clamp(64px, 6vw, 96px);
    overflow: hidden;
}

.hero::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    content: "";
    background: var(--line);
}

.hero__signal {
    position: absolute;
    top: 3%;
    right: -10rem;
    width: min(45vw, 650px);
    aspect-ratio: 1;
    border: 1px solid rgba(196, 61, 0, .15);
    border-radius: 50%;
    pointer-events: none;
    transform-origin: center;
    animation: signal-orbit 28s linear infinite;
    will-change: transform;
}

.hero__signal::before,
.hero__signal::after,
.hero__signal span {
    position: absolute;
    border: 1px solid rgba(196, 61, 0, .12);
    border-radius: 50%;
    content: "";
}

.hero__signal::before { inset: 12%; animation: signal-ring 6s ease-in-out infinite; }
.hero__signal::after { inset: 27%; animation: signal-ring 6s 1.15s ease-in-out infinite; }
.hero__signal span:nth-child(1) { inset: 42%; background: rgba(255, 90, 31, .12); animation: signal-core 4.2s ease-in-out infinite; }
.hero__signal span:nth-child(2) { top: 18%; left: 19%; width: 11px; height: 11px; background: var(--orange); border-color: var(--ink); animation: signal-dot 2.8s ease-in-out infinite; }
.hero__signal span:nth-child(3) { right: 8%; bottom: 28%; width: 18px; height: 18px; background: var(--surface); border: 2px solid var(--orange); animation: signal-dot 3.4s .65s ease-in-out infinite; }

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(420px, .86fr);
    align-items: center;
    gap: clamp(46px, 6vw, 94px);
}

.hero__copy { max-width: 880px; }
.hero__copy h1 {
    max-width: 880px;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}
.hero__copy h1 em {
    animation: hero-accent-breathe 5.4s 1s ease-in-out infinite;
}
.hero__lead {
    max-width: 680px;
    margin-bottom: 29px;
    color: var(--ink-soft);
    font-size: clamp(1.02rem, 1.35vw, 1.2rem);
    line-height: 1.7;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px 22px;
    margin-top: 27px;
    text-align: center;
}
.hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink-soft);
    font-size: .79rem;
    font-weight: 650;
}
.hero__trust i {
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    border: 1px solid var(--orange-dark);
    border-radius: 50%;
    color: var(--orange-dark);
    font-size: .64rem;
    font-style: normal;
}

.hero-system-stage { width: 100%; min-width: 0; }

.hero-fox {
    position: relative;
    width: min(100%, 460px);
    height: 130px;
    margin: clamp(19px, 2.4vw, 28px) auto -42px;
    color: var(--ink);
    pointer-events: none;
    isolation: isolate;
}

.hero-fox__track {
    position: absolute;
    right: 20px;
    bottom: 18px;
    left: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(170, 51, 0, .38) 18%, rgba(170, 51, 0, .38) 82%, transparent);
}

.hero-fox__track::before,
.hero-fox__track::after {
    position: absolute;
    bottom: -3px;
    width: 7px;
    height: 7px;
    border: 1px solid var(--orange-dark);
    border-radius: 50%;
    background: var(--paper);
    content: "";
}

.hero-fox__track::before { left: 14%; }
.hero-fox__track::after { right: 14%; }

.hero-fox__scene {
    position: absolute;
    inset: 0 22px 9px;
    display: block;
    perspective: 760px;
    perspective-origin: 50% 62%;
    transform-style: preserve-3d;
}

.hero-fox__rig {
    position: absolute;
    left: 50%;
    bottom: 16px;
    width: min(288px, 68vw);
    aspect-ratio: 960 / 578;
    display: block;
    transform: translate3d(-50%, 0, 0);
    transform-origin: 52% 78%;
    transform-style: preserve-3d;
    animation: fox-jump-3d 6.4s linear infinite;
    will-change: transform;
}

.hero-fox__slice,
.hero-fox__slice img,
.hero-fox__light {
    position: absolute;
    inset: 0;
    display: block;
}

.hero-fox__slice {
    transform-style: preserve-3d;
    will-change: transform, filter;
}

.hero-fox__slice img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: saturate(1.02) contrast(1.025) drop-shadow(0 7px 7px rgba(60, 31, 16, .11));
}

.hero-fox__slice--body {
    z-index: 2;
    clip-path: polygon(25% 0, 78% 0, 83% 100%, 24% 100%);
    animation: fox-body-light 6.4s linear infinite;
}

.hero-fox__slice--tail {
    z-index: 1;
    clip-path: polygon(0 5%, 40% 2%, 45% 100%, 0 100%);
    transform-origin: 39% 58%;
    animation: fox-tail-3d 6.4s linear infinite;
}

.hero-fox__slice--head {
    z-index: 3;
    clip-path: polygon(69% 0, 100% 0, 100% 100%, 67% 100%);
    transform-origin: 71% 52%;
    animation: fox-head-3d 6.4s linear infinite;
}

.hero-fox__light {
    z-index: 4;
    opacity: .25;
    background: radial-gradient(circle at 69% 23%, rgba(255, 246, 221, .92), rgba(255, 181, 116, .28) 19%, transparent 43%);
    mix-blend-mode: screen;
    -webkit-mask: none;
    mask: none;
    animation: fox-light-shift 6.4s linear infinite;
}

.hero-fox__shadow {
    position: absolute;
    left: 50%;
    bottom: 9px;
    width: 176px;
    height: 14px;
    display: block;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(53, 31, 20, .27), rgba(88, 47, 22, .11) 50%, transparent 72%);
    filter: blur(2px);
    transform: translate3d(-50%, 0, -38px) rotateX(68deg);
    transform-origin: center;
    animation: fox-shadow-3d 6.4s linear infinite;
    will-change: transform, opacity, filter;
}

.hero-fox__readout {
    position: absolute;
    right: 18px;
    bottom: 0;
    padding-inline: 5px;
    background: var(--paper);
    color: var(--orange-dark);
    font: 650 .5rem/1.2 var(--font-code);
    letter-spacing: .1em;
}

@keyframes fox-jump-3d {
    0%, 12%, 100% {
        transform: translate3d(calc(-50% - 15px), 3px, 0) rotateX(1deg) rotateY(-7deg) rotateZ(-1deg) scale3d(1, 1, 1);
        filter: brightness(.98);
    }
    17% {
        transform: translate3d(calc(-50% - 18px), 10px, -20px) rotateX(9deg) rotateY(-11deg) rotateZ(-4deg) scale3d(1.035, .92, 1);
        filter: brightness(.94);
    }
    22% {
        transform: translate3d(calc(-50% - 13px), 3px, -6px) rotateX(4deg) rotateY(-7deg) rotateZ(-2deg) scale3d(1.015, .98, 1);
        filter: brightness(.98);
    }
    34% {
        transform: translate3d(calc(-50% - 2px), -25px, 36px) rotateX(-7deg) rotateY(5deg) rotateZ(2deg) scale3d(.99, 1.025, 1);
        filter: brightness(1.04);
    }
    46% {
        transform: translate3d(calc(-50% + 12px), -39px, 65px) rotateX(-12deg) rotateY(14deg) rotateZ(5deg) scale3d(.97, 1.03, 1);
        filter: brightness(1.075);
    }
    55% {
        transform: translate3d(calc(-50% + 24px), -35px, 48px) rotateX(-5deg) rotateY(9deg) rotateZ(3deg) scale3d(.985, 1.015, 1);
        filter: brightness(1.045);
    }
    65% {
        transform: translate3d(calc(-50% + 34px), -13px, 18px) rotateX(6deg) rotateY(1deg) rotateZ(-2deg) scale3d(1.01, .99, 1);
        filter: brightness(1);
    }
    70% {
        transform: translate3d(calc(-50% + 38px), 8px, -9px) rotateX(11deg) rotateY(-5deg) rotateZ(-5deg) scale3d(1.04, .91, 1);
        filter: brightness(.95);
    }
    74% {
        transform: translate3d(calc(-50% + 35px), 1px, 3px) rotateX(-4deg) rotateY(-1deg) rotateZ(1deg) scale3d(.995, 1.025, 1);
        filter: brightness(1.015);
    }
    80% {
        transform: translate3d(calc(-50% + 28px), 4px, 0) rotateX(2deg) rotateY(-4deg) rotateZ(-1deg) scale3d(1.01, .98, 1);
        filter: brightness(.99);
    }
    88% {
        transform: translate3d(calc(-50% + 12px), 3px, 0) rotateX(0) rotateY(-6deg) rotateZ(-1deg) scale3d(1, 1, 1);
        filter: brightness(.98);
    }
}

@keyframes fox-tail-3d {
    0%, 12%, 100% { transform: translateZ(-7px) rotateX(-2deg) rotateY(4deg) rotateZ(-2deg); }
    17% { transform: translateZ(-16px) rotateX(8deg) rotateY(-8deg) rotateZ(5deg); }
    34% { transform: translateZ(-10px) rotateX(12deg) rotateY(-12deg) rotateZ(4deg); }
    46% { transform: translateZ(8px) rotateX(18deg) rotateY(-18deg) rotateZ(7deg); }
    65% { transform: translateZ(2px) rotateX(-5deg) rotateY(8deg) rotateZ(-5deg); }
    70% { transform: translateZ(-12px) rotateX(-13deg) rotateY(13deg) rotateZ(-8deg); }
    80% { transform: translateZ(2px) rotateX(5deg) rotateY(-5deg) rotateZ(3deg); }
}

@keyframes fox-head-3d {
    0%, 12%, 100% { transform: translateZ(6px) rotateX(0) rotateY(-3deg) rotateZ(0); }
    17% { transform: translateZ(2px) rotateX(8deg) rotateY(-7deg) rotateZ(-2deg); }
    34% { transform: translateZ(14px) rotateX(-6deg) rotateY(5deg) rotateZ(2deg); }
    46% { transform: translateZ(22px) rotateX(-9deg) rotateY(9deg) rotateZ(3deg); }
    65% { transform: translateZ(11px) rotateX(5deg) rotateY(2deg) rotateZ(-2deg); }
    70% { transform: translateZ(4px) rotateX(11deg) rotateY(-4deg) rotateZ(-3deg); }
    74% { transform: translateZ(12px) rotateX(-5deg) rotateY(3deg) rotateZ(2deg); }
    88% { transform: translateZ(7px) rotateX(1deg) rotateY(-2deg) rotateZ(0); }
}

@keyframes fox-body-light {
    0%, 17%, 100% { filter: brightness(.98) saturate(1); }
    46% { filter: brightness(1.08) saturate(1.04); }
    70% { filter: brightness(.94) saturate(.98); }
    80% { filter: brightness(1.01) saturate(1); }
}

@keyframes fox-light-shift {
    0%, 17%, 100% { opacity: .18; transform: translate3d(-5px, 3px, 18px) rotateY(-5deg); }
    34% { opacity: .3; transform: translate3d(2px, -3px, 26px) rotateY(4deg); }
    46% { opacity: .42; transform: translate3d(10px, -5px, 34px) rotateY(10deg); }
    65% { opacity: .27; transform: translate3d(5px, 2px, 22px) rotateY(2deg); }
    70% { opacity: .14; transform: translate3d(-4px, 5px, 14px) rotateY(-4deg); }
}

@keyframes fox-shadow-3d {
    0%, 12%, 100% {
        width: 180px;
        opacity: .72;
        filter: blur(2px);
        transform: translate3d(calc(-50% - 5px), 0, -38px) rotateX(68deg) scaleX(1);
    }
    17% {
        width: 190px;
        opacity: .78;
        filter: blur(1.5px);
        transform: translate3d(calc(-50% - 8px), 1px, -38px) rotateX(68deg) scaleX(1.08);
    }
    46% {
        width: 128px;
        opacity: .26;
        filter: blur(5px);
        transform: translate3d(calc(-50% + 13px), 4px, -38px) rotateX(68deg) scaleX(.72);
    }
    65% {
        width: 156px;
        opacity: .48;
        filter: blur(3px);
        transform: translate3d(calc(-50% + 29px), 2px, -38px) rotateX(68deg) scaleX(.88);
    }
    70% {
        width: 198px;
        opacity: .82;
        filter: blur(1px);
        transform: translate3d(calc(-50% + 36px), 0, -38px) rotateX(68deg) scaleX(1.08);
    }
    80% {
        width: 182px;
        opacity: .7;
        filter: blur(2px);
        transform: translate3d(calc(-50% + 26px), 0, -38px) rotateX(68deg) scaleX(1);
    }
}

/* MK Fox — site-native graphic walk cycle */
.hero-fox {
    --fox-stride: 1.36s;
    width: min(100%, 420px);
    height: 116px;
    margin: clamp(24px, 2.7vw, 31px) auto -39px;
    transform: translateY(7px);
}

.hero-fox__field {
    position: absolute;
    inset: 5px 8px 21px;
    z-index: 0;
    overflow: hidden;
    opacity: .72;
}

.hero-fox__field i,
.hero-fox__field b {
    position: absolute;
    display: block;
    pointer-events: none;
}

.hero-fox__field i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 2px rgba(255, 90, 31, .08), 0 0 8px rgba(255, 90, 31, .26);
    opacity: 0;
    animation: fox-field-drift var(--field-speed, 8s) var(--field-delay, 0s) ease-in-out infinite;
}

.hero-fox__field i:nth-of-type(1) { top: 40%; left: 7%; --field-x: 10px; --field-y: -16px; --field-speed: 8.8s; --field-delay: -1.2s; }
.hero-fox__field i:nth-of-type(2) { top: 20%; left: 19%; --field-x: -5px; --field-y: -12px; --field-speed: 7.4s; --field-delay: -5.6s; }
.hero-fox__field i:nth-of-type(3) { top: 52%; left: 31%; --field-x: 7px; --field-y: -18px; --field-speed: 9.6s; --field-delay: -3.3s; }
.hero-fox__field i:nth-of-type(4) { top: 17%; left: 68%; --field-x: 8px; --field-y: -13px; --field-speed: 8.2s; --field-delay: -6.8s; }
.hero-fox__field i:nth-of-type(5) { top: 43%; left: 82%; --field-x: -6px; --field-y: -17px; --field-speed: 9.2s; --field-delay: -2.4s; }
.hero-fox__field i:nth-of-type(6) { top: 28%; left: 93%; --field-x: -10px; --field-y: -11px; --field-speed: 7.8s; --field-delay: -4.7s; }

.hero-fox__field b {
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 90, 31, .52), transparent);
    opacity: 0;
    transform-origin: left center;
    animation: fox-field-trail var(--trail-speed, 9s) var(--trail-delay, 0s) ease-in-out infinite;
}

.hero-fox__field b:nth-of-type(1) { top: 30%; left: 12%; --trail-angle: -13deg; --trail-speed: 9.4s; --trail-delay: -2.1s; }
.hero-fox__field b:nth-of-type(2) { top: 37%; left: 76%; --trail-angle: 10deg; --trail-speed: 10.8s; --trail-delay: -7.2s; }

.hero-fox__track {
    z-index: 1;
    right: 19px;
    bottom: 17px;
    left: 19px;
    height: 2px;
    background:
        repeating-linear-gradient(90deg, rgba(170, 51, 0, .46) 0 8px, transparent 8px 18px),
        linear-gradient(90deg, transparent, rgba(170, 51, 0, .16) 15%, rgba(170, 51, 0, .16) 85%, transparent);
    background-size: 72px 1px, auto;
    background-position: 0 center;
    background-repeat: repeat-x, no-repeat;
    animation: fox-track-walk var(--fox-stride) linear infinite;
}

.hero-fox__walk {
    position: absolute;
    left: 50%;
    bottom: 8px;
    z-index: 2;
    width: min(236px, 61vw);
    overflow: visible;
    transform: translateX(-50%);
    filter: drop-shadow(0 9px 8px rgba(68, 37, 20, .1));
}

.hero-fox__speech {
    position: absolute;
    top: 22px;
    right: -13px;
    z-index: 5;
    width: 122px;
    height: 34px;
}

.hero-fox__speech > span {
    position: absolute;
    top: 0;
    right: auto;
    left: 0;
    width: max-content;
    max-width: 122px;
    padding: 7px 9px;
    border: 1px solid var(--ink);
    border-radius: 11px 11px 11px 5px;
    background: rgba(255, 253, 250, .97);
    color: var(--ink);
    box-shadow:
        3px 3px 0 rgba(255, 90, 31, .78),
        inset 0 1px 0 rgba(255, 255, 255, .96);
    font: 680 .54rem/1.25 var(--font-code);
    letter-spacing: -.015em;
    white-space: nowrap;
    isolation: isolate;
    opacity: 0;
    transform: translate3d(0, 4px, 0) scale(.97);
    transform-origin: left center;
    animation: fox-speech 24s cubic-bezier(.2, .75, .25, 1) infinite;
}

.hero-fox__speech > span::after {
    position: absolute;
    left: -5px;
    bottom: 5px;
    z-index: -1;
    width: 9px;
    height: 9px;
    border-bottom: 1px solid var(--ink);
    border-left: 1px solid var(--ink);
    background: #fffdfa;
    content: "";
    transform: rotate(45deg);
    transform-origin: center;
}

.hero-fox__speech > span:nth-child(1) { animation-delay: 1s; }
.hero-fox__speech > span:nth-child(2) { animation-delay: 7s; }
.hero-fox__speech > span:nth-child(3) { animation-delay: 13s; }
.hero-fox__speech > span:nth-child(4) { animation-delay: 19s; }

.hero-fox__shape {
    stroke: var(--ink);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.hero-fox__walker {
    transform-box: fill-box;
    transform-origin: center bottom;
    animation: fox-walk-body var(--fox-stride) cubic-bezier(.45, 0, .55, 1) infinite;
}

.hero-fox__tail-graphic,
.hero-fox__head-look,
.hero-fox__head-graphic,
.hero-fox__ear-graphic,
.hero-fox__body-graphic,
.hero-fox__belly,
.hero-fox__leg {
    transform-box: fill-box;
    will-change: transform;
}

.hero-fox__tail-graphic {
    transform-origin: right center;
    animation: fox-walk-tail 2.72s cubic-bezier(.45, 0, .55, 1) infinite;
}

.hero-fox__body-graphic {
    transform-origin: center bottom;
    animation: fox-walk-torso var(--fox-stride) cubic-bezier(.45, 0, .55, 1) infinite;
}

.hero-fox__belly {
    transform-origin: center top;
    animation: fox-walk-belly var(--fox-stride) cubic-bezier(.45, 0, .55, 1) infinite;
}

.hero-fox__head-look {
    transform-origin: left center;
    animation: fox-look-over 7.44s cubic-bezier(.42, 0, .35, 1) infinite;
    transform-style: preserve-3d;
}

.hero-fox__head-graphic {
    transform-origin: left center;
    animation: fox-walk-head var(--fox-stride) cubic-bezier(.45, 0, .55, 1) infinite;
}

.hero-fox__ear-graphic { transform-origin: center bottom; }
.hero-fox__ear-graphic--front { animation: fox-ear-front 1.08s ease-in-out infinite; }
.hero-fox__ear-graphic--rear { animation: fox-ear-rear .92s .17s ease-in-out infinite; }

.hero-fox__eye-glint {
    animation: fox-eye-glint 7.44s ease-in-out infinite;
}

.hero-fox__leg { transform-origin: center top; }
.hero-fox__leg--near-rear { animation: fox-walk-leg-rear var(--fox-stride) 0s linear infinite; }
.hero-fox__leg--near-front { animation: fox-walk-leg-front var(--fox-stride) -1.02s linear infinite; }
.hero-fox__leg--far-rear { animation: fox-walk-leg-rear var(--fox-stride) -.68s linear infinite; }
.hero-fox__leg--far-front { animation: fox-walk-leg-front var(--fox-stride) -.34s linear infinite; }

.hero-fox__belly,
.hero-fox__muzzle {
    fill: url("#fox-cream");
    stroke: var(--ink);
    stroke-width: 1.7;
    stroke-linejoin: round;
}

.hero-fox__paw,
.hero-fox__nose,
.hero-fox__ear { fill: url("#fox-ink"); stroke: var(--ink); stroke-width: 1.4; }
.hero-fox__eye { fill: var(--ink); }
.hero-fox__eye--near {
    transform-box: fill-box;
    transform-origin: center;
    animation: fox-friendly-eye 5.58s ease-in-out infinite;
}
.hero-fox__eye--far {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    animation: fox-far-eye 7.44s ease-in-out infinite;
}
.hero-fox__eye-glint {
    fill: none;
    stroke: #fff;
    stroke-width: 1.7;
    stroke-linecap: round;
}

.hero-fox__brow {
    fill: none;
    stroke: var(--ink);
    stroke-width: 2;
    stroke-linecap: round;
    transform-box: fill-box;
    transform-origin: left center;
    animation: fox-friendly-brow 7.44s ease-in-out infinite;
}

.hero-fox__cheek {
    fill: #ffb08b;
    opacity: .28;
    animation: fox-cheek-warmth 7.44s ease-in-out infinite;
}

.hero-fox__smile {
    fill: none;
    stroke: var(--ink);
    stroke-width: 1.7;
    stroke-linecap: round;
    transform-box: fill-box;
    transform-origin: center;
    animation: fox-friendly-smile 7.44s ease-in-out infinite;
}

.hero-fox__laugh {
    fill: #ff9f7e;
    stroke: var(--ink);
    stroke-width: 1.2;
    stroke-linejoin: round;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: top center;
    animation: fox-laugh 7.44s ease-in-out infinite;
}

.hero-fox__face-side {
    fill: #9e2e08;
    opacity: .08;
    transform-box: fill-box;
    transform-origin: center;
    animation: fox-face-depth 7.44s ease-in-out infinite;
}

.hero-fox__muzzle,
.hero-fox__nose {
    transform-box: fill-box;
    transform-origin: left center;
    animation: fox-muzzle-turn 7.44s ease-in-out infinite;
}

.hero-fox__edge-highlight {
    fill: none;
    stroke: rgba(255, 250, 245, .74);
    stroke-width: 2;
    stroke-linecap: round;
}

.hero-fox__circuit {
    fill: none;
    stroke: rgba(255, 250, 245, .76);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-fox__circuit circle { fill: #fffaf5; stroke: var(--ink); stroke-width: 1; }

.hero-fox__ground-shadow {
    fill: rgba(59, 34, 21, .16);
    transform-box: fill-box;
    transform-origin: center;
    animation: fox-walk-shadow var(--fox-stride) ease-in-out infinite;
}

@keyframes fox-track-walk { to { background-position: -72px center, 0 center; } }

@keyframes fox-field-drift {
    0%, 100% { opacity: 0; transform: translate3d(0, 3px, 0) scale(.7); }
    24% { opacity: .42; }
    52% { opacity: .68; transform: translate3d(var(--field-x), var(--field-y), 0) scale(1); }
    76% { opacity: .12; transform: translate3d(var(--field-x), calc(var(--field-y) - 4px), 0) scale(.78); }
}

@keyframes fox-field-trail {
    0%, 30%, 68%, 100% { opacity: 0; transform: rotate(var(--trail-angle)) scaleX(.22); }
    40% { opacity: .2; transform: rotate(var(--trail-angle)) scaleX(.55); }
    52% { opacity: .42; transform: translate3d(6px, -2px, 0) rotate(var(--trail-angle)) scaleX(1); }
    62% { opacity: .08; transform: translate3d(11px, -4px, 0) rotate(var(--trail-angle)) scaleX(.7); }
}

@keyframes fox-speech {
    0%, 3%, 18%, 100% { opacity: 0; transform: translate3d(0, 4px, 0) scale(.97); }
    6%, 14% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes fox-walk-body {
    0%, 100% { transform: translate3d(-2px, 0, 0) rotate(-.25deg); }
    12.5% { transform: translate3d(-1px, -1.2px, 0) rotate(.05deg); }
    25% { transform: translate3d(0, -2.2px, 0) rotate(.3deg); }
    37.5% { transform: translate3d(1px, -.8px, 0) rotate(.05deg); }
    50% { transform: translate3d(2px, 0, 0) rotate(-.22deg); }
    62.5% { transform: translate3d(1px, -1.2px, 0) rotate(.05deg); }
    75% { transform: translate3d(0, -2.2px, 0) rotate(.3deg); }
    87.5% { transform: translate3d(-1px, -.8px, 0) rotate(.05deg); }
}

@keyframes fox-walk-leg-front {
    0%, 100% { transform: rotate(-19deg) translateY(0); }
    9% { transform: rotate(-15deg) translateY(0); }
    23% { transform: rotate(-4deg) translateY(0); }
    38% { transform: rotate(10deg) translateY(.3px); }
    52% { transform: rotate(20deg) translateY(0); }
    60% { transform: rotate(23deg) translateY(-1.5px); }
    69% { transform: rotate(13deg) translateY(-5px); }
    79% { transform: rotate(-3deg) translateY(-7px); }
    89% { transform: rotate(-17deg) translateY(-5px); }
    96% { transform: rotate(-21deg) translateY(-1px); }
}

@keyframes fox-walk-leg-rear {
    0%, 100% { transform: rotate(-15deg) translateY(0); }
    10% { transform: rotate(-11deg) translateY(0); }
    25% { transform: rotate(1deg) translateY(.2px); }
    41% { transform: rotate(15deg) translateY(.4px); }
    56% { transform: rotate(24deg) translateY(0); }
    64% { transform: rotate(23deg) translateY(-2px); }
    74% { transform: rotate(11deg) translateY(-6px); }
    84% { transform: rotate(-6deg) translateY(-8px); }
    94% { transform: rotate(-17deg) translateY(-4px); }
}

@keyframes fox-walk-torso {
    0%, 100% { transform: translateY(0) rotate(.28deg) scale3d(1, 1, 1); }
    25% { transform: translateY(.4px) rotate(-.32deg) scale3d(1.004, .994, 1); }
    50% { transform: translateY(0) rotate(.22deg) scale3d(1, 1, 1); }
    75% { transform: translateY(.4px) rotate(-.26deg) scale3d(1.004, .994, 1); }
}

@keyframes fox-walk-belly {
    0%, 50%, 100% { transform: translateY(0) scaleY(1); }
    25%, 75% { transform: translateY(.35px) scaleY(1.018); }
}

@keyframes fox-walk-tail {
    0%, 100% { transform: rotate(-4deg) skewY(-1deg) translateY(1px); }
    18% { transform: rotate(-1deg) skewY(0) translateY(-.5px); }
    38% { transform: rotate(4deg) skewY(1.5deg) translateY(-1px); }
    58% { transform: rotate(5deg) skewY(2deg) translateY(0); }
    78% { transform: rotate(0) skewY(.2deg) translateY(-1px); }
}

@keyframes fox-walk-head {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(.35deg); }
    25% { transform: translate3d(.25px, 1.55px, 0) rotate(-.55deg); }
    50% { transform: translate3d(0, 0, 0) rotate(.25deg); }
    75% { transform: translate3d(.25px, 1.55px, 0) rotate(-.65deg); }
}

@keyframes fox-look-over {
    0%, 68%, 100% { transform: perspective(320px) rotateY(0) translateX(0); }
    73% { transform: perspective(320px) rotateX(-1deg) rotateY(-3deg) rotateZ(-.4deg) translate3d(-1px, 0, 3px); }
    78%, 84% { transform: perspective(320px) rotateX(-2deg) rotateY(-7deg) rotateZ(-.8deg) translate3d(-2px, 1px, 8px); }
    90% { transform: perspective(320px) rotateX(0) rotateY(-2deg) rotateZ(0) translate3d(-1px, 0, 2px); }
}

@keyframes fox-ear-front {
    0%, 100% { transform: rotate(0); }
    48% { transform: rotate(3deg); }
    58% { transform: rotate(-2deg); }
}

@keyframes fox-ear-rear {
    0%, 100% { transform: rotate(1deg); }
    44% { transform: rotate(-3deg); }
    68% { transform: rotate(2deg); }
}

@keyframes fox-eye-glint {
    0%, 72%, 92%, 100% { opacity: .45; }
    78%, 86% { opacity: 1; }
}

@keyframes fox-face-depth {
    0%, 68%, 100% { opacity: .08; transform: translateX(0); }
    73% { opacity: .15; transform: translateX(-1px); }
    78%, 84% { opacity: .34; transform: translateX(-3px); }
    90% { opacity: .12; transform: translateX(-1px); }
}

@keyframes fox-muzzle-turn {
    0%, 68%, 100% { transform: perspective(220px) rotateY(0) translate3d(0, 0, 0); }
    73% { transform: perspective(220px) rotateY(4deg) translate3d(-1px, 1px, 2px); }
    78%, 84% { transform: perspective(220px) rotateY(9deg) translate3d(-3px, 1px, 6px); }
    90% { transform: perspective(220px) rotateY(2deg) translate3d(-1px, 0, 1px); }
}

@keyframes fox-far-eye {
    0%, 74%, 90%, 100% { opacity: 0; transform: translateX(2px) scale(.82); }
    79%, 85% { opacity: .72; transform: translateX(0) scale(1); }
}

@keyframes fox-friendly-eye {
    0%, 43%, 47%, 100% { transform: scaleY(1); }
    45% { transform: scaleY(.14); }
}

@keyframes fox-friendly-brow {
    0%, 68%, 100% { transform: translateY(0) rotate(0); }
    76%, 86% { transform: translateY(-1px) rotate(-4deg); }
    91% { transform: translateY(0) rotate(1deg); }
}

@keyframes fox-cheek-warmth {
    0%, 68%, 100% { opacity: .28; transform: scale(1); }
    76%, 87% { opacity: .5; transform: scale(1.08); }
}

@keyframes fox-friendly-smile {
    0%, 68%, 100% { transform: translateY(0) scaleY(1); }
    76%, 86% { transform: translateY(1px) scaleY(1.16); }
    91% { transform: translateY(0) scaleY(.96); }
}

@keyframes fox-laugh {
    0%, 76%, 87%, 100% { opacity: 0; transform: translateY(-1px) scaleY(.6); }
    79%, 84% { opacity: .9; transform: translateY(0) scaleY(1); }
}

@keyframes fox-walk-shadow {
    0%, 50%, 100% { opacity: .82; transform: translateX(-1px) scaleX(1); }
    25%, 75% { opacity: .7; transform: translateX(1px) scaleX(.955); }
}

.hero-system {
    --pointer-x: 62%;
    --pointer-y: 12%;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    position: relative;
    width: 100%;
    border: 1px solid rgba(23, 18, 15, .16);
    border-radius: 21px;
    background: rgba(255, 253, 250, .94);
    box-shadow:
        7px 8px 0 rgba(255, 90, 31, .72),
        0 28px 62px rgba(48, 34, 25, .16),
        0 5px 15px rgba(48, 34, 25, .08),
        inset 0 1px 0 rgba(255, 255, 255, .98);
    transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transform-style: preserve-3d;
    transition: transform .16s ease-out, box-shadow .25s ease;
    isolation: isolate;
    overflow: hidden;
}

.hero-system::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    content: "";
    background:
        radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 90, 31, .12), transparent 29%),
        linear-gradient(130deg, rgba(255, 255, 255, .84), transparent 35%);
}
.hero-system > * { position: relative; z-index: 1; }
.hero-system:hover {
    box-shadow:
        7px 8px 0 rgba(255, 90, 31, .78),
        0 34px 70px rgba(48, 34, 25, .18),
        0 6px 17px rgba(48, 34, 25, .09),
        inset 0 1px 0 rgba(255, 255, 255, .98);
}

.hero-system__top,
.hero-system__foot {
    align-items: center;
    font: 650 .61rem/1.35 var(--font-code);
    letter-spacing: .065em;
    text-transform: uppercase;
}

.hero-system__top {
    min-height: 52px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 13px;
    padding: 0 17px;
    border-bottom: 1px solid rgba(23, 18, 15, .11);
    background: linear-gradient(180deg, rgba(250, 249, 248, .94), rgba(241, 238, 235, .86));
    color: var(--muted);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .96);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    backdrop-filter: blur(24px) saturate(140%);
}
.hero-system__traffic { display: flex; align-items: center; gap: 7px; justify-self: start; }
.hero-system__traffic i {
    width: 11px;
    height: 11px;
    border: 1px solid rgba(23, 18, 15, .15);
    border-radius: 50%;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .55);
}
.hero-system__traffic i:nth-child(1) { background: #ff5f57; }
.hero-system__traffic i:nth-child(2) { background: #febc2e; }
.hero-system__traffic i:nth-child(3) { background: #28c840; }
.hero-system__window-title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-self: center;
    color: #403a36;
    font: 700 .68rem/1 var(--font-body);
    letter-spacing: -.01em;
    text-transform: none;
    white-space: nowrap;
}
.hero-system__window-title > i {
    width: 15px;
    height: 15px;
    display: block;
    border: 1px solid rgba(23, 18, 15, .16);
    border-radius: 4px;
    background: linear-gradient(145deg, #ff7b48, var(--orange));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .48);
}

.live-status {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 7px;
    color: var(--ink);
    white-space: nowrap;
}
.live-status > i,
.api-pulse strong > i {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
}
.live-status > i {
    background: #febc2e;
    box-shadow: 0 0 0 4px rgba(254, 188, 46, .15);
    animation: status-pulse 2.4s ease-in-out infinite;
}
.live-status.is-online > i {
    background: #28a745;
    box-shadow: 0 0 0 4px rgba(40, 167, 69, .14);
}
.live-status.is-fallback > i {
    background: #e39a16;
    box-shadow: 0 0 0 4px rgba(227, 154, 22, .14);
}
.api-pulse strong > i {
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 90, 31, .16);
    animation: status-pulse 1.2s ease-in-out 3;
}
.api-pulse.is-online strong > i { background: #28a745; box-shadow: 0 0 0 4px rgba(40, 167, 69, .14); }
.api-pulse.is-fallback strong > i { background: #e39a16; box-shadow: 0 0 0 4px rgba(227, 154, 22, .14); }
.live-status small { color: var(--orange-dark); font: inherit; letter-spacing: 0; }

.hero-system__toolbar {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 17px;
    border-bottom: 1px solid rgba(23, 18, 15, .08);
    background: rgba(255, 255, 255, .62);
    color: var(--muted);
    font: 650 .56rem/1.2 var(--font-code);
    letter-spacing: .07em;
    text-transform: uppercase;
}
.hero-system__toolbar-path { min-width: 0; display: inline-flex; align-items: center; gap: 7px; }
.hero-system__toolbar-path strong { overflow: hidden; color: var(--ink); font: inherit; text-overflow: ellipsis; white-space: nowrap; }
.hero-system__toolbar-path small {
    flex: 0 0 auto;
    padding: 3px 6px;
    border: 1px solid rgba(23, 18, 15, .11);
    border-radius: 6px;
    background: rgba(255, 255, 255, .78);
    color: var(--orange-dark);
    font: inherit;
}
.hero-system__toolbar-scope {
    overflow: hidden;
    color: var(--orange-dark);
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-system__workspace {
    padding: 15px;
    background:
        linear-gradient(rgba(96, 76, 63, .027) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 76, 63, .027) 1px, transparent 1px),
        rgba(255, 250, 246, .56);
    background-size: 34px 34px, 34px 34px, auto;
}
.hero-system__person {
    min-width: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    margin-bottom: 13px;
    padding: 13px;
    border: 1px solid rgba(23, 18, 15, .11);
    border-radius: 15px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 6px 18px rgba(42, 31, 24, .055), inset 0 1px 0 rgba(255, 255, 255, .96);
}
.hero-system__avatar {
    width: 58px;
    height: 58px;
    display: block;
    border: 3px solid #fff;
    outline: 1px solid rgba(23, 18, 15, .18);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(23, 18, 15, .14), 0 0 0 3px rgba(255, 90, 31, .13);
}
.hero-system__identity { min-width: 0; }
.hero-system__identity strong,
.hero-system__identity > span { display: block; }
.hero-system__identity strong {
    margin-bottom: 4px;
    overflow: hidden;
    color: var(--ink);
    font-size: .9rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hero-system__identity > span {
    overflow: hidden;
    color: var(--muted);
    font: 550 .62rem/1.4 var(--font-code);
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hero-system__owner-state {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    border: 1px solid rgba(23, 18, 15, .11);
    border-radius: 999px;
    background: #f7f4f1;
    color: var(--ink-soft);
    font: 650 .51rem/1.25 var(--font-code);
    letter-spacing: .045em;
    text-align: center;
    text-transform: uppercase;
}
.hero-system__owner-state i {
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--orange);
}

.hero-system__flow-panel {
    border: 1px solid rgba(23, 18, 15, .12);
    border-radius: 15px;
    background: rgba(255, 255, 255, .68);
    box-shadow: 0 8px 22px rgba(42, 31, 24, .05), inset 0 1px 0 rgba(255, 255, 255, .9);
    overflow: hidden;
}
.system-flow__head,
.system-flow__row {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 18px minmax(0, 1fr) 18px minmax(0, 1fr);
    align-items: center;
    gap: 5px;
}
.system-flow__head {
    min-height: 31px;
    padding: 6px 9px 5px;
    border-bottom: 1px solid rgba(23, 18, 15, .09);
    background: rgba(245, 242, 239, .7);
    color: #776c65;
    font: 650 .52rem/1.2 var(--font-code);
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}
.system-flow__head > span:first-child { text-align: left; }
.system-flow__head > i { display: block; }
.system-flow { display: grid; margin: 0; }
.system-flow__row {
    min-width: 0;
    padding: 9px;
    transition: background-color .2s ease;
}
.system-flow__row + .system-flow__row { border-top: 1px solid rgba(23, 18, 15, .08); }
.system-flow__row:hover { background: rgba(255, 255, 255, .72); }
.system-flow__index {
    align-self: start;
    padding-top: 5px;
    color: var(--orange-dark);
    font: 700 .52rem/1 var(--font-code);
    letter-spacing: .03em;
}
.system-node {
    position: relative;
    min-width: 0;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    border: 1px solid rgba(23, 18, 15, .12);
    border-radius: 10px;
    background: rgba(255, 255, 255, .86);
    color: var(--ink-soft);
    font: 700 .61rem/1.3 var(--font-body);
    letter-spacing: -.012em;
    text-align: center;
    box-shadow: inset 0 1px 0 #fff;
}
.system-node--accent {
    border-color: rgba(255, 90, 31, .52);
    background: linear-gradient(180deg, #ffeadf, #ffddca);
    color: var(--ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72), 0 3px 9px rgba(255, 90, 31, .08);
}
.system-node--result {
    padding-right: 15px;
    border-color: rgba(23, 18, 15, .74);
    background: linear-gradient(180deg, #2a2522, #181411);
    color: #fffaf6;
    box-shadow: 0 4px 10px rgba(23, 18, 15, .11), inset 0 1px 0 rgba(255, 255, 255, .08);
}
.system-node--result > i {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #42c86a;
    box-shadow: 0 0 0 3px rgba(66, 200, 106, .11);
}
.system-arrow {
    position: relative;
    width: 100%;
    min-width: 0;
    height: 18px;
}
.system-arrow::before {
    position: absolute;
    top: calc(50% - .5px);
    right: 2px;
    left: 0;
    height: 1px;
    content: "";
    background: rgba(170, 51, 0, .42);
}
.system-arrow::after {
    position: absolute;
    top: calc(50% - 3px);
    right: 1px;
    width: 6px;
    height: 6px;
    border-right: 1px solid var(--orange-dark);
    border-bottom: 1px solid var(--orange-dark);
    content: "";
    transform: rotate(-45deg);
}
.system-arrow > i {
    position: absolute;
    top: calc(50% - 2px);
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 6px rgba(255, 90, 31, .52);
    animation: system-route-packet 3.5s var(--flow-delay, 0ms) ease-in-out infinite;
}
.system-arrow + .system-node + .system-arrow > i { animation-delay: calc(var(--flow-delay, 0ms) + 260ms); }

.hero-system__foot {
    min-height: 43px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    padding: 8px 15px;
    border-top: 1px solid rgba(23, 18, 15, .1);
    background: linear-gradient(180deg, rgba(248, 246, 244, .9), rgba(239, 236, 233, .84));
    color: var(--muted);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}
.hero-system__foot-primary { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-soft); }
.hero-system__foot-primary > i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #28a745;
}
.hero-system__foot-scope {
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hero-system__foot > span:last-child { color: var(--orange-dark); text-align: right; white-space: nowrap; }

@keyframes status-pulse { 50% { transform: scale(.78); opacity: .62; } }
@keyframes system-route-packet {
    0%, 14% { opacity: 0; transform: translateX(0); }
    28%, 72% { opacity: 1; }
    100% { opacity: 0; transform: translateX(11px); }
}
@keyframes signal-orbit { to { transform: rotate(360deg); } }
@keyframes signal-ring {
    0%, 100% { transform: scale(.98); opacity: .62; }
    50% { transform: scale(1.035); opacity: 1; }
}
@keyframes signal-core {
    0%, 100% { transform: scale(.92); background-color: rgba(255, 90, 31, .09); }
    50% { transform: scale(1.08); background-color: rgba(255, 90, 31, .18); }
}
@keyframes signal-dot {
    0%, 100% { transform: scale(.82); box-shadow: 0 0 0 0 rgba(255, 90, 31, 0); }
    50% { transform: scale(1.18); box-shadow: 0 0 0 7px rgba(255, 90, 31, .09); }
}

/* Proof */
.proof-strip {
    position: relative;
    z-index: 2;
    border-block: 2px solid var(--ink);
    background: var(--orange);
    color: var(--ink);
}
.proof-strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 23px clamp(17px, 2.5vw, 34px);
    border-right: 1px solid rgba(23, 18, 15, .45);
}
.proof-item:first-child { border-left: 1px solid rgba(23, 18, 15, .45); }
.proof-item strong { display: block; font: 750 clamp(1.9rem, 3.5vw, 3.4rem)/1 var(--font-display); letter-spacing: -.055em; }
.proof-item span { margin-top: 8px; font-size: .73rem; font-weight: 760; letter-spacing: .06em; text-transform: uppercase; }

/* Shared sections */
.content-section { padding: var(--space-section) 0; }
.home-main .content-section { padding-block: clamp(64px, 7vw, 100px); }
.content-section--panel { border-block: 1px solid var(--line); background: rgba(255, 255, 255, .7); }
.content-section--tight { padding-block: var(--space-section-tight); }
.home-main .solution-lab,
.home-main #uslugi { background: var(--section-cream); }
.home-main #realizacje,
.home-main #o-mnie,
.home-main #poradnik,
.home-main #kontakt { background: var(--section-light); }
.home-main .content-section--tight,
.home-main #poradnik + .content-section--panel { background: var(--section-warm); }
.home-main #uslugi,
.home-main .content-section--tight,
.home-main #poradnik,
.home-main #kontakt { border-top: 1px solid var(--line); }
.section-head { max-width: 850px; margin-bottom: var(--space-head); }
.home-main .section-head { margin-bottom: clamp(40px, 5vw, 62px); }
.section-head > p,
.section-head--split > p,
.solution-lab__intro > p {
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.35vw, 1.14rem);
    line-height: 1.72;
}
.section-head > p { max-width: 690px; margin-bottom: 0; }
.section-head--split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr);
    align-items: end;
    gap: clamp(40px, 8vw, 110px);
}
.section-head--split > * { min-width: 0; }
.section-head--split h1,
.section-head--split h2 { margin-bottom: 0; }
.section-head--split > p { margin: 0; }
.section-action { margin: 30px 0 0; }

/* Solution selector */
.solution-lab { position: relative; background: var(--paper); }
.home-main .solution-lab { padding-bottom: clamp(34px, 4vw, 58px); }
.home-main #realizacje { padding-top: clamp(46px, 5vw, 72px); }
.solution-lab::before {
    position: absolute;
    top: 68px;
    left: max(24px, calc((100vw - var(--shell)) / 2));
    width: 86px;
    height: 14px;
    content: "";
    background: repeating-linear-gradient(90deg, var(--orange) 0 3px, transparent 3px 8px);
}
.solution-lab__intro { display: grid; gap: 22px; }
.api-pulse {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 5px 16px;
    padding: 15px 17px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}
.api-pulse > span { color: var(--orange-dark); font: 650 .64rem/1.4 var(--font-code); letter-spacing: .08em; }
.api-pulse strong { display: flex; align-items: center; gap: 8px; font: 700 .66rem/1.4 var(--font-code); }
.api-pulse small { grid-column: 1 / -1; color: var(--muted); font-size: .7rem; }

.solution-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 2px solid var(--ink); }
.solution-card {
    position: relative;
    min-width: 0;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 25px;
    border: 0;
    border-right: 1px solid var(--ink);
    background: var(--surface);
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
}
.solution-card:last-child { border-right: 0; }
.solution-card::before {
    position: absolute;
    inset: auto 0 0;
    height: 8px;
    content: "";
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s ease;
}
.solution-card:hover,
.solution-card.is-active { background: var(--surface-orange); }
.solution-card:hover::before,
.solution-card.is-active::before { transform: scaleX(1); }
.solution-card__top { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font: 650 .65rem/1 var(--font-code); }
.solution-card__top span:last-child {
    min-width: 48px;
    padding: 6px 8px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    color: var(--ink);
    text-align: center;
}
.solution-card > strong { margin-top: auto; margin-bottom: 13px; color: var(--orange-dark); font: 680 .72rem/1.4 var(--font-code); letter-spacing: .06em; text-transform: uppercase; }
.solution-card h3 { max-width: 240px; margin-bottom: 12px; font: 720 clamp(1.2rem, 1.55vw, 1.45rem)/1.16 var(--font-display); letter-spacing: -.04em; }
.solution-card p { margin-bottom: 0; color: var(--ink-soft); font-size: .87rem; line-height: 1.62; }
.solution-card__arrow {
    position: absolute;
    top: 58px;
    right: 22px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: var(--surface);
    transition: transform .25s ease, background-color .25s ease;
}
.solution-card:hover .solution-card__arrow,
.solution-card.is-active .solution-card__arrow { transform: rotate(45deg); background: var(--orange); }

.solution-result {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 26px 0 0;
}
.solution-result > div:first-child { min-height: 56px; }
.solution-result span,
.solution-result strong { display: block; }
.solution-result > div:first-child > span { color: var(--muted); font-size: .78rem; }
.solution-result > div:first-child > strong { margin-top: 3px; font-size: 1.03rem; }
.solution-result p { max-width: 690px; margin: 4px 0 0; color: var(--ink-soft); font-size: .85rem; }
.solution-result__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

/* Case studies */
.cases-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.case-card {
    position: relative;
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    min-height: 540px;
    border: 2px solid var(--ink);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 8px 8px 0 var(--line);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.case-card:hover { transform: translate(-4px, -4px); box-shadow: 13px 13px 0 var(--orange); }
.case-card--0 { grid-column: span 6; }
.case-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--ink);
    color: var(--muted);
    font: 650 .63rem/1.3 var(--font-code);
    letter-spacing: .075em;
}
.case-card__status { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); }
.case-card__status::before { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); content: ""; }

.case-card__visual {
    min-height: 280px;
    padding: 18px;
    border-bottom: 1px solid var(--ink);
    background: var(--paper-deep);
    overflow: hidden;
}
.case-card--0 .case-card__visual { background: #d9d1ca; }
.case-card--1 .case-card__visual { background: #ebe3dc; }
.case-card--2 .case-card__visual { background: #ddd6cf; }
.case-card--3 .case-card__visual { background: #e5ddd6; }
.case-card--4 .case-card__visual { background: #eee7df; }
.case-card--5 .case-card__visual { background: #e2dad3; }
.case-visual__chrome {
    height: 42px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    border: 1px solid rgba(23, 18, 15, .2);
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(244, 239, 235, .93));
    box-shadow: inset 0 1px 0 #fff;
}
.case-visual__chrome::after { width: 52px; justify-self: end; content: ""; }
.case-visual__traffic { display: flex; align-items: center; gap: 7px; justify-self: start; }
.case-visual__traffic i {
    width: 10px;
    height: 10px;
    border: 1px solid rgba(23, 18, 15, .17);
    border-radius: 50%;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .52);
}
.case-visual__traffic i:nth-child(1) { background: #ff5f57; }
.case-visual__traffic i:nth-child(2) { background: #febc2e; }
.case-visual__traffic i:nth-child(3) { background: #28c840; }
.case-visual__title { min-width: 0; max-width: 100%; justify-self: center; overflow: hidden; color: var(--ink-soft); font: 600 .55rem/1 var(--font-code); letter-spacing: .025em; text-overflow: ellipsis; white-space: nowrap; }
.case-visual__canvas {
    position: relative;
    min-height: 210px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(23, 18, 15, .2);
    border-top: 0;
    border-radius: 0 0 14px 14px;
    background:
        radial-gradient(circle at 82% 16%, rgba(255, 90, 31, .14), transparent 32%),
        linear-gradient(rgba(23, 18, 15, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 18, 15, .055) 1px, transparent 1px),
        rgba(255, 255, 255, .86);
    background-size: auto, 28px 28px, 28px 28px;
    background-repeat: no-repeat, repeat, repeat;
    box-shadow: 0 18px 34px rgba(55, 33, 20, .14), inset 0 1px 0 rgba(255, 255, 255, .88);
    overflow: hidden;
}
.case-visual__canvas--media { display: block; background: #171513; }
.case-visual__canvas--media::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 7, 6, .02) 36%, rgba(8, 7, 6, .7) 100%);
    content: "";
    pointer-events: none;
}
.case-visual__canvas--media > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(1) contrast(1.08) brightness(.9);
    transform: scale(1.01);
    transition: filter .55s ease, transform .7s cubic-bezier(.2, .75, .25, 1);
}
.case-card:hover .case-visual__canvas--media > img {
    filter: grayscale(1) contrast(1.08) brightness(.94);
    transform: scale(1.045);
}
.case-visual__canvas--icon {
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 90, 31, .2), transparent 34%),
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
        #121416;
    background-size: auto, 28px 28px, 28px 28px, auto;
}
.case-visual__canvas--icon > img { object-fit: contain; padding: clamp(32px, 8%, 58px); transform: scale(.84); }
.case-card:hover .case-visual__canvas--icon > img { transform: scale(.89); }
.case-visual__caption {
    position: absolute;
    z-index: 2;
    left: 15px;
    bottom: 15px;
    display: grid;
    gap: 3px;
    padding: 9px 11px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 9px;
    background: rgba(8, 7, 6, .76);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.case-visual__caption span { color: rgba(255, 255, 255, .68); font: 600 .48rem/1.2 var(--font-code); letter-spacing: .08em; }
.case-visual__caption strong { font: 720 .68rem/1.2 var(--font-display); letter-spacing: -.02em; }
.case-visual__canvas > span { position: relative; z-index: 2; font: 780 clamp(2.5rem, 7vw, 6.8rem)/1 var(--font-display); letter-spacing: -.08em; }
.case-visual__canvas > strong { position: absolute; top: 15px; right: 15px; z-index: 2; padding: 7px 10px; border: 1px solid rgba(23, 18, 15, .18); border-radius: 999px; background: rgba(255, 255, 255, .84); color: var(--orange-dark); box-shadow: 0 5px 13px rgba(55, 33, 20, .08); font: 700 .57rem/1 var(--font-code); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.case-visual__canvas > i { position: absolute; display: block; border: 1px solid rgba(23, 18, 15, .22); border-radius: 50%; }
.case-visual__canvas > i:nth-of-type(1) { width: 150px; height: 150px; top: -40px; left: -35px; background: rgba(255, 90, 31, .32); }
.case-visual__canvas > i:nth-of-type(2) { width: 72px; height: 72px; right: 9%; bottom: -25px; background: var(--orange); }
.case-visual__canvas > i:nth-of-type(3) { width: 18px; height: 18px; left: 17%; bottom: 17%; background: var(--ink); }
.case-card__body { min-width: 0; padding: clamp(24px, 3vw, 36px); }
.case-card__type { display: block; margin-bottom: 11px; color: var(--orange-dark); font: 650 .66rem/1.4 var(--font-code); letter-spacing: .08em; }
.case-card h2,
.case-card h3 { max-width: 560px; margin-bottom: 13px; font: 720 clamp(1.5rem, 2.45vw, 2.45rem)/1.13 var(--font-display); letter-spacing: -.045em; }
.case-card p { max-width: 590px; margin-bottom: 19px; color: var(--ink-soft); font-size: .91rem; }
.case-card__meta { display: flex; flex-wrap: wrap; gap: 7px; }
.case-card__meta span { padding: 6px 9px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--ink-soft); font: 600 .58rem/1 var(--font-code); }
.case-card__arrow {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--orange);
    font-size: 1.15rem;
    transition: transform .25s ease;
}
.case-card:hover .case-card__arrow { transform: rotate(45deg); }

/* Services */
.featured-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 24px; }
.service-feature {
    position: relative;
    min-height: 530px;
    display: flex;
    flex-direction: column;
    padding: clamp(28px, 4vw, 48px);
    border: 2px solid var(--ink);
    border-radius: 18px;
    overflow: hidden;
}
.service-feature--ai { background: var(--orange); box-shadow: 10px 10px 0 var(--ink); }
.service-feature--web { background: var(--surface); box-shadow: 10px 10px 0 var(--surface-orange); }
.service-feature__number { color: var(--ink-soft); font: 650 .68rem/1 var(--font-code); letter-spacing: .1em; }
.service-feature--ai .service-feature__number,
.service-feature.service-feature--ai > p { color: var(--ink); }
.service-feature__icon {
    position: absolute;
    top: 28px;
    right: 28px;
    min-width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    padding-inline: 10px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--surface);
    font: 750 .8rem/1 var(--font-display);
    box-shadow: 5px 5px 0 var(--ink);
}
.service-feature h2,
.service-feature h3 { max-width: 530px; margin: auto 0 16px; padding-top: 60px; font: 720 clamp(1.65rem, 3vw, 2.95rem)/1.12 var(--font-display); letter-spacing: -.05em; }
.service-feature > p { max-width: 570px; color: var(--ink-soft); }
.service-feature ul { display: grid; gap: 9px; margin: 15px 0 28px; padding: 0; list-style: none; }
.service-feature li { position: relative; padding-left: 22px; font-size: .87rem; font-weight: 610; }
.service-feature li::before { position: absolute; top: .72em; left: 0; width: 10px; height: 2px; background: var(--ink); content: ""; }
.service-feature .button { align-self: flex-start; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 2px solid var(--ink); }
.service-card {
    position: relative;
    min-width: 0;
    min-height: 285px;
    display: flex;
    flex-direction: column;
    padding: 25px;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    background: var(--surface);
    transition: background-color .22s ease, transform .22s ease;
}
.service-card:nth-child(3n) { border-right: 0; }
.service-card:nth-last-child(-n+3) { border-bottom: 0; }
.service-card:hover { z-index: 1; background: var(--surface-orange); transform: translateY(-4px); }
.service-card__tag { margin-bottom: auto; color: var(--orange-dark); font: 650 .61rem/1.3 var(--font-code); letter-spacing: .08em; }
.service-card h3 { margin: 35px 0 11px; font-size: clamp(1.08rem, 1.55vw, 1.4rem); }
.service-card p { margin-bottom: 21px; color: var(--ink-soft); font-size: .84rem; }
.service-card__link { color: var(--ink); font-size: .76rem; font-weight: 780; }

/* Process */
.content-section--process { position: relative; border-block: 2px solid var(--ink); background: var(--surface-orange); overflow: hidden; }
.content-section--process::after {
    position: absolute;
    right: -10vw;
    bottom: -35vw;
    width: 65vw;
    height: 65vw;
    border: 1px solid rgba(23, 18, 15, .18);
    border-radius: 50%;
    content: "";
}
.process-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 2px solid var(--ink); }
.process-grid::before {
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    height: 10px;
    pointer-events: none;
    content: "";
    background: linear-gradient(90deg, var(--ink) 0 25%, transparent 25% 25.5%, var(--ink) 25.5% 50%, transparent 50% 50.5%, var(--ink) 50.5% 75%, transparent 75% 75.5%, var(--ink) 75.5%);
    clip-path: polygon(0 40%, 96% 40%, 96% 0, 100% 50%, 96% 100%, 96% 60%, 0 60%);
}
.process-step { position: relative; min-width: 0; min-height: 320px; padding: 35px 25px 25px; border-right: 1px solid var(--ink); }
.process-step:last-child { border-right: 0; }
.process-step > span { display: block; margin-bottom: 72px; font: 700 .72rem/1 var(--font-code); }
.process-step h2,
.process-step h3 { margin-bottom: 13px; font: 720 clamp(1.2rem, 1.7vw, 1.55rem)/1.2 var(--font-display); letter-spacing: -.04em; }
.process-step p { margin: 0; color: var(--ink-soft); font-size: .86rem; }
main.wrap .process-step {
    min-height: 0;
    padding: clamp(26px, 3vw, 34px) clamp(22px, 2.4vw, 28px);
}

/* About and region */
.about-grid { display: grid; grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr); align-items: center; gap: clamp(54px, 9vw, 130px); }
.about-grid > * { min-width: 0; }
.about-portrait { position: relative; min-width: 0; }
.about-portrait__frame {
    position: relative;
    max-width: 460px;
    padding: 34px;
    border: 2px solid var(--ink);
    border-radius: 45% 45% 18px 18px;
    background: var(--orange);
    box-shadow: 14px 14px 0 var(--ink);
    overflow: hidden;
}
.about-portrait__frame::before {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(23, 18, 15, .35);
    border-radius: 50% 50% 0 0;
    content: "";
}
.about-portrait__label { position: absolute; z-index: 3; top: 25px; right: 25px; padding: 6px 9px; border: 1px solid var(--ink); background: var(--surface); font: 650 .58rem/1 var(--font-code); }
.about-portrait__identity {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    align-content: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    overflow: hidden;
    background:
        linear-gradient(rgba(23, 18, 15, .11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 18, 15, .11) 1px, transparent 1px),
        var(--surface);
    background-size: 34px 34px;
}
.about-portrait__identity::before,
.about-portrait__identity::after {
    position: absolute;
    border: 1px solid rgba(255, 90, 31, .48);
    border-radius: 50%;
    content: "";
}
.about-portrait__identity::before { width: 72%; aspect-ratio: 1; animation: signal-orbit 22s linear infinite; }
.about-portrait__identity::after { width: 46%; aspect-ratio: 1; border-style: dashed; animation: signal-orbit 15s linear infinite reverse; }
.about-portrait__identity > strong {
    position: relative;
    z-index: 2;
    color: var(--ink);
    font: 800 clamp(4.8rem, 9vw, 8.2rem)/.78 var(--font-display);
    letter-spacing: -.1em;
    transform: translateX(-.05em);
}
.about-portrait__status,
.about-portrait__role {
    position: relative;
    z-index: 2;
    font: 700 .58rem/1 var(--font-code);
    letter-spacing: .11em;
}
.about-portrait__status { display: flex; align-items: center; gap: 7px; margin-bottom: 18px; }
.about-portrait__status i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255, 90, 31, .16); animation: status-pulse 1.8s ease-in-out infinite; }
.about-portrait__role { margin-top: 18px; color: var(--orange-dark); }
.about-portrait__tracks { position: absolute; z-index: 1; inset: 0; pointer-events: none; }
.about-portrait__tracks i { position: absolute; width: 8px; height: 8px; border: 1px solid var(--ink); border-radius: 50%; background: var(--orange); }
.about-portrait__tracks i:nth-child(1) { top: 23%; left: 14%; animation: signal-dot 5.2s ease-in-out infinite; }
.about-portrait__tracks i:nth-child(2) { top: 62%; right: 11%; animation: signal-dot 6.1s ease-in-out -2s infinite reverse; }
.about-portrait__tracks i:nth-child(3) { bottom: 15%; left: 28%; animation: signal-dot 4.7s ease-in-out -1s infinite; }
.about-portrait__note { position: relative; z-index: 3; max-width: 420px; margin: -2px 0 0 22px; padding: 17px 20px; border: 2px solid var(--ink); background: var(--surface); color: var(--ink-soft); font-size: .83rem; box-shadow: 7px 7px 0 var(--orange); }
.about-copy > p { max-width: 730px; color: var(--ink-soft); font-size: clamp(.98rem, 1.3vw, 1.1rem); }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 34px; border: 1px solid var(--ink); }
.about-value { padding: 18px; border-right: 1px solid var(--ink); }
.about-value:last-child { border-right: 0; }
.about-value strong,
.about-value span { display: block; }
.about-value strong { margin-bottom: 7px; color: var(--orange-dark); font: 700 .63rem/1.3 var(--font-code); }
.about-value span { color: var(--ink-soft); font-size: .77rem; }

.area-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: clamp(40px, 7vw, 95px);
    padding: clamp(34px, 5vw, 64px);
    border: 2px solid var(--ink);
    border-radius: 20px;
    background: var(--orange);
    box-shadow: 12px 12px 0 var(--ink);
    overflow: hidden;
}
.area-card::after { position: absolute; right: -80px; bottom: -110px; width: 300px; height: 300px; border: 1px solid rgba(23, 18, 15, .35); border-radius: 50%; content: ""; }
.area-card h2 { font-size: clamp(1.9rem, 3.4vw, 3.5rem); }
.area-card p { max-width: 590px; color: var(--ink); }
.area-card .section-kicker,
.area-card .button--text { color: var(--ink); }
.city-cloud { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 9px; }
.city-cloud a {
    padding: 9px 13px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--surface);
    font: 650 .71rem/1.2 var(--font-code);
    transition: transform .2s ease, background-color .2s ease;
}
.city-cloud a:hover { transform: translateY(-3px); background: var(--surface-orange); }

/* Journal */
.journal-grid,
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.journal-card,
.blog-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 27px;
    border: 2px solid var(--ink);
    border-radius: 14px;
    background: var(--surface);
    transition: transform .24s ease, box-shadow .24s ease, background-color .24s ease;
}
.journal-card:hover,
.blog-card:hover { transform: translate(-3px, -3px); background: var(--surface-warm); box-shadow: 8px 8px 0 var(--orange); }
.journal-card__meta,
.blog-card-cat { color: var(--orange-dark); font: 650 .62rem/1.4 var(--font-code); letter-spacing: .07em; }
.journal-card h3,
.blog-card h2 { margin: auto 0 13px; padding-top: 45px; font: 720 clamp(1.25rem, 1.8vw, 1.62rem)/1.2 var(--font-display); letter-spacing: -.035em; }
.journal-card p,
.blog-card p { color: var(--ink-soft); font-size: .85rem; }
.journal-card__more,
.blog-card-more { margin-top: auto; padding-top: 18px; font-size: .76rem; font-weight: 780; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: clamp(55px, 9vw, 130px); }
.faq-layout > * { min-width: 0; }
.faq-layout .section-head { position: sticky; top: calc(var(--header-height) + 40px); margin-bottom: 0; }
.faq-list,
.faq { border-top: 2px solid var(--ink); }
.faq-list details,
.faq details { border-bottom: 1px solid var(--ink); }
.faq-list summary,
.faq summary {
    position: relative;
    display: grid;
    grid-template-columns: 38px 1fr 24px;
    align-items: center;
    gap: 10px;
    padding: 23px 0;
    color: var(--ink);
    font-weight: 760;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}
.faq-list summary::-webkit-details-marker,
.faq summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: var(--orange-dark); font: 650 .61rem/1 var(--font-code); }
.faq-list summary > i,
.faq summary::after {
    width: 18px;
    height: 18px;
    justify-self: end;
    border: 1px solid var(--ink);
    border-radius: 50%;
    content: "+";
    display: grid;
    place-items: center;
    font: 700 .8rem/1 var(--font-code);
    font-style: normal;
    transition: transform .2s ease, background-color .2s ease;
}
.faq summary::after { grid-column: 3; }
.faq-list details[open] summary > i,
.faq details[open] summary::after { transform: rotate(45deg); background: var(--orange); }
.faq-list details p,
.faq details p { max-width: 780px; margin: -7px 0 23px 48px; color: var(--ink-soft); }

/* Contact */
.contact-section { padding-bottom: clamp(100px, 12vw, 170px); }
.contact-panel {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    border: 2px solid var(--ink);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: 14px 14px 0 var(--orange);
    overflow: hidden;
}
.contact-copy { padding: clamp(34px, 5vw, 62px); border-right: 1px solid var(--ink); background: var(--surface-warm); }
.contact-copy h2 { font-size: clamp(2rem, 3.65vw, 3.8rem); }
.contact-copy > p { color: var(--ink-soft); }
.contact-methods { display: grid; gap: 0; margin-top: 35px; border-top: 1px solid var(--ink); }
.contact-method {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--ink);
    transition: color .2s ease, padding-left .2s ease;
}
.contact-method:hover { padding-left: 8px; color: var(--orange-dark); }
.contact-method > span { color: var(--muted); font: 650 .59rem/1 var(--font-code); }
.contact-method strong { min-width: 0; font-size: .84rem; overflow-wrap: break-word; word-break: normal; }
.contact-method[href^="mailto:"] strong { overflow-wrap: anywhere; }
.contact-method i { font-style: normal; }

.contact-form { padding: clamp(34px, 5vw, 62px); background: var(--surface); }
.contact-form.is-sent { background: linear-gradient(135deg, var(--surface), var(--surface-warm)); }
.form-interest { min-width: 0; margin: 0 0 27px; padding: 0; border: 0; }
.form-interest legend,
.form-field label { display: block; margin-bottom: 8px; color: var(--ink); font-size: .76rem; font-weight: 760; }
.form-interest > p { margin-bottom: 13px; color: var(--muted); font-size: .73rem; }
.interest-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.interest-chips button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    background: var(--paper);
    color: var(--ink-soft);
    font-size: .72rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}
.interest-chips button:hover { transform: translateY(-2px); border-color: var(--ink); }
.interest-chips button.is-active { border-color: var(--ink); background: var(--orange); color: var(--ink); box-shadow: 3px 3px 0 var(--ink); }
.interest-chips span { min-width: 28px; padding: 4px 5px; border: 1px solid currentColor; border-radius: 999px; font: 650 .56rem/1 var(--font-code); text-align: center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-field { margin-bottom: 16px; }
.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: var(--paper);
    color: var(--ink);
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.form-field input { height: 52px; padding: 0 14px; }
.form-field textarea { min-height: 150px; padding: 13px 14px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { outline: 0; border-color: var(--orange-dark); background: var(--surface); box-shadow: 0 0 0 4px rgba(255, 90, 31, .14); }
.captcha-wrap { width: 100%; max-width: 100%; min-height: 68px; margin: 7px 0 12px; overflow: hidden; }
.captcha-wrap > * { max-width: 100%; }
.form-config-error { padding: 12px; border: 1px solid var(--orange-dark); background: var(--surface-warm); color: var(--orange-deep); font-size: .78rem; }
.form-status { min-height: 26px; margin-bottom: 10px; color: var(--ink-soft); font-size: .8rem; font-weight: 700; }
.form-status.success { padding: 12px 14px; border: 1px solid var(--ink); background: var(--surface-orange); color: var(--ink); }
.form-status.error { color: #a22c00; }
.contact-form__submit { width: 100%; }
.contact-form button:disabled { cursor: wait; opacity: .65; }
.form-note { margin: 15px 0 0; color: var(--muted); font-size: .68rem; line-height: 1.55; }
.form-note a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 3px; }

/* Footer */
.site-footer { border-top: 2px solid var(--ink); background: var(--orange); color: var(--ink); }
.site-footer__signal {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    align-items: end;
    gap: 40px;
    padding-block: var(--space-footer);
    border-bottom: 2px solid var(--ink);
}
.site-footer__signal p { max-width: 440px; margin: 0; font-size: clamp(1rem, 1.5vw, 1.25rem); font-weight: 650; }
.site-footer__signal a { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; font: 750 clamp(2rem, 5vw, 5.5rem)/.95 var(--font-display); letter-spacing: -.06em; }
.site-footer__signal a > span:last-child { width: 68px; height: 68px; display: grid; place-items: center; flex: 0 0 auto; border: 2px solid var(--ink); border-radius: 50%; background: var(--surface); font: 500 1.5rem/1 var(--font-body); transition: transform .25s ease; }
.site-footer__signal a:hover > span:last-child { transform: rotate(45deg); }
.site-footer__grid { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: clamp(30px, 5vw, 68px); padding-block: clamp(44px, 4.5vw, 54px); }
.site-footer__brand p { max-width: 330px; margin: 23px 0 0; color: #2d1b14; font-size: .8rem; }
.site-brand--footer .site-brand__mark { background: var(--surface); }
.site-footer__label { margin-bottom: 14px; font: 700 .61rem/1.3 var(--font-code); letter-spacing: .1em; text-transform: uppercase; }
.site-footer__grid > div:not(.site-footer__brand) { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer__grid a,
.site-footer__grid span,
.site-footer__link-button { margin-bottom: 9px; color: #2d1b14; font-size: .76rem; line-height: 1.5; }
.site-footer__contact a[href^="mailto:"] { overflow-wrap: anywhere; }
.site-footer__grid a:hover,
.site-footer__link-button:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.site-footer__link-button { padding: 0; border: 0; background: transparent; font-family: inherit; cursor: pointer; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 20px; border-top: 1px solid rgba(23, 18, 15, .45); font: 650 .57rem/1.4 var(--font-code); letter-spacing: .06em; }
.mobile-contact-bar { display: none; }

.mk-floating-top {
    position: fixed;
    right: max(18px, env(safe-area-inset-right, 0px));
    bottom: max(18px, env(safe-area-inset-bottom, 0px));
    z-index: 92;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--orange);
    color: var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
    font: 800 1.15rem/1 var(--font-code);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 14px, 0) scale(.9);
    transition: opacity .2s ease, transform .24s cubic-bezier(.2, .8, .2, 1), visibility 0s linear .24s, box-shadow .18s ease;
}

.mk-floating-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
    transition-delay: 0s;
}

.mk-floating-top:hover {
    box-shadow: 2px 2px 0 var(--ink);
    transform: translate3d(2px, 2px, 0) scale(1);
}

.mk-floating-top:active { transform: translate3d(3px, 3px, 0) scale(.97); box-shadow: 1px 1px 0 var(--ink); }

@media (min-width: 761px) {
    .mobile-contact-bar {
        position: fixed;
        right: max(76px, calc(66px + env(safe-area-inset-right, 0px)));
        bottom: max(18px, env(safe-area-inset-bottom, 0px));
        left: auto;
        z-index: 91;
        display: flex;
        gap: 8px;
        pointer-events: none;
        visibility: hidden;
        opacity: 0;
        transform: translate3d(0, 14px, 0) scale(.92);
        transition: opacity .2s ease, transform .24s cubic-bezier(.2, .8, .2, 1), visibility 0s linear .24s;
    }
    .mobile-contact-bar.is-visible {
        pointer-events: auto;
        visibility: visible;
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        transition-delay: 0s;
    }
    .mobile-contact-action {
        width: 48px;
        height: 48px;
        display: grid;
        flex: 0 0 48px;
        place-items: center;
        padding: 0;
        border: 2px solid var(--ink);
        border-radius: 50%;
        background: rgba(255, 253, 250, .98);
        color: var(--ink);
        box-shadow: 4px 4px 0 var(--ink);
        transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
    }
    .mobile-contact-action--phone { background: var(--orange); }
    .mobile-contact-action svg {
        width: 22px;
        height: 22px;
        display: block;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
    .mobile-contact-action--whatsapp svg path:last-child { fill: currentColor; stroke: none; }
    .mobile-contact-action:hover {
        box-shadow: 2px 2px 0 var(--ink);
        transform: translate3d(2px, 2px, 0);
    }
    .mobile-contact-action:active {
        box-shadow: 1px 1px 0 var(--ink);
        transform: translate3d(3px, 3px, 0) scale(.97);
    }
}

/* Shared secondary pages */
main.wrap { padding-bottom: var(--space-page-end); }
.crumbs { padding: 28px 0 18px; color: var(--muted); font: 550 .68rem/1.5 var(--font-code); }
.crumbs a { color: var(--orange-dark); }
.crumbs a:hover { text-decoration: underline; }

/* One calm, repeatable opening for every content page. */
.subpage-intro {
    position: relative;
    padding: clamp(20px, 1.8vw, 28px) 0 clamp(46px, 4.5vw, 62px);
}
.subpage-intro__crumbs,
.section-page__primary .subpage-intro .subpage-intro__crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 8px;
    margin: 0;
    padding: 0;
}
.crumbs__separator { color: var(--line-strong); }
.subpage-intro__body {
    max-width: 1040px;
    margin-top: clamp(18px, 1.7vw, 24px);
}
.subpage-intro .section-kicker,
.subpage-intro .lp-spec-badge { margin-bottom: clamp(12px, 1.3vw, 17px); }
.subpage-intro h1 {
    max-width: 1000px;
    margin: 0;
    font-size: clamp(2.65rem, 5.2vw, 5.45rem);
    line-height: .99;
}
.subpage-intro__lead {
    max-width: 820px;
    margin: clamp(20px, 2.2vw, 28px) 0 0;
    color: var(--ink-soft);
    font-size: clamp(1.02rem, 1.35vw, 1.18rem);
    line-height: 1.68;
}
.subpage-intro__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin: 15px 0 0;
    color: var(--muted);
    font: 600 .68rem/1.55 var(--font-code);
}
.subpage-intro__meta a { color: var(--orange-dark); }
.subpage-intro__note {
    max-width: 760px;
    margin: 20px 0 0;
    padding-left: 18px;
    border-left: 4px solid var(--orange);
    color: var(--ink-soft);
}
.subpage-intro .cta-row { margin-top: 28px; }
.faq-list--wide { width: 100%; max-width: 1040px; }

main.wrap > section { padding: var(--space-section) 0; border-top: 1px solid var(--line); }
main.wrap > .subpage-intro + section { padding-top: 0; }
.lp-hero { max-width: 1030px; padding-top: clamp(65px, 9vw, 120px) !important; }
.lp-hero h1 { font-size: clamp(2.65rem, 6.4vw, 6.2rem); }
.lp-hero .lead,
.lead { max-width: 830px; color: var(--ink-soft); font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.7; }
.service-page-hero__note { max-width: 740px; margin-top: 20px; padding-left: 18px; border-left: 4px solid var(--orange); color: var(--ink-soft); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.service-section-head { margin-bottom: 36px; }
.service-section-head h2 { font-size: clamp(1.9rem, 3.5vw, 3.6rem); }
.local-service-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}
.local-service-hero__meta span {
    padding: 7px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, .74);
    color: var(--orange-deep);
    font: 680 .61rem/1.15 var(--font-code);
    letter-spacing: .04em;
}
.feat { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0; padding: 0; border: 2px solid var(--ink); list-style: none; }
.feat li { min-height: 175px; padding: 28px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--surface); }
.feat li:nth-child(2n) { border-right: 0; }
.feat li:nth-last-child(-n+2) { border-bottom: 0; }
.feat b,
.feat span { display: block; }
.feat b { margin-bottom: 11px; font-size: 1.06rem; }
.feat span { color: var(--ink-soft); font-size: .88rem; }
.lp-spec,
.service-why,
.service-final-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    padding: clamp(32px, 5vw, 58px) !important;
    border: 2px solid var(--ink) !important;
    border-radius: 18px;
    background: var(--surface-orange);
    box-shadow: 10px 10px 0 var(--ink);
}
.lp-spec > *,
.service-final-cta > * { min-width: 0; }
.lp-spec h2,
.service-final-cta h2 { font-size: clamp(1.6rem, 3vw, 3rem); }
.lp-spec p,
.service-final-cta p { max-width: 720px; margin-bottom: 0; color: var(--ink-soft); }
.service-why { grid-template-columns: 1fr 1fr; }
.service-why__points { display: grid; gap: 9px; }
.service-why__points span { padding: 12px 14px; border: 1px solid var(--ink); background: var(--surface); font-size: .8rem; font-weight: 680; }
.local-context { grid-template-columns: minmax(0, 1.25fr) minmax(290px, .75fr); }
.local-context__travel {
    min-width: 0;
    padding: clamp(22px, 3vw, 30px);
    border: 1px solid var(--ink);
    border-radius: 12px;
    background: rgba(255, 255, 255, .86);
}
.local-context__travel strong,
.local-context__travel p,
.local-context__travel small { display: block; }
.local-context__travel strong { margin-bottom: 12px; font: 720 1rem/1.3 var(--font-display); }
.local-context__travel p { margin-bottom: 18px; color: var(--ink-soft); font-size: .86rem; }
.local-context__travel small { color: var(--orange-deep); font: 600 .63rem/1.55 var(--font-code); }
.local-fit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 2px solid var(--ink);
    background: var(--surface);
}
.local-fit-grid article {
    min-width: 0;
    min-height: 250px;
    padding: clamp(24px, 3vw, 34px);
    border-right: 1px solid var(--ink);
}
.local-fit-grid article:last-child { border-right: 0; }
.local-fit-grid article > span {
    display: block;
    margin-bottom: clamp(38px, 5vw, 62px);
    color: var(--orange-dark);
    font: 700 .66rem/1 var(--font-code);
}
.local-fit-grid h3 { margin-bottom: 12px; font: 720 clamp(1.05rem, 1.6vw, 1.35rem)/1.25 var(--font-display); letter-spacing: -.035em; }
.local-fit-grid p { margin: 0; color: var(--ink-soft); font-size: .86rem; }
.local-parent-link {
    width: fit-content;
    display: inline-flex;
    margin-top: 20px;
    color: var(--orange-deep);
    font-size: .78rem;
    font-weight: 760;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}
.links-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }
.links-grid a { min-height: 88px; display: flex; align-items: center; padding: 18px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--surface); font-size: .82rem; font-weight: 680; transition: background-color .2s ease; }
.links-grid a:nth-child(3n) { border-right: 0; }
.links-grid a:hover { background: var(--surface-orange); }

.article-body { max-width: 840px; margin-inline: auto; padding: clamp(28px, 5vw, 58px); border: 1px solid var(--line); border-radius: 16px; background: var(--surface); box-shadow: var(--shadow-sm); }
.article-body h2 { margin: 2.1em 0 .7em; font-size: clamp(1.45rem, 2.6vw, 2.3rem); }
.article-body h3 { margin: 1.8em 0 .65em; font-size: 1.18rem; }
.article-body > :first-child { margin-top: 0; }
.article-body p,
.article-body li { color: var(--ink-soft); }
.article-body a { color: var(--orange-dark); overflow-wrap: anywhere; text-decoration: underline; text-underline-offset: 3px; }
.article-body code { padding: 2px 5px; border: 1px solid var(--line); border-radius: 5px; background: var(--paper-deep); color: var(--ink); font-family: var(--font-code); overflow-wrap: anywhere; }
.inline-token { white-space: nowrap; }
.article-table { max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.article-table table { width: 100%; min-width: 680px; border-collapse: collapse; }
.article-table th,
.article-table td { overflow-wrap: normal; word-break: normal; }
.article-layout > .article-cta { margin-top: var(--space-section-tight); }
.article-layout > .article-more { padding-top: var(--space-section); }
.article-layout > .article-more > h2 { margin-bottom: var(--space-head); }

.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 2px solid var(--ink); }
.location-card { min-height: 210px; padding: 24px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--surface); scroll-margin-top: calc(var(--header-height) + 18px); }
.location-card:nth-child(3n) { border-right: 0; }
.location-card h3 { display: block; margin-bottom: 13px; font: 720 1.1rem/1.2 var(--font-display); }
.location-card p { color: var(--ink-soft); font-size: .83rem; }
.location-card small { color: var(--orange-dark); font: 550 .61rem/1.5 var(--font-code); }
.location-card__links { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.location-card__links a {
    padding: 7px 9px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--surface-warm);
    font: 680 .59rem/1.25 var(--font-code);
    transition: background-color .2s ease, transform .2s ease;
}
.location-card__links a:hover { background: var(--surface-orange); transform: translateY(-2px); }

/* Standalone section hubs */
.section-page { background: var(--paper); }
.section-page__primary { padding-top: 0; padding-bottom: var(--space-section); }
.section-page__primary--light { background: var(--section-light); }
.section-page__primary--cream { background: var(--section-cream); }
.section-page.menu-page--cream > .section-page__primary { background: var(--section-cream); }
.wrap.menu-page--cream {
    position: relative;
    isolation: isolate;
}
.wrap.menu-page--cream::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: -1;
    width: 100vw;
    pointer-events: none;
    content: "";
    background: var(--section-cream);
    transform: translateX(-50%);
}
.section-page__heading { max-width: none; }
.section-page__heading h1 { max-width: 900px; font-size: clamp(2.65rem, 5.2vw, 5.45rem); }
.section-page__heading > p { max-width: 650px; }
.section-page--about .about-copy h1 { font-size: clamp(2.35rem, 4.45vw, 4.65rem); }
.section-page__subheading { margin: clamp(42px, 4.5vw, 58px) 0 24px; font-size: clamp(1.75rem, 3.2vw, 3rem); }
.section-page__proof { border-bottom: 0; }
.section-page__principles { padding-block: var(--space-section); border-top: 1px solid var(--line); background: var(--section-light); }
.section-page__principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 2px solid var(--ink); }
.section-page__principles-grid article { min-height: 240px; padding: clamp(24px, 3.2vw, 38px); border-right: 1px solid var(--ink); background: var(--surface); }
.section-page__principles-grid article:last-child { border-right: 0; }
.section-page__principles-grid h3 { display: block; margin-bottom: clamp(28px, 3vw, 40px); color: var(--orange-dark); font: 700 .66rem/1.35 var(--font-code); letter-spacing: .1em; }
.section-page__principles-grid p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.section-page__cta { padding: var(--space-section-tight) 0 var(--space-page-end); border-top: 1px solid var(--line); background: var(--section-cream); }
.section-page__cta .service-final-cta { margin: 0; }
.area-contact-panel {
    gap: clamp(24px, 4vw, 52px);
    padding: clamp(30px, 3.6vw, 44px) !important;
}
.area-contact-panel h2 { max-width: 760px; margin-bottom: 12px; font-size: clamp(1.55rem, 2.6vw, 2.7rem); }
.area-contact-panel p { max-width: 890px; }
.area-contact-panel .button { justify-self: end; white-space: nowrap; }

.err { min-height: 65vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.err-code { color: var(--orange); font: 800 clamp(6rem, 20vw, 16rem)/.8 var(--font-display); letter-spacing: -.1em; -webkit-text-stroke: 2px var(--ink); }
.err-title { margin: 25px 0 13px; font-size: clamp(2rem, 4vw, 4rem); }
.err-msg { max-width: 680px; color: var(--ink-soft); }
.err-links { width: 100%; margin-top: 55px; }

/* Cookie banner overrides the legacy inline block */
body .cookie-bar { border-top: 2px solid var(--ink) !important; background: rgba(255, 249, 242, .98) !important; color: var(--ink) !important; box-shadow: 0 -12px 35px rgba(72, 42, 24, .1) !important; }
body .cookie-bar p { color: var(--ink-soft) !important; }
body .cookie-bar a { color: var(--orange-dark) !important; }
body .cookie-accept { border: 2px solid var(--ink) !important; background: var(--orange) !important; color: var(--ink) !important; }
body .cookie-reject { border: 1px solid var(--ink) !important; background: var(--surface) !important; color: var(--ink) !important; }

/* Only the first viewport enters with motion; lower sections stay ready immediately. */
html.motion-ready .hero [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.2, .75, .25, 1), transform .7s cubic-bezier(.2, .75, .25, 1);
}
html.motion-ready .hero [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
html.motion-ready .hero__copy[data-reveal] h1 {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(4px);
}
html.motion-ready .hero__copy[data-reveal].is-visible h1 {
    animation: hero-title-enter .82s .06s cubic-bezier(.2, .75, .25, 1) both;
}

@keyframes hero-title-enter {
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes hero-accent-breathe {
    0%, 18%, 82%, 100% {
        color: var(--orange-dark);
        text-shadow: 0 0 0 rgba(255, 90, 31, 0);
    }
    50% {
        color: #bc3900;
        text-shadow: 0 9px 28px rgba(255, 90, 31, .16);
    }
}

@view-transition { navigation: auto; }
::view-transition-old(root) { animation: .2s ease both fade-out; }
::view-transition-new(root) { animation: .34s ease both fade-in; }
@keyframes fade-out { to { opacity: 0; } }
@keyframes fade-in { from { opacity: 0; } }

@media (max-width: 1160px) {
    .site-nav { gap: 13px; }
    .site-nav__links { gap: 8px; }
    .site-nav__links > a { font-size: .72rem; }
    .site-nav__actions .button { display: none; }
    .hero__grid { grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); gap: 42px; }
    .solution-card { min-height: 400px; padding: 21px; }
    .service-card { min-height: 310px; }
}

@media (max-width: 960px) {
    :root { --mobile-nav-gutter: 24px; }
    .site-shell,
    .wrap {
        width: auto;
        max-width: var(--shell);
        margin-left: max(24px, env(safe-area-inset-left, 0px));
        margin-right: max(24px, env(safe-area-inset-right, 0px));
    }
    .menu-toggle { display: block; }
    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        display: none;
        align-items: stretch;
        justify-content: stretch;
        gap: 0;
        max-height: calc(100vh - var(--header-height) - env(safe-area-inset-top, 0px) - 12px);
        max-height: calc(100dvh - var(--header-height) - env(safe-area-inset-top, 0px) - 12px);
        max-height: calc(100svh - var(--header-height) - env(safe-area-inset-top, 0px) - 12px);
        padding: 8px 0 14px;
        border-top: 1px solid rgba(8, 7, 6, .16);
        border-bottom: 1px solid rgba(8, 7, 6, .22);
        border-radius: 0;
        background: rgba(255, 252, 249, .98);
        box-shadow: 0 18px 42px rgba(55, 33, 20, .18);
        overflow-y: auto;
        overscroll-behavior: contain;
        transform-origin: top center;
        -webkit-overflow-scrolling: touch;
        -webkit-backdrop-filter: blur(18px) saturate(150%);
        backdrop-filter: blur(18px) saturate(150%);
    }
    .site-nav.is-open { display: grid; animation: mobile-menu-in .2s cubic-bezier(.2, .75, .25, 1) both; }
    .site-nav__links { display: grid; gap: 0; }
    .site-nav__links > a {
        width: 100%;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-right: max(var(--mobile-nav-gutter), env(safe-area-inset-right, 0px));
        padding-left: max(var(--mobile-nav-gutter), env(safe-area-inset-left, 0px));
        border-bottom: 1px solid var(--line);
        font-size: .84rem;
        text-align: center;
    }
    .site-nav__links > a.site-nav__contact-link { display: flex; }
    .site-nav__links > a::after { display: none; }
    .site-nav__links > a:hover,
    .site-nav__links > a[aria-current] {
        text-decoration: underline;
        text-decoration-color: var(--orange);
        text-decoration-thickness: 2px;
        text-underline-offset: 6px;
    }
    .site-nav__links > a:last-child { border-bottom: 0; }
    .site-nav__actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 12px;
        margin-top: 8px;
        padding: 14px max(var(--mobile-nav-gutter), env(safe-area-inset-right, 0px)) 0 max(var(--mobile-nav-gutter), env(safe-area-inset-left, 0px));
        border-top: 1px solid var(--line);
    }
    .lang-switch { justify-content: center; }
    .site-nav__actions .button { display: none; }
    @keyframes mobile-menu-in {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .hero { min-height: auto; }
    .hero__grid { grid-template-columns: 1fr; }
    .hero__copy { max-width: 820px; }
    .hero-system-stage { max-width: 680px; }
    .hero-fox { margin-bottom: -28px; }
    .proof-item { min-height: 115px; }
    .section-head--split { grid-template-columns: 1fr; align-items: start; gap: 22px; }
    .section-head--split > p,
    .solution-lab__intro { max-width: 760px; }
    .solution-grid { grid-template-columns: repeat(2, 1fr); }
    .solution-card { min-height: 330px; }
    .solution-card:nth-child(2) { border-right: 0; }
    .solution-card:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card:nth-child(3n) { border-right: 1px solid var(--ink); }
    .service-card:nth-child(2n) { border-right: 0; }
    .service-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--ink); }
    .service-card:nth-last-child(-n+2) { border-bottom: 0; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step:nth-child(2) { border-right: 0; }
    .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
    .about-grid { grid-template-columns: .8fr 1.2fr; gap: 55px; }
    .about-values { grid-template-columns: 1fr; }
    .about-value { border-right: 0; border-bottom: 1px solid var(--ink); }
    .about-value:last-child { border-bottom: 0; }
    .contact-panel { grid-template-columns: 1fr; }
    .contact-copy { border-right: 0; border-bottom: 1px solid var(--ink); }
    .site-footer__grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
    .site-footer__contact { grid-column: 2 / -1; }
    .location-grid { grid-template-columns: repeat(2, 1fr); }
    .location-card:nth-child(3n) { border-right: 1px solid var(--ink); }
    .location-card:nth-child(2n) { border-right: 0; }
    .section-page__principles-grid { grid-template-columns: 1fr; }
    .section-page__principles-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--ink); }
    .section-page__principles-grid article:last-child { border-bottom: 0; }
    .section-page__principles-grid h3 { margin-bottom: 28px; }
    .local-fit-grid { grid-template-columns: 1fr; }
    .local-fit-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--ink); }
    .local-fit-grid article:last-child { border-bottom: 0; }
    .local-fit-grid article > span { margin-bottom: 28px; }
}

@media (max-width: 760px) {
    :root { --header-height: 70px; --mobile-nav-gutter: 15px; }
    .site-shell,
    .wrap {
        width: auto;
        max-width: var(--shell);
        margin-left: max(15px, env(safe-area-inset-left, 0px));
        margin-right: max(15px, env(safe-area-inset-right, 0px));
    }
    body { background-size: 52px 52px; }
    .site-header__inner { min-height: 70px; }
    .site-brand__mark { width: 38px; height: 38px; box-shadow: 3px 3px 0 var(--ink); }
    .site-brand__name { font-size: .59rem; }
    h1 { font-size: clamp(2.25rem, 10vw, 4.3rem); }
    h2 { font-size: clamp(2rem, 9.5vw, 3.5rem); }
    .lp-hero h1 { font-size: clamp(1.8rem, 8vw, 3.8rem); }
    .hero { padding-top: 28px; }
    .hero__copy .eyebrow { margin-bottom: 25px; }
    .hero__copy h1 { margin-bottom: 33px; }
    .hero__lead { margin-bottom: 37px; }
    .hero__signal { width: 520px; opacity: .7; }
    .hero__actions { display: grid; grid-template-columns: 1fr; gap: 18px; }
    .hero__actions .button { width: 100%; }
    .hero__trust { display: grid; justify-items: center; gap: 10px; }
    .hero-system {
        border-radius: 18px;
        box-shadow: 5px 6px 0 rgba(255, 90, 31, .68), 0 22px 52px rgba(48, 34, 25, .14), 0 5px 14px rgba(48, 34, 25, .07);
    }
    .hero-system:hover { box-shadow: 5px 6px 0 rgba(255, 90, 31, .68), 0 22px 52px rgba(48, 34, 25, .14), 0 5px 14px rgba(48, 34, 25, .07); }
    .hero-fox {
        width: min(100%, 360px);
        height: 102px;
        margin-top: 27px;
        margin-bottom: -28px;
    }
    .hero-fox__scene { inset-inline: 8px; }
    .hero-fox__rig { width: min(258px, 70vw); }
    .hero-fox__walk { width: min(224px, 65vw); }
    .hero-fox__speech {
        top: 20px;
        right: -10px;
        width: 106px;
    }
    .hero-fox__field i:nth-of-type(3),
    .hero-fox__field i:nth-of-type(6),
    .hero-fox__field b:nth-of-type(2) { display: none; }
    .hero-fox__speech > span {
        max-width: 106px;
        padding: 6px 8px;
        font-size: .49rem;
    }
    .hero-fox__shadow { width: 150px; }
    .hero-fox__track { right: 8px; left: 8px; }
    .hero-fox__readout { right: 8px; }
    .hero-system__top { min-height: 48px; grid-template-columns: 1fr auto 1fr; align-items: center; padding-inline: 14px; }
    .hero-system__toolbar { padding-inline: 14px; }
    .hero-system__workspace { padding: 13px; }
    .hero-system__person { margin: 0 0 12px; }
    .system-flow { margin: 0; }
    .hero-system__foot { padding-inline: 14px; }
    .live-status { align-items: center; }
    .live-status small { display: none; }
    .system-flow__head,
    .system-flow__row { grid-template-columns: 22px minmax(0, 1fr) 14px minmax(0, 1fr) 14px minmax(0, 1fr); gap: 4px; }
    .proof-strip__inner { position: relative; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(104px, 1fr)); }
    .proof-strip__inner::before,
    .proof-strip__inner::after { position: absolute; z-index: 0; pointer-events: none; background: rgba(8, 7, 6, .58); content: ""; }
    .proof-strip__inner::before { top: 0; bottom: 0; left: 50%; width: 1px; }
    .proof-strip__inner::after { top: 50%; right: 0; left: 0; height: 1px; }
    .proof-strip__inner .proof-item { position: relative; z-index: 1; min-width: 0; min-height: 104px; align-items: center; padding: 18px 12px; border: 0; text-align: center; }
    .content-section { padding-block: var(--space-section); }
    .section-page__primary { padding-top: 0; }
    .subpage-intro { padding: 16px 0 44px; }
    .subpage-intro__crumbs,
    .section-page__primary .subpage-intro .subpage-intro__crumbs {
        max-width: 100%;
        flex-wrap: nowrap;
        padding: 0;
        overflow: hidden;
    }
    .subpage-intro__crumbs > * { flex: 0 0 auto; }
    .subpage-intro__crumbs > :last-child {
        min-width: 0;
        flex: 0 1 auto;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .subpage-intro__body { margin-top: 14px; }
    .subpage-intro h1 { font-size: clamp(1.55rem, 7.8vw, 2.65rem); line-height: 1.02; }
    .subpage-intro__lead { margin-top: 18px; font-size: .98rem; line-height: 1.64; }
    .subpage-intro__meta { margin-top: 13px; gap: 4px 10px; font-size: .62rem; }
    .subpage-intro__note { margin-top: 18px; }
    .subpage-intro .cta-row { margin-top: 24px; }
    .section-page__heading h1 { font-size: clamp(2.25rem, 10vw, 4.3rem); }
    .section-page--about .about-copy h1 { font-size: clamp(1.55rem, 7vw, 3.4rem); }
    .solution-lab::before { top: 42px; }
    .solution-grid { grid-template-columns: 1fr; }
    .solution-card { min-height: 270px; border-right: 0; border-bottom: 1px solid var(--ink); }
    .solution-card:nth-child(2) { border-right: 0; }
    .solution-card:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
    .solution-card:last-child { border-bottom: 0; }
    .solution-result { grid-template-columns: 1fr; }
    .solution-result__actions { justify-content: stretch; }
    .solution-result__actions .button { flex: 1; }
    .cases-grid { display: grid; grid-template-columns: 1fr; }
    .case-card,
    .case-card--0 { grid-column: auto; min-height: 0; }
    .case-card,
    .case-card:hover { box-shadow: 0 8px 0 var(--line); }
    .case-card__visual,
    .case-card--0 .case-card__visual { min-height: 250px; }
    .case-card__visual { padding: 15px; }
    .case-visual__chrome { height: 40px; padding-inline: 11px; }
    .case-visual__chrome::after { width: 48px; }
    .case-visual__traffic { gap: 6px; }
    .case-visual__traffic i { width: 9px; height: 9px; }
    .case-visual__title { max-width: min(38vw, 170px); }
    .case-visual__canvas,
    .case-card--0 .case-visual__canvas { min-height: 185px; }
    .case-card__arrow { right: 18px; bottom: 18px; width: 42px; height: 42px; }
    .featured-services { grid-template-columns: 1fr; }
    .service-feature { min-height: 0; padding: 28px; }
    .service-feature h2,
    .service-feature h3 { margin: 92px 0 16px; padding-top: 0; }
    .service-feature--ai { box-shadow: 0 9px 0 var(--ink); }
    .service-feature--web { box-shadow: 0 9px 0 var(--surface-orange); }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 250px; border-right: 0 !important; border-bottom: 1px solid var(--ink) !important; }
    .service-card:last-child { border-bottom: 0 !important; }
    .process-grid { grid-template-columns: 1fr; }
    .process-grid::before { display: none; }
    .process-step { min-height: 0; border-right: 0; border-bottom: 1px solid var(--ink); }
    .process-step:nth-child(2) { border-right: 0; }
    .process-step:last-child { border-bottom: 0; }
    .process-step > span { margin-bottom: 45px; }
    .about-grid { grid-template-columns: 1fr; }
    .section-page--about .about-copy { order: -1; }
    .about-portrait { width: 100%; max-width: 520px; }
    .about-portrait__frame { width: 100%; max-width: 100%; padding-inline: 22px; box-shadow: 0 10px 0 var(--ink); }
    .about-portrait__note { width: calc(100% - 18px); max-width: none; margin-left: 8px; }
    .about-copy h2 { font-size: clamp(1.85rem, 8vw, 3rem); }
    .area-card { grid-template-columns: 1fr; padding: 30px; box-shadow: 0 8px 0 var(--ink); }
    .journal-grid,
    .blog-grid { grid-template-columns: 1fr; }
    .journal-card,
    .blog-card { min-height: 290px; }
    .faq-layout { grid-template-columns: 1fr; gap: 25px; }
    .faq-layout .section-head { position: static; }
    .faq-list summary { grid-template-columns: 32px 1fr 22px; padding-block: 20px; }
    .faq-list details p { margin-left: 42px; }
    .contact-panel { box-shadow: 0 8px 0 var(--orange); }
    .contact-copy,
    .contact-form { padding: 28px 22px; }
    .article-body { padding: 26px 20px; }
    .article-body h2 { font-size: clamp(1.3rem, 5.8vw, 2.3rem); }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .site-footer { padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px)); }
    :where(main a, main button, main input, main textarea, main select) {
        scroll-margin-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    }
    .site-footer__signal { grid-template-columns: 1fr; align-items: start; }
    .site-footer__signal a,
    .site-footer__signal a > span:first-child { min-width: 0; }
    .site-footer__signal a > span:first-child { overflow-wrap: normal; word-break: normal; }
    .site-footer__signal a > span:last-child { width: 52px; height: 52px; }
    .site-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 35px 22px; }
    .site-footer__grid > * { min-width: 0; }
    .site-footer__grid a,
    .site-footer__grid span { max-width: 100%; overflow-wrap: normal; word-break: normal; }
    .site-footer__contact a[href^="mailto:"] { overflow-wrap: anywhere; }
    .site-footer__brand { grid-column: 1 / -1; }
    .site-footer__contact { grid-column: 1 / -1; }
    .mobile-contact-bar {
        position: fixed;
        right: max(66px, calc(56px + env(safe-area-inset-right, 0px)));
        bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        left: auto;
        z-index: 91;
        display: flex;
        gap: 8px;
        border: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        isolation: isolate;
        transform: translate3d(0, 0, 0);
        transition: transform .3s cubic-bezier(.2, .8, .2, 1), opacity .2s ease, visibility 0s linear 0s;
        will-change: transform;
    }
    .mk-floating-top {
        right: max(14px, env(safe-area-inset-right, 0px));
        bottom: calc(14px + env(safe-area-inset-bottom, 0px));
        width: 46px;
        height: 46px;
        box-shadow: 3px 3px 0 var(--ink);
    }
    html.mobile-contact-visible .mk-floating-top {
        right: max(10px, env(safe-area-inset-right, 0px));
        bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    }
    html.mobile-input-active .mk-floating-top,
    html.cookie-banner-open .mk-floating-top,
    body:has(.site-nav.is-open) .mk-floating-top {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(0, 14px, 0) scale(.9);
    }
    .mobile-contact-bar--scroll {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translate3d(0, 12px, 0) scale(.92);
        transition-delay: 0s, 0s, .3s;
    }
    .mobile-contact-bar--scroll.is-visible {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translate3d(0, 0, 0) scale(1);
        transition-delay: 0s;
    }
    .mobile-contact-action {
        width: 46px;
        height: 46px;
        display: grid;
        flex: 0 0 46px;
        place-items: center;
        padding: 0;
        border: 2px solid var(--ink);
        border-radius: 50%;
        background: rgba(255, 253, 250, .98);
        color: var(--ink);
        box-shadow: 3px 3px 0 var(--ink);
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
    }
    .mobile-contact-action--phone { background: var(--orange); }
    .mobile-contact-action svg {
        width: 22px;
        height: 22px;
        display: block;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
    .mobile-contact-action--whatsapp svg path:last-child { fill: currentColor; stroke: none; }
    .mobile-contact-action:active {
        box-shadow: 1px 1px 0 var(--ink);
        transform: translate3d(2px, 2px, 0) scale(.97);
    }
    html.mobile-input-active .mobile-contact-bar,
    html.cookie-banner-open .mobile-contact-bar,
    html.mobile-input-active .mobile-contact-bar.is-visible,
    html.cookie-banner-open .mobile-contact-bar.is-visible,
    body:has(.site-nav.is-open) .mobile-contact-bar,
    body:has(.site-nav.is-open) .mobile-contact-bar.is-visible {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translate3d(0, 12px, 0) scale(.92);
    }
    .feat { grid-template-columns: 1fr; }
    .feat li { border-right: 0; border-bottom: 1px solid var(--ink) !important; }
    .feat li:last-child { border-bottom: 0 !important; }
    .lp-spec,
    .service-why,
    .service-final-cta { grid-template-columns: 1fr; gap: 25px; padding: 28px !important; box-shadow: 0 8px 0 var(--ink); }
    .local-context { grid-template-columns: 1fr; }
    .local-context__travel { padding: 21px; }
    .service-final-cta h2 { font-size: clamp(1.5rem, 6.5vw, 3rem); }
    .area-contact-panel { gap: 22px; }
    .area-contact-panel .button { width: 100%; justify-self: stretch; }
    .links-grid { grid-template-columns: 1fr; }
    .links-grid a { border-right: 0; }
    .location-grid { grid-template-columns: 1fr; }
    .location-card { border-right: 0 !important; }
}

@media (max-width: 960px) {
    .site-header__inner { display: grid; grid-template-columns: 46px minmax(0, 1fr) 46px; gap: 10px; }
    .site-brand { width: 46px; min-height: 46px; justify-self: start; justify-content: flex-start; }
    .site-brand__name,
    .site-brand__dot { display: none; }
    .site-header__domain {
        min-width: 0;
        max-width: 100%;
        display: block;
        justify-self: center;
        overflow: hidden;
        color: var(--ink);
        font: 700 clamp(.5rem, 2.25vw, .62rem)/1 var(--font-code);
        letter-spacing: .01em;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .menu-toggle { justify-self: end; }
}

@media (max-width: 460px) {
    .site-nav__actions { grid-template-columns: 1fr; align-items: stretch; }
    .lang-switch { justify-content: center; }
    .site-nav__actions .button { width: 100%; }
    .hero-system__top { padding-inline: 12px; }
    .hero-system__window-title { font-size: .64rem; }
    .live-status { width: 14px; height: 14px; justify-content: center; }
    .live-status > span {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
    .hero-system__toolbar { min-height: 40px; padding-inline: 12px; }
    .hero-system__toolbar-scope { max-width: 46%; }
    .hero-system__workspace { padding: 10px; }
    .hero-system__person {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 11px;
        padding: 11px;
    }
    .hero-system__avatar { width: 50px; height: 50px; }
    .hero-system__identity strong { font-size: .78rem; }
    .hero-system__identity > span { font-size: .56rem; }
    .hero-system__owner-state {
        grid-column: 1 / -1;
        justify-self: stretch;
        justify-content: center;
        padding-block: 6px;
    }
    .system-flow__head,
    .system-flow__row { grid-template-columns: 19px minmax(0, 1fr) 10px minmax(0, 1fr) 10px minmax(0, 1fr); gap: 2px; }
    .system-flow__head { padding-inline: 7px; font-size: .48rem; }
    .system-flow__row { padding: 8px 7px; }
    .system-flow__index { font-size: .5rem; }
    .system-node {
        min-height: 62px;
        padding: 6px 4px;
        font-size: .625rem;
        line-height: 1.25;
        overflow-wrap: normal;
        word-break: normal;
    }
    .system-node--result { padding-right: 10px; }
    .system-node--result > i { top: 5px; right: 5px; width: 5px; height: 5px; }
    .hero-system__foot { grid-template-columns: minmax(0, 1fr) auto; gap: 5px 10px; padding: 9px 11px; font-size: .52rem; }
    .hero-system__foot-scope { grid-column: 1 / -1; grid-row: 2; justify-self: start; text-align: left; }
    .hero-system__foot > span:last-child { grid-column: 2; grid-row: 1; }
    .proof-item { padding-inline: 13px; }
    .proof-item strong { font-size: 1.7rem; }
    .proof-item span { font-size: .61rem; }
    .solution-result__actions { display: grid; }
    .service-feature { min-height: 0; padding: 24px; }
    .service-feature h2,
    .service-feature h3 { margin-top: 84px; }
    .contact-method { grid-template-columns: 44px 1fr auto; }
    .interest-chips button { width: 100%; }
    .site-footer__bottom { display: grid; }
}

@media (max-width: 360px) {
    .system-flow__head { display: none; }
    .system-flow__row {
        grid-template-columns: 22px minmax(0, 1fr);
        gap: 6px;
        padding: 10px;
    }
    .system-flow__index { grid-column: 1; grid-row: 1 / 6; padding-top: 8px; }
    .system-node {
        grid-column: 2;
        min-height: 48px;
        align-items: flex-start;
        flex-direction: column;
        padding: 8px 11px;
        font-size: .69rem;
        text-align: left;
    }
    .system-node::before {
        display: block;
        margin-bottom: 4px;
        color: var(--muted);
        font: 650 .45rem/1 var(--font-code);
        letter-spacing: .08em;
        text-transform: uppercase;
        content: attr(data-stage);
    }
    .system-node--accent::before { color: var(--orange-dark); }
    .system-node--result::before { color: rgba(255, 250, 246, .65); }
    .system-arrow {
        grid-column: 2;
        width: 100%;
        height: 16px;
    }
    .system-arrow::before {
        top: 0;
        right: auto;
        bottom: 2px;
        left: 50%;
        width: 1px;
        height: auto;
    }
    .system-arrow::after {
        top: auto;
        right: auto;
        bottom: 1px;
        left: calc(50% - 3px);
        transform: rotate(45deg);
    }
    .system-arrow > i {
        top: 0;
        left: calc(50% - 2px);
        animation-name: system-route-packet-vertical;
    }
    .case-card h2,
    .case-card h3 { font-size: 1.35rem; }
    .article-body h2 { font-size: 1.12rem; }
    .brand-token { font-size: .94em; letter-spacing: -.02em; }
}

@keyframes system-route-packet-vertical {
    0%, 14% { opacity: 0; transform: translateY(0); }
    28%, 72% { opacity: 1; }
    100% { opacity: 0; transform: translateY(11px); }
}

@media (max-width: 960px) and (max-height: 500px) {
    .site-nav { padding-block: 7px; }
    .site-nav__links { grid-template-columns: 1fr; }
    .site-nav__links > a { min-height: 39px; }
    .site-nav__actions { margin-top: 6px; padding-top: 8px; }
}

@media (hover: none), (pointer: coarse) {
    .button:hover,
    .btn:hover,
    .button--text:hover,
    .case-card:hover,
    .service-card:hover,
    .city-cloud a:hover,
    .blog-card:hover,
    .interest-chips button:hover { transform: none; }
    .contact-method:hover { padding-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    html.motion-ready [data-reveal],
    html.motion-ready [data-reveal].is-visible,
    html.motion-ready .hero-system-stage[data-reveal],
    html.motion-ready .hero-system-stage[data-reveal].is-visible { opacity: 1; transform: none; }
    .hero-fox__rig {
        filter: brightness(1.02);
        transform: translate3d(-50%, -10px, 18px) rotateX(-4deg) rotateY(5deg) rotateZ(2deg);
    }
    .hero-fox__slice--tail { transform: translateZ(-4px) rotateX(4deg) rotateY(-5deg) rotateZ(3deg); }
    .hero-fox__slice--head { transform: translateZ(10px) rotateX(-3deg) rotateY(3deg); }
    .hero-fox__light { opacity: .28; transform: translate3d(4px, -2px, 22px); }
    .hero-fox__shadow {
        width: 150px;
        opacity: .48;
        filter: blur(3px);
        transform: translate3d(-50%, 2px, -38px) rotateX(68deg) scaleX(.82);
    }
    .hero-fox__walker,
    .hero-fox__tail-graphic,
    .hero-fox__head-graphic,
    .hero-fox__leg,
    .hero-fox__ground-shadow { transform: none; }
    .hero-fox__track { background-position: 0 center; }
    .hero-fox__field i,
    .hero-fox__field b { animation: none; }
    .hero-fox__field i { opacity: .28; transform: none; }
    .hero-fox__field b { opacity: .14; transform: rotate(var(--trail-angle)) scaleX(.72); }
    .hero-fox__speech > span { opacity: 0; transform: none; }
    .hero-fox__speech > span:first-child { opacity: 1; }
}

@media print {
    .site-header,
    .site-footer,
    .mobile-contact-bar,
    .hero__signal,
    .hero-fox,
    .button { display: none !important; }
    body { background: #fff; color: #000; }
    .content-section,
    main.wrap > section { padding-block: 30px; }
    * { box-shadow: none !important; }
}
