@font-face {
    font-family: "Archivo Black";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/archivo-black-latin.woff2") format("woff2");
}

@font-face {
    font-family: "DM Sans";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("../fonts/dm-sans-latin.woff2") format("woff2");
}

:root {
    --ink: #09090b;
    --paper: #f2efe8;
    --white: #fffdf8;
    --line-dark: rgba(9, 9, 11, 0.16);
    --line-light: rgba(255, 255, 255, 0.18);
    --acid: #d8ff43;
    --orange: #ff5a2a;
    --cobalt: #124dff;
    --pad: clamp(1.25rem, 4vw, 4.5rem);
    --display: "Archivo Black", Impact, sans-serif;
    --sans: "DM Sans", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5.5rem;
    background: var(--ink);
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

img, picture {
    display: block;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    color: inherit;
    font: inherit;
}

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

.shell {
    width: 100%;
    max-width: 1600px;
    margin-inline: auto;
    padding-inline: var(--pad);
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1000;
    transform: translateY(-180%);
    border-radius: 999px;
    background: var(--acid);
    color: var(--ink);
    padding: 0.75rem 1rem;
    font-weight: 700;
    transition: transform 180ms ease;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 5.25rem;
    padding: 0.85rem var(--pad);
    color: var(--white);
    border-bottom: 1px solid transparent;
    transition: background 260ms ease, border-color 260ms ease, min-height 260ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
    min-height: 4.6rem;
    background: rgba(9, 9, 11, 0.9);
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.brand {
    position: relative;
    z-index: 2;
    justify-self: start;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.07em;
    line-height: 1;
}

.brand span {
    color: var(--acid);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 3.5rem);
}

.desktop-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -0.35rem;
    left: 0;
    height: 1px;
    background: var(--acid);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
    color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
    border-color: var(--acid);
    background: var(--acid);
    color: var(--ink);
}

.menu-toggle {
    position: relative;
    z-index: 2;
    display: none;
    align-items: center;
    gap: 0.7rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0.5rem 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-toggle-icon {
    position: relative;
    width: 1.55rem;
    height: 1rem;
}

.menu-toggle-icon i {
    position: absolute;
    right: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease, top 220ms ease;
}

.menu-toggle-icon i:first-child { top: 0.25rem; }
.menu-toggle-icon i:last-child { top: 0.75rem; width: 68%; }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:first-child { top: 0.5rem; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:last-child { top: 0.5rem; width: 100%; transform: rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--ink);
    color: var(--white);
    padding: 8rem var(--pad) 2rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 220ms ease, transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu nav {
    display: grid;
}

.mobile-menu nav a {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    border-bottom: 1px solid var(--line-light);
    padding: 0.9rem 0;
    font-family: var(--display);
    font-size: clamp(2.3rem, 10vw, 4.5rem);
    letter-spacing: -0.06em;
    line-height: 0.95;
    text-transform: uppercase;
}

.mobile-menu nav a span {
    color: var(--acid);
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.mobile-menu-foot {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
}

.mobile-menu-foot a {
    color: var(--white);
    font-weight: 600;
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
    isolation: isolate;
}

.hero-media {
    position: absolute;
    inset: 0 0 0 39%;
    z-index: -3;
}

.hero-media picture,
.hero-media img {
    width: 100%;
    height: 100%;
}

.hero-media img {
    object-fit: cover;
    object-position: 55% center;
    filter: saturate(1.08) contrast(1.03);
    scale: 1.03;
    animation: hero-settle 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, var(--ink) 0%, var(--ink) 29%, rgba(9, 9, 11, 0.93) 42%, rgba(9, 9, 11, 0.15) 72%),
        linear-gradient(0deg, rgba(9, 9, 11, 0.82) 0%, transparent 38%);
    content: "";
}

.hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 7.5vw 7.5vw;
    content: "";
    mask-image: linear-gradient(90deg, black, transparent 68%);
}

.hero-glow {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(35rem circle at var(--pointer-x, 68%) var(--pointer-y, 44%), rgba(216, 255, 67, 0.13), transparent 64%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    justify-content: center;
    padding-top: 8.5rem;
    padding-bottom: 5.4rem;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--acid);
    box-shadow: 0 0 0.9rem rgba(216, 255, 67, 0.68);
}

.dark-eyebrow > span {
    background: var(--cobalt);
    box-shadow: none;
}

.hero-eyebrow {
    margin-bottom: clamp(2rem, 5vh, 4rem);
    color: rgba(255, 255, 255, 0.74);
    animation: rise-in 900ms 120ms both;
}

.hero h1 {
    max-width: 13ch;
    font-family: var(--display);
    font-size: clamp(4.2rem, 9.6vw, 9.7rem);
    font-weight: 400;
    letter-spacing: -0.075em;
    line-height: 0.79;
    text-transform: uppercase;
}

.hero h1 > span {
    display: block;
    animation: title-in 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 > span:nth-child(2) {
    animation-delay: 90ms;
}

.hero h1 em {
    color: var(--acid);
    font-style: normal;
    text-shadow: 0 0 3rem rgba(216, 255, 67, 0.14);
}

.hero-lower {
    display: grid;
    grid-template-columns: minmax(17rem, 31rem) 1fr;
    align-items: end;
    gap: 2rem;
    margin-top: clamp(2.5rem, 8vh, 6.5rem);
    animation: rise-in 900ms 280ms both;
}

.hero-intro {
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(1.05rem, 1.45vw, 1.35rem);
    letter-spacing: -0.02em;
    line-height: 1.42;
}

.hero-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
}

.button {
    display: inline-flex;
    min-height: 3.4rem;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    border-radius: 999px;
    padding: 0.85rem 1.25rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.055em;
    line-height: 1.2;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button span {
    font-size: 1rem;
}

.button-light {
    background: var(--white);
    color: var(--ink);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    background: var(--acid);
}

.text-link {
    border-bottom: 1px solid rgba(255,255,255,.5);
    padding: 0.8rem 0 0.55rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
    border-color: var(--acid);
    color: var(--acid);
}

.hero-index {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.6rem;
    font-weight: 700;
    writing-mode: vertical-rl;
    transform: translateY(-50%);
}

.hero-index i {
    display: block;
    width: 1px;
    height: 5rem;
    background: rgba(255, 255, 255, 0.35);
}

.signal-rail {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: var(--acid);
    color: var(--ink);
    padding: 0.78rem 0;
}

.signal-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 2.1rem;
    font-family: var(--display);
    font-size: clamp(0.92rem, 1.4vw, 1.25rem);
    letter-spacing: -0.035em;
    line-height: 1;
    text-transform: uppercase;
    animation: ticker 26s linear infinite;
}

.signal-track i {
    font-family: var(--sans);
    font-size: 0.8em;
    font-style: normal;
}

.manifesto {
    position: relative;
    overflow: hidden;
    background: var(--paper);
    padding: clamp(6rem, 12vw, 12rem) 0;
}

.manifesto::after {
    position: absolute;
    top: -15rem;
    right: -13rem;
    width: 34rem;
    height: 34rem;
    border: 1px solid rgba(18, 77, 255, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 5rem rgba(18, 77, 255, 0.025), 0 0 0 10rem rgba(18, 77, 255, 0.02);
    content: "";
}

.manifesto-grid {
    display: grid;
    grid-template-columns: minmax(11rem, 0.42fr) 1fr;
    gap: clamp(2rem, 7vw, 9rem);
}

.manifesto h2,
.approach-heading h2,
.contact h2 {
    font-family: var(--display);
    font-size: clamp(3.25rem, 7.4vw, 8rem);
    font-weight: 400;
    letter-spacing: -0.075em;
    line-height: 0.88;
    text-transform: uppercase;
}

.manifesto h2 em,
.approach-heading h2 em {
    color: var(--cobalt);
    font-style: normal;
}

.manifesto-copy {
    max-width: 42rem;
    margin-top: clamp(2.5rem, 5vw, 5rem);
    margin-left: auto;
    color: rgba(9, 9, 11, 0.64);
    font-size: clamp(1.12rem, 1.65vw, 1.5rem);
    letter-spacing: -0.025em;
    line-height: 1.45;
}

.experience-list {
    background: var(--ink);
}

.experience {
    --from: #ff4c29;
    --to: #ff7a16;
    position: relative;
    display: grid;
    grid-template-columns: 44% 56%;
    min-height: clamp(29rem, 39vw, 39rem);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    isolation: isolate;
}

.experience-plum { --from: #7417c9; --to: #d71c79; }
.experience-blue { --from: #105ff5; --to: #1731b8; }
.experience-lime { --from: #d8ff43; --to: #75df8c; color: var(--ink); }
.experience-cobalt { --from: #163ae7; --to: #091866; }

.experience-copy {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--from), var(--to));
    padding: clamp(2.25rem, 4.5vw, 5rem) var(--pad);
}

.experience-copy::after {
    position: absolute;
    top: 0;
    right: -18vw;
    bottom: 0;
    width: 18vw;
    background: linear-gradient(90deg, var(--to), transparent);
    content: "";
    pointer-events: none;
}

.experience-reverse {
    grid-template-columns: 56% 44%;
}

.experience-reverse .experience-copy {
    order: 2;
}

.experience-reverse .experience-copy::after {
    right: auto;
    left: -18vw;
    background: linear-gradient(-90deg, var(--to), transparent);
}

.experience-reverse .experience-media {
    order: 1;
}

.experience-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: clamp(2.5rem, 5vw, 5.5rem);
    border-top: 1px solid currentColor;
    padding-top: 0.75rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.76;
}

.experience h3 {
    max-width: 9.5ch;
    font-family: var(--display);
    font-size: clamp(2.7rem, 4.45vw, 5.2rem);
    font-weight: 400;
    letter-spacing: -0.07em;
    line-height: 0.88;
    text-transform: uppercase;
}

.experience-copy > p {
    max-width: 34rem;
    margin-top: clamp(1.5rem, 2.4vw, 2.5rem);
    font-size: clamp(1rem, 1.22vw, 1.18rem);
    letter-spacing: -0.015em;
    line-height: 1.45;
    opacity: 0.82;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.feature-tags span {
    border: 1px solid currentColor;
    border-radius: 999px;
    padding: 0.5rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.8;
}

.experience-media {
    position: relative;
    z-index: 1;
    min-height: 25rem;
    overflow: hidden;
    background: #151515;
}

.experience-media picture,
.experience-media img {
    width: 100%;
    height: 100%;
}

.experience-media picture {
    position: absolute;
    inset: 0;
}

.experience-media img {
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 500ms ease;
}

.experience:hover .experience-media img {
    transform: scale(1.025);
    filter: saturate(1.08);
}

.experience-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.42), transparent 45%);
    content: "";
    pointer-events: none;
}

.media-label {
    position: absolute;
    right: clamp(1.25rem, 3vw, 3rem);
    bottom: clamp(1.25rem, 3vw, 3rem);
    z-index: 2;
    max-width: 17rem;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 999px;
    background: rgba(9,9,11,.3);
    color: var(--white);
    padding: 0.6rem 0.85rem;
    backdrop-filter: blur(9px);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    line-height: 1.2;
    text-transform: uppercase;
}

.partner-section {
    background: var(--ink);
    color: var(--white);
    padding: clamp(6rem, 10vw, 10rem) 0;
}

.partner-inner {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: clamp(3rem, 7vw, 8rem);
    align-items: end;
}

.partner-section .eyebrow {
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.56);
}

.partner-section h2 {
    max-width: 11ch;
    font-family: var(--display);
    font-size: clamp(3rem, 6.6vw, 7rem);
    font-weight: 400;
    letter-spacing: -0.07em;
    line-height: 0.89;
    text-transform: uppercase;
}

.partner-copy {
    max-width: 33rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    letter-spacing: -0.02em;
}

.partner-logos {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    margin-top: clamp(2rem, 5vw, 5rem);
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.partner-logos img {
    width: 100%;
    height: 7rem;
    border-right: 1px solid var(--line-light);
    object-fit: contain;
    padding: 2.1rem clamp(1.5rem, 5vw, 5rem);
    filter: grayscale(1) brightness(0) invert(1);
    opacity: 0.62;
}

.partner-logos img:last-child {
    border-right: 0;
}

.approach {
    background: var(--paper);
    padding: clamp(6rem, 11vw, 11rem) 0 0;
}

.approach-heading {
    display: grid;
    grid-template-columns: 0.42fr 1fr;
    gap: clamp(2rem, 7vw, 9rem);
    margin-bottom: clamp(4rem, 8vw, 8rem);
}

.approach-visual {
    position: relative;
    width: calc(100% - (var(--pad) * 2));
    max-width: calc(1600px - (var(--pad) * 2));
    height: clamp(30rem, 58vw, 52rem);
    margin-inline: auto;
    overflow: hidden;
    background: var(--ink);
}

.approach-visual picture,
.approach-visual img {
    width: 100%;
    height: 100%;
}

.approach-visual img {
    object-fit: cover;
}

.approach-visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 6, 10, 0.82), transparent 50%);
    content: "";
}

.approach-visual-copy {
    position: absolute;
    right: clamp(1.5rem, 4vw, 4rem);
    bottom: clamp(1.5rem, 4vw, 4rem);
    left: clamp(1.5rem, 4vw, 4rem);
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
    color: var(--white);
}

.approach-visual-copy span {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.approach-visual-copy p {
    max-width: 34rem;
    font-size: clamp(1.2rem, 2.4vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.12;
}

.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: clamp(4rem, 7vw, 7rem);
    padding-bottom: clamp(6rem, 10vw, 10rem);
    list-style: none;
}

.process li {
    min-height: 20rem;
    border-top: 1px solid var(--line-dark);
    border-right: 1px solid var(--line-dark);
    padding: 1.4rem clamp(1.25rem, 2.4vw, 2.6rem) 2rem 0;
}

.process li:not(:first-child) {
    padding-left: clamp(1.25rem, 2.4vw, 2.6rem);
}

.process li:last-child {
    border-right: 0;
}

.process li > span {
    display: block;
    margin-bottom: 6rem;
    color: rgba(9, 9, 11, 0.46);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.process h3 {
    margin-bottom: 1rem;
    font-family: var(--display);
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 1;
    text-transform: uppercase;
}

.process p {
    max-width: 18rem;
    color: rgba(9, 9, 11, 0.58);
    font-size: 0.92rem;
    line-height: 1.55;
}

.project {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
    isolation: isolate;
}

.project-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.project-media picture,
.project-media img {
    width: 100%;
    height: 100%;
}

.project-media img {
    object-fit: cover;
}

.project::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(7,9,13,.92) 0%, rgba(7,9,13,.62) 48%, rgba(7,9,13,.15) 72%), linear-gradient(0deg, rgba(7,9,13,.82), transparent 50%);
    content: "";
}

.project-content {
    display: grid;
    grid-template-columns: 1fr minmax(20rem, 0.62fr);
    min-height: 100svh;
    align-items: end;
    gap: clamp(3rem, 8vw, 10rem);
    padding-top: 8rem;
    padding-bottom: clamp(3rem, 6vw, 6rem);
}

.project .eyebrow {
    margin-bottom: 2.5rem;
}

.project h2 {
    max-width: 9ch;
    font-family: var(--display);
    font-size: clamp(3.5rem, 7vw, 7.3rem);
    font-weight: 400;
    letter-spacing: -0.07em;
    line-height: 0.87;
    text-transform: uppercase;
}

.project-details {
    border-top: 1px solid rgba(255, 255, 255, 0.46);
    padding-top: 1.5rem;
}

.project-details > p {
    max-width: 31rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1rem, 1.25vw, 1.2rem);
}

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

.project dl div {
    border-left: 1px solid rgba(255, 255, 255, 0.24);
    padding-left: 1rem;
}

.project dt {
    font-family: var(--display);
    font-size: clamp(1.7rem, 3vw, 3rem);
    letter-spacing: -0.06em;
    line-height: 1;
}

.project dd {
    margin: 0.5rem 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.contact {
    position: relative;
    overflow: hidden;
    background: linear-gradient(130deg, #ff5b28 0%, #ff8a20 45%, #f4c840 100%);
    padding: clamp(6rem, 11vw, 11rem) 0 clamp(4rem, 7vw, 7rem);
    isolation: isolate;
}

.contact::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: linear-gradient(rgba(9,9,11,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(9,9,11,.07) 1px, transparent 1px);
    background-size: 7.5vw 7.5vw;
    content: "";
}

.contact-orb {
    position: absolute;
    top: -38%;
    right: -8%;
    z-index: -1;
    width: min(54rem, 70vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 34%, #fff5ab, #d8ff43 28%, #124dff 62%, #6d15d5 74%);
    filter: blur(0.5px);
    opacity: 0.68;
}

.contact .eyebrow {
    margin-bottom: clamp(3rem, 6vw, 6rem);
}

.contact h2 {
    max-width: 11ch;
}

.contact h2 em {
    color: var(--white);
    font-style: normal;
}

.contact-bottom {
    display: grid;
    grid-template-columns: minmax(17rem, 0.55fr) 1fr;
    gap: clamp(2rem, 7vw, 8rem);
    align-items: end;
    margin-top: clamp(4rem, 9vw, 9rem);
}

.contact-bottom > p {
    max-width: 28rem;
    color: rgba(9, 9, 11, 0.68);
    font-size: clamp(1.05rem, 1.45vw, 1.35rem);
    letter-spacing: -0.02em;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 3px solid var(--ink);
    padding: 0 0 1rem;
    font-family: var(--display);
    font-size: clamp(1.45rem, 4.2vw, 4.6rem);
    letter-spacing: -0.065em;
    line-height: 1;
    transition: color 180ms ease, border-color 180ms ease;
}

.contact-link i {
    font-family: var(--sans);
    font-style: normal;
    font-weight: 400;
}

.contact-link:hover,
.contact-link:focus-visible {
    border-color: var(--white);
    color: var(--white);
}

footer {
    background: var(--ink);
    color: var(--white);
    padding: 4rem 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: start;
    gap: 2rem;
}

.footer-brand {
    font-size: 1.7rem;
}

.footer-inner p,
.footer-links {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.74rem;
    line-height: 1.55;
}

.footer-links {
    display: grid;
    gap: 0.15rem;
}

.footer-links a {
    display: flex;
    min-height: 1.75rem;
    align-items: center;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--acid);
}

.footer-meta {
    text-align: right;
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(2.5rem);
    transition: opacity 700ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.js .experience-media[data-reveal] {
    transform: none;
}

.js .experience-media[data-reveal] img {
    transform: scale(1.07);
    transition: transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .experience-media[data-reveal].is-visible img {
    transform: scale(1);
}

@keyframes hero-settle {
    from { opacity: 0; scale: 1.1; }
    to { opacity: 1; scale: 1.03; }
}

@keyframes rise-in {
    from { opacity: 0; transform: translateY(1.5rem); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes title-in {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ticker {
    to { transform: translateX(-50%); }
}

@media (max-width: 1100px) {
    .desktop-nav {
        gap: 1.35rem;
    }

    .experience,
    .experience-reverse {
        grid-template-columns: 48% 52%;
    }

    .experience-reverse {
        grid-template-columns: 52% 48%;
    }

    .experience h3 {
        font-size: clamp(2.5rem, 4.3vw, 4rem);
    }

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

    .process li:nth-child(2) {
        border-right: 0;
    }

    .process li:nth-child(n+3) {
        padding-top: 1.4rem;
    }
}

@media (max-width: 820px) {
    html {
        scroll-padding-top: 4.6rem;
    }

    .site-header {
        grid-template-columns: 1fr auto;
        min-height: 4.6rem;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-media {
        inset: 33% 0 0;
    }

    .hero::before {
        background: linear-gradient(180deg, var(--ink) 0%, var(--ink) 30%, rgba(9,9,11,.68) 55%, rgba(9,9,11,.7) 100%), linear-gradient(0deg, rgba(9,9,11,.7), transparent 50%);
    }

    .hero::after {
        background-size: 4.5rem 4.5rem;
        mask-image: linear-gradient(180deg, black, transparent 60%);
    }

    .hero-content {
        justify-content: flex-start;
        padding-top: 8rem;
        padding-bottom: 3.5rem;
    }

    .hero h1 {
        font-size: clamp(3.6rem, 14.5vw, 6.8rem);
        line-height: 0.82;
    }

    .hero-lower {
        grid-template-columns: 1fr;
        align-items: start;
        margin-top: auto;
        padding-top: 4rem;
    }

    .hero-intro {
        max-width: 29rem;
    }

    .hero-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .hero-index {
        display: none;
    }

    .manifesto-grid,
    .approach-heading {
        grid-template-columns: 1fr;
    }

    .manifesto h2,
    .approach-heading h2,
    .contact h2 {
        font-size: clamp(3rem, 11vw, 5.6rem);
    }

    .manifesto-copy {
        margin-left: 0;
    }

    .experience,
    .experience-reverse {
        display: flex;
        min-height: 0;
        flex-direction: column;
    }

    .experience-copy,
    .experience-reverse .experience-copy {
        order: 1;
        min-height: 28rem;
        padding-top: 3rem;
        padding-bottom: 4.5rem;
    }

    .experience-copy::after,
    .experience-reverse .experience-copy::after {
        top: auto;
        right: 0;
        bottom: -6rem;
        left: 0;
        width: 100%;
        height: 6.1rem;
        background: linear-gradient(180deg, var(--to), transparent);
    }

    .experience-media,
    .experience-reverse .experience-media {
        order: 2;
        min-height: 25rem;
    }

    .experience-meta {
        margin-bottom: 3.5rem;
    }

    .experience h3 {
        font-size: clamp(2.7rem, 10vw, 4.8rem);
    }

    .partner-inner {
        grid-template-columns: 1fr;
    }

    .partner-logos {
        grid-template-columns: 1fr;
    }

    .partner-logos img {
        height: 6rem;
        border-right: 0;
        border-bottom: 1px solid var(--line-light);
        padding: 1.8rem 4rem;
    }

    .partner-logos img:last-child {
        border-bottom: 0;
    }

    .approach-visual {
        height: 32rem;
    }

    .approach-visual-copy {
        display: grid;
    }

    .project-content {
        grid-template-columns: 1fr;
        align-content: end;
        gap: 3rem;
    }

    .project h2 {
        font-size: clamp(3.3rem, 11vw, 6rem);
    }

    .contact-bottom {
        grid-template-columns: 1fr;
    }

    .contact-link {
        font-size: clamp(1.35rem, 6vw, 3rem);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-meta {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .hero {
        min-height: max(47rem, 100svh);
    }

    .hero-media {
        inset: 38% 0 0;
    }

    .hero-media img {
        object-position: center;
    }

    .hero-content {
        min-height: max(47rem, 100svh);
        padding-top: 7.25rem;
        padding-bottom: 2.4rem;
    }

    .hero-eyebrow {
        margin-bottom: 2.2rem;
        font-size: 0.62rem;
    }

    .hero h1 {
        font-size: clamp(3rem, 15.2vw, 5rem);
    }

    .hero-lower {
        gap: 1.4rem;
    }

    .hero-intro {
        font-size: 1rem;
    }

    .hero-actions {
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .text-link {
        width: fit-content;
    }

    .manifesto {
        padding-top: 6.5rem;
        padding-bottom: 6.5rem;
    }

    .manifesto h2,
    .approach-heading h2,
    .contact h2 {
        font-size: clamp(2.75rem, 12.5vw, 4.4rem);
    }

    .experience-copy,
    .experience-reverse .experience-copy {
        min-height: 31rem;
    }

    .experience-media,
    .experience-reverse .experience-media {
        min-height: 22rem;
    }

    .experience h3 {
        font-size: clamp(2.55rem, 11.5vw, 4rem);
    }

    .experience-lime h3 {
        font-size: clamp(2.2rem, 10vw, 4rem);
    }

    .experience-copy > p {
        font-size: 0.98rem;
    }

    .feature-tags {
        gap: 0.4rem;
    }

    .feature-tags span {
        font-size: 0.58rem;
    }

    .media-label {
        left: 1.25rem;
        right: auto;
        max-width: calc(100% - 2.5rem);
    }

    .approach-visual {
        width: 100%;
        height: 28rem;
    }

    .approach-visual img {
        object-position: center;
    }

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

    .process li,
    .process li:not(:first-child) {
        min-height: 0;
        border-right: 0;
        padding: 1.4rem 0 3rem;
    }

    .process li > span {
        margin-bottom: 3rem;
    }

    .project {
        min-height: 56rem;
    }

    .project::before {
        background: linear-gradient(0deg, rgba(7,9,13,.95) 0%, rgba(7,9,13,.56) 64%, rgba(7,9,13,.18) 100%);
    }

    .project-content {
        min-height: 56rem;
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    .project h2 {
        font-size: clamp(2.05rem, 9.3vw, 4rem);
    }

    .project dl {
        margin: 2rem 0;
    }

    .project dt {
        font-size: 1.7rem;
    }

    .project dd {
        font-size: 0.55rem;
    }

    .contact-orb {
        top: -7rem;
        right: -10rem;
        width: 26rem;
        opacity: 0.48;
    }

    .contact-link {
        align-items: flex-end;
        overflow-wrap: anywhere;
        font-size: 1.35rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .partner-section h2 {
        font-size: clamp(2.6rem, 12vw, 4.5rem);
    }
}

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

    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .signal-track {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .signal-track > :nth-child(n+13) {
        display: none;
    }
}
