:root {
    --bg: #050505;
    --bg-2: #090909;
    --bg-3: #0d0d0d;

    --surface: rgba(255, 255, 255, 0.028);
    --surface-2: rgba(255, 255, 255, 0.042);
    --surface-3: rgba(255, 255, 255, 0.065);
    --surface-soft: rgba(255, 255, 255, 0.02);
    --surface-soft-2: rgba(255, 255, 255, 0.025);

    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --line: rgba(255, 255, 255, 0.055);
    --line-strong: rgba(255, 255, 255, 0.10);

    --text: #f4f2ec;
    --muted: rgba(244, 242, 236, 0.74);
    --soft: rgba(244, 242, 236, 0.48);
    --soft-2: rgba(244, 242, 236, 0.24);

    --accent: #ffffff;
    --button-text: #050505;

    --accent-warm: #d6b25e;
    --accent-warm-soft: rgba(214, 178, 94, 0.16);
    --accent-warm-line: rgba(214, 178, 94, 0.24);

    --shadow-xl: 0 28px 90px rgba(0, 0, 0, 0.46);
    --shadow-lg: 0 18px 54px rgba(0, 0, 0, 0.32);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.24);

    --radius-xs: 14px;
    --radius-sm: 18px;
    --radius-md: 28px;
    --radius-lg: 38px;
    --radius-xl: 52px;

    --max: 1280px;
    --section-space: 136px;
    --hero-space: 176px;

    --header-bg: rgba(5, 5, 5, 0.66);
    --header-bg-scrolled: rgba(5, 5, 5, 0.82);

    --grid: rgba(255, 255, 255, 0.034);
    --vignette: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.42) 100%);
}

html.light {
    --bg: #f4f1eb;
    --bg-2: #efebe4;
    --bg-3: #e8e2d8;

    --surface: rgba(255, 255, 255, 0.58);
    --surface-2: rgba(255, 255, 255, 0.74);
    --surface-3: rgba(255, 255, 255, 0.92);
    --surface-soft: rgba(17, 17, 17, 0.04);
    --surface-soft-2: rgba(17, 17, 17, 0.06);

    --border: rgba(17, 17, 17, 0.08);
    --border-strong: rgba(17, 17, 17, 0.14);
    --line: rgba(17, 17, 17, 0.06);
    --line-strong: rgba(17, 17, 17, 0.12);

    --text: #111111;
    --muted: rgba(17, 17, 17, 0.72);
    --soft: rgba(17, 17, 17, 0.48);
    --soft-2: rgba(17, 17, 17, 0.24);

    --accent: #111111;
    --button-text: #f7f4ee;

    --accent-warm: #b9984c;
    --accent-warm-soft: rgba(185, 152, 76, 0.14);
    --accent-warm-line: rgba(185, 152, 76, 0.20);

    --shadow-xl: 0 28px 70px rgba(17, 17, 17, 0.10);
    --shadow-lg: 0 18px 40px rgba(17, 17, 17, 0.08);
    --shadow-md: 0 10px 24px rgba(17, 17, 17, 0.07);

    --header-bg: rgba(244, 241, 235, 0.68);
    --header-bg-scrolled: rgba(244, 241, 235, 0.86);

    --grid: rgba(17, 17, 17, 0.035);
    --vignette: radial-gradient(circle at center, transparent 48%, rgba(0, 0, 0, 0.035) 100%);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    background: radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.05), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.03), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 44%, var(--bg-3) 100%);
    transition: background 0.25s ease,
    color 0.25s ease;
}

.header,
.card,
.work-card,
.why-card,
.metrics-card,
.cta-panel,
.faq-item,
.footer {
    transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 12px;
    z-index: 200;
    background: var(--accent);
    color: var(--button-text);
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
}

.skip-link:focus {
    left: 16px;
}

a {
    color: inherit;
}

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

#webgl {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.92;
}

.grid-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient(to right, var(--grid) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at center, black 33%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 33%, transparent 100%);
    opacity: 0.7;
}

.vignette {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: var(--vignette);
    transition: background 0.25s ease;
}

.grain {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.02;
    background-image: radial-gradient(circle at 20% 20%, #fff 0.7px, transparent 0.7px),
    radial-gradient(circle at 80% 46%, #fff 0.7px, transparent 0.7px),
    radial-gradient(circle at 50% 80%, #fff 0.7px, transparent 0.7px);
    background-size: 170px 170px;
    mix-blend-mode: screen;
}

html.light .grain {
    mix-blend-mode: multiply;
    opacity: 0.016;
}

.site {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.site > main {
    flex: 1 0 auto;
}

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

.header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--header-bg);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.header.scrolled {
    background: var(--header-bg-scrolled);
    border-bottom-color: var(--line-strong);
}

.nav {
    min-height: 80px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-mobile-toggle {
    display: none;
    appearance: none;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    font: inherit;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
}

.nav-mobile-panel {
    display: none;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: -0.03em;
}

.brand-mark {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--accent-warm);
    box-shadow: 0 0 18px rgba(214, 178, 94, 0.18);
    flex: 0 0 auto;
}

html.light .brand-mark {
    box-shadow: 0 0 18px rgba(185, 152, 76, 0.12);
}

.brand-logo {
    width: auto;
    height: 28px;
    display: block;
}

.nav-links {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    text-decoration: none;
    white-space: nowrap;
    color: var(--muted);
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 0.94rem;
    transition: color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover {
    color: var(--text);
    background: var(--surface);
}

.why-short {
    display: none;
}

@media (max-width: 1480px) {
    .nav-why-link .why-full {
        display: none;
    }

    .nav-why-link .why-short {
        display: inline;
    }
}

.nav-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.nav-actions .btn {
    padding: 12px 18px;
}

.nav-cta-mobile {
    display: none;
}

.utility-dock {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 56;
    display: flex;
    align-items: flex-end;
}

body.mobile-nav-open .utility-dock {
    opacity: 0;
    pointer-events: none;
}

.control-bundle {
    display: grid;
    grid-template-columns: 44px 74px 0;
    align-items: center;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    overflow: hidden;
    transition: grid-template-columns 0.2s ease;
}

.control-bundle.is-expanded {
    grid-template-columns: 44px 74px 44px;
}

.lang-form {
    margin: 0;
}

.lang-form-bundle {
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    border-left: 1px solid var(--border);
    width: 74px;
    height: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}

.lang-form-bundle:hover {
    background: var(--surface-2);
}

.lang-form-bundle:focus-within {
    background: var(--surface-2);
}

.lang-select {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    border-radius: 999px;
    padding: 0 34px 0 14px;
    height: 44px;
    font: inherit;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.lang-select-bundle {
    border: 0;
    background: transparent;
    height: 100%;
    width: 100%;
    min-width: 0;
    padding: 0 10px;
    margin: 0;
    display: block;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: none;
    text-align: center;
    text-align-last: center;
    letter-spacing: 0;
    line-height: normal;
    text-indent: 0;
    border-radius: 0;
    cursor: pointer;
}

.lang-select-bundle option {
    text-align: center;
}

.lang-select-bundle:hover,
.lang-select-bundle:focus-visible {
    background: transparent;
    outline: none;
}

.lang-select:not(.lang-select-bundle):hover {
    border-color: var(--border-strong);
    background: var(--surface-2);
}

.lang-select:not(.lang-select-bundle):focus-visible {
    outline: 2px solid var(--accent-warm);
    outline-offset: 2px;
}

.icon-btn,
.btn,
.btn-secondary,
.card,
.work-card {
    transition: transform 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease,
    opacity 0.24s ease;
}

.icon-btn:hover,
.btn:hover,
.btn-secondary:hover {
    transform: translateY(-1px);
}

.icon-btn {
    appearance: none;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font: inherit;
    font-size: 0.95rem;
    line-height: 1;
}

.control-bundle .icon-btn {
    width: 44px;
    height: 42px;
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.control-bundle .icon-btn:hover {
    transform: none;
    background: var(--surface-2);
}

.control-bundle .icon-btn:focus-visible {
    outline: 2px solid var(--accent-warm);
    outline-offset: -2px;
}

.icon-btn-theme {
    position: relative;
    color: rgba(255, 255, 255, 0.95);
}

.utility-top-btn {
    width: 0;
    height: 42px;
    border: 0;
    border-left: 0 solid var(--border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    transform: none;
    pointer-events: none;
    transition: width 0.2s ease, opacity 0.2s ease, border-left-color 0.2s ease, background 0.24s ease, border-color 0.24s ease;
}

.utility-top-btn.is-visible {
    width: 44px;
    border-left-width: 1px;
    opacity: 1;
    pointer-events: auto;
}

.theme-icon {
    display: block;
}

html.light .icon-btn-theme {
    color: rgba(17, 17, 17, 0.85);
}

.btn,
.btn-secondary {
    appearance: none;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
    padding: 14px 20px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.btn {
    background: var(--accent);
    color: var(--button-text);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

html.light .btn {
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.10);
}

.btn:hover {
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
}

.btn-secondary:hover {
    background: var(--surface-2);
    border-color: var(--border-strong);
}

.hero {
    min-height: calc(100vh - 80px);
    padding: 92px 0 96px;
    display: flex;
    align-items: flex-start;
}

.hero-container {
    width: 100%;
    max-width: none;
    padding-left: 40px;
    padding-right: 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.98fr);
    gap: 38px;
    align-items: start;
}

.hero-copy {
    max-width: 920px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface-soft-2);
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    background: linear-gradient(145deg, #efcf76 0%, #d6b25e 100%);
    clip-path: polygon(25% 6%, 75% 6%, 96% 50%, 75% 94%, 25% 94%, 4% 50%);
    opacity: 0.95;
    box-shadow: 0 0 14px rgba(214, 178, 94, 0.18);
}

.hex-prefix {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hex-prefix::before {
    content: "";
    width: 0.68em;
    height: 0.68em;
    flex: 0 0 auto;
    background: linear-gradient(145deg, #efcf76 0%, #d6b25e 100%);
    clip-path: polygon(25% 6%, 75% 6%, 96% 50%, 75% 94%, 25% 94%, 4% 50%);
    box-shadow: 0 0 10px rgba(214, 178, 94, 0.36);
}

.section-kicker.hex-prefix::before {
    width: 0.78em;
    height: 0.78em;
}

.btn.hex-prefix::before {
    width: 0.56em;
    height: 0.56em;
    background: linear-gradient(145deg, #7e5a12 0%, #473109 100%);
    box-shadow: none;
}

html.light .hex-prefix::before {
    background: linear-gradient(145deg, #222 0%, #0f0f0f 100%);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.18);
}

.hero h1 {
    margin: 0;
    font-size: clamp(3.5rem, 7.4vw, 7.5rem);
    line-height: 0.95;
    letter-spacing: -0.075em;
    max-width: 9ch;
    text-wrap: balance;
}

.hero h1 .subtle {
    color: var(--muted);
}

.hero-accent {
    color: var(--accent-warm);
    text-shadow: 0 0 24px rgba(214, 178, 94, 0.10);
}

.hero h1 .hero-lite-word {
    font-weight: 420 !important;
    color: rgba(244, 242, 236, 0.70);
    -webkit-text-fill-color: rgba(244, 242, 236, 0.70);
    opacity: 1;
}

.hero h1 .hero-prism-line {
    background-image: linear-gradient(
        94deg,
        #f1eee6 0%,
        #ded8cc 34%,
        #d3c3a0 68%,
        #c7beb0 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero h1 .hero-prism-line .hero-accent {
    color: var(--accent-warm) !important;
    -webkit-text-fill-color: var(--accent-warm) !important;
    background: none !important;
    text-shadow: 0 0 24px rgba(214, 178, 94, 0.10);
}

html.light .hero h1 .hero-prism-line {
    background-image: linear-gradient(
        94deg,
        #1a1a1a 0%,
        #2a2a2a 34%,
        #6f5a2c 68%,
        #3a3428 100%
    );
}

html.light .hero h1 .hero-lite-word {
    color: rgba(17, 17, 17, 0.60);
    -webkit-text-fill-color: rgba(17, 17, 17, 0.60);
}

.hero-hex-end-dot {
    position: absolute;
    right: -0.34em;
    bottom: 0.22em;
    width: 0.26em;
    height: 0.26em;
    background: linear-gradient(145deg, #efcf76 0%, #d6b25e 100%);
    clip-path: polygon(25% 6%, 75% 6%, 96% 50%, 75% 94%, 25% 94%, 4% 50%);
    box-shadow: 0 0 8px rgba(214, 178, 94, 0.35);
}

.hero-line-last {
    position: relative;
    display: inline-block;
    padding-right: 0.34em;
}

.reveal-line {
    overflow: hidden;
    padding-bottom: 0.08em;
}

.reveal-line > span {
    display: block;
    transform: translateY(102%);
    opacity: 0;
}

.hero-intro {
    margin-top: 26px;
    max-width: 54ch;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.75;
}

.hero-intro strong {
    color: var(--text);
    font-weight: 650;
}

.hero-capability-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 24px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero-capability-list::-webkit-scrollbar {
    display: none;
}

#capabilities .hero-capability-list .meta-chip {
    white-space: nowrap;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.hero-meta {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-meta-inline {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 8px;
    padding-right: 14px;
}

.hero-meta-inline::-webkit-scrollbar {
    display: none;
}

.hero-meta-inline .meta-chip {
    white-space: nowrap;
    padding: 8px 11px;
    font-size: 0.8rem;
    font-weight: 580;
}

.hero-meta-inline .meta-chip:nth-child(1) { opacity: 1; }
.hero-meta-inline .meta-chip:nth-child(2) { opacity: 0.92; }
.hero-meta-inline .meta-chip:nth-child(3) { opacity: 0.84; }
.hero-meta-inline .meta-chip:nth-child(4) { opacity: 0.76; }
.hero-meta-inline .meta-chip:nth-child(5) { opacity: 0.68; }
.hero-meta-inline .meta-chip:nth-child(6) { opacity: 0.60; }

html.light .hero-meta-inline .meta-chip:nth-child(1) { opacity: 0.98; }
html.light .hero-meta-inline .meta-chip:nth-child(2) { opacity: 0.9; }
html.light .hero-meta-inline .meta-chip:nth-child(3) { opacity: 0.82; }
html.light .hero-meta-inline .meta-chip:nth-child(4) { opacity: 0.74; }
html.light .hero-meta-inline .meta-chip:nth-child(5) { opacity: 0.66; }
html.light .hero-meta-inline .meta-chip:nth-child(6) { opacity: 0.58; }

@media (max-width: 720px) {
    .hero-meta-inline {
        gap: 8px;
    }

    .hero-meta-inline .meta-chip {
        padding: 8px 11px;
        font-size: 0.8rem;
    }
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface-soft-2);
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 600;
}

.hero-right {
    min-height: 640px;
}

.artifact {
    position: relative;
    min-height: 640px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.008)),
    rgba(255, 255, 255, 0.008);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.26);
    overflow: hidden;
    padding: 30px;
    isolation: isolate;
}

.artifact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.042), transparent 24%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.02), transparent 24%);
    pointer-events: none;
    z-index: 0;
}

.artifact::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.14) 100%);
    pointer-events: none;
    z-index: 0;
}

html.light .artifact::after {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.03) 100%);
}

.artifact-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 24px;
}

.artifact-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.artifact-label {
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--soft);
    margin-bottom: 14px;
}

.artifact-title {
    margin: 0;
    font-size: clamp(1.9rem, 2.7vw, 2.65rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    max-width: 13ch;
    text-wrap: balance;
}

.artifact-title-line {
    white-space: nowrap;
}

.artifact-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-warm);
    opacity: 0.96;
    box-shadow: 0 0 20px rgba(214, 178, 94, 0.22);
    flex: 0 0 auto;
    margin-top: 6px;
}

.artifact-center {
    position: relative;
    border-radius: 32px;
    border: 1px solid var(--line-strong);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.01);
    overflow: hidden;
    padding: 24px;
    min-height: 332px;
}

.artifact-grid {
    position: absolute;
    inset: 0;
    opacity: 0.34;
    background-image: linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.18) 100%);
    -webkit-mask-image: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.18) 100%);
    pointer-events: none;
}

.artifact-rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.3;
    background: radial-gradient(circle at 50% 57%, transparent 0 18%, rgba(255, 255, 255, 0.10) 18.2% 18.6%, transparent 19%),
    radial-gradient(circle at 50% 57%, transparent 0 29%, rgba(255, 255, 255, 0.07) 29.2% 29.6%, transparent 30%),
    radial-gradient(circle at 50% 57%, transparent 0 40%, rgba(255, 255, 255, 0.05) 40.2% 40.6%, transparent 41%);
}

.artifact-link,
.artifact-node,
.artifact-node-label,
.artifact-pulse {
    position: absolute;
}

.artifact-link {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform-origin: left center;
    opacity: 0.72;
}

html.light .artifact-link {
    background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.16), transparent);
}

.artifact-node {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--text);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.045),
    0 0 18px rgba(255, 255, 255, 0.16);
    z-index: 2;
}

html.light .artifact-node {
    box-shadow: 0 0 0 6px rgba(17, 17, 17, 0.05),
    0 0 14px rgba(17, 17, 17, 0.10);
}

.artifact-node.core-node {
    background: var(--accent-warm);
    box-shadow: 0 0 0 6px rgba(214, 178, 94, 0.08),
    0 0 18px rgba(214, 178, 94, 0.20);
}

html.light .artifact-node.core-node {
    box-shadow: 0 0 0 6px rgba(185, 152, 76, 0.08),
    0 0 16px rgba(185, 152, 76, 0.16);
}

.artifact-pulse {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(214, 178, 94, 0.22);
    transform: translate(-22px, -22px);
    opacity: 0.45;
    z-index: 1;
}

.artifact-node-label {
    color: var(--soft);
    font-size: 0.84rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
    z-index: 2;
}

.artifact-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.signal-row {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface-soft-2);
    width: auto;
    min-height: 0;
}

.signal-name {
    color: var(--muted);
    font-size: 0.82rem;
    white-space: nowrap;
}

.signal-value {
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
}

.meta-chip,
.signal-row {
    max-width: 100%;
}

.section {
    padding: var(--section-space) 0;
    position: relative;
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 30px;
    align-items: start;
    margin-bottom: 44px;
}

.section-kicker {
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--soft);
    margin-bottom: 14px;
}

.section-title {
    margin: 0;
    font-size: clamp(2.35rem, 4vw, 4.2rem);
    line-height: 0.96;
    letter-spacing: -0.056em;
    max-width: 11ch;
    text-wrap: balance;
}

.section-text {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.9;
    max-width: 72ch;
}

.cards-4,
.work-grid,
.approach-grid {
    display: grid;
    gap: 18px;
}

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

.contact-team-section .section-head {
    margin-bottom: 28px;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 34px;
}

.contact-team-shell {
    border: 1px solid var(--border-strong);
    border-radius: 32px;
    padding: 36px;
    background: linear-gradient(165deg, var(--surface-2), var(--surface-soft) 62%);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-team-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.08), transparent 32%),
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    pointer-events: none;
}

.contact-team-section .section-title {
    font-size: clamp(1.7rem, 2.8vw, 2.5rem);
    max-width: 9ch;
    line-height: 1.02;
    min-height: 2.05em;
    text-wrap: balance;
}

.team-typing-line {
    margin: 12px 0 0;
    min-height: 1.8em;
    color: var(--accent-warm);
    font-size: clamp(1.12rem, 1.7vw, 1.42rem);
    font-weight: 700;
    letter-spacing: 0.005em;
    line-height: 1.3;
}

.team-typing-line::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 1.05em;
    margin-left: 3px;
    vertical-align: -0.12em;
    background: currentColor;
    opacity: 0;
}

.team-typing-line.is-active::after {
    opacity: 1;
    animation: team-caret-blink 0.9s steps(1, end) infinite;
}

@keyframes team-caret-blink {
    0%, 48% { opacity: 1; }
    49%, 100% { opacity: 0; }
}

.contact-team-section .section-intro {
    max-width: 34rem;
}

.contact-team-section .section-subtitle {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.72;
    max-width: 36ch;
}

.contact-team-section .section-text {
    font-size: 1.02rem;
    line-height: 1.86;
    max-width: 60ch;
    padding-top: 8px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.team-card h3 {
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    min-height: 40px;
    height: 40px;
    font-size: 2rem;
    letter-spacing: -0.02em;
}

.team-card {
    border-radius: 22px;
    padding: 24px 24px 22px;
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
    text-align: left;
}

.team-card-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 4px;
    min-height: 36px;
}

.team-initial {
    width: 40px;
    height: 40px;
    border-radius: 0;
    clip-path: polygon(25% 6%, 75% 6%, 96% 50%, 75% 94%, 25% 94%, 4% 50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    border: 1px solid var(--border-strong);
    background: var(--surface-soft);
    color: var(--text);
    flex: 0 0 auto;
}

.team-role {
    margin: 0;
    color: var(--text);
    font-weight: 640;
    font-size: 1.06rem;
    line-height: 1.45;
    text-align: left;
}

.team-note {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.62;
    text-align: left;
    max-width: 34ch;
}

.team-linkedin {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface-soft);
    color: var(--muted);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.team-linkedin:hover {
    color: var(--text);
    border-color: var(--border-strong);
    background: var(--surface-2);
}

.team-card--featured {
    border-color: var(--accent-warm-line);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(180deg, var(--surface-2), rgba(229, 197, 122, 0.08));
}

.contact-team-actions {
    margin-top: 30px;
    padding-top: 8px;
    position: relative;
    z-index: 1;
}

.contact-team-note {
    margin: 12px 0 0;
    color: var(--soft);
    font-size: 0.92rem;
    line-height: 1.45;
    letter-spacing: 0.01em;
}

.contact-methods-section {
    padding-top: 64px;
}

.contact-methods-shell {
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 36px;
    background: linear-gradient(170deg, var(--surface-2), var(--surface));
    box-shadow: var(--shadow-lg);
}

.contact-methods-head {
    margin-bottom: 26px;
}

.contact-methods-title {
    margin: 0;
    font-size: clamp(1.9rem, 3.45vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
    max-width: 26ch;
    text-wrap: balance;
}

.contact-methods-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-method-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    background: var(--surface-soft);
    min-height: 210px;
}

.contact-method-icon {
    width: 28px;
    height: 28px;
    color: #3f80ff;
    margin-bottom: 14px;
}

.contact-method-icon svg {
    width: 100%;
    height: 100%;
}

.contact-method-icon svg path,
.contact-method-icon svg circle {
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-method-card h3 {
    margin: 0 0 4px;
    font-size: 1.04rem;
}

.contact-method-card p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.55;
}

.contact-method-card a {
    color: #3f80ff;
    text-underline-offset: 3px;
    word-break: break-word;
}

.contact-method-card a:hover {
    color: #5a94ff;
}

.contact-hours {
    display: grid;
    grid-template-columns: auto auto;
    gap: 4px 18px;
    color: var(--text);
    font-weight: 600;
}

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

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

.work-clients-head {
    margin-top: 56px;
    margin-bottom: 28px;
}

.work-clients-title {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.work-clients-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.work-clients-industries .meta-chip {
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--border-strong);
}

.work-clients-slider {
    display: grid;
    gap: 14px;
}

.work-clients-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-radius: 20px;
    cursor: grab;
    touch-action: pan-y;
}

.work-clients-controls {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 0;
}

.work-clients-arrow {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    background: var(--surface-2);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.work-clients-arrow:hover {
    background: var(--surface-3);
    border-color: var(--text);
    transform: translateY(-1px);
}

.work-clients-progress {
    flex: 0 0 180px;
    margin-left: auto;
    height: 6px;
    border-radius: 999px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    overflow: hidden;
}

.work-clients-progress-bar {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--text);
    transition: width 0.08s linear;
}

.work-clients-carousel::-webkit-scrollbar {
    display: none;
}

.work-clients-track {
    display: flex;
    gap: 18px;
}

.work-client-card {
    --client-accent: #ffffff;
    flex: 0 0 auto;
    width: clamp(290px, 34vw, 460px);
    scroll-snap-align: start;
    min-height: 360px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 16px;
    outline: none;
    padding: 24px;
    position: relative;
    border: 1px solid #2a2f38;
    background: #111318;
    overflow: hidden;
    isolation: isolate;
    transition: border-color 0.18s ease, transform 0.18s ease;
}

.work-client-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--client-accent);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
    z-index: 0;
}

.work-client-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--client-accent), color-mix(in oklab, var(--client-accent) 40%, #ffffff 60%));
    opacity: 0;
    transition: opacity 0.18s ease;
    z-index: 1;
}

.work-client-card:focus-visible {
    box-shadow: 0 0 0 2px var(--accent-warm-line), var(--shadow-md);
}

.work-client-content {
    display: grid;
    gap: 16px;
    padding: 14px 14px 10px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.46));
    position: relative;
    z-index: 2;
}

.work-client-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.work-client-brand img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
    padding: 8px;
    flex: 0 0 auto;
}

.work-client-domain {
    margin: 0 0 6px;
    font-size: 0.78rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.72);
}

.work-client-card h3 {
    margin: 0;
    font-size: clamp(1.5rem, 2.5vw, 2.15rem);
    letter-spacing: -0.03em;
    color: #ffffff;
}

.work-client-story {
    margin: 0;
    color: #e6e6e6;
    font-size: 1rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
}

.work-client-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.work-client-taxonomy {
    display: grid;
    gap: 10px;
}

.work-meta-group {
    display: grid;
    gap: 0;
    min-width: 0;
}

.work-meta-line {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.45;
    color: rgba(235, 235, 235, 0.9);
    white-space: normal;
}

.work-meta-line strong {
    font-weight: 650;
    color: rgba(255, 255, 255, 0.96);
}

.work-meta-value {
    white-space: normal;
    color: rgba(235, 235, 235, 0.9);
    transition: color 0.18s ease;
}

.work-client-card:hover .work-meta-value,
.work-client-card:focus-within .work-meta-value {
    color: var(--accent-warm);
}

.work-client-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 9px 14px;
    border: 1px solid transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
    justify-content: center;
    justify-self: start;
    align-self: start;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.work-client-card:hover .work-client-link,
.work-client-card:focus-within .work-client-link {
    border-color: rgba(255, 255, 255, 0.34);
    color: #ffffff;
}

.work-client-link:hover,
.work-client-link:focus-visible {
    color: #090909;
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-1px);
}

.work-client-card:hover .work-client-link:hover,
.work-client-card:focus-within .work-client-link:focus-visible {
    color: #090909;
}

.work-client-link-arrow {
    display: inline-block;
    transform: translateX(0);
    transition: transform 0.18s ease;
}

.work-client-link:hover .work-client-link-arrow,
.work-client-link:focus-visible .work-client-link-arrow {
    transform: translateX(2px);
}

.work-client-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in oklab, var(--client-accent) 55%, #2a2f38 45%);
}

.work-client-card:hover::before,
.work-client-card:focus-within::before {
    opacity: 0.12;
}

.work-client-card:hover::after,
.work-client-card:focus-within::after {
    opacity: 0.9;
}

html.light .work-client-content {
    background: linear-gradient(180deg, rgba(34, 34, 34, 0.26), rgba(34, 34, 34, 0.36));
}

html.light .work-client-card {
    border-color: #d7dce5;
    background: #f7f8fa;
}

html.light .work-client-card:hover,
html.light .work-client-card:focus-within {
    border-color: color-mix(in oklab, var(--client-accent) 62%, #d7dce5 38%);
}

html.light .work-client-card:hover::before,
html.light .work-client-card:focus-within::before {
    opacity: 0.18;
}

html.light .work-client-card h3 {
    color: #ffffff;
}

html.light .work-client-story {
    color: rgba(22, 22, 22, 0.78);
}

html.light .work-meta-line {
    color: rgba(32, 32, 32, 0.86);
}

html.light .work-meta-line strong {
    color: rgba(14, 14, 14, 0.95);
}

html.light .work-meta-value {
    color: rgba(34, 34, 34, 0.84);
}

html.light .work-client-link {
    color: rgba(22, 22, 22, 0.88);
}

html.light .work-client-card:hover .work-client-link,
html.light .work-client-card:focus-within .work-client-link {
    border-color: rgba(18, 18, 18, 0.28);
    color: rgba(16, 16, 16, 0.96);
}

@media (max-width: 560px) {
    .work-client-card {
        grid-template-rows: auto 1fr auto;
    }

    .work-client-footer {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .work-client-link {
        justify-self: start;
    }
}

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

.approach-model {
    margin-top: 12px;
    margin-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.approach-model-chip {
    display: inline-flex;
    align-items: center;
    padding: 9px 13px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface-soft);
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 580;
}

.card,
.work-card,
.why-card,
.metrics-card,
.cta-panel {
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.card::before,
.work-card::before,
.why-card::before,
.metrics-card::before,
.cta-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.032), transparent 40%);
    pointer-events: none;
}

.card {
    padding: 28px;
    border-radius: var(--radius-md);
}

.card h3,
.work-card h3,
.why-card h3,
.metrics-card h3 {
    margin: 0 0 12px;
    font-size: 1.18rem;
    line-height: 1.18;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 1;
}

.card p,
.work-card p,
.why-card p,
.metrics-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.78;
    position: relative;
    z-index: 1;
}

.card:hover,
.work-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-strong);
    background: var(--surface-2);
}

.work-card {
    border-radius: 32px;
    padding: 30px;
    min-height: 306px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.work-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.work-tag {
    color: var(--soft);
    font-size: 0.75rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.work-index {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.84rem;
    background: var(--surface-soft);
}

.work-card h3 {
    font-size: 1.62rem;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.work-meta {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.work-meta span {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface-soft);
    color: var(--muted);
    font-size: 0.88rem;
}

.why-layout {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 18px;
    align-items: stretch;
}

.why-card,
.metrics-card {
    padding: 30px;
    border-radius: 32px;
}

.principles {
    margin-top: 24px;
    display: grid;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.principle {
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface-soft);
    color: var(--muted);
    line-height: 1.76;
}

.principle strong {
    color: var(--text);
}

.metrics {
    display: grid;
    gap: 22px;
    position: relative;
    z-index: 1;
}

.metric {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.metric:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.metric-value {
    font-size: clamp(2rem, 3vw, 2.95rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.055em;
    margin-bottom: 8px;
}

.metric-copy {
    color: var(--muted);
    line-height: 1.78;
}

.metrics-kicker {
    margin-bottom: 18px;
}

.cta-wrap {
    padding-top: 20px;
}

.cta-panel {
    border-radius: 38px;
    padding: 50px;
    box-shadow: var(--shadow-xl);
}

.cta-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.05), transparent 25%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.03), transparent 24%);
    pointer-events: none;
}

.cta-panel h2 {
    margin: 0 0 14px;
    font-size: clamp(2.5rem, 4.1vw, 4.55rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
    max-width: 10ch;
    position: relative;
    z-index: 1;
    text-wrap: balance;
}

.cta-panel p {
    margin: 0;
    max-width: 72ch;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.88;
    position: relative;
    z-index: 1;
}

.cta-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    overflow: visible;
    padding: 44px 0 56px;
    color: var(--soft);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(circle at 10% 15%, rgba(255, 80, 120, 0.20), transparent 34%),
        radial-gradient(circle at 85% 25%, rgba(100, 180, 255, 0.18), transparent 36%),
        radial-gradient(circle at 50% 115%, rgba(255, 190, 90, 0.16), transparent 45%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.footer::before {
    content: "";
    position: absolute;
    inset: -120px 0 0 0;
    background:
        radial-gradient(circle at 16% 14%, rgba(124, 66, 218, 0.48), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(24, 150, 255, 0.40), transparent 36%),
        radial-gradient(circle at 58% 84%, rgba(255, 156, 62, 0.34), transparent 44%),
        radial-gradient(circle at 36% 58%, rgba(255, 76, 136, 0.20), transparent 40%),
        linear-gradient(120deg, rgba(66, 26, 110, 0.42), rgba(14, 28, 56, 0.30) 52%, rgba(68, 34, 16, 0.36));
    opacity: 0.96;
    filter: saturate(1.24) contrast(1.05);
    pointer-events: none;
    mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.86) 90px, #000 150px, #000 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.86) 90px, #000 150px, #000 100%);
}

.footer::after {
    content: "";
    position: absolute;
    inset: -120px 0 0 0;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.46) 96px, rgba(5, 5, 5, 0.70) 220px, rgba(5, 5, 5, 0.74) 100%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}


html.light .footer {
    color: rgba(244, 242, 236, 0.72);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 10% 15%, rgba(255, 80, 120, 0.20), transparent 34%),
        radial-gradient(circle at 85% 25%, rgba(100, 180, 255, 0.18), transparent 36%),
        radial-gradient(circle at 50% 115%, rgba(255, 190, 90, 0.16), transparent 45%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

html.light .footer::before {
    opacity: 0.96;
    filter: saturate(1.24) contrast(1.05);
    mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.86) 90px, #000 150px, #000 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.86) 90px, #000 150px, #000 100%);
}

html.light .footer::after {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.46) 96px, rgba(5, 5, 5, 0.70) 220px, rgba(5, 5, 5, 0.74) 100%);
}

html.light .footer-links a {
    color: rgba(244, 242, 236, 0.88);
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
}

html.light .footer-links a:hover {
    color: rgba(255, 255, 255, 0.98);
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.10);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-links a {
    text-decoration: none;
    color: var(--muted);
    border: 1px solid var(--border);
    background: var(--surface-soft);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--text);
    border-color: var(--border-strong);
    background: var(--surface-2);
}

.footer-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
}

@media (max-width: 1160px) {
    .hero-grid,
    .section-head,
    .why-layout {
        grid-template-columns: 1fr;
    }

    .hero-right,
    .artifact {
        min-height: 580px;
    }

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

    .work-grid,
    .approach-grid,
    .team-grid,
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }

    .work-client-card {
        flex-basis: min(100%, 560px);
    }

    .contact-team-shell {
        padding: 24px;
        border-radius: 26px;
    }

    .contact-team-section .section-title {
        font-size: clamp(2rem, 11vw, 3rem);
        max-width: none;
    }

    .contact-team-section .section-subtitle,
    .contact-team-section .section-text {
        max-width: none;
    }

    .team-card {
        min-height: 0;
        padding: 20px;
        gap: 10px;
    }

    .team-card h3 {
        font-size: 1.65rem;
        min-height: 34px;
        height: 34px;
    }

    .team-initial {
        width: 34px;
        height: 34px;
        border-radius: 0;
        font-size: 0.86rem;
    }

    .team-role {
        font-size: 1rem;
    }

    .team-note {
        font-size: 0.95rem;
        max-width: none;
    }

    .contact-methods-shell {
        padding: 24px;
        border-radius: 24px;
    }

    .contact-method-card {
        min-height: 0;
    }

    .work-client-card {
        flex-basis: min(100%, 92vw);
    }

    .work-clients-controls {
        justify-content: space-between;
    }

    .work-clients-progress {
        max-width: none;
    }

    .section-title,
    .cta-panel h2 {
        max-width: none;
    }

    #capabilities .hero-capability-list {
        flex-wrap: wrap;
        overflow-x: visible;
        margin-bottom: 18px;
    }
}

@media (max-width: 1240px) {
    .nav {
        min-height: 72px;
        gap: 10px;
    }

    .nav-links {
        display: none;
    }

    .nav-mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        order: 3;
    }

    .nav-actions {
        order: 2;
        gap: 8px;
        margin-left: auto;
        margin-right: 8px;
        width: auto;
    }

    .nav-actions .btn {
        display: inline-flex;
        padding: 9px 13px;
        min-height: 38px;
        font-size: 0.9rem;
        font-weight: 600;
        white-space: nowrap;
        background: transparent;
        color: var(--text);
        border: 1px solid var(--border);
        box-shadow: none;
    }

    .nav-actions .btn:hover {
        background: var(--surface);
        border-color: var(--border-strong);
        box-shadow: none;
    }

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

    .nav-cta-mobile {
        display: inline;
    }

    .nav-mobile-panel {
        display: grid;
        gap: 8px;
        padding: 0 0 14px;
    }

    .nav-mobile-panel[hidden] {
        display: none;
    }

    .nav-mobile-panel a {
        text-decoration: none;
        color: var(--text);
        padding: 10px 12px;
        border-radius: 12px;
        background: var(--surface);
        border: 1px solid var(--border);
    }

    .nav-mobile-panel a.btn {
        margin-top: 6px;
        justify-content: center;
    }
}

@media (max-width: 720px) {
    :root {
        --section-space: 92px;
        --hero-space: 118px;
    }

    .container {
        width: min(var(--max), calc(100% - 24px));
    }

    .hero-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .nav {
        min-height: 68px;
        gap: 10px;
    }

    .nav-links {
        display: none;
    }

    .nav-mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .nav-actions {
        margin-left: auto;
    }

    .lang-select {
        min-width: 84px;
        padding: 0 26px 0 12px;
    }

    .utility-dock {
        right: 12px;
        bottom: max(12px, calc(env(safe-area-inset-bottom) + 8px));
    }

    .control-bundle {
        height: 42px;
        grid-template-columns: 42px 70px 0;
    }

    .control-bundle.is-expanded {
        grid-template-columns: 42px 70px 42px;
    }

    .control-bundle .icon-btn {
        width: 42px;
        height: 40px;
    }

    .utility-top-btn {
        width: 0;
        height: 42px;
    }

    .utility-top-btn.is-visible {
        width: 42px;
    }

    .hero {
        min-height: auto;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 14vw, 4.85rem);
        max-width: 9.4ch;
    }

    .hero-intro,
    .section-text,
    .cta-panel p {
        font-size: 1rem;
    }

    #capabilities .hero-capability-list .meta-chip {
        font-size: 0.82rem;
        padding: 9px 12px;
    }

    .artifact,
    .card,
    .why-card,
    .metrics-card,
    .work-card,
    .cta-panel {
        padding: 22px;
    }

    .artifact-center {
        min-height: 270px;
        padding: 18px;
    }

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

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .btn-secondary {
        width: 100%;
    }

    .footer-line {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        margin-bottom: 12px;
    }


    .signal-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .signal-value {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation: none !important;
        transition: none !important;
    }

    .fade-up,
    .reveal-line > span {
        opacity: 1 !important;
        transform: none !important;
    }
}
