:root {
    --ink: #f8f2ff;
    --muted: #cbbfd6;
    --night: #0a0212;
    --plum: #10051f;
    --plum-2: #19082c;
    --violet: #7b3dff;
    --electric: #a453ff;
    --sun: #ffc329;
    --orange: #ff6b1a;
    --line: rgba(248, 242, 255, 0.16);
    --line-strong: rgba(248, 242, 255, 0.34);
    --serif: "Instrument Serif", Georgia, serif;
    --sans: "Manrope", system-ui, sans-serif;
    --mono: "Space Mono", ui-monospace, monospace;
    --shell: min(92vw, 1600px);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--night);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background:
        radial-gradient(circle at 82% 8%, rgba(123, 61, 255, 0.18), transparent 32rem),
        var(--night);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.is-locked {
    overflow: hidden;
}

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

button,
a {
    color: inherit;
}

a {
    text-decoration: none;
}

button {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    color: var(--night);
    background: var(--sun);
}

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

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 11px 16px;
    color: var(--night);
    background: var(--sun);
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

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

.scroll-progress {
    position: fixed;
    z-index: 120;
    inset: 0 0 auto;
    height: 3px;
    background: transparent;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--sun), var(--orange), var(--electric));
    transform: scaleX(0);
    transform-origin: left;
}

.section-shell {
    width: var(--shell);
    margin-inline: auto;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--sun);
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.35;
    text-transform: uppercase;
}

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

h1,
h2 {
    margin-bottom: 0;
    font-family: var(--sans);
    font-weight: 700;
    letter-spacing: -0.065em;
    line-height: 0.9;
}

h1 em,
h2 em {
    font-family: var(--serif);
    font-weight: 400;
}

main section h2 em {
    color: #c9adff;
}

/* Floating navigation */

.floating-nav {
    position: fixed;
    z-index: 100;
    top: 18px;
    left: 50%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: min(900px, calc(100vw - 36px));
    min-height: 58px;
    padding: 7px 8px 7px 17px;
    border: 1px solid rgba(248, 242, 255, 0.22);
    border-radius: 17px;
    background: rgba(11, 3, 20, 0.78);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px) saturate(1.3);
    transform: translateX(-50%);
    transition: background 180ms ease, border-color 180ms ease, width 180ms ease;
}

.floating-nav.is-scrolled {
    width: min(820px, calc(100vw - 36px));
    border-color: rgba(255, 195, 41, 0.3);
    background: rgba(11, 3, 20, 0.94);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    white-space: nowrap;
}

.brand img {
    width: 24px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.nav-links a {
    position: relative;
    padding: 10px 13px;
    border-radius: 10px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="location"] {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.08);
}

.nav-links a[aria-current="location"]::after {
    position: absolute;
    right: 12px;
    bottom: 5px;
    left: 12px;
    height: 2px;
    background: var(--sun);
    content: "";
}

.nav-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 43px;
    padding: 0 15px;
    border-radius: 11px;
    color: var(--night);
    background: linear-gradient(135deg, var(--sun), #ff9f1c);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-contact:hover {
    box-shadow: 0 10px 28px rgba(255, 167, 28, 0.22);
    transform: translateY(-2px);
}

.nav-contact[aria-current="location"] {
    box-shadow: 0 0 0 2px rgba(248, 242, 255, 0.72), 0 10px 28px rgba(255, 167, 28, 0.24);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span[aria-hidden="true"] {
    display: block;
    width: 18px;
    height: 1px;
    margin: 5px auto;
    background: currentColor;
    transition: transform 160ms ease;
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:first-of-type {
    transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:last-of-type {
    transform: translateY(-3px) rotate(-45deg);
}

/* Hero */

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
    align-items: center;
    min-height: auto;
    padding: 104px max(4vw, calc((100vw - 1600px) / 2)) 104px;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(7, 1, 13, 0.22), rgba(7, 1, 13, 0.7)),
        radial-gradient(circle at 73% 46%, rgba(123, 61, 255, 0.3), transparent 35%),
        linear-gradient(145deg, #0a0212 0%, #160529 56%, #08010f 100%);
}

.hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
    content: "";
}

.hero-aurora {
    position: absolute;
    z-index: -1;
    width: 42vw;
    height: 42vw;
    right: -8vw;
    bottom: -20vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 26, 0.26), rgba(123, 61, 255, 0.12) 45%, transparent 70%);
    filter: blur(8px);
}

.hero-atmosphere {
    --hero-bg-parallax-y: 0px;
    position: absolute;
    z-index: 0;
    inset: 0;
    container-type: size;
    overflow: hidden;
    opacity: 0.18;
    pointer-events: none;
}

.hero-atmosphere img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
    transform: translateY(var(--hero-bg-parallax-y)) scale(1.12);
    will-change: transform;
}

.hero-atmosphere img {
    filter: none;
}

.hero-copy {
    position: relative;
    z-index: 3;
    align-self: center;
    padding-bottom: 3vh;
}

.hero-role {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: clamp(28px, 5vh, 64px);
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.35;
    text-transform: uppercase;
}

.hero-role::before {
    width: 9px;
    height: 9px;
    border-radius: 1px;
    background: var(--sun);
    box-shadow: 0 0 20px rgba(255, 195, 41, 0.7);
    content: "";
}

.hero h1 {
    position: relative;
    z-index: 2;
    width: max-content;
    max-width: 10ch;
    font-size: clamp(4.5rem, 7vw, 9rem);
}

.hero h1 em {
    display: inline-block;
    color: var(--sun);
    text-shadow: 0 0 60px rgba(255, 174, 27, 0.16);
}

.hero-lede {
    width: min(34rem, 90%);
    margin: clamp(30px, 5vh, 56px) 0 0;
    color: #ded2e8;
    font-size: clamp(1rem, 1.25vw, 1.3rem);
    letter-spacing: -0.025em;
    line-height: 1.5;
}

.hero-lede__mobile-line {
    display: inline;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 52px;
    padding: 0 21px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 0.86rem;
    font-weight: 800;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button--sun {
    color: var(--night);
    background: var(--sun);
}

.button--ghost {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
}

.button--ghost:hover {
    border-color: var(--sun);
    background: rgba(255, 195, 41, 0.07);
}

.hero-visual {
    --spy-width: clamp(240px, 21.6vw, 344px);
    --spy-height: clamp(152px, 13.5vw, 218px);
    --spy-half-width: clamp(120px, 10.8vw, 172px);
    --spy-half-height: clamp(76px, 6.75vw, 109px);
    --lens-x: 48%;
    --lens-y: 31%;
    position: relative;
    z-index: 1;
    justify-self: end;
    width: min(37vw, 570px);
    height: min(62vh, 620px);
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 3px;
    background: #22102f;
    box-shadow: -45px 55px 90px rgba(0, 0, 0, 0.4);
    cursor: crosshair;
    transform: none;
}

.hero-visual::after {
    position: absolute;
    z-index: 4;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 64%, rgba(8, 1, 15, 0.82)),
        linear-gradient(90deg, rgba(123, 61, 255, 0.13), transparent 35%);
    content: "";
    pointer-events: none;
}

.hero-visual picture,
.hero-visual picture img,
#ditherCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-visual picture img {
    object-fit: cover;
    object-position: center 20%;
    filter: saturate(0.85) contrast(1.07) brightness(0.84);
}

#ditherCanvas {
    z-index: 2;
    image-rendering: pixelated;
    opacity: 0;
    transition: opacity 220ms ease;
}

.portrait-dither-ready .hero-visual picture img {
    opacity: 0;
}

.portrait-dither-ready #ditherCanvas {
    opacity: 1;
}

.clarity-image {
    position: absolute;
    z-index: 3;
    inset: 0;
    width: 100%;
    height: 100%;
    background: url("images/2026/hero-manuel.jpg") center 20% / cover no-repeat;
    clip-path: inset(
        calc(var(--lens-y) - var(--spy-half-height))
        calc(100% - var(--lens-x) - var(--spy-half-width))
        calc(100% - var(--lens-y) - var(--spy-half-height))
        calc(var(--lens-x) - var(--spy-half-width))
    );
    filter: saturate(1.06) contrast(1.08) brightness(1.05);
    opacity: 0.82;
    pointer-events: none;
    transition: opacity 80ms linear, filter 80ms linear;
}

#glitchCanvas {
    position: absolute;
    z-index: 4;
    inset: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(
        calc(var(--lens-y) - var(--spy-half-height))
        calc(100% - var(--lens-x) - var(--spy-half-width))
        calc(100% - var(--lens-y) - var(--spy-half-height))
        calc(var(--lens-x) - var(--spy-half-width))
    );
    image-rendering: pixelated;
    filter: grayscale(1) contrast(1.55) brightness(0.95);
    opacity: 0;
    pointer-events: none;
}

.hero-visual.is-glitching #glitchCanvas {
    opacity: 0.96;
    animation: detector-glitch 90ms steps(2, end) infinite;
}

.hero-visual.is-glitching .clarity-image {
    filter: grayscale(1) contrast(1.4);
    opacity: 0.06;
}

.hero-visual.is-glitching .clarity-lens {
    border-color: #fff;
    box-shadow: inset 0 0 0 1px var(--sun), 0 0 38px rgba(164, 83, 255, 0.48), 0 20px 60px rgba(8, 1, 15, 0.55);
}

@keyframes detector-glitch {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-3px, 1px); }
    50% { transform: translate(4px, -2px); }
    75% { transform: translate(-1px, 2px); }
    100% { transform: translate(2px, 0); }
}

.clarity-lens {
    position: absolute;
    z-index: 5;
    top: var(--lens-y);
    left: var(--lens-x);
    width: var(--spy-width);
    height: var(--spy-height);
    overflow: hidden;
    border: 1px solid rgba(248, 242, 255, 0.86);
    border-radius: 2px;
    background:
        linear-gradient(var(--sun), var(--sun)) 7px 7px / 18px 1px no-repeat,
        linear-gradient(var(--sun), var(--sun)) 7px 7px / 1px 18px no-repeat,
        linear-gradient(var(--lavender, #c9adff), var(--lavender, #c9adff)) calc(100% - 7px) calc(100% - 7px) / 18px 1px no-repeat,
        linear-gradient(var(--lavender, #c9adff), var(--lavender, #c9adff)) calc(100% - 7px) calc(100% - 7px) / 1px 18px no-repeat;
    opacity: 0.94;
    box-shadow: inset 0 0 0 1px rgba(201, 173, 255, 0.18), 0 0 32px rgba(123, 61, 255, 0.2), 0 16px 48px rgba(8, 1, 15, 0.38);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: box-shadow 180ms ease, border-color 180ms ease;
}

.clarity-lens::before {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sun) 28%, #fff 50%, #c9adff 72%, transparent);
    box-shadow: 0 0 12px rgba(255, 195, 41, 0.7);
    content: "";
    animation: spy-scan 3.2s linear infinite;
}

.clarity-lens::after {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(180deg, transparent 0 5px, rgba(248, 242, 255, 0.025) 5px 6px);
    content: "";
}

.clarity-lens span {
    position: absolute;
    z-index: 3;
    padding: 3px 5px;
    color: var(--sun);
    background: rgba(8, 1, 15, 0.68);
    font-family: var(--mono);
    font-size: clamp(0.61rem, 0.67vw, 0.72rem);
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.clarity-lens span:first-child {
    top: 9px;
    left: 10px;
}

.clarity-lens span:nth-child(2) {
    right: 10px;
    bottom: 9px;
    color: #c9adff;
}

.clarity-lens i {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(248, 242, 255, 0.68);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.clarity-lens i::before,
.clarity-lens i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    background: rgba(248, 242, 255, 0.62);
    content: "";
    transform: translate(-50%, -50%);
}

.clarity-lens i::before {
    width: 28px;
    height: 1px;
}

.clarity-lens i::after {
    width: 1px;
    height: 28px;
}

@keyframes spy-scan {
    from { transform: translateY(0); }
    to { transform: translateY(calc(var(--spy-height) - 1px)); }
}

.hero-visual.is-hovered .clarity-lens {
    border-color: var(--sun);
    box-shadow: inset 0 0 0 1px rgba(255, 195, 41, 0.24), 0 0 34px rgba(255, 195, 41, 0.18), 0 20px 60px rgba(8, 1, 15, 0.5);
}

.current-role {
    position: absolute;
    z-index: 7;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    min-width: 0;
    padding: 15px 16px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--ink);
    text-align: left;
    background: rgba(12, 3, 20, 0.82);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    cursor: pointer;
    transform: none;
    transition: border-color 160ms ease, transform 160ms ease;
}

.current-role:focus-within,
.current-role:hover {
    border-color: var(--sun);
    transform: translateY(-4px);
}

.current-role__meta {
    display: grid;
    min-width: 0;
}

.current-role__label {
    color: var(--sun);
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.current-role strong {
    margin-top: 8px;
    font-size: 0.94rem;
}

.current-role__meta span:last-child {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.76rem;
}

.current-role__bio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: center;
    min-height: 52px;
    min-width: 136px;
    padding: 0 21px;
    border: 1px solid transparent;
    border-radius: 4px;
    color: var(--night);
    background: var(--sun);
    font-family: var(--mono);
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.current-role:hover .current-role__bio,
.current-role__bio:hover {
    color: var(--night);
    background: #ffd15f;
    transform: translateY(-2px);
}

.hero-index {
    position: absolute;
    right: 22px;
    top: 50%;
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    transform: rotate(90deg) translateY(-50%);
}

/* Proof */

.proof {
    position: relative;
    padding: clamp(100px, 12vw, 180px) 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 24%, rgba(123, 61, 255, 0.18), transparent 30rem),
        linear-gradient(145deg, #1b0831 0%, #10051f 58%, #08010f 100%);
}

.proof-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: clamp(50px, 7vw, 90px);
}

.proof h2,
.split-heading h2,
.section-line h2,
.signal-header h2,
.exhibitions-heading h2,
.partners-heading h2,
.lab-heading h2,
.contact h2 {
    font-size: clamp(3.3rem, 6.1vw, 7.6rem);
}

.proof-note {
    margin: 0;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.proof-note::before {
    display: inline-block;
    width: 44px;
    height: 1px;
    margin: 0 12px 3px 0;
    background: var(--line-strong);
    content: "";
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin: 0;
    border: 1px solid var(--line);
    background: var(--line);
}

.metric {
    position: relative;
    min-height: clamp(260px, 26vw, 420px);
    padding: clamp(24px, 3vw, 48px);
    overflow: hidden;
    background: #160727;
}

.metric::after {
    position: absolute;
    right: -36px;
    bottom: -48px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: currentColor;
    filter: blur(60px);
    opacity: 0.28;
    content: "";
}

.metric--sun { color: var(--sun); }
.metric--violet { color: #ba94ff; }
.metric--purple { color: var(--electric); }
.metric--orange { color: var(--orange); }

.metric dt {
    font-family: var(--sans);
    font-size: clamp(4rem, 6vw, 8.5rem);
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    letter-spacing: -0.09em;
    line-height: 0.8;
}

.metric:nth-child(6) dt {
    font-size: clamp(3.35rem, 5.2vw, 7.2rem);
}

.metric dd {
    margin: 32px 0 0;
    color: var(--ink);
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    font-weight: 700;
    letter-spacing: -0.035em;
}

.metric .metric-meta {
    position: absolute;
    right: 22px;
    bottom: 20px;
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Practice */

.practice {
    padding: clamp(110px, 14vw, 200px) 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(164, 83, 255, 0.16), transparent 30rem),
        linear-gradient(135deg, #160727 0%, #0d0319 62%, #08010f 100%);
}

.split-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 30px;
    margin-bottom: clamp(55px, 7vw, 100px);
}

.split-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

#practice-title .title-lockup {
    white-space: nowrap;
}

.split-heading > p:last-child {
    width: min(25rem, 100%);
    margin: 0 0 8px;
    color: var(--muted);
    font-size: clamp(0.94rem, 1.2vw, 1.13rem);
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, minmax(340px, 38vh));
    gap: 16px;
}

.practice-card {
    position: relative;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: #1a0b2a;
    cursor: pointer;
    text-align: left;
    isolation: isolate;
}

.practice-card--speaking {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
}

.practice-card--direction,
.practice-card--design {
    grid-column: 6 / 13;
}

.practice-card picture,
.practice-card img {
    width: 100%;
    height: 100%;
}

.practice-card picture {
    position: absolute;
    inset: 0;
}

.practice-card img {
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 300ms ease;
}

.practice-card--speaking img {
    object-position: center 24%;
}

.practice-card--direction img {
    object-position: center 45%;
}

.practice-card::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, transparent 46%, rgba(7, 1, 12, 0.88) 100%);
    content: "";
    pointer-events: none;
}

.practice-card:hover img,
.practice-card:focus-visible img {
    filter: saturate(1.12) contrast(1.04);
    transform: scale(1.035);
}

.practice-card__number {
    position: static;
    margin: -2px 0 4px;
    color: #c9adff;
    font-family: var(--mono);
    font-size: clamp(0.72rem, 0.92vw, 0.92rem);
    letter-spacing: 0.035em;
    line-height: 1.35;
}

.practice-card__copy {
    position: absolute;
    z-index: 2;
    left: clamp(24px, 3vw, 48px);
    bottom: clamp(25px, 3vw, 44px);
    display: grid;
    gap: 10px;
}

.practice-card__copy small {
    color: var(--sun);
    font-family: var(--mono);
    font-size: clamp(0.78rem, 0.95vw, 0.96rem);
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.practice-card__copy strong {
    font-family: var(--sans);
    font-size: clamp(2.2rem, 3.5vw, 5rem);
    letter-spacing: -0.065em;
    line-height: 0.93;
}

.practice-card__action {
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.27);
    border-radius: 99px;
    background: rgba(7, 1, 12, 0.46);
    font-size: 0.7rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

/* Selected moments */

.selected {
    padding: clamp(100px, 13vw, 190px) 0;
    background:
        radial-gradient(circle at 12% 40%, rgba(255, 107, 26, 0.09), transparent 26rem),
        var(--plum-2);
}

.section-line {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: clamp(55px, 7vw, 90px);
}

.plain-button {
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid var(--line-strong);
    color: var(--ink);
    background: transparent;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

.plain-button:hover {
    border-color: var(--sun);
    color: var(--sun);
}

.moment-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.moment {
    position: relative;
    min-height: clamp(440px, 43vw, 690px);
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: #10051e;
    cursor: pointer;
    text-align: left;
    isolation: isolate;
}

.moment--feature {
    grid-column: 1 / 8;
}

.moment--museum {
    grid-column: 8 / 13;
}

.moment picture,
.moment picture img {
    width: 100%;
    height: 100%;
}

.moment picture {
    position: absolute;
    inset: 0;
}

.moment img {
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.moment--feature img {
    object-position: 36% center;
}

.moment::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 1, 15, 0.03) 30%, rgba(8, 1, 15, 0.92));
    content: "";
}

.moment:hover img {
    transform: scale(1.04);
}

.moment-label {
    position: absolute;
    z-index: 2;
    left: clamp(24px, 3vw, 46px);
    bottom: clamp(25px, 3vw, 44px);
    display: grid;
    gap: 10px;
}

.moment-label span {
    color: var(--sun);
    font-family: var(--mono);
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.moment-label strong {
    font-size: clamp(2rem, 3vw, 4.2rem);
    letter-spacing: -0.06em;
    line-height: 0.95;
}

.moment-arrow {
    position: absolute;
    z-index: 3;
    top: 22px;
    right: 22px;
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background: rgba(8, 1, 15, 0.38);
    backdrop-filter: blur(8px);
}

.moment--career {
    grid-column: 1 / -1;
    min-height: auto;
    padding: clamp(30px, 4vw, 64px);
    background:
        linear-gradient(135deg, rgba(123, 61, 255, 0.3), transparent 55%),
        #120422;
}

.moment--career::after {
    opacity: 0;
}

.career-card__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: clamp(50px, 7vw, 100px);
}

.career-steps {
    display: flex;
    align-items: center;
    margin-bottom: clamp(55px, 8vw, 110px);
}

.career-steps span {
    display: grid;
    flex: 0 0 auto;
    gap: 4px;
    font-size: clamp(1rem, 1.5vw, 1.45rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.career-steps small {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.56rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.career-steps i {
    width: 100%;
    height: 1px;
    margin-inline: 20px;
    background: linear-gradient(90deg, var(--sun), rgba(255, 195, 41, 0.2));
}

.moment--career > strong {
    display: block;
    font-size: clamp(3.4rem, 8.5vw, 10rem);
    letter-spacing: -0.075em;
    line-height: 0.82;
}

.moment--career > p {
    width: min(31rem, 90%);
    margin: 35px 0 0;
    color: var(--muted);
    font-size: clamp(0.92rem, 1.2vw, 1.1rem);
}

/* 2025 signal reel */

.signal {
    padding: clamp(110px, 14vw, 200px) 0;
    overflow: hidden;
    background: var(--night);
}

.signal-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: clamp(55px, 7vw, 90px);
}

.rail-controls {
    display: flex;
    gap: 8px;
}

.rail-controls button {
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
    transition: color 160ms ease, background 160ms ease;
}

.rail-controls button:hover {
    color: var(--night);
    background: var(--sun);
}

.signal-rail {
    display: flex;
    gap: 16px;
    width: calc(100vw - max(4vw, calc((100vw - 1600px) / 2)));
    margin: 0;
    padding: 0 clamp(4vw, calc((100vw - 1600px) / 2), 8vw) 12px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-color: var(--violet) rgba(255, 255, 255, 0.08);
    scrollbar-width: thin;
    scroll-padding-inline: 4px;
    scroll-snap-type: x mandatory;
}

.signal-frame {
    position: relative;
    display: flex;
    flex: 0 0 min(37vw, 550px);
    flex-direction: column;
    min-height: clamp(500px, 50vw, 700px);
    padding: clamp(25px, 3vw, 44px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    scroll-snap-align: start;
    isolation: isolate;
}

.signal-frame > span {
    position: relative;
    z-index: 2;
    color: var(--sun);
    font-family: var(--mono);
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.signal-frame > strong {
    position: relative;
    z-index: 2;
    margin-top: auto;
    font-size: clamp(2.8rem, 4.7vw, 6.2rem);
    letter-spacing: -0.075em;
    line-height: 0.88;
}

.signal-frame > h3 {
    position: relative;
    z-index: 2;
    margin: 18px 0 0;
    font-size: clamp(1.4rem, 2vw, 2.2rem);
    letter-spacing: -0.05em;
    line-height: 1;
}

.signal-frame > small {
    position: relative;
    z-index: 2;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.68);
    font-family: var(--mono);
    font-size: 0.62rem;
    line-height: 1.5;
}

.signal-frame--photo picture,
.signal-frame--photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.signal-frame--photo img {
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.signal-frame--photo::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 1, 15, 0.14), rgba(8, 1, 15, 0.94) 90%);
    content: "";
}

.signal-frame--photo:hover img {
    transform: scale(1.035);
}

.signal-frame--number {
    background:
        repeating-linear-gradient(0deg, transparent 0 7px, rgba(255, 255, 255, 0.035) 7px 8px),
        #1c0a30;
}

.signal-frame--number::after {
    position: absolute;
    right: -20%;
    bottom: -8%;
    width: 88%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: currentColor;
    filter: blur(40px);
    opacity: 0.28;
    content: "";
}

.signal-frame--number > strong {
    font-size: clamp(7rem, 13vw, 14rem);
}

.signal-frame--sun { color: var(--sun); }
.signal-frame--violet { color: var(--electric); }
.signal-frame--orange { color: var(--orange); }

.recap-link {
    display: inline-flex;
    gap: 12px;
    margin-top: 28px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line-strong);
    font-size: 0.78rem;
    font-weight: 700;
}

.recap-link:hover {
    border-color: var(--sun);
    color: var(--sun);
}

/* Partners and press */

.partners {
    padding: clamp(100px, 13vw, 180px) 0;
    background:
        radial-gradient(circle at 12% 14%, rgba(201, 173, 255, 0.17), transparent 28rem),
        radial-gradient(circle at 88% 82%, rgba(123, 61, 255, 0.22), transparent 34rem),
        linear-gradient(135deg, #250c3f 0%, #150728 48%, #090111 100%);
}

.partners-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 24px;
    margin-bottom: clamp(55px, 7vw, 90px);
}

.partners-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.partners-heading > p:last-child {
    width: min(25rem, 100%);
    margin: 0 0 9px;
    color: var(--muted);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.logo-grid img {
    width: 100%;
    height: 138px;
    padding: 43px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    object-fit: contain;
    filter: grayscale(1) brightness(0) invert(1);
    opacity: 0.68;
    transition: filter 180ms ease, opacity 180ms ease, background 180ms ease;
}

.logo-grid img:hover {
    background: #fff;
    filter: none;
    opacity: 1;
}

.press-row {
    display: grid;
    grid-template-columns: 1fr repeat(5, 1.2fr) auto;
    align-items: center;
    gap: 28px;
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid var(--line);
}

.press-row > span {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.63rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.press-row img {
    width: 100%;
    height: 42px;
    object-fit: contain;
    filter: grayscale(1) brightness(0) invert(1);
    opacity: 0.5;
}

.press-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 46px;
    padding: 10px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 99px;
    color: var(--ink);
    background: transparent;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.press-more:hover,
.press-more:focus-visible {
    border-color: var(--sun);
    color: var(--night);
    background: var(--sun);
}

/* Lab */

.lab {
    padding: clamp(105px, 14vw, 190px) 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(123, 61, 255, 0.24), transparent 31rem),
        linear-gradient(135deg, #210c35 0%, #10051f 62%, #090111 100%);
}

.lab-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: clamp(55px, 7vw, 90px);
}

.lab-heading > p {
    width: min(27rem, 100%);
    margin: 0 0 8px;
    color: var(--muted);
}

.lab-grid {
    display: flex;
    gap: 16px;
    width: calc(100vw - (100vw - var(--shell)) / 2);
    padding: 4px max(4vw, calc((100vw - 1600px) / 2)) 18px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-color: rgba(201, 173, 255, 0.5) transparent;
    scrollbar-width: thin;
}

.lab-grid::-webkit-scrollbar {
    height: 5px;
}

.lab-grid::-webkit-scrollbar-track {
    background: transparent;
}

.lab-grid::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(201, 173, 255, 0.5);
}

.lab-card {
    position: relative;
    display: block;
    min-height: clamp(350px, 31vw, 500px);
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #160727;
    isolation: isolate;
    flex: 0 0 clamp(330px, 29vw, 470px);
}

.lab-card::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(8, 1, 15, 0.96));
    content: "";
}

.lab-card picture,
.lab-card picture img,
.lab-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.lab-card picture,
.lab-card video {
    z-index: 0;
}

.lab-card picture img,
.lab-card video {
    object-fit: cover;
    transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lab-card--folklore img {
    object-position: center 24%;
}

.lab-card:hover picture img,
.lab-card:hover video,
.lab-card:hover .lab-art {
    transform: scale(1.045);
}

.lab-art {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lab-card > span:not(.pixel-face) {
    position: absolute;
    z-index: 2;
    bottom: 24px;
    left: 24px;
    display: grid;
    gap: 5px;
}

.lab-card small {
    color: var(--sun);
    font-family: var(--mono);
    font-size: clamp(0.78rem, 0.95vw, 0.96rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lab-card strong {
    max-width: calc(100% - 28px);
    font-size: clamp(1.7rem, 2.4vw, 2.8rem);
    letter-spacing: -0.055em;
    line-height: 0.96;
    text-wrap: balance;
}

.lab-card b {
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 20px;
    font-weight: 400;
}

.lab-card--text {
    background:
        repeating-linear-gradient(90deg, transparent 0 15px, rgba(255, 255, 255, 0.03) 15px 16px),
        linear-gradient(145deg, #702cff, #2e0e55 60%, #ff7b22);
}

.lab-card--text::after {
    opacity: 0;
}

.pixel-face {
    position: absolute;
    inset: 50% auto auto 50%;
    font-family: var(--mono);
    font-size: clamp(3rem, 7vw, 7rem);
    letter-spacing: -0.12em;
    text-shadow: 6px 6px 0 rgba(255, 195, 41, 0.25);
    transform: translate(-50%, -60%);
}

.lab-art--haptics {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 195, 41, 0.22), transparent 23%),
        linear-gradient(145deg, #4f1a8c 0%, #23103d 56%, #ff6b1a 145%);
}

.haptics-orbit {
    position: absolute;
    top: 12%;
    left: 50%;
    width: 68%;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    box-shadow:
        0 0 0 28px rgba(201, 173, 255, 0.07),
        0 0 0 58px rgba(201, 173, 255, 0.045),
        0 0 70px rgba(255, 195, 41, 0.2);
    transform: translateX(-50%);
}

.haptics-wave {
    position: absolute;
    top: 25%;
    left: 12%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(5px, 0.7vw, 11px);
    width: 76%;
    height: 38%;
}

.haptics-wave i {
    width: clamp(4px, 0.4vw, 7px);
    height: 22%;
    border-radius: 99px;
    background: linear-gradient(#fff, #c9adff 55%, #ffc329);
    box-shadow: 0 0 18px rgba(201, 173, 255, 0.35);
}

.haptics-wave i:nth-child(2),
.haptics-wave i:nth-child(10) { height: 38%; }
.haptics-wave i:nth-child(3),
.haptics-wave i:nth-child(9) { height: 58%; }
.haptics-wave i:nth-child(4),
.haptics-wave i:nth-child(8) { height: 82%; }
.haptics-wave i:nth-child(5),
.haptics-wave i:nth-child(7) { height: 48%; }
.haptics-wave i:nth-child(6) { height: 100%; }

.lab-art--glyph {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.88) 0 1.2px, transparent 1.7px) 0 0 / 9px 9px,
        linear-gradient(145deg, #f5f2f8 0%, #98939d 42%, #100d12 78%);
    filter: contrast(1.12);
}

.lab-art--glyph::after {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 52% 35%, transparent 0 12%, rgba(0, 0, 0, 0.7) 38%, #000 70%),
        linear-gradient(110deg, rgba(0, 0, 0, 0.9), transparent 42% 60%, rgba(0, 0, 0, 0.8));
    mix-blend-mode: multiply;
    content: "";
}

.lab-art--glyph span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: var(--mono);
    font-size: clamp(3.5rem, 6vw, 6.5rem);
    font-weight: 700;
    letter-spacing: -0.12em;
    mix-blend-mode: difference;
    transform: translateY(-20%);
}

.lab-art--swarm {
    background:
        radial-gradient(circle at 23% 28%, #ff4d5a 0 2px, transparent 3px),
        radial-gradient(circle at 34% 47%, #53e36e 0 3px, transparent 4px),
        radial-gradient(circle at 65% 24%, #57a6ff 0 2px, transparent 3px),
        radial-gradient(circle at 72% 58%, #ffd84d 0 4px, transparent 5px),
        radial-gradient(circle at 48% 38%, rgba(83, 227, 110, 0.8), transparent 4%),
        radial-gradient(circle at 62% 44%, rgba(87, 166, 255, 0.72), transparent 6%),
        radial-gradient(circle at 38% 53%, rgba(255, 77, 90, 0.72), transparent 7%),
        linear-gradient(145deg, #111620, #06070b 70%);
}

.lab-art--swarm::before,
.lab-art--swarm::after {
    position: absolute;
    inset: 7%;
    border-radius: 50%;
    background:
        repeating-radial-gradient(circle at 50% 50%, transparent 0 13px, rgba(255, 255, 255, 0.1) 14px 15px, transparent 16px 25px),
        conic-gradient(from 20deg, rgba(255, 77, 90, 0.5), transparent 25%, rgba(83, 227, 110, 0.5) 46%, transparent 64%, rgba(87, 166, 255, 0.5));
    filter: blur(0.4px);
    content: "";
    opacity: 0.62;
    transform: rotate(-9deg) scaleX(1.3);
}

.lab-art--swarm::after {
    inset: 20%;
    filter: blur(6px);
    opacity: 0.5;
    transform: rotate(28deg) scaleX(1.45);
}

.lab-art--rog {
    display: grid;
    place-items: center;
    perspective: 700px;
    background:
        radial-gradient(circle at 50% 42%, rgba(167, 101, 255, 0.25), transparent 38%),
        linear-gradient(160deg, #16082a, #050208 72%);
}

.lab-art--rog::before {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent 0 5px, rgba(255, 255, 255, 0.025) 5px 6px);
    content: "";
}

.lab-art--rog pre {
    margin: 0;
    color: #c9adff;
    font-family: var(--mono);
    font-size: clamp(1.25rem, 2.2vw, 2.45rem);
    font-weight: 700;
    line-height: 1.05;
    text-shadow: 0 0 14px rgba(164, 83, 255, 0.65), 8px 12px 0 rgba(255, 107, 26, 0.1);
    transform: translateY(-12%) rotateX(57deg) rotateZ(-3deg) scale(1.18);
}

.lab-art--mpc {
    background:
        radial-gradient(circle at 85% 10%, rgba(255, 107, 26, 0.22), transparent 27%),
        linear-gradient(145deg, #1d1d1f, #070707 68%);
}

.mpc-screen {
    position: absolute;
    top: 12%;
    left: 8%;
    width: 42%;
    padding: 14px;
    border: 1px solid rgba(255, 107, 26, 0.5);
    border-radius: 9px;
    color: rgba(255, 255, 255, 0.65);
    background: rgba(0, 0, 0, 0.7);
    font-family: var(--mono);
    font-size: clamp(0.72rem, 1.1vw, 1.05rem);
    letter-spacing: 0.08em;
}

.mpc-screen b {
    position: static;
    color: #ff6b1a;
    font-size: 1.5em;
    font-weight: 700;
}

.mpc-pads {
    position: absolute;
    top: 12%;
    right: 8%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 38%;
    aspect-ratio: 1;
    transform: rotate(-3deg);
}

.mpc-pads i {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: linear-gradient(145deg, #4a4a4f, #19191c);
    box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.04), 0 8px 12px rgba(0, 0, 0, 0.35);
}

.mpc-pads i:nth-child(2),
.mpc-pads i:nth-child(6),
.mpc-pads i:nth-child(8) {
    border-color: rgba(255, 107, 26, 0.75);
    background: linear-gradient(145deg, #ff7b22, #a62d00);
    box-shadow: 0 0 18px rgba(255, 107, 26, 0.25);
}

/* Contact */

.contact {
    position: relative;
    padding: clamp(130px, 16vw, 240px) 0 clamp(100px, 12vw, 180px);
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 95%, rgba(255, 107, 26, 0.35), transparent 32rem),
        linear-gradient(135deg, #3b1273, #17062c 55%, #090111);
}

.contact-noise {
    position: absolute;
    top: 36px;
    left: -3vw;
    width: 106vw;
    overflow: hidden;
    color: rgba(255, 195, 41, 0.24);
    font-family: var(--mono);
    font-size: clamp(0.68rem, 1vw, 0.9rem);
    letter-spacing: 0.12em;
    white-space: nowrap;
    transform: rotate(-2deg);
}

.contact h2 {
    max-width: 16ch;
    font-size: clamp(3rem, 5.8vw, 7rem);
    letter-spacing: -0.065em;
    line-height: 0.9;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    margin-top: clamp(45px, 7vw, 80px);
    min-height: 58px;
    padding: 0 25px;
    border: 1px solid var(--sun);
    border-radius: 4px;
    color: var(--night);
    background: var(--sun);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-link:hover {
    color: var(--night);
    background: #ffe08a;
    box-shadow: 0 14px 30px rgba(255, 195, 41, 0.22);
    transform: translateY(-3px);
}

.socials {
    display: flex;
    gap: 25px;
    margin-top: 38px;
}

.socials a {
    color: var(--muted);
    font-size: clamp(0.78rem, 0.95vw, 0.96rem);
    font-weight: 700;
}

.socials a:hover {
    color: var(--sun);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 4vw;
    border-top: 1px solid var(--line);
    color: var(--muted);
    background: #07010d;
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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

/* Dialogs */

.detail-dialog {
    width: min(1120px, calc(100vw - 40px));
    max-height: min(820px, calc(100dvh - 40px));
    padding: clamp(30px, 5vw, 76px);
    overflow: auto;
    border: 1px solid var(--line-strong);
    border-radius: 3px;
    color: var(--ink);
    background:
        repeating-linear-gradient(0deg, transparent 0 11px, rgba(255, 255, 255, 0.025) 11px 12px),
        #160727;
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.7);
}

.detail-dialog::backdrop {
    background: rgba(5, 0, 10, 0.84);
    backdrop-filter: blur(10px);
}

.detail-dialog[open] {
    animation: dialog-in 220ms ease-out;
}

.detail-dialog h2 em {
    color: #c9adff;
}

@keyframes dialog-in {
    from { opacity: 0; transform: translateY(18px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.detail-dialog form {
    position: sticky;
    z-index: 3;
    top: 0;
    display: flex;
    justify-content: flex-end;
    height: 0;
}

.dialog-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--ink);
    background: #160727;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.dialog-close:hover {
    border-color: var(--sun);
    color: var(--sun);
}

.dialog-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(45px, 7vw, 110px);
}

.dialog-layout h2 {
    font-size: clamp(3.1rem, 5.2vw, 5.7rem);
}

.dialog-body {
    padding-top: 40px;
}

.dialog-lede {
    margin-bottom: 35px;
    font-size: clamp(1.15rem, 1.7vw, 1.55rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.35;
}

.dialog-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 0 38px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.dialog-stats > div {
    padding: 18px 12px 18px 0;
}

.dialog-stats dt {
    color: var(--sun);
    font-family: var(--serif);
    font-size: 2.1rem;
}

.dialog-stats dd {
    margin: 0;
    color: var(--muted);
    font-size: 0.67rem;
    line-height: 1.3;
}

.dialog-body ul {
    display: grid;
    gap: 15px;
    margin: 0;
    padding-left: 1.2em;
    color: var(--muted);
}

.dialog-body li::marker {
    color: var(--sun);
}

.dialog-body li a {
    color: var(--ink);
    border-bottom: 1px solid rgba(255, 195, 41, 0.72);
}

.dialog-body li a:hover {
    color: var(--sun);
}

.dialog-link {
    display: inline-flex;
    gap: 12px;
    margin-top: 38px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--sun);
    font-size: 0.78rem;
    font-weight: 700;
}

.dialog-link:hover {
    color: var(--sun);
}

.dialog-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
}

.detail-dialog--bio {
    width: min(980px, calc(100vw - 40px));
    padding: clamp(34px, 4.6vw, 64px);
}

.bio-copy {
    display: grid;
    gap: 18px;
    padding-top: 0;
}

.bio-copy p {
    margin: 0;
    color: rgba(248, 242, 255, 0.78);
    font-size: clamp(1.04rem, 1.24vw, 1.18rem);
    letter-spacing: -0.025em;
    line-height: 1.48;
}

.bio-copy .eyebrow {
    margin-bottom: 4px;
    color: var(--sun);
    letter-spacing: 0.13em;
}

.bio-copy strong {
    color: var(--ink);
}

.detail-dialog--press {
    width: min(1260px, calc(100vw - 40px));
}

.press-dialog-heading {
    margin-bottom: clamp(38px, 5vw, 70px);
}

.press-dialog-heading h2 {
    font-size: clamp(3.8rem, 7vw, 8rem);
}

.press-dialog-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.press-dialog-grid img {
    width: 100%;
    height: 130px;
    padding: 38px 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    object-fit: contain;
}

.exhibition-list,
.career-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.exhibition-list li,
.career-list li {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 5px 22px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
}

.exhibition-list span,
.career-list span {
    grid-row: 1 / 3;
    color: var(--sun);
    font-family: var(--mono);
    font-size: 0.6rem;
}

.exhibition-list strong,
.career-list strong {
    font-size: 1.1rem;
}

.exhibition-list p,
.career-list p {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

/* Exhibition */

.exhibitions {
    padding: clamp(105px, 14vw, 190px) 0;
    background:
        radial-gradient(circle at 78% 16%, rgba(201, 173, 255, 0.2), transparent 31rem),
        linear-gradient(145deg, #220b39 0%, #130521 52%, #0a0213 100%);
}

.exhibitions-heading {
    margin-bottom: clamp(55px, 7vw, 90px);
}

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

.exhibition-card {
    position: relative;
    min-height: clamp(340px, 38vh, 430px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #120422;
    isolation: isolate;
}

.exhibition-card--wide {
    grid-column: span 1;
}

.exhibition-card--medium {
    grid-column: span 1;
}

.exhibition-card:not(.exhibition-card--wide):not(.exhibition-card--medium) {
    grid-column: span 1;
}

.exhibition-card picture,
.exhibition-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.exhibition-card img {
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
}

.exhibition-card--viff img {
    object-position: calc(50% + 10px) calc(50% + 10px);
}

.exhibition-card--meta img {
    object-position: center calc(50% - 20px);
}

.exhibition-card::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 0, 10, 0.08) 0%, rgba(5, 0, 10, 0.38) 38%, rgba(5, 0, 10, 0.94) 100%);
    content: "";
}

.exhibition-card__copy {
    position: absolute;
    z-index: 2;
    inset: auto 0 0;
    padding: clamp(24px, 3vw, 38px);
}

.exhibition-card time {
    display: block;
    margin: 0 0 14px;
    color: #c9adff;
    font-family: var(--mono);
    font-size: clamp(0.72rem, 0.92vw, 0.92rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.exhibition-card h3 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 4.2rem);
    letter-spacing: -0.06em;
    line-height: 0.92;
}

.exhibition-card__copy > p:not(.eyebrow) {
    width: min(32rem, 100%);
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(0.9rem, 1vw, 1rem);
    line-height: 1.45;
}

.exhibition-card dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 24px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.exhibition-card dt {
    color: var(--sun);
    font-family: var(--serif);
    font-size: clamp(1.05rem, 1.55vw, 1.8rem);
    line-height: 1;
}

.exhibition-card dd {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--mono);
    font-size: clamp(0.72rem, 0.92vw, 0.92rem);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

/* Native scroll-linked entrance: progressive enhancement only. */

@supports (animation-timeline: view()) {
    .practice-card,
    .moment,
    .signal-frame,
    .lab-card {
        animation: reveal-card both linear;
        animation-timeline: view();
        animation-range: entry 0% cover 28%;
    }

    @keyframes reveal-card {
        from { opacity: 0; transform: translateY(34px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* Responsive */

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
    }

    .hero h1 {
        font-size: clamp(4.2rem, 7.4vw, 6.5rem);
    }

    .hero-visual {
        width: min(40vw, 500px);
    }

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

    .metric {
        min-height: 300px;
    }

    .practice-grid {
        grid-template-rows: repeat(2, 340px);
    }

    .press-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .press-row > span {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .hero-atmosphere {
        opacity: 0.18;
    }

    .hero-atmosphere img {
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        object-position: 36% center;
        transform: translateY(var(--hero-bg-parallax-y)) scale(1.06);
    }

    .floating-nav {
        grid-template-columns: 1fr auto auto;
    }

    .menu-toggle {
        display: block;
        grid-column: 2;
        grid-row: 1;
    }

    .nav-contact {
        grid-column: 3;
        grid-row: 1;
        margin-left: 8px;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        display: grid;
        gap: 4px;
        padding: 9px;
        border: 1px solid var(--line-strong);
        border-radius: 14px;
        background: rgba(11, 3, 20, 0.98);
        box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 160ms ease, transform 160ms ease;
    }

    .nav-links.is-open {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        padding: 13px;
        font-size: 0.84rem;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 128px 5vw 60px;
    }

    .hero-copy {
        padding-bottom: 55px;
    }

    .hero h1 {
        width: auto;
        max-width: 8.5ch;
        font-size: clamp(4.2rem, 13vw, 7rem);
    }

    .hero-lede {
        width: min(34rem, 100%);
    }

    .hero-visual {
        justify-self: center;
        width: min(84vw, 520px);
        height: min(118vw, 700px);
        transform: none;
    }

    .current-role {
        position: absolute;
        right: 10px;
        bottom: 10px;
        left: 10px;
        justify-self: auto;
        width: auto;
        margin-top: 0;
        transform: none;
    }

    .current-role:hover {
        transform: translateY(-4px);
    }

    .hero-index {
        display: none;
    }

    .proof-header,
    .section-line,
    .signal-header,
    .lab-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .proof-note {
        align-self: flex-end;
    }

    .split-heading,
    .partners-heading {
        grid-template-columns: 1fr;
    }

    .practice-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .practice-card,
    .practice-card--speaking,
    .practice-card--direction,
    .practice-card--design {
        grid-column: 1;
        grid-row: auto;
        min-height: 520px;
    }

    .practice-card--direction,
    .practice-card--design {
        min-height: 360px;
    }

    .moment--feature,
    .moment--museum {
        grid-column: 1 / -1;
        min-height: 540px;
    }

    .career-steps {
        align-items: stretch;
        flex-direction: column;
        gap: 13px;
    }

    .career-steps i {
        width: 1px;
        height: 25px;
        margin: 0 0 0 6px;
        background: linear-gradient(var(--sun), rgba(255, 195, 41, 0.2));
    }

    .signal-frame {
        flex-basis: min(78vw, 520px);
    }

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

    .lab-grid {
        display: flex;
        gap: 14px;
        width: 95vw;
        padding: 0 5vw 10px 0;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;
    }

    .lab-card {
        flex: 0 0 min(74vw, 480px);
        min-height: 420px;
        scroll-snap-align: start;
    }

    .dialog-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dialog-body {
        padding-top: 15px;
    }

    .press-dialog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1377px) {
    .hero-lede {
        width: max-content;
        max-width: none;
        white-space: nowrap;
    }
}

@media (max-width: 560px) {
    :root {
        --shell: 90vw;
        --radius: 18px;
    }

    .floating-nav,
    .floating-nav.is-scrolled {
        top: 10px;
        width: calc(100vw - 20px);
        padding-left: 12px;
    }

    .brand span {
        display: none;
    }

    .nav-contact {
        min-height: 40px;
        padding-inline: 12px;
    }

    .hero {
        padding-top: 108px;
    }

    .hero-role {
        margin-bottom: 34px;
        font-size: 0.72rem;
    }

    .hero h1 {
        font-size: clamp(3.9rem, 17vw, 5.5rem);
    }

    .hero-lede {
        font-size: 0.98rem;
    }

    .hero-lede__mobile-line {
        display: block;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .button {
        padding-inline: 13px;
        font-size: 0.75rem;
    }

    .hero-visual {
        --spy-width: clamp(192px, 60vw, 255px);
        --spy-height: clamp(124px, 36.4vw, 161px);
        --spy-half-width: clamp(96px, 30vw, 127.5px);
        --spy-half-height: clamp(62px, 18.2vw, 80.5px);
        width: 88vw;
        height: 123vw;
    }

    .current-role {
        width: auto;
        min-width: 0;
    }

    .proof,
    .practice,
    .selected,
    .signal,
    .partners,
    .lab,
    .testimonials {
        padding-block: 105px;
    }

    .proof h2,
    .split-heading h2,
    .section-line h2,
    .signal-header h2,
    .partners-heading h2,
    .lab-heading h2 {
        font-size: clamp(3.1rem, 15vw, 4.7rem);
    }

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

    .metric {
        min-height: 235px;
        padding: 24px 18px;
    }

    .metric dt {
        font-size: clamp(2.9rem, 16vw, 5rem);
    }

    .metric:nth-child(6) dt {
        font-size: clamp(2.55rem, 13vw, 4rem);
    }

    .metric dd {
        margin-top: 24px;
        font-size: 0.8rem;
    }

    .metric .metric-meta {
        right: 12px;
        bottom: 12px;
        font-size: 0.47rem;
    }

    .practice-card,
    .practice-card--speaking {
        min-height: 500px;
    }

    .practice-card--direction,
    .practice-card--design {
        min-height: 330px;
    }

    .practice-card__copy strong,
    .moment-label strong {
        font-size: 2.1rem;
    }

    .practice-card__action {
        font-size: 0;
    }

    .practice-card__action span {
        font-size: 1rem;
    }

    .moment--feature,
    .moment--museum {
        min-height: 470px;
    }

    .moment--career {
        padding: 28px 22px 38px;
    }

    .moment--career > strong {
        font-size: 4.1rem;
    }

    .signal-rail {
        width: 95vw;
    }

    .signal-frame {
        flex-basis: 84vw;
        min-height: 540px;
    }

    .logo-grid img {
        height: 104px;
        padding: 34px 18px;
    }

    .press-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .press-row > span {
        grid-column: 1 / -1;
    }

    .press-more {
        grid-column: 1 / -1;
    }

    .lab-heading > p {
        font-size: 0.85rem;
    }

    .lab-card {
        flex-basis: 78vw;
        min-height: 360px;
    }

    .contact h2 {
        font-size: clamp(3.8rem, 18vw, 5.8rem);
    }

    .contact-link {
        max-width: 100%;
        overflow-wrap: anywhere;
        font-size: 0.9rem;
    }

    .site-footer {
        padding-inline: 5vw;
    }

    .detail-dialog {
        width: calc(100vw - 18px);
        max-height: calc(100dvh - 18px);
        padding: 28px 22px;
    }

    .dialog-layout h2 {
        margin-top: 38px;
        font-size: clamp(2.9rem, 8vw, 3.35rem);
    }

    .press-dialog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .press-dialog-grid img {
        height: 105px;
        padding: 30px 18px;
    }

    .dialog-stats {
        grid-template-columns: 1fr;
    }

    .dialog-stats > div {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        border-top: 1px solid var(--line);
    }

    .dialog-stats > div:first-child {
        border-top: 0;
    }

    .exhibition-list li,
    .career-list li {
        grid-template-columns: 1fr;
    }

    .exhibition-list span,
    .career-list span {
        grid-row: auto;
    }
}

@media (hover: none) {
    .hero-visual {
        cursor: default;
    }
}

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

/* V4 editorial structure */

body.nav-open {
    overflow: hidden;
}

.floating-nav {
    width: min(1040px, calc(100vw - 36px));
}

.floating-nav.is-scrolled {
    width: min(980px, calc(100vw - 36px));
}

.button,
.nav-contact,
.practice-card__action,
.plain-button,
.dialog-close,
.dialog-link,
.press-more {
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-toggle__label,
.menu-toggle__mark {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    background: transparent !important;
}

.menu-toggle__label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-toggle__mark {
    color: var(--sun);
    font-size: 1rem;
    line-height: 1;
    transition: transform 180ms ease !important;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__mark {
    transform: rotate(45deg) !important;
}

.hero-visual picture img {
    opacity: 1;
    transition: opacity 180ms ease;
}

.current-role__label {
    max-width: none;
    line-height: 1.35;
    white-space: nowrap;
}

.proof-header {
    justify-content: flex-start;
}

.metric {
    min-height: clamp(185px, 15vw, 250px);
    padding: clamp(22px, 2.4vw, 38px);
}

.metric:nth-child(6) dt {
    font-size: clamp(4rem, 6vw, 8.5rem);
}

.metric:nth-child(4) dt {
    font-size: clamp(3.35rem, 5.2vw, 7.2rem);
}

.metric dd {
    margin-top: 25px;
    font-size: clamp(1.08rem, 1.55vw, 1.48rem);
}

.metric .metric-meta {
    right: auto;
    left: clamp(22px, 2.4vw, 38px);
    max-width: 76%;
    font-size: 0.76rem;
    line-height: 1.45;
    text-align: left;
}

.split-heading,
.partners-heading,
.lab-heading {
    grid-template-columns: 1fr;
}

.practice-grid {
    grid-template-rows: repeat(2, minmax(310px, 34vh));
}

.practice-card--education,
.practice-card--speaking {
    grid-column: 1 / 8;
}

.practice-card--education {
    grid-row: 1;
}

.practice-card--speaking {
    grid-row: 2;
}

.practice-card--immersive {
    grid-column: 8 / 13;
    grid-row: 1 / 3;
}

.practice-card--education img {
    object-position: center 44%;
}

.practice-card--speaking img {
    object-position: center 40%;
}

.practice-card--immersive img {
    object-position: center 42%;
}

.career-timeline,
.academia {
    padding: clamp(105px, 14vw, 190px) 0;
}

.career-timeline {
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 18%, rgba(201, 173, 255, 0.14), transparent 28rem),
        linear-gradient(135deg, #1c082d 0%, #10051f 62%, #090111 100%);
}

.career-track {
    position: relative;
    display: flex;
    gap: 16px;
    margin: 0;
    padding: 0 8px 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-color: var(--violet) rgba(255, 255, 255, 0.08);
    scrollbar-width: thin;
    list-style: none;
}

.career-track li {
    position: relative;
    flex: 0 0 clamp(260px, 23vw, 330px);
    padding-top: 64px;
}

.career-track time {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--sun);
    font-family: var(--mono);
    font-size: clamp(0.78rem, 0.95vw, 0.96rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.career-track li > i {
    position: absolute;
    z-index: 2;
    top: 34px;
    left: 0;
    width: 13px;
    height: 13px;
    border: 3px solid var(--plum-2);
    border-radius: 50%;
    background: var(--sun);
    box-shadow: none;
}

.career-track li > i::after {
    position: absolute;
    top: 3px;
    left: 10px;
    width: calc(clamp(260px, 23vw, 330px) + 12px);
    height: 1px;
    background: linear-gradient(90deg, var(--sun), rgba(164, 83, 255, 0.35));
    content: "";
}

.career-track article {
    min-height: 230px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(16, 5, 31, 0.78);
}

.career-cta {
    margin-top: 28px;
}

.career-track article small {
    color: var(--sun);
    font-family: var(--mono);
    font-size: clamp(0.78rem, 0.95vw, 0.96rem);
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.career-track article strong {
    display: block;
    margin-top: 28px;
    font-size: clamp(1.45rem, 1.8vw, 2rem);
    letter-spacing: -0.055em;
    line-height: 1;
}

.career-track article p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.career-track__current article {
    border-color: rgba(255, 195, 41, 0.6);
    background: linear-gradient(145deg, rgba(123, 61, 255, 0.28), rgba(255, 107, 26, 0.13)), #160727;
}

.academia {
    background:
        radial-gradient(circle at 14% 20%, rgba(201, 173, 255, 0.16), transparent 30rem),
        linear-gradient(150deg, #0e0825 0%, #16082c 58%, #090111 100%);
}

.academia-intro {
    max-width: 46rem;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: clamp(0.95rem, 1.25vw, 1.15rem);
    letter-spacing: -0.02em;
}

.academia-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 16px;
}

.academia-feature {
    position: relative;
    min-height: clamp(590px, 58vw, 780px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: #160727;
    cursor: pointer;
    isolation: isolate;
    padding: 0;
    text-align: left;
}

.academia-feature::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(8, 1, 15, 0.96));
    content: "";
}

.academia-feature picture,
.academia-feature img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.academia-feature img {
    object-fit: cover;
    object-position: center 36%;
    transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.academia-feature:hover img {
    transform: scale(1.035);
}

.academia-feature > span {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 30px;
    left: 30px;
    display: grid;
    gap: 8px;
}

.academia-feature small,
.university-grid span {
    color: var(--sun);
    font-family: var(--mono);
    font-size: clamp(0.78rem, 0.95vw, 0.96rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.university-grid span {
    font-size: clamp(0.76rem, 0.9vw, 0.94rem);
    font-weight: 800;
    letter-spacing: 0.045em;
}

.academia-feature strong {
    font-size: clamp(2.3rem, 4.2vw, 5.2rem);
    letter-spacing: -0.065em;
    line-height: 0.92;
}

.academia-feature > b {
    position: absolute;
    z-index: 2;
    top: 24px;
    right: 24px;
    font-weight: 400;
}

.university-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.university-grid button {
    display: grid;
    min-height: 188px;
    padding: 28px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: transparent;
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease;
}

.university-grid img {
    width: 100%;
    height: 82px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: filter 180ms ease, opacity 180ms ease;
}

.university-grid span {
    align-self: end;
    color: var(--muted);
}

.university-grid button:hover,
.university-grid button:focus-visible {
    background: #fff;
    transform: translateY(-3px);
}

.university-grid button:hover img,
.university-grid button:focus-visible img {
    filter: none;
    opacity: 1;
}

.university-grid button:hover span,
.university-grid button:focus-visible span {
    color: #180826;
}

.university-dialog {
    width: min(760px, calc(100vw - 40px));
}

.university-dialog__content {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: start;
    gap: clamp(28px, 5vw, 58px);
}

.university-dialog__logo {
    width: 150px;
    height: 150px;
    padding: 16px;
    border-radius: 50%;
    background: #fff;
    object-fit: contain;
}

.university-dialog h2 {
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 0.92;
}

.university-dialog time {
    display: block;
    margin-top: 24px;
    color: var(--sun);
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.university-dialog__content > div > p:last-of-type {
    margin: 14px 0 0;
    color: var(--muted);
}

.ivy-badge {
    display: inline-flex;
    margin-top: 18px;
    padding: 5px 9px;
    border: 1px solid rgba(255, 195, 41, 0.45);
    border-radius: 99px;
    color: var(--sun);
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ivy-badge[hidden] {
    display: none;
}

.partners-heading {
    display: block;
}

.logo-subheading {
    margin: clamp(70px, 9vw, 120px) 0 32px;
    font-size: clamp(2.4rem, 4vw, 4.8rem);
    letter-spacing: -0.06em;
}

.logo-cell--ibm {
    display: grid;
    min-height: 138px;
    padding: 43px 28px;
    place-items: center;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 180ms ease;
}

.logo-grid .logo-cell--ibm img {
    width: 100%;
    height: 52px;
    padding: 0;
    border: 0;
    background: transparent;
}

.logo-cell--ibm:hover {
    background: #fff;
}

.logo-cell--ibm:hover img {
    background: transparent;
    filter: brightness(0) saturate(100%) invert(34%) sepia(93%) saturate(3545%) hue-rotate(214deg) brightness(101%) contrast(103%);
    opacity: 1;
}

.press-grid {
    margin-top: 0;
}

.testimonials {
    padding: clamp(100px, 12vw, 180px) 0;
    background:
        radial-gradient(circle at 12% 0%, rgba(123, 61, 255, 0.18), transparent 34rem),
        linear-gradient(135deg, #18092d 0%, #0f041d 60%, #090111 100%);
}

.testimonials-block {
    margin-top: 0;
}

.testimonials-heading {
    margin-bottom: clamp(38px, 5vw, 60px);
}

.testimonials-heading h2 {
    margin: 0;
    font-size: clamp(3rem, 5.8vw, 7rem);
    letter-spacing: -0.065em;
    line-height: 0.9;
}

.testimonials-heading h2 em {
    color: #c9adff;
    font-family: var(--serif);
    font-weight: 400;
}

.testimonials-grid {
    display: grid;
    grid-auto-columns: clamp(360px, 42vw, 560px);
    grid-auto-flow: column;
    align-items: stretch;
    gap: 14px;
    margin-inline: -8px;
    padding: 0 8px 20px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-color: var(--violet) rgba(255, 255, 255, 0.08);
    scrollbar-width: thin;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    display: flex;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: clamp(24px, 2.8vw, 38px);
    flex-direction: column;
    gap: clamp(24px, 2.8vw, 38px);
    justify-content: flex-start;
    border: 1px solid var(--line);
    border-radius: 0;
    background:
        linear-gradient(145deg, rgba(123, 61, 255, 0.17), transparent 58%),
        rgba(15, 4, 27, 0.66);
    scroll-snap-align: start;
}

.testimonial-card blockquote {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.12rem, 1.35vw, 1.5rem);
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
}

.testimonial-card.is-expanded {
    height: auto;
}

.testimonial-card.is-expanded blockquote {
    display: block;
    overflow: visible;
}

.testimonial-toggle {
    align-self: flex-start;
    margin-top: 0;
    padding: 8px 0;
    border: 0;
    border-bottom: 1px solid currentColor;
    color: #c9adff;
    background: transparent;
    font-family: var(--mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.testimonial-toggle[hidden] {
    display: none;
}

.testimonial-card figcaption {
    display: grid;
    gap: 5px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.testimonial-card figcaption strong {
    color: var(--sun);
    font-size: clamp(0.78rem, 0.95vw, 0.96rem);
}

.testimonial-card figcaption span {
    color: var(--muted);
    font-size: clamp(0.78rem, 0.92vw, 0.9rem);
    line-height: 1.4;
}

.lab-heading {
    display: block;
}

.lab-card--apps {
    border-color: var(--line);
    color: var(--ink);
    background:
        radial-gradient(circle at 18% 95%, rgba(255, 107, 26, 0.48), transparent 72%),
        linear-gradient(135deg, #3b1273, #17062c 55%, #090111);
    background-clip: padding-box;
    box-shadow: none;
    cursor: pointer;
    text-align: left;
}

.lab-card--apps::after {
    background: linear-gradient(180deg, transparent 48%, rgba(8, 1, 15, 0.84));
}

.lab-card--apps:focus-visible {
    outline-color: #c9adff;
}

.lab-card > .app-icons {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
}

.app-icons img {
    position: absolute;
    top: 14%;
    width: clamp(150px, 13.8vw, 216px);
    height: clamp(150px, 13.8vw, 216px);
    border-radius: 25%;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
}

.app-icons img:first-child {
    z-index: 2;
    left: 7%;
    transform: rotate(-7deg);
}

.app-icons img:last-child {
    z-index: 1;
    top: 20%;
    right: 7%;
    transform: rotate(6deg);
}

.dialog-media {
    display: block;
    height: 230px;
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.dialog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apps-dialog-heading {
    margin-bottom: clamp(38px, 5vw, 70px);
}

.apps-dialog-heading h2 {
    font-size: clamp(3.8rem, 7vw, 8rem);
}

.app-link-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.app-link-list a {
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    min-height: 330px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.app-link-list a:hover {
    border-color: var(--sun);
    background: rgba(255, 195, 41, 0.07);
    transform: translateY(-4px);
}

.app-link-image {
    width: 96px;
    height: 96px;
    margin-bottom: 28px;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
}

.app-link-image--wide {
    width: 172px;
}

.app-link-list small {
    color: var(--sun);
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.app-link-list strong {
    margin-top: 12px;
    font-size: clamp(2rem, 3vw, 3.6rem);
    letter-spacing: -0.06em;
}

.app-link-description {
    align-self: end;
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.76rem;
}

@media (max-width: 820px) {
    .hero-lede__mobile-line {
        display: block;
    }

    .floating-nav,
    .floating-nav.is-scrolled {
        left: 10px;
        width: calc(100vw - 20px);
        transform: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        width: auto;
        padding-inline: 12px;
        color: var(--ink);
        cursor: pointer;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        right: auto;
        bottom: auto;
        left: 50%;
        display: grid;
        align-content: start;
        width: min(220px, calc(100vw - 28px));
        gap: 0;
        max-height: calc(100svh - 90px);
        padding: 24px;
        border: 1px solid var(--line-strong);
        border-radius: 18px;
        background: rgba(11, 3, 20, 0.985);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.58);
        opacity: 0;
        overflow-y: auto;
        pointer-events: none;
        visibility: hidden;
        transform: translate(-50%, -10px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .nav-links.is-open {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transform: translate(-50%, 0);
    }

    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 17px 2px;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        font-size: 1rem;
        letter-spacing: normal;
        text-transform: none;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible,
    .nav-links a[aria-current="location"] {
        background: transparent;
    }

    .nav-links a::after {
        position: absolute;
        display: block;
        right: auto;
        bottom: 6px;
        left: 50%;
        width: 28px;
        height: 2px;
        background: var(--sun);
        content: "";
        transform: translateX(-50%) scaleX(0);
        transform-origin: center;
        transition: transform 160ms ease;
    }

    .nav-links a:hover::after,
    .nav-links a:focus-visible::after,
    .nav-links a[aria-current="location"]::after {
        transform: translateX(-50%) scaleX(1);
    }

    .nav-links a[aria-current="location"]::after {
        right: auto;
        left: 50%;
        width: 28px;
    }

    .detail-dialog--immersive .dialog-layout {
        grid-template-columns: 1fr;
    }

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

    .exhibition-card--wide {
        grid-column: 1 / -1;
    }

    .exhibition-card--medium {
        grid-column: 1 / -1;
    }

    .testimonials-grid {
        grid-auto-columns: min(84vw, 360px);
    }

    .testimonial-card {
        height: auto;
        min-height: 0;
    }

    .testimonial-card.is-expanded {
        height: auto;
    }

    .practice-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .practice-card--education,
    .practice-card--speaking,
    .practice-card--immersive {
        grid-column: 1;
        grid-row: auto;
    }

    .practice-card--education,
    .practice-card--speaking {
        min-height: 360px;
    }

    .practice-card--immersive {
        min-height: 560px;
    }

    .career-track {
        width: 95vw;
        padding-right: 5vw;
    }

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

    .academia-feature {
        min-height: 600px;
    }

    .app-link-list {
        grid-template-columns: 1fr;
    }

    .app-link-list a {
        min-height: 290px;
    }
}

@media (max-width: 560px) {
    .hero h1 {
        max-width: none;
    }

    .hero h1 em {
        font-size: clamp(2rem, 10.5vw, 3.2rem);
        letter-spacing: -0.04em;
        white-space: nowrap;
    }

    #practice-title {
        font-size: clamp(2.35rem, 11vw, 4.2rem);
    }

    #practice-title .title-lockup {
        white-space: normal;
    }

    .metric {
        min-height: 170px;
        padding: 20px 16px;
    }

    .exhibition-card-grid {
        grid-template-columns: 1fr;
    }

    .exhibition-card {
        min-height: 430px;
    }

    .exhibition-card--wide {
        min-height: 430px;
    }

    .exhibition-card--medium {
        min-height: 430px;
    }

    .exhibition-card h3 {
        font-size: clamp(2.35rem, 10vw, 3.7rem);
    }

    .exhibition-card dl {
        gap: 8px;
    }

    .metric dt,
    .metric:nth-child(6) dt {
        font-size: clamp(2.9rem, 16vw, 5rem);
    }

    .metric:nth-child(4) dt {
        font-size: clamp(2.55rem, 13vw, 4rem);
    }

    .metric dd {
        margin-top: 20px;
        font-size: 0.88rem;
    }

    .metric .metric-meta {
        right: auto;
        left: 16px;
        bottom: 10px;
        max-width: 80%;
        font-size: 0.58rem;
    }

    .practice-card--education,
    .practice-card--speaking {
        min-height: 330px;
    }

    .practice-card--immersive {
        min-height: 500px;
    }

    .career-track li {
        flex-basis: min(76vw, 300px);
    }

    .academia-feature {
        min-height: 510px;
    }

    .university-grid button {
        min-height: 148px;
        padding: 20px 14px;
    }

    .university-grid img {
        height: 65px;
    }

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

    .logo-grid img {
        height: 112px;
        padding: 35px 20px;
    }

    .logo-grid .logo-cell--ibm {
        min-height: 112px;
        padding: 35px 20px;
    }

    .logo-grid .logo-cell--ibm img {
        height: 42px;
        padding: 0;
    }

    .dialog-media {
        height: 190px;
    }

    .university-dialog__content {
        grid-template-columns: 1fr;
    }

    .university-dialog__logo {
        width: 96px;
        height: 96px;
    }

}
