@font-face {
    font-family: "Space Grotesk";
    src:
        url("fonts/space-grotesk-v22-latin-500.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Space Grotesk";
    src:
        url("fonts/space-grotesk-v22-latin-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Space Grotesk";
    src:
        url("fonts/space-grotesk-v22-latin-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
:root {
    --bg: #090a10;
    --bg-soft: #101528;
    --surface: rgba(15, 17, 30, 0.62);
    --surface-border: rgba(255, 255, 255, 0.12);
    --text: #f4f5ff;
    --muted: rgba(244, 245, 255, 0.75);
    --primary: #de1a58;
    --primary-warm: #ff8a3d;
    --shadow-soft: 0 18px 46px rgba(0, 0, 0, 0.24);
    --radius: 18px;
    --content-width: min(1120px, calc(100vw - 2rem));
    --section-gap: clamp(1rem, 2vw, 1.4rem);
    --card-padding: clamp(1.2rem, 2.2vw, 1.65rem);
    --card-padding-wide: clamp(1.35rem, 2.5vw, 1.9rem);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    background-color: var(--bg);
    color: var(--text);
    font-family: "Space Grotesk", "Segoe UI", "Helvetica Neue", sans-serif;
    line-height: 1.55;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.blob-outer-container {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 0;
    inset: 0;
    margin: auto;
    filter: blur(78px);
    pointer-events: none;
}

.blob-inner-container {
    border-radius: 99999px;
    position: absolute;
    inset: 0;
    width: 102vw;
    height: 102vh;
    margin: auto;
    min-width: 0;
    overflow: hidden;
    background-color: var(--bg-soft);
    transform: scale(0.84);
}

.blob {
    position: absolute;
    width: 100vw;
    height: 100vh;
    inset: 0;
    margin: auto;
    background: conic-gradient(
        from 12deg,
        #15144b,
        #173071,
        #858d42,
        #158aaf,
        #3310a7
    );
    animation: spinBlob 26s linear infinite;
}

.blob-outer-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(9, 10, 16, 0.36) 0%,
        rgba(9, 10, 16, 0.66) 100%
    );
    pointer-events: none;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 0.9rem;
    padding-inline: clamp(1.2rem, 2.8vw, 2.8rem);
    backdrop-filter: blur(16px);
    background: rgba(9, 10, 16, 0.34);
    border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.brand {
    color: var(--text);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
    font-weight: 600;
    font-size: 1.02rem;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.brand-mobile,
.mobile-header-actions {
    display: none;
}

.site-nav {
    display: flex;
    gap: 1.5rem;
}

.site-nav a {
    color: rgba(244, 245, 255, 0.72);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover {
    color: var(--text);
}

.content {
    position: relative;
    z-index: 2;
    width: var(--content-width);
    margin: 0 auto;
    padding-top: clamp(5rem, 8vw, 6rem);
    padding-bottom: 2.2rem;
}

.section {
    margin-bottom: clamp(3rem, 6vw, 5.6rem);
    scroll-margin-top: 5.75rem;
    transition:
        opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
}

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

.reveal-child {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition:
        opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible .reveal-child {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.reveal-delay-1 {
    transition-delay: 140ms;
}

.reveal-delay-2 {
    transition-delay: 260ms;
}

.reveal-delay-3 {
    transition-delay: 380ms;
}

.reveal-delay-4 {
    transition-delay: 500ms;
}

.hero {
    min-height: calc(100svh - 6rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    padding-top: clamp(1.6rem, 4vw, 2.4rem);
    padding-bottom: clamp(1.2rem, 3vw, 2rem);
}

.eyebrow {
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.75rem;
    color: rgba(244, 245, 255, 0.62);
}

.logo-text {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
    font-size: clamp(3.1rem, 8.4vw, 6.6rem);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.04em;
    text-wrap: balance;
    text-shadow: none;
}

.hero-brand-block {
    position: relative;
    display: grid;
    gap: 0.9rem;
    align-self: center;
    padding-bottom: 1.2rem;
}

.hero-brand-block::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(240px, 42%);
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
}

.hero-copy {
    position: relative;
    display: grid;
    gap: 1rem;
    align-self: center;
    max-width: 31rem;
    padding-left: clamp(0rem, 2vw, 1rem);
}

.hero-copy::before {
    content: "";
    position: absolute;
    left: -1rem;
    top: 0.2rem;
    bottom: 0.2rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.hero-title,
.hero-caption-line,
.hero-points-line,
.hero-lead,
.hero-subtext,
.hero-actions {
    will-change: transform, opacity;
}

.hero-title {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    transition:
        opacity 980ms cubic-bezier(0.16, 1, 0.3, 1) 90ms,
        transform 980ms cubic-bezier(0.16, 1, 0.3, 1) 90ms;
}

.reveal.is-visible .hero-title {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.hero-caption-line,
.hero-points-line,
.hero-lead,
.hero-subtext,
.hero-actions {
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.tagline {
    margin: 0;
    max-width: 31rem;
    font-size: clamp(0.98rem, 1.55vw, 1.08rem);
    color: rgba(244, 245, 255, 0.7);
    line-height: 1.72;
}

.tagline-lead {
    color: var(--text);
    font-size: clamp(1.2rem, 2vw, 1.48rem);
    font-weight: 500;
    line-height: 1.36;
    max-width: 29rem;
}

.mobile-hero-title,
.mobile-hero-copy {
    display: none;
}

.hero-caption {
    margin: 0;
    max-width: 23rem;
    color: rgba(244, 245, 255, 0.54);
    font-size: 0.88rem;
    line-height: 1.6;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.hero-points span,
.services-points span,
.service-badge {
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.026);
    color: rgba(244, 245, 255, 0.84);
    font-size: 0.76rem;
    letter-spacing: 0.01em;
    backdrop-filter: blur(10px);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    color: rgba(244, 245, 255, 0.5);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.hero-meta span {
    position: relative;
    padding-left: 0.9rem;
}

.hero-meta span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 999px;
    background: rgba(244, 245, 255, 0.46);
    transform: translateY(-50%);
}

.hero-actions {
    margin-top: 0.45rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.72rem 1.18rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
    transition:
        transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 220ms ease,
        background-color 220ms ease,
        box-shadow 240ms ease,
        filter 240ms ease;
    will-change: transform;
}

.btn:hover {
    transform: translate3d(0, -2px, 0) scale(1.015);
    filter: saturate(1.05) brightness(1.03);
}

.btn-primary {
    background: linear-gradient(120deg, #b30d57, #de1a58, #ff8a3d);
    background-size: 170% 170%;
    color: #fff;
    box-shadow:
        0 12px 28px rgba(222, 26, 88, 0.2),
        0 0 0 rgba(255, 138, 61, 0);
    animation: primaryButtonShift 7s ease infinite;
}

.btn-primary:hover {
    box-shadow:
        0 16px 32px rgba(222, 26, 88, 0.26),
        0 0 18px rgba(255, 138, 61, 0.2);
}

.btn-ghost {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.05);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(222, 26, 88, 0.16);
}

h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.45rem, 3.2vw, 2.2rem);
}

.section-intro {
    margin: 0 0 1.25rem;
    max-width: 700px;
    color: var(--muted);
    font-size: clamp(0.98rem, 1.35vw, 1.06rem);
    line-height: 1.68;
}

.services-intro .section-intro,
.projects-header .section-intro {
    margin: 0;
}

.intro-bridge {
    position: relative;
    margin-top: clamp(-1.2rem, -1.6vw, -0.4rem);
    margin-bottom: clamp(3rem, 5.5vw, 4.8rem);
    padding: 1.15rem 0 0;
}

.intro-bridge::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}

.intro-bridge-line {
    margin: 0;
    max-width: 44rem;
    color: rgba(244, 245, 255, 0.6);
    font-size: clamp(0.98rem, 2vw, 1.12rem);
    line-height: 1.7;
}

.mobile-services-heading {
    display: none;
}

.services-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.6fr);
    gap: clamp(1.4rem, 4vw, 3.6rem);
    align-items: start;
}

.services-intro {
    position: sticky;
    top: 6.5rem;
    overflow: visible;
    background: transparent;
    border: 0;
    padding: 0;
    backdrop-filter: none;
    display: grid;
    gap: 0.95rem;
    align-content: start;
    justify-items: start;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1rem;
    bottom: 1rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.services-intro h2 {
    margin-bottom: 0;
    max-width: 10ch;
    font-size: clamp(2rem, 3.6vw, 3.35rem);
    line-height: 1;
    letter-spacing: -0.035em;
}

.services-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--section-gap);
}

.services-carousel-controls {
    display: none;
}

.service-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: flex-start;
    min-height: auto;
    padding: var(--card-padding);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.016));
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 18px;
    backdrop-filter: blur(14px);
    transform: translate3d(0, 0, 0);
    transition:
        transform 240ms ease,
        border-color 240ms ease,
        box-shadow 240ms ease,
        background 240ms ease,
        filter 240ms ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    will-change: transform;
}

.service-card:nth-child(2) {
    animation-delay: 90ms;
}

.service-card:nth-child(3) {
    animation-delay: 150ms;
}

.service-card:nth-child(4) {
    animation-delay: 210ms;
}

.service-card:nth-child(5) {
    animation-delay: 270ms;
}

.service-card:nth-child(6) {
    animation-delay: 330ms;
}

.service-card:nth-child(7) {
    animation-delay: 390ms;
}

.service-card:nth-child(8) {
    animation-delay: 450ms;
}

.service-card:hover {
    transform: translate3d(0, -3px, 0);
    border-color: rgba(255, 255, 255, 0.13);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.22),
        0 0 20px rgba(222, 26, 88, 0.055);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.02));
}

.service-card-featured {
    padding: var(--card-padding);
    background:
        radial-gradient(circle at top right, rgba(222, 26, 88, 0.16), transparent 24%),
        rgba(255, 255, 255, 0.03);
}

.service-card-featured .service-badge {
    justify-self: start;
    margin-top: 0;
}

.service-index {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    color: rgba(244, 245, 255, 0.5);
    opacity: 0.85;
    line-height: 1;
}

.service-card h3 {
    margin: 0;
    font-size: clamp(1.15rem, 1.7vw, 1.38rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
    max-width: 20ch;
}

.service-card > p:nth-of-type(2) {
    margin: 0;
    max-width: 42ch;
    flex: 1 1 auto;
    color: rgba(244, 245, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-badge {
    position: static;
    align-self: flex-start;
    margin-top: 0.35rem;
    color: rgba(244, 245, 255, 0.64);
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.card,
.panel,
.about,
.contact {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.card {
    padding: 1.2rem;
}

.card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.06rem;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.projects-header {
    margin-bottom: clamp(1.4rem, 3vw, 2.1rem);
    max-width: 960px;
    display: grid;
    gap: 0.85rem;
    justify-items: start;
}

.projects-header h2 {
    margin-bottom: 0;
    max-width: 18ch;
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    line-height: 1;
    letter-spacing: -0.035em;
}

.project-showcase {
    display: grid;
    gap: 2rem;
}

.project-modal-close {
    display: none;
}

.project-mobile-copy {
    display: none;
}

.projects-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0;
}

.projects-meta span {
    padding: 0.46rem 0.74rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
    color: rgba(244, 245, 255, 0.8);
    font-size: 0.78rem;
    letter-spacing: 0.01em;
}

.project-case {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.4rem;
    align-items: center;
    padding: 1.6rem;
    background: linear-gradient(180deg, rgba(12, 15, 26, 0.78), rgba(10, 12, 20, 0.62));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 34px;
    backdrop-filter: blur(18px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.project-case::before {
    content: "";
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.project-case-reverse {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.project-case-reverse .project-visual {
    order: 2;
}

.project-case-reverse .project-copy {
    order: 1;
}

.project-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 390px;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 34% 30%, rgba(26, 182, 225, 0.18), transparent 26%),
        radial-gradient(circle at 70% 62%, rgba(222, 26, 88, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(18, 21, 34, 0.98), rgba(10, 12, 20, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.project-visual::after {
    content: "";
    position: absolute;
    width: 58%;
    height: 58%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(22, 53, 138, 0.28), transparent 68%);
    filter: blur(30px);
}

.project-device {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #31384f, #171c2b);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.project-device-laptop {
    width: min(90%, 520px);
    border-radius: 18px 18px 12px 12px;
    padding: 0.8rem 0.8rem 1rem;
    transform: perspective(1400px) rotateX(8deg) rotateY(-11deg);
}

.project-device-laptop::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 112%;
    height: 14px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(180deg, #6c738c, #2b3144);
}

.project-device-portrait {
    width: min(62%, 240px);
    border-radius: 28px;
    padding: 0.8rem;
}

.project-screen {
    position: relative;
    min-height: 270px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #0d1220;
    overflow: hidden;
}

.project-device-portrait .project-screen {
    min-height: 420px;
    border-radius: 22px;
}

.project-screen-commerce {
    background:
        linear-gradient(180deg, rgba(244, 245, 255, 0.08), rgba(244, 245, 255, 0.02)),
        linear-gradient(135deg, #1e2640, #121825 45%, #0d1320);
}

.project-screen-portfolio {
    background:
        linear-gradient(180deg, rgba(244, 245, 255, 0.06), rgba(244, 245, 255, 0.01)),
        linear-gradient(180deg, #151a2a, #0b1018 40%, #121827);
}

.project-screen-b2b {
    background:
        linear-gradient(180deg, rgba(244, 245, 255, 0.08), rgba(244, 245, 255, 0.02)),
        linear-gradient(135deg, #11192f, #101526 52%, #0b0f1a);
}

.project-screen::before,
.project-screen::after {
    content: "";
    position: absolute;
    inset: 0;
}

.project-screen::before {
    background:
        linear-gradient(180deg, transparent 12%, rgba(255, 255, 255, 0.08) 12%, rgba(255, 255, 255, 0.08) 16%, transparent 16%),
        linear-gradient(180deg, transparent 24%, rgba(255, 255, 255, 0.06) 24%, rgba(255, 255, 255, 0.06) 28%, transparent 28%),
        linear-gradient(180deg, transparent 40%, rgba(255, 255, 255, 0.09) 40%, rgba(255, 255, 255, 0.09) 62%, transparent 62%),
        linear-gradient(180deg, transparent 70%, rgba(255, 255, 255, 0.05) 70%, rgba(255, 255, 255, 0.05) 76%, transparent 76%);
    opacity: 0.5;
}

.project-screen::after {
    background:
        radial-gradient(circle at 75% 28%, rgba(26, 182, 225, 0.2), transparent 16%),
        radial-gradient(circle at 30% 70%, rgba(222, 26, 88, 0.18), transparent 22%);
}

.project-copy {
    display: grid;
    gap: 0.95rem;
}

.project-label {
    margin: 0;
    color: rgba(244, 245, 255, 0.46);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.project-copy h3 {
    margin: 0;
    font-size: clamp(1.5rem, 2vw, 2.05rem);
    letter-spacing: -0.02em;
}

.project-copy p {
    margin: 0;
    color: rgba(244, 245, 255, 0.72);
    line-height: 1.7;
}

.project-kicker {
    color: rgba(244, 245, 255, 0.54);
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

.project-result {
    margin-top: 0.35rem;
    padding-top: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 0.3rem;
}

.project-result span {
    color: rgba(244, 245, 255, 0.46);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.project-result strong {
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.project-copy strong {
    color: var(--text);
    font-weight: 600;
}

.project-demo-card {
    position: relative;
    min-height: clamp(520px, 72vh, 820px);
    display: block;
    padding: 0;
}

.project-demo-media {
    position: relative;
    min-height: clamp(520px, 72vh, 820px);
    overflow: hidden;
    border-radius: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow:
        0 26px 64px rgba(0, 0, 0, 0.34),
        0 0 26px rgba(21, 113, 255, 0.1);
    cursor: pointer;
    transition:
        transform 340ms ease,
        box-shadow 340ms ease;
}

.project-demo-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 8, 14, 0.1) 0%, rgba(6, 8, 14, 0.02) 42%, rgba(6, 8, 14, 0.34) 100%),
        radial-gradient(circle at 18% 24%, rgba(35, 118, 255, 0.14), transparent 28%),
        radial-gradient(circle at 72% 18%, rgba(174, 200, 65, 0.08), transparent 24%);
    pointer-events: none;
    transition:
        background 340ms ease,
        opacity 340ms ease;
}

.project-demo-media::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 0 36px rgba(33, 117, 255, 0.08);
    pointer-events: none;
}

.project-demo-media:hover {
    transform: translate3d(0, -2px, 0) scale(1.006);
    box-shadow:
        0 30px 72px rgba(0, 0, 0, 0.38),
        0 0 30px rgba(21, 113, 255, 0.12);
}

.project-demo-media:hover::before,
.project-demo-media:focus-visible::before {
    background:
        linear-gradient(90deg, rgba(6, 8, 14, 0.18) 0%, rgba(6, 8, 14, 0.06) 42%, rgba(6, 8, 14, 0.4) 100%),
        radial-gradient(circle at 18% 24%, rgba(35, 118, 255, 0.16), transparent 28%),
        radial-gradient(circle at 72% 18%, rgba(174, 200, 65, 0.1), transparent 24%);
}

.project-demo-image {
    display: block;
    width: 100%;
    height: clamp(520px, 72vh, 820px);
    object-fit: cover;
    object-position: center top;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-demo-toggle {
    appearance: none;
}

.project-demo-toggle-hint {
    position: absolute;
    right: clamp(1rem, 2vw, 1.5rem);
    bottom: clamp(1rem, 2vw, 1.35rem);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 2.2rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(9, 12, 22, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform: translate3d(-0.35rem, 0, 0);
    opacity: 0;
    transition:
        transform 340ms ease,
        opacity 340ms ease,
        filter 340ms ease,
        background-color 340ms ease,
        border-color 340ms ease;
    pointer-events: none;
}

.project-demo-toggle-text {
    color: rgba(244, 245, 255, 0.88);
    font-size: 0.77rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.project-demo-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
}

.project-demo-toggle-icon::before {
    content: "\2192";
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.1),
        0 0 12px rgba(82, 133, 255, 0.08),
        0 0 16px rgba(222, 26, 88, 0.06);
    transition:
        text-shadow 340ms ease,
        transform 340ms ease;
}

.project-demo-media:hover .project-demo-toggle-hint,
.project-demo-media:focus-visible .project-demo-toggle-hint {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    filter: brightness(1.04);
    background: rgba(9, 12, 22, 0.26);
    border-color: rgba(255, 255, 255, 0.1);
}

.project-demo-media:hover .project-demo-toggle-icon::before,
.project-demo-media:focus-visible .project-demo-toggle-icon::before {
    transform: translateX(0.18rem);
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.14),
        0 0 18px rgba(82, 133, 255, 0.14),
        0 0 22px rgba(222, 26, 88, 0.1);
}

.project-demo-media:focus-visible {
    outline: none;
    transform: scale(1.02);
    box-shadow:
        0 34px 76px rgba(0, 0, 0, 0.38),
        0 0 38px rgba(21, 113, 255, 0.16);
}

.project-demo-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: min(39%, 460px);
    display: grid;
    gap: 0.95rem;
    align-content: center;
    justify-items: start;
    padding: clamp(1.4rem, 3vw, 2.3rem);
    border-radius: 24px;
    background: rgba(5, 7, 14, 0.74);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.04);
    transform: translateX(102%);
    opacity: 0;
    pointer-events: none;
    transition:
        transform 0.5s ease-in-out,
        opacity 0.5s ease-in-out;
}

[data-project-showcase].is-open .project-demo-content {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.project-demo-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.project-demo-pill-row span {
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(244, 245, 255, 0.76);
    font-size: 0.75rem;
    letter-spacing: 0.02em;
}

.project-demo-content h3 {
    margin: 0;
    font-size: clamp(1.55rem, 2.15vw, 2.05rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.project-demo-text {
    margin: 0;
    max-width: 38ch;
    color: rgba(244, 245, 255, 0.7);
    font-size: 0.98rem;
    line-height: 1.72;
}

.project-demo-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.project-demo-points li {
    position: relative;
    padding-left: 1rem;
    color: rgba(244, 245, 255, 0.86);
    line-height: 1.55;
}

.project-demo-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #6ea7ff, #b9ce54);
    transform: translateY(-50%);
}

.project-demo-kpis {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    width: 100%;
    padding-top: 0.15rem;
}

.project-demo-kpi {
    display: grid;
    gap: 0.25rem;
}

.project-demo-kpi .big-number {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
    color: rgba(244, 245, 255, 0.92);
}

.project-demo-kpi .label {
    color: rgba(244, 245, 255, 0.58);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.project-demo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 0.35rem;
    padding: 0.92rem 1.45rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff7a18, #de1a58 55%, #b30d57);
    background-size: 170% 170%;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: -0.01em;
    box-shadow:
        0 14px 28px rgba(222, 26, 88, 0.26),
        0 0 22px rgba(222, 26, 88, 0.14);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        filter 180ms ease;
    animation: primaryButtonShift 7s ease infinite;
}

.project-demo-button:hover {
    transform: translate3d(0, -2px, 0) scale(1.01);
    filter: brightness(1.05);
    box-shadow:
        0 18px 34px rgba(222, 26, 88, 0.34),
        0 0 28px rgba(222, 26, 88, 0.2);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.panel {
    padding: var(--card-padding);
}

.steps,
.stack {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
    display: grid;
    gap: 0.55rem;
}

.about,
.contact {
    padding: var(--card-padding);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
}

.about:hover,
.contact:hover {
    transform: translate3d(0, -4px, 0);
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.18),
        0 0 26px rgba(222, 26, 88, 0.06);
}

.about p,
.contact p {
    margin: 0;
    color: var(--muted);
    max-width: 860px;
}

.story-editorial {
    position: relative;
    --story-glow-x: 54%;
    --story-glow-y: 2%;
    --story-glow-accent: rgba(222, 26, 88, 0.095);
    --story-glow-secondary: rgba(35, 118, 255, 0.08);
    margin-bottom: clamp(0.8rem, 2.6vw, 2rem);
    padding-block: clamp(2.6rem, 6vw, 5rem);
    overflow: clip;
}

.story-editorial[data-active-story="2"] {
    --story-glow-x: 58%;
    --story-glow-y: 23%;
    --story-glow-accent: rgba(35, 118, 255, 0.1);
    --story-glow-secondary: rgba(174, 200, 65, 0.065);
}

.story-editorial[data-active-story="3"] {
    --story-glow-x: 46%;
    --story-glow-y: 46%;
    --story-glow-accent: rgba(255, 138, 61, 0.075);
    --story-glow-secondary: rgba(222, 26, 88, 0.085);
}

.story-editorial[data-active-story="4"] {
    --story-glow-x: 62%;
    --story-glow-y: 68%;
    --story-glow-accent: rgba(222, 26, 88, 0.12);
    --story-glow-secondary: rgba(26, 182, 225, 0.075);
}

.story-editorial::before,
.story-editorial::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.story-editorial::before {
    left: calc(var(--story-glow-x) - 8rem);
    top: var(--story-glow-y);
    height: 22rem;
    width: 22rem;
    background: radial-gradient(circle, var(--story-glow-accent), transparent 70%);
    filter: blur(34px);
    opacity: 0.58;
    transition:
        left 900ms cubic-bezier(0.22, 1, 0.36, 1),
        top 900ms cubic-bezier(0.22, 1, 0.36, 1),
        background 900ms ease,
        opacity 900ms ease;
}

.story-editorial::after {
    left: -14%;
    bottom: 8%;
    width: 24rem;
    height: 24rem;
    background: radial-gradient(circle, var(--story-glow-secondary), transparent 72%);
    filter: blur(36px);
    opacity: 0.5;
    transition:
        background 900ms ease,
        opacity 900ms ease,
        transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-editorial[data-active-story="3"]::after,
.story-editorial[data-active-story="4"]::after {
    transform: translate3d(8%, -6%, 0);
    opacity: 0.74;
}

.story-editorial-header,
.story-editorial-list {
    position: relative;
    z-index: 1;
}

.story-editorial-header {
    display: grid;
    gap: 0.85rem;
    width: min(860px, 100%);
    margin-inline: auto;
    margin-bottom: clamp(2rem, 4vw, 3.4rem);
}

.story-editorial-header h2 {
    margin: 0;
    max-width: 20ch;
    font-size: clamp(1.95rem, 3.8vw, 3.45rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.story-editorial-list {
    display: grid;
    width: min(860px, 100%);
    margin-inline: auto;
}

.story-accordion-trigger {
    display: inline;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    text-align: inherit;
}

.story-accordion-icon {
    display: none;
}

.story-accordion-content,
.story-accordion-content-inner {
    display: contents;
}

.story-editorial-item {
    --row-opacity: 0.74;
    --divider-scale: 0;
    --divider-glow: 0;
    display: grid;
    grid-template-columns: minmax(7.2rem, 0.26fr) minmax(12rem, 0.74fr);
    column-gap: clamp(1.3rem, 4vw, 3.4rem);
    row-gap: 0.75rem;
    align-items: start;
    padding-block: clamp(1.4rem, 3vw, 2.15rem);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    opacity: var(--row-opacity);
    filter: none;
    position: relative;
    transition:
        opacity 350ms ease,
        transform 350ms ease;
    will-change: transform, opacity;
}

.story-editorial-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.story-editorial-item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 1px;
    background: linear-gradient(90deg, rgba(244, 245, 255, 0.34), rgba(222, 26, 88, 0.24), rgba(244, 245, 255, 0));
    transform: scaleX(var(--divider-scale));
    transform-origin: left;
    opacity: 0.82;
    box-shadow: 0 0 calc(14px * var(--divider-glow)) rgba(222, 26, 88, 0.22);
    transition:
        transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 350ms ease,
        background 350ms ease,
        box-shadow 350ms ease;
}

.story-editorial-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 58%);
    opacity: 0;
    transition: opacity 350ms ease;
    pointer-events: none;
}

.story-editorial-item.is-visible {
    --divider-scale: 1;
}

.story-editorial-item > *,
.story-editorial-item .story-accordion-content p {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 14px, 0);
    transition:
        opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 680ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-editorial-item.is-visible > *,
.story-editorial-item.is-visible .story-accordion-content p {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
}

.story-editorial-item.is-visible h3 {
    transition-delay: 90ms;
}

.story-editorial-item.is-visible p:not(.story-editorial-kicker) {
    transition-delay: 160ms;
}

.story-editorial-item.is-visible .story-cta {
    transition-delay: 220ms;
}

.story-editorial-item.is-active,
.story-editorial-item:focus-within {
    opacity: 1;
    transform: translate3d(0, -2px, 0);
}

.story-editorial-item.is-active::after {
    opacity: 1;
}

.story-editorial-item.is-active::before {
    opacity: 1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.58), rgba(222, 26, 88, 0.46), rgba(255, 255, 255, 0));
}

.story-editorial-kicker {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.7rem;
    align-items: baseline;
    margin: 0;
    color: rgba(244, 245, 255, 0.46);
    font-size: 0.72rem;
    line-height: 1.35;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition:
        opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 680ms cubic-bezier(0.22, 1, 0.36, 1),
        color 420ms ease,
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-editorial-kicker span {
    display: inline-block;
    margin-bottom: 0;
    color: rgba(244, 245, 255, 0.78);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 0.95;
    letter-spacing: 0;
    transition:
        color 420ms ease,
        text-shadow 420ms ease,
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-editorial-item h3 {
    grid-column: 2;
    margin: 0;
    max-width: 24ch;
    font-size: clamp(1.3rem, 2.25vw, 2.05rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-wrap: balance;
    transform-origin: left center;
    transition:
        opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 680ms cubic-bezier(0.22, 1, 0.36, 1),
        color 420ms ease,
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
        text-shadow 420ms ease;
}

.story-editorial-item p:not(.story-editorial-kicker) {
    grid-column: 2;
    margin: 0;
    max-width: 54ch;
    color: rgba(244, 245, 255, 0.7);
    font-size: clamp(0.96rem, 1.2vw, 1.02rem);
    line-height: 1.72;
    transition:
        opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 680ms cubic-bezier(0.22, 1, 0.36, 1),
        color 420ms ease,
        transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-editorial-item.is-active .story-editorial-kicker {
    color: rgba(244, 245, 255, 0.64);
    transform: translate3d(0, -1px, 0);
}

.story-editorial-item.is-active .story-editorial-kicker span {
    color: #fff;
    transform: translate3d(0, -1px, 0);
    text-shadow:
        0 0 16px rgba(255, 255, 255, 0.14),
        0 0 22px rgba(222, 26, 88, 0.14);
}

.story-editorial-item.is-active h3 {
    color: #fff;
    transform: translate3d(0, -3px, 0) scale(1.012);
    text-shadow: 0 0 24px rgba(255, 255, 255, 0.045);
}

.story-editorial-item.is-active p:not(.story-editorial-kicker) {
    color: rgba(244, 245, 255, 0.78);
}

.story-cta {
    grid-column: 2;
    justify-self: start;
    margin-top: 0.3rem;
    padding-inline: 1.45rem;
    box-shadow:
        0 12px 28px rgba(222, 26, 88, 0.14),
        0 0 24px rgba(222, 26, 88, 0.08);
    transition:
        opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 260ms ease,
        transform 260ms ease,
        box-shadow 260ms ease;
}

.story-cta:focus-visible {
    transform: translate3d(0, -2px, 0);
    box-shadow:
        0 16px 36px rgba(222, 26, 88, 0.22),
        0 0 34px rgba(222, 26, 88, 0.14);
    filter: brightness(1.04);
}

@media (hover: hover) and (pointer: fine) {
    .story-editorial-list:has(.story-editorial-item:hover) .story-editorial-item {
        opacity: 0.48;
    }

    .story-editorial-list:has(.story-editorial-item:hover) .story-editorial-item:hover {
        --divider-glow: 1;
        opacity: 1;
        transform: translate3d(0.45rem, -3px, 0);
    }

    .story-editorial-list:has(.story-editorial-item:hover) .story-editorial-item:hover::before {
        opacity: 1;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(222, 26, 88, 0.52), rgba(255, 255, 255, 0));
    }

    .story-editorial-list:has(.story-editorial-item:hover) .story-editorial-item:hover::after {
        opacity: 1;
    }

    .story-editorial-item:hover .story-editorial-kicker {
        color: rgba(244, 245, 255, 0.7);
        transform: translate3d(0.15rem, -1px, 0);
    }

    .story-editorial-item:hover .story-editorial-kicker span {
        color: #fff;
        transform: translate3d(0, -1px, 0);
        text-shadow:
            0 0 16px rgba(255, 255, 255, 0.16),
            0 0 24px rgba(222, 26, 88, 0.16);
    }

    .story-editorial-item:hover h3 {
        color: #fff;
        transform: translate3d(0.18rem, -3px, 0) scale(1.014);
        text-shadow: 0 0 24px rgba(255, 255, 255, 0.055);
    }

    .story-editorial-item:hover p:not(.story-editorial-kicker) {
        color: rgba(244, 245, 255, 0.82);
        transform: translate3d(0.18rem, 0, 0);
    }

    .story-cta:hover {
        transform: translate3d(0.18rem, -3px, 0);
        box-shadow:
            0 18px 42px rgba(222, 26, 88, 0.25),
            0 0 42px rgba(222, 26, 88, 0.16);
        filter: brightness(1.05);
    }
}

.contact {
    position: relative;
    overflow: hidden;
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.085);
    background:
        radial-gradient(circle at 12% 20%, rgba(62, 121, 255, 0.13), transparent 30%),
        radial-gradient(circle at 84% 18%, rgba(199, 74, 255, 0.1), transparent 28%),
        radial-gradient(circle at 72% 76%, rgba(255, 69, 140, 0.12), transparent 30%),
        linear-gradient(145deg, rgba(9, 12, 24, 0.92), rgba(8, 10, 18, 0.82));
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact::before {
    content: "";
    position: absolute;
    inset: auto auto -10% -8%;
    width: 22rem;
    height: 22rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(55, 115, 255, 0.16), transparent 68%);
    pointer-events: none;
    filter: blur(20px);
}

.contact::after {
    content: "";
    position: absolute;
    top: 8%;
    right: -6%;
    width: 20rem;
    height: 20rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 72, 146, 0.13), transparent 70%);
    pointer-events: none;
    filter: blur(26px);
}

.contact-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.94fr);
    gap: clamp(1.6rem, 4vw, 4rem);
    align-items: center;
}

.contact-copy {
    display: grid;
    gap: 1rem;
    max-width: 38rem;
    justify-items: start;
}

.contact-copy h2 {
    margin-bottom: 0;
    max-width: 12ch;
    font-size: clamp(2.05rem, 4.1vw, 3.8rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
    color: #fcfdff;
}

.contact-copy p {
    max-width: 34rem;
    color: rgba(244, 245, 255, 0.72);
    font-size: clamp(0.98rem, 1.25vw, 1.04rem);
    line-height: 1.72;
}

.contact-note {
    color: rgba(244, 245, 255, 0.56);
    font-size: 0.94rem;
}

.contact .eyebrow {
    color: rgba(220, 228, 255, 0.68);
}

.contact-benefits {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.95rem;
}

.contact-benefits li {
    position: relative;
    padding: 0 0 0 1.2rem;
    color: rgba(250, 250, 255, 0.88);
    line-height: 1.55;
}

.contact-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.76em;
    width: 0.46rem;
    height: 0.46rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #58a6ff, #df4eff 58%, #ff6a95);
    box-shadow: 0 0 12px rgba(143, 110, 255, 0.24);
    transform: translateY(-50%);
}

.contact-form {
    position: relative;
    display: grid;
    gap: 0.95rem;
    width: min(100%, 560px);
    justify-self: end;
    padding: clamp(1.2rem, 2.6vw, 1.65rem);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(18, 22, 38, 0.64), rgba(9, 12, 24, 0.58));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease,
        background 220ms ease;
}

.contact-form::before {
    content: "";
    position: absolute;
    inset: -10% -8% auto auto;
    width: 14rem;
    height: 14rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(104, 103, 255, 0.22), transparent 68%);
    filter: blur(14px);
    pointer-events: none;
}

.contact-trust {
    margin: 0 0 0.35rem;
    color: rgba(244, 245, 255, 0.6);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.contact-form:hover {
    transform: translate3d(0, -2px, 0);
    border-color: rgba(255, 255, 255, 0.13);
    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-form label {
    display: grid;
    gap: 0.5rem;
}

.contact-form span {
    font-size: 0.92rem;
    color: rgba(247, 248, 255, 0.92);
    letter-spacing: 0.01em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--text);
    padding: 0.92rem 0.95rem;
    font: inherit;
    resize: vertical;
    transition:
        border-color 180ms ease,
        box-shadow 220ms ease,
        background-color 220ms ease,
        transform 220ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(244, 245, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(113, 144, 255, 0.9);
    background: rgba(255, 255, 255, 0.065);
    box-shadow:
        0 0 0 4px rgba(95, 128, 255, 0.14),
        0 0 28px rgba(145, 98, 255, 0.18);
    transform: translate3d(0, -1px, 0);
}

.contact-form textarea {
    min-height: 140px;
}

.contact-submit {
    margin-top: 0.35rem;
    width: 100%;
    min-height: 3.25rem;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(120deg, #b30d57, #de1a58, #ff8a3d);
    background-size: 170% 170%;
    box-shadow:
        0 12px 28px rgba(222, 26, 88, 0.24),
        0 0 0 rgba(255, 138, 61, 0);
}

.contact-submit:hover {
    transform: translate3d(0, -2px, 0) scale(1.006);
    filter: brightness(1.05);
    box-shadow:
        0 18px 34px rgba(222, 26, 88, 0.3),
        0 0 24px rgba(255, 138, 61, 0.28);
}

.contact-submit:focus-visible {
    box-shadow:
        0 0 0 4px rgba(118, 140, 255, 0.18),
        0 18px 38px rgba(65, 110, 255, 0.28);
}

.contact-privacy {
    margin: 0.25rem 0 0;
    color: rgba(244, 245, 255, 0.5);
    font-size: 0.75rem;
    line-height: 1.5;
}

.contact-privacy a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(244, 245, 255, 0.32);
    text-underline-offset: 0.18em;
    transition: color 180ms ease, text-decoration-color 180ms ease;
}

.contact-privacy a:hover,
.contact-privacy a:focus-visible {
    color: rgba(244, 245, 255, 0.82);
    text-decoration-color: currentColor;
}

.legal-links a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 180ms ease, border-bottom-color 180ms ease;
}

.legal-links a:hover {
    color: #de1a58;
    border-bottom-color: rgba(222, 26, 88, 0.6);
}

.contact-form,
.contact-benefits li,
.contact-submit,
.contact-form input,
.contact-form textarea {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .contact-form,
    .contact-benefits li,
    .contact-submit,
    .contact-form input,
    .contact-form textarea {
        transition: none;
        transform: none;
    }
}

.site-footer {
    position: relative;
    z-index: 2;
    width: var(--content-width);
    margin: 0 auto 1.25rem;
    padding-top: 1.2rem;
    color: rgba(255, 255, 255, 0.62);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-column {
    display: flex;
    align-items: center;
    min-width: 0;
}

.footer-branding {
    justify-content: flex-start;
}

.footer-legal {
    justify-content: flex-end;
}

.footer-copy {
    margin: 0;
    color: rgba(244, 245, 255, 0.4);
    line-height: 1.35;
    font-size: 0.82rem;
    max-width: none;
    white-space: nowrap;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(244, 245, 255, 0.62);
    font-size: 0.78rem;
    text-decoration: none;
    transition: color 180ms ease;
}

.legal-links a:hover {
    color: rgba(255, 255, 255, 0.92);
    border-bottom-color: transparent;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    color: rgba(244, 245, 255, 0.62);
    opacity: 1;
    transition: color 180ms ease, transform 180ms ease;
}

.social-icon-link svg {
    display: block;
    width: 100%;
    height: 100%;
}

.social-icon-link:hover {
    color: rgba(255, 255, 255, 0.92);
    transform: translateY(-1px);
}

.legal-main {
    position: relative;
    z-index: 2;
    width: min(920px, 92vw);
    margin: 0 auto;
    padding-top: 7rem;
    padding-bottom: 2rem;
}

@keyframes serviceRise {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes primaryButtonShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes mobileLogoFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mobileTitleSlide {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mobileChipIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mobileButtonGlow {
    0%,
    100% {
        box-shadow:
            0 12px 28px rgba(222, 26, 88, 0.24),
            0 0 0 rgba(255, 138, 61, 0);
    }
    50% {
        box-shadow:
            0 18px 38px rgba(222, 26, 88, 0.34),
            0 0 24px rgba(255, 138, 61, 0.2);
    }
}

@keyframes mobileGradientPulse {
    from {
        filter: saturate(0.92) brightness(0.94);
    }
    to {
        filter: saturate(1.08) brightness(1.03);
    }
}

@keyframes mobileProjectAttention {
    0% {
        transform: scale(0.9);
    }
    68% {
        transform: scale(1.035);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 900px) {
    :root {
        --content-width: min(100% - 2.5rem, 760px);
        --section-gap: 1rem;
    }

    .section {
        margin-bottom: clamp(2.7rem, 7vw, 4.4rem);
    }

    .hero {
        grid-template-columns: 1fr;
        align-items: start;
        min-height: auto;
        padding-top: clamp(1.3rem, 4vw, 2rem);
        gap: 1.7rem;
    }

    .hero-brand-block {
        gap: 0.7rem;
        padding-bottom: 1rem;
    }

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

    .hero-copy::before {
        display: none;
    }

    .services-shell {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .services-intro {
        position: static;
    }

    .services-intro h2 {
        max-width: none;
    }

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

    .contact {
        padding: 1.25rem;
    }

    .contact-shell {
        grid-template-columns: 1fr;
        gap: 1.45rem;
        align-items: start;
    }

    .contact-copy h2 {
        max-width: none;
    }

    .contact-form {
        width: 100%;
        justify-self: stretch;
        border-radius: 26px;
    }

    .project-case,
    .project-case-reverse,
    .project-demo-card {
        grid-template-columns: 1fr;
    }

    .project-demo-media {
        min-height: clamp(460px, 64vh, 680px);
    }

    .project-demo-image {
        height: clamp(460px, 64vh, 680px);
        object-position: left top;
    }

    .project-demo-content {
        width: min(52%, 420px);
        padding: 1.35rem;
    }

    .project-case-reverse .project-visual,
    .project-case-reverse .project-copy {
        order: initial;
    }
}

@media (max-width: 768px) {
    :root {
        --content-width: calc(100vw - clamp(2rem, 6vw, 2.5rem));
        --section-gap: 0.75rem;
        --card-padding: 1rem;
        --card-padding-wide: clamp(1rem, 4vw, 1.25rem);
    }

    body.project-modal-open {
        overflow: hidden;
    }

    .blob-outer-container {
        filter: blur(46px);
        opacity: 0.72;
    }

    .blob-inner-container {
        transform: scale(0.72);
    }

    .blob {
        animation:
            spinBlob 42s linear infinite,
            mobileGradientPulse 14s ease-in-out infinite alternate;
    }

    .content {
        padding-top: 4.65rem;
        padding-bottom: 1.4rem;
    }

    .section {
        margin-bottom: clamp(2.25rem, 8vw, 3.25rem);
        scroll-margin-top: 4.35rem;
    }

    h2,
    .services-intro h2,
    .projects-header h2,
    .story-editorial-header h2,
    .contact-copy h2 {
        font-size: clamp(1.7rem, 6.4vw, 2.35rem);
        line-height: 1.08;
        letter-spacing: -0.03em;
    }

    .hero-brand-block .eyebrow {
        font-size: clamp(0.75rem, 3.1vw, 0.8125rem);
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: rgba(244, 245, 255, 0.5);
        margin-bottom: -0.6rem;
        text-shadow: none;
    }

    .cards,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .site-nav {
        display: none;
    }

    .site-header {
        transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform;
    }

    .site-header.is-header-hidden {
        transform: translateY(-110%);
    }

    .brand-desktop {
        display: none;
    }

    .brand-mobile {
        display: inline;
        animation: mobileLogoFade 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .mobile-header-actions {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        margin-left: auto;
    }

    .mobile-menu-toggle {
        min-height: 2.25rem;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.035);
        color: rgba(244, 245, 255, 0.88);
        backdrop-filter: blur(12px);
    }

    .mobile-menu-toggle {
        width: 2.4rem;
        min-height: 2.25rem;
        padding: 0;
        border-color: transparent;
        border-radius: 999px;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .mobile-menu-icon {
        width: 1rem;
        display: grid;
        gap: 0.2rem;
    }

    .mobile-menu-icon span {
        display: block;
        height: 1px;
        margin-left: auto;
        background: currentColor;
        transition: width 180ms ease, transform 180ms ease, opacity 180ms ease;
    }

    .mobile-menu-icon span:nth-child(1) {
        width: 100%;
    }

    .mobile-menu-icon span:nth-child(2) {
        width: 72%;
    }

    .mobile-menu-icon span:nth-child(3) {
        width: 44%;
    }

    .site-header.is-menu-open .site-nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        right: clamp(1rem, 3vw, 1.4rem);
        display: grid;
        width: min(12rem, calc(100vw - 2rem));
        gap: 0.25rem;
        padding: 0.55rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        background: rgba(9, 10, 16, 0.9);
        backdrop-filter: blur(18px);
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
    }

    .site-header.is-menu-open .site-nav a {
        display: block;
        padding: 0.7rem 0.75rem;
        border-radius: 10px;
        font-size: 0.82rem;
    }

    .site-header.is-menu-open .site-nav a:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .site-header.is-menu-open .site-nav a[href="#kontakt"] {
        display: none;
    }

    .service-card,
    .service-card-featured {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 0.8rem;
        grid-column: auto;
        min-height: auto;
        margin-left: 0;
        margin-right: 0;
        padding: var(--card-padding);
        border-radius: 16px;
    }

    .service-index {
        grid-row: auto;
        margin-bottom: 0.15rem;
    }

    .service-card h3 {
        margin-bottom: 0.1rem;
    }

    .service-badge,
    .service-card-featured .service-badge {
        display: none;
    }

    .services-intro {
        display: none;
    }

    .services-shell {
        gap: 0;
    }

    .services-grid {
        display: flex;
        align-items: stretch;
        gap: 8vw;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        padding-inline: 4vw;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 4vw;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-inline: contain;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .services-grid .service-card,
    .services-grid .service-card-featured {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        align-self: stretch;
        flex: 0 0 92vw;
        width: 92vw;
        gap: 0.8rem;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.075);
        border-radius: 16px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.016));
        backdrop-filter: blur(14px);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .services-grid .service-card-featured {
        background:
            radial-gradient(circle at top right, rgba(222, 26, 88, 0.16), transparent 24%),
            rgba(255, 255, 255, 0.03);
    }

    .services-grid .service-index {
        margin: 0 0 0.15rem;
        color: rgba(244, 245, 255, 0.5);
        font-size: 0.78rem;
        letter-spacing: 0.2em;
    }

    .services-grid .service-card h3 {
        max-width: none;
        margin: 0;
        font-size: clamp(1.15rem, 5vw, 1.35rem);
        line-height: 1.16;
    }

    .services-grid .service-card > p:nth-of-type(2) {
        max-width: none;
        color: rgba(244, 245, 255, 0.7);
        font-size: 0.94rem;
        line-height: 1.68;
    }

    .services-carousel-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.7rem;
        margin-top: 20px;
        margin-bottom: 90px;
    }

    .services-carousel-controls button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.65rem;
        height: 2.65rem;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.045);
        color: rgba(244, 245, 255, 0.9);
        font: inherit;
        font-size: 1.05rem;
        line-height: 1;
        backdrop-filter: blur(12px);
        cursor: pointer;
        transition:
            transform 180ms ease,
            background-color 180ms ease,
            border-color 180ms ease,
            opacity 180ms ease;
    }

    .services-carousel-controls button:hover,
    .services-carousel-controls button:focus-visible {
        transform: translateY(-2px);
        border-color: rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.08);
        outline: none;
    }

    .services-carousel-controls button:active {
        transform: scale(0.94);
    }

    .services-carousel-controls button:disabled {
        opacity: 0.28;
        cursor: default;
        transform: none;
    }

    .hero {
        --mobile-hero-padding: clamp(4rem, 18vw, 5rem);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 2rem;
        min-height: calc(100svh - 4.65rem);
        margin-bottom: 0;
        padding-top: var(--mobile-hero-padding);
        padding-bottom: calc(var(--mobile-hero-padding) + 1.75rem);
        --hero-pointer-x: 72%;
        --hero-pointer-y: 34%;
        position: relative;
        isolation: isolate;
        overflow: hidden;
    }

    .hero::before {
        content: "";
        position: absolute;
        z-index: -1;
        inset: 0;
        background: radial-gradient(
            circle 11rem at var(--hero-pointer-x) var(--hero-pointer-y),
            rgba(100, 126, 255, 0.14),
            rgba(222, 26, 88, 0.045) 42%,
            transparent 72%
        );
        opacity: 0;
        transition: opacity 420ms ease;
        pointer-events: none;
    }

    .hero.is-pointer-active::before {
        opacity: 1;
    }

    .hero-brand-block,
    .hero-copy {
        display: contents;
    }

    .logo-text,
    .hero-copy > .tagline:not(.tagline-lead),
    .hero-meta,
    .hero-actions .btn-ghost {
        display: none;
    }

    .hero-brand-block::after {
        display: none;
    }

    .hero-brand-block .eyebrow {
        display: block;
        order: 1;
        animation: mobileLogoFade 760ms cubic-bezier(0.22, 1, 0.36, 1) 80ms both;
    }

    .desktop-hero-title {
        display: none;
    }

    .mobile-hero-title {
        display: inline;
    }

    .desktop-hero-copy {
        display: none;
    }

    .mobile-hero-copy {
        display: inline;
    }

    .tagline-lead {
        order: 2;
        position: relative;
        z-index: 1;
        max-width: 17ch;
        font-size: clamp(2.75rem, 11vw, 3.5rem);
        font-weight: 700;
        line-height: 1.08;
        letter-spacing: -0.035em;
    }

    .hero.is-visible .tagline-lead {
        animation: mobileTitleSlide 820ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
    }

    .hero-caption {
        order: 3;
        max-width: 32rem;
        margin-bottom: 0.5rem;
        color: rgba(244, 245, 255, 0.7);
        font-size: clamp(0.95rem, 3.8vw, 1.05rem);
        line-height: 1.65;
    }

    .hero-actions {
        order: 4;
        width: 100%;
        margin: 0;
    }

    .hero-actions .btn-primary {
        width: 100%;
        animation:
            primaryButtonShift 7s ease infinite,
            mobileButtonGlow 3.8s ease-in-out infinite;
        transition:
            transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 260ms ease,
            filter 260ms ease;
    }

    .hero-actions .btn-primary:hover,
    .hero-actions .btn-primary:focus-visible {
        animation: none;
        transform: translateY(-2px) scale(1.012);
        filter: brightness(1.05);
        box-shadow:
            0 18px 38px rgba(222, 26, 88, 0.34),
            0 0 26px rgba(255, 138, 61, 0.24);
    }

    .hero-actions .btn-primary:active {
        transform: scale(0.985);
    }

    .hero-actions .btn-primary.is-scroll-active {
        transform: translateY(-1px) scale(1.015);
        filter: brightness(1.04);
        box-shadow:
            0 18px 40px rgba(222, 26, 88, 0.36),
            0 0 30px rgba(255, 138, 61, 0.26);
    }

    .hero-points {
        order: 5;
        display: flex;
        justify-content: flex-start;
        align-self: stretch;
        width: 100%;
        max-width: 100%;
        gap: 0.45rem;
        margin-left: 0;
        padding-left: 0;
    }

    .hero-points span {
        padding: 0.36rem 0.58rem;
        font-size: 0.68rem;
    }

    .hero.is-visible .hero-points span {
        animation: mobileChipIn 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .hero.is-visible .hero-points span:nth-child(1) {
        animation-delay: 420ms;
    }

    .hero.is-visible .hero-points span:nth-child(2) {
        animation-delay: 540ms;
    }

    .hero.is-visible .hero-points span:nth-child(3) {
        animation-delay: 660ms;
    }

    .intro-bridge {
        margin-top: 0;
        margin-bottom: 50px;
        padding-top: 100px;
    }

    .mobile-services-heading {
        display: grid;
        justify-items: start;
        gap: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .mobile-services-heading h2 {
        margin: 0;
        max-width: 18ch;
        font-size: clamp(1.7rem, 6.4vw, 2.35rem);
        line-height: 1.08;
        letter-spacing: -0.03em;
    }

    .intro-bridge-line {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .story-editorial-header h2 {
        max-width: 22ch;
        font-size: clamp(1.55rem, 5.8vw, 2rem);
        line-height: 1.08;
    }

    .story-editorial {
        padding-block: 1.7rem;
        margin-bottom: 0.8rem;
    }

    .story-editorial::before,
    .story-editorial::after,
    .contact::before,
    .contact::after,
    .contact-form::before {
        opacity: 0.38;
    }

    .story-editorial-header {
        margin-bottom: 1.65rem;
    }

    .story-editorial-list {
        display: grid;
        width: 100%;
        gap: 0;
        overflow: visible;
    }

    .story-editorial-list::before,
    .story-editorial-list::after {
        content: none;
    }

    .story-editorial-item {
        grid-template-columns: 1fr;
        gap: 0;
        min-width: 0;
        margin-bottom: 0;
        padding: 0;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        background: transparent;
        opacity: 1;
        transform: none;
    }

    .story-editorial-item.is-active,
    .story-editorial-item:focus-within {
        opacity: 1;
        transform: none;
    }

    .story-editorial-item:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .story-editorial-item::before,
    .story-editorial-item::after {
        content: none;
    }

    .story-editorial-kicker {
        display: none;
    }

    .story-editorial-item h3 {
        grid-column: 1;
        max-width: none;
        margin: 0;
        line-height: 1.18;
    }

    .story-accordion-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
        padding: 20px 0;
        color: rgba(244, 245, 255, 0.92);
        cursor: pointer;
        touch-action: manipulation;
    }

    .story-accordion-trigger:focus-visible {
        color: #ffffff;
        outline: 1px solid rgba(255, 255, 255, 0.24);
        outline-offset: 5px;
        border-radius: 2px;
    }

    .story-accordion-icon {
        position: relative;
        display: block;
        width: 1rem;
        height: 1rem;
        flex: 0 0 1rem;
        color: rgba(244, 245, 255, 0.64);
        transition:
            color 300ms ease,
            transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .story-accordion-icon::before,
    .story-accordion-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0.85rem;
        height: 1px;
        border-radius: 999px;
        background: currentColor;
        transform: translate(-50%, -50%);
        transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .story-accordion-icon::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .story-editorial-item .story-accordion-content {
        display: grid;
        grid-template-rows: 0fr;
        opacity: 0;
        transition:
            grid-template-rows 460ms cubic-bezier(0.22, 1, 0.36, 1),
            opacity 300ms ease;
    }

    .story-accordion-content-inner {
        display: block;
        min-height: 0;
        overflow: hidden;
    }

    .story-accordion-content p {
        grid-column: 1;
        margin: 0;
        padding: 0 2rem 20px 0;
        color: rgba(244, 245, 255, 0.7);
        font-size: 0.94rem;
        line-height: 1.65;
    }

    .story-editorial-item.is-accordion-open .story-accordion-content {
        grid-template-rows: 1fr;
        opacity: 1;
    }

    .story-editorial-item.is-accordion-open .story-accordion-icon {
        color: #ffffff;
        transform: rotate(45deg);
    }

    .project-visual {
        min-height: 260px;
    }

    .project-device-laptop {
        transform: none;
    }

    .project-device-portrait {
        width: min(72%, 240px);
    }

    .project-demo-card {
        min-height: 0;
        width: 100%;
        padding: 0;
    }

    .project-demo-card::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        border-radius: 18px;
        background: rgba(3, 5, 11, 0.66);
        opacity: 0;
        pointer-events: none;
        transition: opacity 260ms ease;
    }

    .project-demo-card.is-open::after {
        opacity: 1;
        pointer-events: auto;
    }

    #projekte {
        margin-bottom: 110px;
    }

    .project-demo-media {
        min-height: 0;
        border-radius: 18px;
        transform: scale(0.9);
        transform-origin: center;
        filter: brightness(0.84) saturate(0.9);
        box-shadow: none;
        will-change: transform, filter;
        transition:
            transform 600ms ease-out,
            filter 600ms ease-out,
            box-shadow 600ms ease-out;
    }

    .project-demo-media:hover {
        transform: scale(0.9);
        filter: brightness(0.84) saturate(0.9);
        box-shadow: none;
    }

    .project-demo-media.is-in-view,
    .project-demo-media.is-in-view:hover,
    .project-demo-media.is-in-view:focus-visible {
        transform: scale(1);
        filter: brightness(1.06) saturate(1.04);
        animation: mobileProjectAttention 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
        box-shadow:
            0 22px 48px rgba(0, 0, 0, 0.36),
            0 0 30px rgba(35, 118, 255, 0.2),
            0 0 44px rgba(222, 26, 88, 0.12);
    }

    .project-demo-media.is-in-view .project-demo-toggle-hint {
        transform: translate3d(0, 0, 0);
        opacity: 1;
        filter: brightness(1.06);
        background: rgba(9, 12, 22, 0.42);
        border-color: rgba(255, 255, 255, 0.13);
    }

    .project-demo-media.is-in-view .project-demo-toggle-text {
        display: inline;
    }

    .project-demo-image {
        height: auto;
        border-radius: 18px;
        object-fit: contain;
        object-position: left top;
    }

    .project-demo-kpis {
        justify-content: center;
        gap: 1rem;
        margin-top: 0.65rem;
        padding-top: 1.25rem;
        text-align: center;
    }

    .project-demo-kpi {
        flex: 1 1 4.5rem;
        justify-items: center;
    }

    .project-demo-content {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 50%;
        width: 90%;
        max-width: 32rem;
        max-height: 80vh;
        max-height: 80dvh;
        overflow-y: auto;
        overscroll-behavior: contain;
        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 18px;
        transform: translate(-50%, calc(-50% + 1.25rem));
        gap: 0.95rem;
        padding: 3.5rem 1.5rem 1.5rem;
        visibility: hidden;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
    }

    .project-desktop-copy {
        display: none;
    }

    .project-mobile-copy {
        display: inline;
    }

    .project-demo-text {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .project-demo-points {
        gap: 0.6rem;
    }

    .project-demo-points li {
        font-size: 0.86rem;
        line-height: 1.45;
    }

    .project-demo-button {
        justify-self: center;
        margin-top: 0.75rem;
    }

    [data-project-showcase].is-open .project-demo-content {
        transform: translate(-50%, -50%);
        visibility: visible;
    }

    .project-modal-close {
        position: absolute;
        top: 16px;
        right: 16px;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
        padding: 0;
        border: 0;
        background: transparent;
        color: rgba(244, 245, 255, 0.82);
        font: inherit;
        font-size: 1.5rem;
        line-height: 1;
        cursor: pointer;
        transition:
            color 180ms ease,
            transform 180ms ease;
    }

    .project-modal-close:hover,
    .project-modal-close:focus-visible {
        color: #ffffff;
        outline: none;
        transform: scale(1.08);
    }

    .project-demo-toggle-icon {
        width: 1.05rem;
        height: 1.05rem;
    }

    .project-demo-toggle-hint {
        right: 0.9rem;
        bottom: 0.9rem;
        min-height: 2rem;
        padding: 0.42rem 0.68rem;
        transform: translate3d(-0.2rem, 0, 0);
    }

    .contact {
        border-radius: 20px;
        padding: 0.9375rem;
    }

    .contact-shell {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.35rem;
        align-items: start;
    }

    .contact-copy {
        gap: 0.7rem;
        min-width: 0;
    }

    .contact-copy p {
        max-width: 38rem;
        font-size: clamp(0.9rem, 3.2vw, 1rem);
        line-height: 1.65;
    }

    .contact-copy > p:last-child {
        margin-bottom: 0;
    }

    .contact-copy h2 {
        max-width: 16ch;
        font-size: clamp(1.7rem, 6.4vw, 2.35rem);
        line-height: 1.08;
    }

    .contact-benefits li {
        padding: 0.9rem 0.95rem 0.9rem 2.75rem;
    }

    .contact .contact-form {
        width: 100%;
        justify-self: stretch;
        gap: 0;
        padding: 1.25rem 0 0;
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        background: none;
        backdrop-filter: none;
        box-shadow: none;
        transform: none;
    }

    .contact .contact-form::before {
        display: none;
    }

    .contact .contact-form:hover {
        border-color: transparent;
        border-top-color: rgba(255, 255, 255, 0.1);
        background: none;
        box-shadow: none;
        transform: none;
    }

    .contact-form .contact-trust {
        margin-bottom: 16px;
        font-size: clamp(0.66rem, 2.3vw, 0.76rem);
        line-height: 1.4;
    }

    .contact-form label {
        gap: 0.35rem;
        min-width: 0;
        margin-bottom: 16px;
    }

    .contact-form label > span {
        font-size: clamp(0.72rem, 2.6vw, 0.82rem);
    }

    .contact-form input,
    .contact-form textarea,
    .contact-submit {
        width: 100%;
        min-width: 0;
        font-size: clamp(0.76rem, 2.7vw, 0.88rem);
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.75rem 0.7rem;
        border-radius: 11px;
    }

    .contact-form textarea {
        min-height: 120px;
    }

    .contact .contact-submit {
        min-height: 3rem;
        padding-inline: 0.6rem;
        font-size: clamp(0.74rem, 2.7vw, 0.86rem);
        line-height: 1.25;
        white-space: normal;
    }

    .project-demo-button {
        width: fit-content;
        justify-self: center;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
        padding-top: 1rem;
    }

    .footer-branding {
        align-items: flex-start;
    }

    .footer-legal {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .legal-links {
        justify-content: flex-start;
        gap: 1rem;
    }

}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal-child,
    .reveal.is-visible .reveal-child,
    .story-editorial-item > *,
    .story-editorial-item.is-visible > * {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
    }
}

.legal-panel {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    padding: 1.2rem;
}

.legal-panel h1 {
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.legal-panel h2 {
    margin-top: 1.2rem;
}



@keyframes spinBlob {
    0% {
        transform: rotate(0deg) scale(1.7);
    }
    100% {
        transform: rotate(1turn) scale(1.7);
    }
}

@media (max-width: 900px) {
    .split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .site-header {
        padding-block: 0.5rem;
        padding-inline: 1rem;
    }

    .site-nav {
        gap: 0.35rem 0.55rem;
    }

    .site-nav a {
        font-size: 0.76rem;
    }

    .content {
        padding-top: 5rem;
    }

    .hero {
        min-height: calc(100svh - 5rem);
    }

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

    .site-footer {
        gap: 1rem;
    }

    .footer-copy {
        max-width: none;
    }
}

@media (max-width: 480px) {
    :root {
        --content-width: calc(100vw - 2rem);
        --card-padding: 0.95rem;
    }

    .site-header {
        gap: 0.55rem;
        padding-block: 0.5rem;
        padding-inline: 1rem;
    }

    .brand {
        font-size: 0.94rem;
    }

    .site-nav {
        gap: 0.28rem 0.45rem;
        max-width: 67vw;
    }

    .site-nav a {
        font-size: clamp(0.66rem, 2.7vw, 0.72rem);
    }

    .hero-brand-block .eyebrow {
        font-size: clamp(0.75rem, 3.1vw, 0.8125rem);
    }

    .services-intro h2,
    .projects-header h2,
    .mobile-services-heading h2 {
        font-size: clamp(1.65rem, 7vw, 2.05rem);
        line-height: 1.1;
    }

    .tagline-lead {
        font-size: clamp(2.75rem, 12vw, 3.2rem);
    }

    .hero {
        gap: 2rem;
    }

    .hero-points {
        gap: 0.45rem;
    }

    .hero-points span,
    .services-points span,
    .service-badge {
        font-size: 0.7rem;
        padding: 0.38rem 0.62rem;
    }

    .hero-actions,
    .btn {
        width: 100%;
    }

    .hero-actions {
        gap: 0.65rem;
    }

    .intro-bridge-line,
    .tagline,
    .section-intro,
    .service-card > p:nth-of-type(2),
    .story-editorial-item p:not(.story-editorial-kicker),
    .contact-copy p,
    .project-demo-text {
        overflow-wrap: anywhere;
    }

    .project-demo-toggle-text {
        display: none;
    }

    .contact {
        padding: var(--card-padding);
        border-radius: 16px;
    }

    .contact-form {
        gap: 0.85rem;
        padding: 0.9rem;
        border-radius: 14px;
    }

    .contact-submit {
        font-size: clamp(0.88rem, 3.7vw, 0.96rem);
    }

    .site-footer {
        width: var(--content-width);
    }

    .footer-copy {
        white-space: normal;
    }
}
