:root {
    --ink: #080a0b;
    --surface: #101315;
    --surface-raised: #171b1e;
    --text: #f2f4ee;
    --muted: #9ca39e;
    --signal: #b9f227;
    --line: rgba(242, 244, 238, .16);
    --line-strong: rgba(242, 244, 238, .28);
    --sans: Arial, "Helvetica Neue", Helvetica, sans-serif;
    --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    --wrap: min(1360px, calc(100vw - 80px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; background: var(--ink); }
body {
    margin: 0;
    overflow-x: clip;
    background: var(--ink);
    color: var(--text);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
body.menu-active { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--signal); color: var(--ink); }
:focus-visible { outline: 2px solid var(--signal); outline-offset: 4px; }
.wrap { width: var(--wrap); margin-inline: auto; }
.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 200;
    padding: 11px 16px;
    background: var(--signal);
    color: var(--ink);
    font-weight: 700;
    transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    color: var(--text);
    transition: background-color .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled { background: rgba(8, 10, 11, .84); backdrop-filter: blur(16px); }
.site-header__inner {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}
.brand {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: inherit;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.035em;
    text-decoration: none;
}
.brand__mark { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.2; }
.brand__signal { fill: var(--signal); stroke: var(--ink); }
.site-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 48px); }
.site-nav a {
    position: relative;
    padding-block: 12px;
    color: rgba(242, 244, 238, .8);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
}
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 1px;
    background: var(--signal);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; border: 0; background: transparent; color: inherit; }

.hero {
    position: relative;
    min-height: max(760px, 100svh);
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--line);
}
.hero__media, .hero__media picture, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media { z-index: -3; background: #0b0e10; }
.hero__media img { object-fit: cover; object-position: 52% 50%; transform: scale(1.045) translate3d(0, var(--hero-shift, 0), 0); }
.hero::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 5, 6, .84) 0%, rgba(4, 5, 6, .48) 48%, rgba(4, 5, 6, .28) 100%),
        linear-gradient(180deg, rgba(4, 5, 6, .54) 0%, transparent 38%, rgba(4, 5, 6, .86) 100%);
}
.hero__grid {
    position: absolute;
    z-index: -1;
    inset: 84px max(40px, calc((100vw - 1360px) / 2)) 0;
    pointer-events: none;
    border-inline: 1px solid rgba(242, 244, 238, .09);
    background: linear-gradient(90deg, transparent calc(66.66% - .5px), rgba(242, 244, 238, .09) 66.66%, transparent calc(66.66% + .5px));
}
.hero__inner {
    min-height: max(760px, 100svh);
    padding: 124px 0 52px;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(290px, 1fr);
    grid-template-rows: auto 1fr auto;
    column-gap: 5vw;
}
.hero__marker {
    grid-column: 1 / -1;
    align-self: start;
    margin: 0;
    font-family: var(--mono);
    color: rgba(242, 244, 238, .58);
    font-size: 10px;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.hero__statement { grid-column: 1; grid-row: 3; align-self: end; }
.eyebrow {
    margin: 0 0 28px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.eyebrow > span { width: 28px; height: 1px; background: var(--signal); }
.eyebrow--light { color: rgba(242, 244, 238, .72); }
.hero h1, .section h2, .development h2 {
    margin: 0;
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .92;
}
.hero h1 { max-width: 960px; font-size: clamp(64px, 7.3vw, 112px); text-wrap: balance; }
.hero__details {
    grid-column: 2;
    grid-row: 3;
    align-self: end;
    padding-left: clamp(22px, 3vw, 48px);
    border-left: 1px solid var(--line);
}
.hero__details > p { max-width: 420px; margin: 0; color: rgba(242, 244, 238, .78); font-size: clamp(16px, 1.35vw, 20px); }
.hero__actions { margin-top: 32px; display: flex; align-items: center; gap: 26px; }
.button {
    min-height: 54px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .035em;
    text-decoration: none;
}
.button--signal { background: var(--signal); color: var(--ink); transition: background-color .2s ease, transform .2s ease; }
.button--signal:hover { background: #d2ff60; transform: translateY(-2px); }
.text-link { display: inline-flex; align-items: center; gap: 13px; font-size: 12px; font-weight: 700; text-underline-offset: 5px; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link--light { color: rgba(242, 244, 238, .86); }
.hero__index {
    position: absolute;
    right: max(40px, calc((100vw - 1360px) / 2));
    top: 50%;
    display: flex;
    flex-direction: column;
    gap: 54px;
    color: rgba(242, 244, 238, .45);
    font-family: var(--mono);
    font-size: 9px;
}
.hero__index::before { content: ""; position: absolute; left: 50%; top: 18px; width: 1px; height: 40px; background: var(--signal); }

.section { padding: clamp(110px, 11vw, 176px) 0; }
.section-intro { display: grid; grid-template-columns: minmax(190px, .5fr) minmax(0, 1.5fr); gap: 6vw; }
.section-intro h2, .process h2, .contact h2, .development h2 { font-size: clamp(52px, 5.5vw, 84px); text-wrap: balance; }
.section-lead { max-width: 730px; margin: 42px 0 0; color: var(--muted); font-size: clamp(17px, 1.45vw, 21px); }
.profile-list { margin-top: clamp(72px, 9vw, 130px); border-top: 1px solid var(--line); }
.profile-row {
    position: relative;
    min-height: 196px;
    padding: 40px 0;
    display: grid;
    grid-template-columns: 100px minmax(240px, .9fr) minmax(300px, 1fr) 72px;
    gap: 30px;
    align-items: center;
    border-bottom: 1px solid var(--line);
}
.profile-row__number, .process-list__index { align-self: start; padding-top: 7px; color: var(--signal); font-family: var(--mono); font-size: 11px; }
.profile-row h3 { margin: 0; font-size: clamp(28px, 2.4vw, 40px); font-weight: 500; letter-spacing: -.045em; line-height: 1.04; }
.profile-row p { max-width: 510px; margin: 0; color: var(--muted); }
.profile-row__axis { justify-self: end; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 50%; }
.profile-row__axis::before, .profile-row__axis::after { content: ""; position: absolute; right: 21px; top: 50%; width: 1px; height: 14px; background: var(--line-strong); transform: translateY(-50%); }
.profile-row__axis::after { transform: translateY(-50%) rotate(90deg); }

.process { background: #111510; border-block: 1px solid rgba(185, 242, 39, .16); }
.process__grid { display: grid; grid-template-columns: minmax(300px, .82fr) minmax(440px, 1.18fr); gap: 9vw; align-items: start; }
.process__statement { position: sticky; top: 132px; }
.process__statement > p:last-child { max-width: 530px; margin: 36px 0 0; color: var(--muted); font-size: 18px; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { min-height: 235px; padding: 36px 0; display: grid; grid-template-columns: 82px 1fr; border-bottom: 1px solid var(--line); }
.process-list h3 { margin: 0 0 18px; font-size: clamp(30px, 3vw, 46px); font-weight: 500; letter-spacing: -.045em; }
.process-list p { max-width: 470px; margin: 0; color: var(--muted); }
.process__note { margin: 28px 0 0; display: flex; gap: 12px; color: var(--muted); font-size: 12px; }
.process__note span { color: var(--signal); font-size: 8px; padding-top: 4px; }

.development { padding-top: clamp(110px, 11vw, 176px); overflow: hidden; }
.development__copy { display: grid; grid-template-columns: minmax(190px, .5fr) minmax(0, 1.5fr); gap: 6vw; }
.development__copy h2 { max-width: 980px; }
.development__copy > div > p { max-width: 650px; margin: 38px 0 0; color: var(--muted); font-size: 18px; }
.development__visual {
    position: relative;
    width: calc(100% - 80px);
    max-width: 1520px;
    height: min(68vw, 820px);
    min-height: 570px;
    margin: clamp(76px, 9vw, 132px) auto 0;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
}
.development__visual::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 10, 11, .1), rgba(8, 10, 11, .74)), linear-gradient(90deg, rgba(8, 10, 11, .7), transparent 56%);
}
.development__visual picture, .development__visual img { width: 100%; height: 100%; }
.development__visual img { object-fit: cover; object-position: center 56%; filter: saturate(.72) contrast(1.08); transform: scale(1.03); }
.development__visual > p, .development__visual > span { position: absolute; z-index: 3; margin: 0; font-family: var(--mono); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.development__visual > p { left: 32px; bottom: 30px; color: rgba(242, 244, 238, .75); }
.development__visual > span { top: 28px; right: 28px; color: var(--signal); }
.development__scan { position: absolute; z-index: 3; left: 0; top: 38%; width: 100%; height: 1px; background: rgba(185, 242, 39, .48); box-shadow: 0 0 24px rgba(185, 242, 39, .2); }

.contact { background: var(--text); color: var(--ink); }
.contact__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 9vw; align-items: end; }
.contact .eyebrow { color: #59605b; }
.contact .eyebrow > span { background: #4a6d00; }
.contact__body > p { max-width: 540px; margin: 0; color: #515854; font-size: 18px; }
.contact__status { margin-top: 44px; padding: 20px 0; display: flex; align-items: center; gap: 12px; border-block: 1px solid rgba(8, 10, 11, .22); font-family: var(--mono); font-size: 10px; letter-spacing: .04em; text-transform: uppercase; }
.contact__status span { width: 8px; height: 8px; border-radius: 50%; background: #5e7d12; }

.site-footer { padding: 60px 0 24px; background: var(--signal); color: var(--ink); }
.site-footer__top { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.site-footer__top p, .footer-up { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-up { text-underline-offset: 4px; }
.site-footer__wordmark { margin-top: 72px; overflow: hidden; font-size: clamp(90px, 15vw, 220px); font-weight: 700; letter-spacing: -.085em; line-height: .72; white-space: nowrap; }
.site-footer__meta { margin-top: 44px; padding-top: 18px; display: flex; justify-content: space-between; border-top: 1px solid rgba(8, 10, 11, .3); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

.motion-ready .hero__media { clip-path: inset(0 100% 0 0); }
.motion-ready .hero__media img { transform: scale(1.11) translate3d(0, var(--hero-shift, 0), 0); }
.motion-ready [data-hero-item] { opacity: 0; transform: translateY(24px); }
.motion-ready.hero-ready .hero__media { clip-path: inset(0); transition: clip-path 1.15s cubic-bezier(.76, 0, .24, 1); }
.motion-ready.hero-ready .hero__media img { transform: scale(1.045) translate3d(0, var(--hero-shift, 0), 0); transition: transform 1.45s cubic-bezier(.22, 1, .36, 1); }
.motion-ready.hero-ready [data-hero-item] { opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .85s cubic-bezier(.22, 1, .36, 1); }
.motion-ready.hero-ready [data-hero-item]:nth-child(2) { transition-delay: .18s; }
.motion-ready.hero-ready [data-hero-item]:nth-child(3) { transition-delay: .3s; }
.motion-ready [data-reveal] { opacity: 0; transform: translateY(34px); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); transition: opacity .65s ease, transform .8s cubic-bezier(.22, 1, .36, 1); }

@media (max-width: 980px) {
    :root { --wrap: min(100% - 48px, 920px); }
    .hero__grid { inset-inline: 24px; }
    .hero__inner { grid-template-columns: minmax(0, 1.6fr) minmax(270px, 1fr); }
    .hero h1 { font-size: clamp(62px, 8.5vw, 84px); }
    .hero__index { right: 24px; }
    .section-intro, .development__copy { grid-template-columns: 170px 1fr; gap: 4vw; }
    .profile-row { grid-template-columns: 70px minmax(200px, .85fr) minmax(260px, 1.15fr) 50px; gap: 20px; }
    .process__grid { grid-template-columns: .85fr 1.15fr; gap: 6vw; }
    .development__visual { width: calc(100% - 48px); min-height: 520px; }
}

@media (max-width: 768px) {
    :root { --wrap: calc(100% - 36px); }
    html { scroll-padding-top: 72px; }
    .site-header__inner { height: 72px; }
    .brand { font-size: 17px; }
    .brand__mark { width: 27px; height: 27px; }
    .menu-toggle { position: relative; z-index: 3; padding: 10px 0 10px 12px; display: flex; align-items: center; gap: 10px; cursor: pointer; }
    .menu-toggle__label { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
    .menu-toggle__icon { width: 24px; height: 14px; display: flex; flex-direction: column; justify-content: space-between; }
    .menu-toggle__icon i { display: block; width: 100%; height: 1px; background: currentColor; transition: transform .25s ease; }
    .menu-open .menu-toggle__icon i:first-child { transform: translateY(6.5px) rotate(45deg); }
    .menu-open .menu-toggle__icon i:last-child { transform: translateY(-6.5px) rotate(-45deg); }
    .site-nav {
        position: fixed;
        inset: 0;
        padding: 116px 18px 36px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #111510;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease, visibility .25s ease;
    }
    .menu-open .site-nav { visibility: visible; opacity: 1; pointer-events: auto; }
    .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--text); font-size: clamp(36px, 11vw, 54px); font-weight: 500; letter-spacing: -.055em; line-height: 1; text-transform: none; }
    .site-nav a:first-child { border-top: 1px solid var(--line); }
    .site-nav a::after { display: none; }
    .hero { min-height: max(760px, 100svh); }
    .hero__media img { object-position: 50% 44%; }
    .hero::before { background: linear-gradient(180deg, rgba(4, 5, 6, .62) 0%, rgba(4, 5, 6, .18) 35%, rgba(4, 5, 6, .94) 76%, #080a0b 100%); }
    .hero__grid { inset: 72px 18px 0; background: none; }
    .hero__inner { min-height: max(760px, 100svh); padding: 104px 0 34px; display: flex; flex-direction: column; }
    .hero__marker { order: 1; }
    .hero__statement { order: 2; margin-top: auto; }
    .hero .eyebrow { margin-bottom: 18px; }
    .hero h1 { max-width: 640px; font-size: clamp(54px, 13vw, 78px); line-height: .92; }
    .hero__details { order: 3; margin-top: 28px; padding: 24px 0 0; border-left: 0; border-top: 1px solid var(--line); }
    .hero__details > p { max-width: 560px; font-size: 16px; }
    .hero__actions { margin-top: 24px; }
    .hero__index { display: none; }
    .section { padding: 96px 0; }
    .section-intro, .development__copy { grid-template-columns: 1fr; gap: 18px; }
    .section-intro h2, .process h2, .contact h2, .development h2 { font-size: clamp(44px, 11vw, 62px); }
    .section-lead { margin-top: 30px; font-size: 17px; }
    .profile-list { margin-top: 64px; }
    .profile-row { padding: 30px 0; grid-template-columns: 46px 1fr 34px; gap: 14px 12px; min-height: 0; }
    .profile-row__number { grid-row: 1; }
    .profile-row h3 { grid-row: 1; font-size: 28px; }
    .profile-row p { grid-column: 2 / 4; }
    .profile-row__axis { grid-row: 1; width: 30px; height: 30px; }
    .profile-row__axis::before, .profile-row__axis::after { right: 14px; height: 10px; }
    .process__grid { grid-template-columns: 1fr; gap: 64px; }
    .process__statement { position: static; }
    .process__statement > p:last-child { margin-top: 28px; font-size: 17px; }
    .process-list li { min-height: 190px; grid-template-columns: 54px 1fr; }
    .development { padding-top: 96px; }
    .development__copy > div > p { margin-top: 28px; font-size: 17px; }
    .development__visual { width: calc(100% - 36px); min-height: 500px; height: 112vw; margin-top: 64px; }
    .development__visual > p { left: 18px; bottom: 18px; max-width: 68%; }
    .development__visual > span { top: 18px; right: 18px; }
    .contact__grid { grid-template-columns: 1fr; gap: 48px; }
    .site-footer { padding-top: 42px; }
    .site-footer__top { align-items: flex-start; flex-wrap: wrap; }
    .site-footer__top p { order: 3; flex-basis: 100%; }
    .site-footer__wordmark { margin-top: 62px; font-size: clamp(64px, 17.5vw, 126px); }
}

@media (max-width: 440px) {
    .hero { min-height: 790px; }
    .hero__inner { min-height: 790px; }
    .hero h1 { font-size: clamp(48px, 14vw, 62px); }
    .hero__actions { align-items: stretch; flex-direction: column; gap: 16px; }
    .button { width: 100%; }
    .text-link { padding: 6px 0; }
    .profile-row h3 { font-size: 25px; }
    .process-list h3 { font-size: 31px; }
    .site-footer__wordmark { font-size: 15vw; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .motion-ready .hero__media { clip-path: none; }
    .motion-ready .hero__media img, .motion-ready.hero-ready .hero__media img { transform: none; }
    .motion-ready [data-hero-item], .motion-ready [data-reveal] { opacity: 1; transform: none; }
}