:root {
  --ink: #080808;
  --ink-soft: #10100f;
  --paper: #f1eee8;
  --warm: #d8d1c7;
  --muted: #938f88;
  --line: rgba(241, 238, 232, 0.18);
  --signal: #ff3d21;
  --amber: #ffb000;
  --blue: #88a7c4;
  --pad: clamp(1.25rem, 4.2vw, 5rem);
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --mono: "Courier New", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; overflow-x: hidden; background: var(--ink); color: var(--paper); font-family: Arial, Helvetica, sans-serif; }
a, button, input, textarea, select { color: inherit; font: inherit; }
a { text-decoration: none; }
button { border: 0; }
::selection { background: var(--signal); color: var(--paper); }

.grain { position: fixed; inset: 0; z-index: 90; opacity: .045; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.scroll-line { position: fixed; z-index: 101; top: 0; left: 0; width: 0; height: 2px; background: var(--signal); box-shadow: 0 0 14px var(--signal); }
.cursor { position: fixed; z-index: 110; top: 0; left: 0; display: none; width: 38px; height: 38px; border: 1px solid rgba(255,61,33,.7); border-radius: 50%; pointer-events: none; transform: translate3d(-100px,-100px,0) translate(-50%,-50%); will-change: transform; mix-blend-mode: difference; transition: width .2s, height .2s, background .2s; }
.cursor i { position: absolute; left: 50%; top: 50%; width: 4px; height: 4px; border-radius: 50%; background: var(--signal); transform: translate(-50%,-50%); }
.cursor.is-hovering { width: 64px; height: 64px; background: var(--signal); }
/* The OS pointer is hidden only once script.js has the ring following it (.has-cursor).
   Without that, reduced motion or a failed script would leave no visible pointer at all. */
@media (min-width: 761px) {
  .has-cursor body, .has-cursor a, .has-cursor button, .has-cursor input, .has-cursor textarea, .has-cursor select { cursor: none; }
  .has-cursor .cursor { display: block; }
}

.boot { position: fixed; inset: 0; z-index: 200; display: grid; place-content: center; gap: 1.4rem; background: #050505; clip-path: inset(0); transition: clip-path .95s cubic-bezier(.76,0,.24,1) .15s, visibility 0s 1.15s; }
.boot.is-done { clip-path: inset(0 0 100% 0); visibility: hidden; }
/* Failsafe: clears the overlay even if script.js never loads or dies before dismissing it.
   The 2.5s delay leaves the normal 1.15s JS dismissal untouched. */
.boot { animation: bootFailsafe 0s linear 2.5s forwards; }
@keyframes bootFailsafe { to { clip-path: inset(0 0 100% 0); visibility: hidden; } }
.boot__mark { font: 950 clamp(3.5rem, 8vw, 8rem)/1 var(--display); letter-spacing: -.09em; text-align: center; }
.boot__mark span { color: var(--signal); }
.boot__bar { width: min(54vw, 390px); height: 2px; overflow: hidden; background: #2a2826; }
.boot__bar i { display: block; height: 100%; background: var(--signal); transform: translateX(-100%); animation: boot 1.25s cubic-bezier(.76,0,.24,1) forwards; }
.boot p { margin: 0; color: var(--muted); font: 10px/1 var(--mono); letter-spacing: .24em; text-align: center; }
@keyframes boot { to { transform: translateX(0); } }

.site-header { position: fixed; z-index: 80; inset: 0 0 auto; height: 84px; padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid transparent; transition: height .35s, background .35s, border-color .35s; }
.site-header.is-scrolled { height: 64px; background: rgba(8,8,8,.8); backdrop-filter: blur(18px); border-color: var(--line); }
.brand { display: inline-flex; align-items: center; gap: .7rem; font: 950 1.03rem/1 var(--display); letter-spacing: -.04em; }
.brand svg { width: 31px; height: 31px; overflow: visible; fill: var(--paper); }
.brand__slash { fill: var(--signal); }
.brand strong { color: var(--signal); font-weight: 950; }
.desktop-nav { display: flex; gap: 2.4rem; font: 700 .66rem/1 var(--mono); letter-spacing: .14em; }
.desktop-nav a { position: relative; color: #d2cec7; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.65rem; height: 1px; background: var(--signal); transition: right .3s; }
.desktop-nav a:hover::after { right: 0; }
.header__right { display: flex; align-items: center; gap: 1.3rem; }
.status { display: inline-flex; align-items: center; gap: .55rem; font: 700 .58rem/1 var(--mono); letter-spacing: .12em; }
.status i { width: 6px; height: 6px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 11px var(--signal); animation: pulse 1.5s infinite; }
@keyframes pulse { 50% { opacity: .25; } }
.header-cta { padding: .85rem 1.05rem; border: 1px solid rgba(241,238,232,.55); font: 800 .58rem var(--mono); letter-spacing: .11em; transition: background .25s, color .25s; }
.header-cta:hover { background: var(--paper); color: var(--ink); }
.menu-toggle, .mobile-menu { display: none; }

.hero { position: relative; min-height: 100svh; overflow: hidden; background: #060606; }
.hero__image { position: absolute; inset: -3%; width: 106%; height: 106%; object-fit: cover; object-position: center; filter: saturate(.82) contrast(1.08); animation: hero-in 2.2s cubic-bezier(.16,1,.3,1) both; will-change: transform; }
@keyframes hero-in { from { transform: scale(1.13); filter: brightness(.18) saturate(.4); } }
.hero__wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,6,6,.94) 0%, rgba(6,6,6,.76) 32%, rgba(6,6,6,.12) 74%), linear-gradient(0deg, #080808 0%, transparent 30%); }
.hero__grid { position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(255,61,33,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,61,33,.1) 1px, transparent 1px); background-size: 90px 90px; mask-image: linear-gradient(to bottom, transparent 8%, #000 100%); transform: perspective(530px) rotateX(59deg) scale(1.85) translateY(29%); transform-origin: bottom; }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0,0,0,.11) 4px); }
.hero__content { position: relative; z-index: 2; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: 9rem var(--pad) 7rem; }
.eyebrow { display: flex; gap: 2.2rem; color: #ddd9d2; font: 700 .62rem/1 var(--mono); letter-spacing: .16em; }
.eyebrow span:first-child::before { content: ""; display: inline-block; width: 30px; height: 1px; margin: 0 .75rem .2rem 0; background: var(--signal); }
.hero h1 { margin: clamp(2rem,5vh,4.2rem) 0 1.8rem; max-width: 1050px; font: 950 clamp(5rem, 12.3vw, 12rem)/.73 var(--display); letter-spacing: -.085em; }
.hero__line { display: block; overflow: hidden; }
.hero__line b { display: block; font: inherit; }
.hero__line--stroke b { color: transparent; -webkit-text-stroke: clamp(1px,.13vw,2px) rgba(241,238,232,.9); }
.hero__foot { display: flex; align-items: center; gap: 2.5rem; }
.hero__statement { width: min(520px, 45vw); }
.hero__foot p { margin: 0; color: #c8c2b9; font-size: .9rem; line-height: 1.68; }
.hero__proof { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.hero__proof span { padding: .42rem .5rem; border: 1px solid rgba(241,238,232,.34); color: #d8d1c7; font: 700 .45rem var(--mono); letter-spacing: .09em; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 2rem; min-width: 232px; padding: 1.15rem 1.25rem; border: 1px solid; font: 800 .61rem var(--mono); letter-spacing: .11em; }
.button svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: transform .25s; }
.button:hover svg { transform: translateX(5px); }
.button--signal { background: var(--signal); border-color: var(--signal); }
.button--signal:hover { background: #ff5239; }
.hero__timecode { position: absolute; z-index: 2; top: 110px; right: var(--pad); color: #ddd7ce; font: 700 .58rem var(--mono); letter-spacing: .12em; }
.hero__timecode span { color: var(--signal); }
.hero__edge { position: absolute; z-index: 2; right: 1.2rem; top: 50%; display: flex; align-items: center; gap: .75rem; transform: translate(45%,-50%) rotate(90deg); color: #a8a39b; font: 700 .52rem var(--mono); letter-spacing: .17em; }
.hero__edge i { width: 45px; height: 1px; background: var(--signal); }
.hero__scroll { position: absolute; z-index: 3; left: var(--pad); bottom: 2rem; display: flex; align-items: center; gap: .8rem; font: 700 .54rem var(--mono); letter-spacing: .14em; }
.hero__scroll i { width: 48px; height: 1px; background: var(--paper); overflow: hidden; }
.hero__scroll i::after { content: ""; display: block; width: 45%; height: 100%; background: var(--signal); animation: scroll-line 1.6s ease-in-out infinite; }
@keyframes scroll-line { from { transform: translateX(-110%); } to { transform: translateX(230%); } }

.ticker { overflow: hidden; padding: 1.1rem 0; border-block: 1px solid var(--line); background: var(--paper); color: var(--ink); }
.ticker__track { display: flex; align-items: center; width: max-content; animation: ticker 26s linear infinite; }
.ticker span { padding: 0 1.8rem; font: 950 .74rem var(--display); letter-spacing: .08em; }
.ticker i { color: var(--signal); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { position: relative; padding: clamp(5.5rem, 10vw, 10rem) var(--pad); }
.section-label { color: var(--muted); font: 700 .57rem/1 var(--mono); letter-spacing: .16em; }
.section-label span { color: var(--signal); }
.kicker { margin: 0; color: var(--signal); font: 800 .62rem/1.4 var(--mono); letter-spacing: .16em; }
h2 { margin: 1.2rem 0 0; font: 950 clamp(3.6rem, 7.5vw, 8rem)/.8 var(--display); letter-spacing: -.075em; }
h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 1px var(--signal); }

.priority { background: var(--ink); }
.priority__head { display: grid; grid-template-columns: .6fr 1.55fr .7fr; gap: clamp(2rem,5vw,6rem); align-items: end; margin-bottom: clamp(4rem,7vw,7rem); }
.priority__head .section-label { align-self: start; }
.priority__head h2 { font-size: clamp(3.5rem,6.5vw,7rem); }
.priority__head > p { margin: 0; color: #aaa49b; font-size: .9rem; line-height: 1.72; }
.priority__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.priority-card { position: relative; min-height: clamp(480px,47vw,660px); display: flex; flex-direction: column; justify-content: space-between; padding: clamp(1.3rem,2.5vw,2.5rem); overflow: hidden; border: 1px solid var(--line); }
.priority-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) contrast(1.08); transition: transform 1.2s cubic-bezier(.16,1,.3,1), filter .5s; }
.priority-card--ai img { object-position: 57% center; }
.priority-card--colour img { object-position: 68% center; }
.priority-card--sound img { object-position: center; }
.priority-card__shade { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(8,8,8,.94) 0%,rgba(8,8,8,.08) 66%), linear-gradient(90deg,rgba(8,8,8,.52),transparent 60%); }
.priority-card > span, .priority-card > div:not(.priority-card__shade), .priority-card > b { position: relative; z-index: 1; }
.priority-card > span, .priority-card > b { font: 800 .51rem var(--mono); letter-spacing: .11em; }
.priority-card > span { color: var(--signal); }
.priority-card > b { align-self: flex-end; color: var(--warm); }
.priority-card h3 { margin: 0; font: 950 clamp(3rem,5.2vw,5.5rem)/.76 var(--display); letter-spacing: -.075em; }
.priority-card p { max-width: 315px; margin: 1.2rem 0 0; color: #c2bcb4; font-size: .83rem; line-height: 1.55; }
.priority-card:hover img { transform: scale(1.045); filter: saturate(1) contrast(1.03); }
.priority-card--colour { border-color: rgba(255,61,33,.7); }
.priority-card--sound { border-color: rgba(255,176,0,.45); }

.ai-systems { overflow: hidden; background: #dce8e8; color: var(--ink); }
.ai-systems::before { content: ""; position: absolute; inset: 0; opacity: .18; pointer-events: none; background-image: linear-gradient(rgba(8,8,8,.13) 1px,transparent 1px),linear-gradient(90deg,rgba(8,8,8,.1) 1px,transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(to bottom,#000,transparent 72%); }
.ai-systems__scan { position: absolute; z-index: 1; top: 0; left: 0; right: 0; height: 2px; background: var(--signal); box-shadow: 0 0 25px 5px rgba(255,61,33,.25); animation: ai-scan 8s ease-in-out infinite; }
@keyframes ai-scan { 50% { transform: translateY(94vh); opacity: .7; } }
.ai-systems__top { position: relative; display: flex; justify-content: space-between; align-items: center; }
.ai-systems .section-label { color: #626b69; }
.ai-systems .kicker { color: #d52b13; }
.ai-systems__status { display: flex; align-items: center; gap: .65rem; color: #49524f; font: 800 .52rem var(--mono); letter-spacing: .12em; }
.ai-systems__status i { width: 8px; height: 8px; background: var(--signal); transform: rotate(45deg); animation: pulse 1.5s infinite; }
.ai-systems__intro { position: relative; display: grid; grid-template-columns: 1.55fr .65fr; gap: clamp(3rem,8vw,9rem); align-items: end; margin-top: clamp(5rem,8vw,8rem); }
.ai-systems__intro h2 { font-size: clamp(3.7rem,7.4vw,8rem); }
.ai-systems__intro h2 em { -webkit-text-stroke-color: #167d80; }
.ai-systems__lead p { margin: 0 0 1.5rem; color: #46504d; font-size: .92rem; line-height: 1.75; }
.ai-systems__lead p:first-child { color: #1f2523; font-size: clamp(1.02rem,1.35vw,1.22rem); }
.ai-route { position: relative; display: grid; grid-template-columns: repeat(4,1fr); margin: clamp(4rem,7vw,7rem) 0 1.25rem; padding-top: 2.4rem; border-top: 1px solid rgba(8,8,8,.25); }
.ai-route__line { position: absolute; left: 0; right: 0; top: -1px; height: 2px; overflow: hidden; }
.ai-route__line i { display: block; width: 25%; height: 100%; background: var(--signal); animation: route 4.6s ease-in-out infinite; }
@keyframes route { 50% { transform: translateX(300%); } }
.ai-route > div:not(.ai-route__line) { display: flex; flex-direction: column; gap: .48rem; }
.ai-route span { color: #167d80; font: 800 .53rem var(--mono); }
.ai-route b { font: 900 .72rem var(--mono); letter-spacing: .08em; }
.ai-route small { color: #65706d; font: 700 .48rem var(--mono); letter-spacing: .08em; }
.ai-capabilities { position: relative; display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid rgba(8,8,8,.28); }
.ai-capabilities article { min-height: 390px; display: flex; flex-direction: column; padding: clamp(1.4rem,2.6vw,2.7rem); border-right: 1px solid rgba(8,8,8,.22); border-bottom: 1px solid rgba(8,8,8,.22); background: rgba(220,232,232,.76); transition: background .35s,color .35s,transform .35s; }
.ai-capabilities article:nth-child(3n) { border-right: 0; }
.ai-capabilities article:nth-last-child(-n+3) { border-bottom: 0; }
.ai-capabilities article:not(.ai-capabilities__principle):hover { z-index: 2; background: var(--ink); color: var(--paper); transform: translateY(-7px); }
.ai-card__top { display: flex; justify-content: space-between; color: #167d80; font: 800 .52rem var(--mono); letter-spacing: .1em; }
.ai-card__top i { width: 8px; height: 8px; border: 1px solid currentColor; transform: rotate(45deg); }
.ai-capabilities h3 { margin: 3.6rem 0 1.4rem; font: 950 clamp(2rem,3.25vw,3.5rem)/.84 var(--display); letter-spacing: -.06em; }
.ai-capabilities article > p { margin: 0; color: #4c5653; font-size: .82rem; line-height: 1.67; transition: color .35s; }
.ai-capabilities article:hover > p { color: #aaa49b; }
.ai-card__tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: auto; padding-top: 1.4rem; }
.ai-card__tags span { padding: .42rem .48rem; border: 1px solid rgba(8,8,8,.24); font: 800 .46rem var(--mono); letter-spacing: .07em; }
.ai-capabilities article:hover .ai-card__tags span { border-color: rgba(241,238,232,.25); }
.ai-capabilities__principle { position: relative; justify-content: space-between; overflow: hidden; background: #167d80 !important; color: var(--paper); }
.ai-capabilities__principle > span { position: relative; z-index: 1; font: 800 .52rem var(--mono); letter-spacing: .1em; }
.ai-capabilities__principle blockquote { position: relative; z-index: 1; margin: auto 0 0; font: 950 clamp(2rem,3.3vw,3.55rem)/.87 var(--display); letter-spacing: -.055em; }
.ai-capabilities__principle em { color: transparent; font-style: normal; -webkit-text-stroke: 1px var(--paper); }
.ai-principle__rings i { position: absolute; right: -15%; bottom: -35%; width: 78%; aspect-ratio: 1; border: 1px solid rgba(241,238,232,.22); border-radius: 50%; }
.ai-principle__rings i:nth-child(2) { right: 2%; bottom: -18%; width: 46%; border-style: dashed; animation: spin 15s linear infinite; }
.ai-principle__rings i:nth-child(3) { right: 14%; bottom: -5%; width: 23%; background: rgba(255,61,33,.12); }
.ai-systems__foot { position: relative; display: flex; justify-content: space-between; align-items: center; margin-top: 1.25rem; padding: clamp(1.4rem,2.5vw,2.4rem); background: var(--ink); color: var(--paper); }
.ai-systems__foot p { margin: 0; font: 900 clamp(1rem,1.7vw,1.5rem) var(--display); letter-spacing: -.025em; }
.ai-systems__foot .button { width: auto; border-color: var(--signal); background: var(--signal); }

.intro { min-height: 110vh; display: grid; grid-template-columns: .6fr 2fr; grid-template-rows: auto 1fr auto; gap: 4rem; align-items: start; background: var(--paper); color: var(--ink); overflow: hidden; }
.intro .section-label { color: #706c66; }
.intro__copy { align-self: center; }
.intro h2 { font-size: clamp(4rem, 8.2vw, 9rem); }
.intro__foot { grid-column: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,6vw,7rem); max-width: 900px; }
.intro__foot p { margin: 0; color: #504d48; font-size: .95rem; line-height: 1.75; }
.intro__stamp { position: absolute; right: var(--pad); bottom: 6rem; width: 125px; height: 125px; display: grid; place-items: center; color: var(--signal); }
.intro__stamp svg { position: absolute; inset: 0; width: 100%; animation: spin 18s linear infinite; }
.intro__stamp text { fill: var(--signal); font: 700 8px var(--mono); letter-spacing: 1.7px; }
.intro__stamp span { font: 950 1.4rem var(--display); letter-spacing: -.05em; }
@keyframes spin { to { transform: rotate(360deg); } }

.services { background: var(--paper); color: var(--ink); }
.services__head { display: grid; grid-template-columns: .65fr 2fr .85fr; gap: 3rem; align-items: end; padding-top: 1rem; padding-bottom: clamp(4rem,8vw,7rem); }
.services__head .section-label { align-self: start; color: #706c66; }
.services__head h2 { font-size: clamp(3.6rem,7.2vw,7.8rem); }
.services__head > p { margin: 0; color: #56524d; line-height: 1.7; }
.service-list { border-top: 1px solid rgba(8,8,8,.25); }
.service { position: relative; min-height: 152px; display: grid; grid-template-columns: .3fr 1.45fr 1fr .28fr; gap: 2rem; align-items: center; padding: 2rem var(--pad); border-bottom: 1px solid rgba(8,8,8,.25); overflow: hidden; outline: none; transition: color .4s, min-height .4s; }
.service::before { content: ""; position: absolute; inset: 0; background: var(--ink); transform: translateY(101%); transition: transform .55s cubic-bezier(.76,0,.24,1); }
.service > * { position: relative; z-index: 1; }
.service__no { align-self: start; padding-top: .45rem; font: 700 .61rem var(--mono); }
.service h3 { margin: 0; font: 950 clamp(2.5rem,5.6vw,6rem)/.83 var(--display); letter-spacing: -.065em; }
.service__detail { opacity: 0; transform: translateY(12px); transition: opacity .35s, transform .35s; }
.service__detail p { max-width: 430px; margin: 0 0 1rem; color: #afa9a0; font-size: .88rem; line-height: 1.65; }
.service__detail span { color: var(--signal); font: 700 .52rem/1.5 var(--mono); letter-spacing: .1em; }
.service:hover, .service:focus, .service.is-active { min-height: 240px; color: var(--paper); }
.service:hover::before, .service:focus::before, .service.is-active::before { transform: translateY(0); }
.service:hover .service__detail, .service:focus .service__detail, .service.is-active .service__detail { opacity: 1; transform: translateY(0); }
.service:hover .service__glyph, .service:focus .service__glyph, .service.is-active .service__glyph { color: var(--signal); transform: rotate(180deg); }
.service__glyph { position: relative; justify-self: end; width: 66px; height: 66px; transition: color .35s, transform .6s; }
.service__glyph i { position: absolute; left: 50%; top: 50%; display: block; background: currentColor; }
.glyph-star i { width: 100%; height: 1px; transform: translate(-50%,-50%); }
.glyph-star i:nth-child(2) { transform: translate(-50%,-50%) rotate(60deg); }
.glyph-star i:nth-child(3) { transform: translate(-50%,-50%) rotate(120deg); }
.glyph-orbit { border: 1px solid; border-radius: 50%; }
.glyph-orbit i { width: 8px; height: 8px; border-radius: 50%; transform: translate(-50%,-50%); }
.glyph-orbit i:first-child { left: 0; }
.glyph-orbit i:nth-child(2) { left: 100%; }
.glyph-orbit i:nth-child(3) { top: 100%; }
.glyph-frame { border: 1px solid; }
.glyph-frame::before, .glyph-frame::after { content: ""; position: absolute; inset: 10px; border: 1px solid currentColor; }
.glyph-frame::after { inset: 23px; background: currentColor; }
.glyph-wave { display: flex; align-items: center; justify-content: center; gap: 7px; }
.glyph-wave i { position: static; width: 2px; height: 25%; }
.glyph-wave i:nth-child(2) { height: 80%; }.glyph-wave i:nth-child(3) { height: 52%; }.glyph-wave i:nth-child(4) { height: 100%; }
.glyph-bars { display: flex; align-items: end; gap: 6px; padding: 7px; border-bottom: 1px solid; }
.glyph-bars i { position: static; width: 14px; height: 35%; }.glyph-bars i:nth-child(2) { height: 100%; }.glyph-bars i:nth-child(3) { height: 66%; }
.glyph-cross i { width: 100%; height: 1px; transform: translate(-50%,-50%); }.glyph-cross i:last-child { transform: translate(-50%,-50%) rotate(90deg); }

/* Visual service panels */
.service { grid-template-columns: minmax(0,1.2fr) 72px minmax(0,1fr); grid-template-rows: auto auto 1fr; gap: 0; min-height: 540px; padding: 0 var(--pad) 0 0; align-items: start; color: var(--ink); background: var(--paper); }
.service::before { display: none; }
.service__media { position: relative; grid-column: 1; grid-row: 1 / 4; width: 100%; height: 540px; margin: 0; overflow: hidden; background: #171717; }
.service__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(8,8,8,.55),transparent 45%); }
.service__media img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.72) contrast(1.06); transition: transform 1.2s cubic-bezier(.16,1,.3,1),filter .5s; }
.service__media figcaption { position: absolute; z-index: 2; left: 1.4rem; bottom: 1.25rem; color: var(--paper); font: 800 .5rem var(--mono); letter-spacing: .11em; }
.service__no { grid-column: 2; grid-row: 1; padding: 3rem 0 0 1.7rem; color: var(--signal); }
.service h3 { grid-column: 3; grid-row: 1; margin: 2.7rem 0 1.8rem; padding-right: 5rem; font-size: clamp(2.8rem,5vw,5.5rem); }
.service__detail { grid-column: 3; grid-row: 2; max-width: 610px; opacity: 1; transform: none; }
.service__detail p { color: #57534d; font-size: .92rem; line-height: 1.75; }
.service__detail span { color: #bb2e19; }
.service__glyph { position: absolute; right: var(--pad); bottom: 2.7rem; color: var(--signal); }
.service:hover, .service:focus, .service.is-active { min-height: 540px; color: var(--ink); }
.service:hover .service__detail, .service:focus .service__detail, .service.is-active .service__detail { opacity: 1; transform: none; }
.service:hover .service__media img, .service:focus .service__media img { transform: scale(1.035); filter: saturate(1) contrast(1.03); }
.service:nth-child(2), .service:nth-child(6) { color: var(--paper); background: var(--ink-soft); }
.service:nth-child(2) .service__detail p, .service:nth-child(6) .service__detail p { color: #aaa49b; }
.service:nth-child(2):hover, .service:nth-child(2):focus, .service:nth-child(6):hover, .service:nth-child(6):focus { color: var(--paper); }

.restoration { background: var(--ink-soft); }
.restoration__head { display: grid; grid-template-columns: 1.75fr .65fr; gap: clamp(3rem,9vw,10rem); align-items: end; margin-bottom: 4rem; }
.restoration__head .section-label { margin-bottom: 5rem; }
.restoration__head > p { margin: 0 0 .7rem; color: #a8a39b; line-height: 1.75; }
.compare { --position: 50%; position: relative; aspect-ratio: 2.4/1; min-height: 390px; overflow: hidden; background: #444; user-select: none; touch-action: none; }
.compare__layer { position: absolute; inset: 0; background-image: url("assets/restoration-compare.webp"); background-size: 200% 100%; background-repeat: no-repeat; }
.compare__before { background-position: left center; filter: contrast(1.02); }
.compare__after { background-position: right center; clip-path: inset(0 0 0 var(--position)); }
.compare__divider { position: absolute; top: 0; bottom: 0; left: var(--position); width: 2px; background: var(--paper); box-shadow: 0 0 25px rgba(0,0,0,.45); transform: translateX(-1px); }
.compare__divider button { position: absolute; top: 50%; left: 50%; width: 66px; height: 66px; display: grid; place-items: center; padding: 0; border: 1px solid var(--paper); border-radius: 50%; background: var(--signal); transform: translate(-50%,-50%); }
.compare__divider svg { width: 38px; fill: none; stroke: var(--paper); stroke-width: 1.5; }
.compare__tag { position: absolute; bottom: 1.2rem; padding: .6rem .75rem; background: rgba(8,8,8,.72); backdrop-filter: blur(7px); font: 800 .52rem var(--mono); letter-spacing: .11em; }
.compare__tag--before { left: 1.2rem; }.compare__tag--after { right: 1.2rem; }
.compare__meta { display: flex; align-items: center; gap: 1rem; margin-top: 1.2rem; color: var(--muted); font: 700 .52rem var(--mono); letter-spacing: .1em; }
.compare__meta i { flex: 1; height: 1px; background: var(--line); }

.colourisation { overflow: hidden; background: var(--ink-soft); }
.colourisation::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .16; background-image: linear-gradient(rgba(255,61,33,.15) 1px,transparent 1px),linear-gradient(90deg,rgba(255,61,33,.1) 1px,transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom,#000,transparent 42%); }
.colourisation__head { position: relative; display: grid; grid-template-columns: 1.55fr .65fr; gap: clamp(3rem,8vw,9rem); align-items: end; margin-bottom: clamp(4rem,7vw,7rem); }
.colourisation__head .section-label { margin-bottom: 5rem; }
.colourisation__head h2 { max-width: 1100px; font-size: clamp(3.4rem,6.8vw,7.5rem); }
.colourisation__head > div:last-child p { margin: 0 0 1.35rem; color: #aaa49b; font-size: .9rem; line-height: 1.75; }
.colourisation__head > div:last-child p:first-child { color: var(--paper); font-size: clamp(1rem,1.25vw,1.18rem); }
.colour-gallery { position: relative; display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(241,238,232,.18); border: 1px solid rgba(241,238,232,.18); }
.colour-study { margin: 0; background: #0b0b0a; }
.colour-study__image { position: relative; aspect-ratio: 1.62; overflow: hidden; }
.colour-study__image::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 80px rgba(0,0,0,.38); pointer-events: none; }
.colour-study__image > img, .colour-study__mono-layer img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.16,1,.3,1); }
.colour-study__base { filter: saturate(.94) contrast(1.03); }
.colour-study__mono-layer { position: absolute; inset: 0; clip-path: inset(0 82% 0 0); animation: colour-wipe 14s ease-in-out var(--wipe-delay,0s) infinite; will-change: clip-path; }
.colour-study__mono-layer img { filter: grayscale(1) contrast(1.06) brightness(.9); }
.colour-study:hover .colour-study__image > img, .colour-study:hover .colour-study__mono-layer img { transform: scale(1.025); }
.colour-study__divider { position: absolute; z-index: 2; top: 0; bottom: 0; left: 18%; width: 2px; background: var(--paper); box-shadow: 0 0 22px rgba(0,0,0,.65); animation: colour-divider 14s ease-in-out var(--wipe-delay,0s) infinite; will-change: left; }
.colour-study__divider::after { content: "↔"; position: absolute; left: 50%; top: 50%; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--paper); border-radius: 50%; background: var(--signal); color: var(--paper); font: 700 .7rem var(--mono); transform: translate(-50%,-50%); }
.colour-study__tag { position: absolute; z-index: 3; bottom: 1rem; padding: .5rem .58rem; background: rgba(8,8,8,.72); color: var(--paper); font: 700 .48rem var(--mono); letter-spacing: .1em; backdrop-filter: blur(8px); }
.colour-study__tag--mono { left: 1rem; }
.colour-study__tag--colour { right: 1rem; }
@keyframes colour-wipe { 0%,100% { clip-path: inset(0 82% 0 0); } 50% { clip-path: inset(0 18% 0 0); } }
@keyframes colour-divider { 0%,100% { left: 18%; } 50% { left: 82%; } }
.colour-study figcaption { min-height: 185px; display: grid; grid-template-columns: 72px 1fr; gap: 1rem; padding: clamp(1.35rem,2.4vw,2.25rem); }
.colour-study figcaption small { color: var(--signal); font: 800 .51rem var(--mono); letter-spacing: .09em; }
.colour-study figcaption h3 { margin: 0 0 .8rem; font: 950 clamp(1.55rem,2.4vw,2.6rem)/.9 var(--display); letter-spacing: -.045em; }
.colour-study figcaption p { max-width: 480px; margin: 0; color: #9f9991; font-size: .8rem; line-height: 1.65; }
.colour-gallery__note { position: relative; margin: 1rem 0 0; color: #79746d; font: 700 .48rem/1.5 var(--mono); letter-spacing: .1em; }
.compute { position: relative; display: grid; grid-template-columns: 1.25fr .75fr; min-height: 520px; margin-top: clamp(4rem,7vw,7rem); border: 1px solid rgba(255,61,33,.46); background: #080808; }
.compute__copy { padding: clamp(2rem,5vw,5rem); }
.compute__copy > span { color: var(--signal); font: 800 .54rem var(--mono); letter-spacing: .12em; }
.compute__copy h3 { margin: clamp(3rem,6vw,6rem) 0 1.7rem; font: 950 clamp(3rem,5.6vw,6.3rem)/.8 var(--display); letter-spacing: -.065em; }
.compute__copy h3 em { color: transparent; font-style: normal; -webkit-text-stroke: 1px var(--signal); }
.compute__copy p { max-width: 710px; margin: 0; color: #aaa49b; font-size: .91rem; line-height: 1.74; }
.compute__copy ul { display: flex; flex-wrap: wrap; gap: .5rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.compute__copy li { padding: .55rem .65rem; border: 1px solid rgba(241,238,232,.2); color: #bcb6ae; font: 700 .48rem var(--mono); letter-spacing: .07em; }
.compute__visual { position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(2rem,4vw,4rem); overflow: hidden; border-left: 1px solid rgba(255,61,33,.3); background: radial-gradient(circle at 50% 30%,rgba(255,61,33,.14),transparent 52%),linear-gradient(145deg,#131210,#080808); }
.compute__visual strong { position: relative; z-index: 1; font: 950 clamp(3rem,5vw,5.6rem)/.78 var(--display); letter-spacing: -.065em; }
.compute__visual small { position: relative; z-index: 1; margin-top: 1.2rem; color: var(--signal); font: 800 .49rem var(--mono); letter-spacing: .1em; }
.compute__rack { position: absolute; inset: 9% 12% 30%; display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: repeat(3,1fr); gap: .7rem; transform: perspective(620px) rotateX(5deg) rotateY(-9deg); }
.compute__rack i { position: relative; border: 1px solid rgba(241,238,232,.2); background: linear-gradient(110deg,rgba(255,255,255,.04),transparent); box-shadow: inset 0 0 24px rgba(255,61,33,.035); }
.compute__rack i::before { content: ""; position: absolute; left: 10px; top: 10px; width: 5px; height: 5px; background: var(--signal); box-shadow: 13px 0 0 #167d80,26px 0 0 rgba(241,238,232,.35); animation: pulse 1.5s infinite; }

.technology { overflow: hidden; background: #151311; }
.technology::before { content: ""; position: absolute; inset: 0; opacity: .17; pointer-events: none; background-image: linear-gradient(rgba(255,61,33,.18) 1px, transparent 1px), linear-gradient(90deg,rgba(255,61,33,.14) 1px,transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to bottom,#000,transparent 55%); }
.technology__top { position: relative; display: flex; justify-content: space-between; align-items: center; }
.technology__flag { display: flex; align-items: center; gap: .65rem; color: var(--warm); font: 800 .55rem var(--mono); letter-spacing: .13em; }
.technology__flag i { width: 8px; height: 8px; border: 1px solid var(--signal); transform: rotate(45deg); animation: pulse 1.5s infinite; }
.technology__intro { position: relative; display: grid; grid-template-columns: 1.55fr .62fr; gap: clamp(3rem,8vw,9rem); align-items: end; margin-top: clamp(5rem,8vw,8rem); }
.technology__intro h2 { font-size: clamp(3.5rem,6.8vw,7.4rem); }
.technology__lead { padding-bottom: .7rem; }
.technology__lead p { margin: 0 0 1.5rem; color: #b5afa6; font-size: .94rem; line-height: 1.75; }
.technology__lead p:first-child { color: var(--paper); font-size: clamp(1.05rem,1.4vw,1.28rem); }

.technology__products { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: clamp(4rem,7vw,7rem); }
.product { position: relative; min-height: 570px; display: flex; flex-direction: column; padding: clamp(1.6rem,3.2vw,3.5rem); overflow: hidden; }
.product::before { content: ""; position: absolute; right: -12%; bottom: -25%; width: 65%; aspect-ratio: 1; border: 1px solid currentColor; border-radius: 50%; opacity: .12; }
.product::after { content: ""; position: absolute; right: 8%; bottom: -6%; width: 31%; aspect-ratio: 1; border: 1px dashed currentColor; border-radius: 50%; opacity: .22; animation: spin 18s linear infinite; }
.product--colour { background: var(--paper); color: var(--ink); }
.product--sound { background: var(--signal); color: var(--paper); }
.product__top { position: relative; z-index: 1; display: flex; justify-content: space-between; font: 800 .54rem var(--mono); letter-spacing: .12em; }
.product__top i { font-style: normal; }
.product__name { position: relative; z-index: 1; margin-top: clamp(4rem,7vw,7rem); }
.product__name small { font: 800 .58rem var(--mono); letter-spacing: .17em; }
.product__name h3 { margin: .6rem 0 0; font: 950 clamp(4.2rem,7.3vw,8rem)/.7 var(--display); letter-spacing: -.085em; }
.product--colour .product__name h3 { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.product--sound .product__name h3 { color: var(--paper); }
.product > p { position: relative; z-index: 1; max-width: 570px; margin: auto 0 2rem; font-size: .9rem; line-height: 1.75; }
.product--colour > p { color: #504d48; }.product--sound > p { color: rgba(255,255,255,.82); }
.product__tags { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: .45rem; }
.product__tags span { padding: .5rem .58rem; border: 1px solid currentColor; font: 800 .47rem var(--mono); letter-spacing: .08em; }

.technology__console { position: relative; margin-top: clamp(4rem,7vw,7rem); border: 1px solid rgba(255,61,33,.48); background: rgba(8,8,8,.88); box-shadow: 0 30px 90px rgba(0,0,0,.25), inset 0 0 60px rgba(255,61,33,.035); }
.console__header { display: grid; grid-template-columns: 1fr 1fr auto; gap: 1rem; align-items: center; min-height: 47px; padding: 0 1rem; border-bottom: 1px solid rgba(255,61,33,.38); color: #a9a39b; font: 700 .49rem var(--mono); letter-spacing: .11em; }
.console__header span:nth-child(2) { text-align: right; }
.console__header i { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 12px var(--signal); animation: pulse 1.5s infinite; }
.console__body { display: grid; grid-template-columns: 1.1fr 1.35fr .55fr; min-height: 330px; }
.console__body > div { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(1.3rem,2.5vw,2.5rem); border-right: 1px solid rgba(255,61,33,.25); }
.console__body > div:last-child { border: 0; }
.console__body span, .console__body small { color: #968f87; font: 700 .49rem var(--mono); letter-spacing: .11em; }
.console__frame { position: relative; height: 155px; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; overflow: hidden; border: 1px solid rgba(241,238,232,.18); background: rgba(241,238,232,.12); }
.console__frame b { background: linear-gradient(135deg, transparent 35%,rgba(255,61,33,.23) 36% 60%,transparent 61%), linear-gradient(45deg,#151515,#3d3330); filter: brightness(calc(.65 + var(--level,.1))); }
.console__frame b:nth-child(2) { --level: .2; }.console__frame b:nth-child(3) { --level: .35; }.console__frame b:nth-child(4) { --level: .5; }
.console__frame i { position: absolute; left: 0; right: 0; top: 20%; height: 1px; background: var(--signal); box-shadow: 0 0 14px var(--signal); animation: console-scan 4s ease-in-out infinite; }
@keyframes console-scan { 50% { transform: translateY(92px); } }
.console__wave { height: 155px; display: flex; align-items: center; gap: clamp(3px,.55vw,9px); padding: 0 3%; border-block: 1px solid rgba(241,238,232,.12); }
.console__wave i { flex: 1; height: 15%; background: var(--signal); transform-origin: center; animation: waveform 1.5s ease-in-out infinite alternate; }
.console__wave i:nth-child(2n) { height: 63%; animation-delay: -.25s; }.console__wave i:nth-child(3n) { height: 88%; animation-delay: -.7s; }.console__wave i:nth-child(5n) { height: 40%; animation-delay: -.45s; }
@keyframes waveform { to { transform: scaleY(.35); opacity: .55; } }
.console__output { align-items: center; text-align: center; }
.console__output strong { color: var(--signal); font: 950 clamp(4rem,7vw,7.5rem)/1 var(--display); letter-spacing: -.08em; text-shadow: 0 0 40px rgba(255,61,33,.17); }

.technology__modules { position: relative; display: grid; grid-template-columns: repeat(3,1fr); margin-top: 1.25rem; border: 1px solid rgba(241,238,232,.2); }
.technology__modules article { min-height: 650px; display: flex; flex-direction: column; padding: clamp(1.5rem,2.6vw,2.7rem); border-right: 1px solid rgba(241,238,232,.16); border-bottom: 1px solid rgba(241,238,232,.16); background: rgba(21,19,17,.88); transition: background .35s, color .35s, transform .35s; }
.technology__modules article:nth-child(3n) { border-right: 0; }
.technology__modules article:nth-last-child(-n+3) { border-bottom: 0; }
.technology__modules article:not(.technology__statement):hover { z-index: 2; background: var(--paper); color: var(--ink); transform: translateY(-7px); }
.module__top { display: flex; justify-content: space-between; color: var(--signal); font: 800 .53rem var(--mono); letter-spacing: .1em; }
.module__top i { width: 8px; height: 8px; border: 1px solid currentColor; transform: rotate(45deg); }
.module__visual { position: relative; aspect-ratio: 1.65; margin: 2rem 0 0; overflow: hidden; background: #080808; }
.module__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(8,8,8,.72),transparent 48%); box-shadow: inset 0 0 40px rgba(0,0,0,.32); pointer-events: none; }
.module__visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.08); transition: transform .8s cubic-bezier(.16,1,.3,1),filter .4s; }
.technology__modules article:hover .module__visual img { transform: scale(1.035); filter: saturate(1.05) contrast(1.02); }
.module__visual figcaption { position: absolute; z-index: 1; left: .8rem; bottom: .7rem; color: #d4cec5; font: 700 .43rem var(--mono); letter-spacing: .08em; }
.technology__modules h3 { margin: 2rem 0 1.5rem; font: 950 clamp(2rem,3.4vw,3.7rem)/.83 var(--display); letter-spacing: -.06em; }
.technology__modules p { margin: 0; color: #aaa39a; font-size: .82rem; line-height: 1.68; transition: color .35s; }
.technology__modules article:hover p { color: #504d48; }
.technology__modules ul { margin: auto 0 0; padding: 1.5rem 0 0; list-style: none; border-top: 1px solid rgba(241,238,232,.14); }
.technology__modules li { position: relative; padding: .36rem 0 .36rem 1rem; color: #8f8981; font: 700 .49rem/1.45 var(--mono); letter-spacing: .05em; }
.technology__modules li::before { content: "+"; position: absolute; left: 0; color: var(--signal); }
.technology__modules article:hover ul { border-color: rgba(8,8,8,.18); }.technology__modules article:hover li { color: #625e58; }
.technology__statement { justify-content: space-between; background: var(--signal) !important; }
.technology__statement > span { font: 800 .54rem var(--mono); letter-spacing: .12em; }
.technology__statement blockquote { margin: 0; font: 950 clamp(2rem,3.4vw,3.65rem)/.88 var(--display); letter-spacing: -.06em; }
.technology__statement blockquote em { color: transparent; font-style: normal; -webkit-text-stroke: 1px var(--paper); }
.technology__statement p { color: rgba(255,255,255,.8); }

.pipeline { min-height: 115vh; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,8vw,9rem); align-items: center; overflow: hidden; background: radial-gradient(circle at 24% 50%, rgba(255,61,33,.13), transparent 29%), var(--ink); }
.pipeline__visual { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.reel { position: absolute; border: 1px solid rgba(255,61,33,.45); border-radius: 50%; animation: spin 22s linear infinite; }
.reel--outer { width: 89%; height: 89%; border-style: dashed; }
.reel--inner { width: 55%; height: 55%; animation-direction: reverse; animation-duration: 14s; }
.reel i { position: absolute; left: 50%; top: 50%; width: 23%; height: 23%; border: 1px solid rgba(241,238,232,.25); border-radius: 50%; transform-origin: 0 0; }
.reel--outer i:first-child { transform: translate(-50%,-50%) translateY(-145%); }.reel--outer i:nth-child(2) { transform: translate(-50%,-50%) rotate(72deg) translateY(-145%); }.reel--outer i:nth-child(3) { transform: translate(-50%,-50%) rotate(144deg) translateY(-145%); }.reel--outer i:nth-child(4) { transform: translate(-50%,-50%) rotate(216deg) translateY(-145%); }.reel--outer i:nth-child(5) { transform: translate(-50%,-50%) rotate(288deg) translateY(-145%); }
.pipeline__core { position: relative; z-index: 2; width: 20%; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--signal); background: rgba(255,61,33,.06); transform: rotate(45deg); }
.pipeline__core span { transform: rotate(-45deg); text-align: center; font: 800 .52rem/1.4 var(--mono); letter-spacing: .1em; }
.pipeline__node { position: absolute; padding: .55rem .7rem; border: 1px solid var(--line); background: var(--ink); color: var(--muted); font: 700 .47rem var(--mono); letter-spacing: .1em; }
.node--a { top: 10%; left: 8%; }.node--b { top: 47%; right: -2%; }.node--c { bottom: 9%; left: 6%; }
.pipeline__copy h2 { margin-block: 1.1rem 2rem; font-size: clamp(3.5rem,5.8vw,6.4rem); }
.pipeline__copy > p:not(.kicker) { max-width: 620px; color: #a8a39b; line-height: 1.75; }
.pipeline__copy .kicker { margin-top: 4rem; }
.pipeline__copy ol { margin: 3.5rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.pipeline__copy li { display: grid; grid-template-columns: 55px 1fr; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.pipeline__copy li > span { color: var(--signal); font: 700 .58rem var(--mono); }
.pipeline__copy li div { display: flex; flex-direction: column; gap: .5rem; }
.pipeline__copy li b { font: 800 .72rem var(--mono); letter-spacing: .08em; }
.pipeline__copy li small { color: var(--muted); font-size: .77rem; }

.studio { background: var(--paper); color: var(--ink); }
.studio .section-label { color: #706c66; }
.studio__grid { display: grid; grid-template-columns: 1.6fr .65fr; gap: clamp(3rem,9vw,10rem); align-items: end; margin-top: 6rem; }
.studio h2 { font-size: clamp(3.6rem,7vw,7.7rem); }
.studio__copy p { margin: 0 0 1.4rem; color: #504d48; line-height: 1.75; }
.studio__principles { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 7rem; border: 1px solid rgba(8,8,8,.28); }
.studio__principles article { min-height: 330px; padding: clamp(1.7rem,3vw,3rem); border-right: 1px solid rgba(8,8,8,.28); transition: background .35s, color .35s, transform .35s; }
.studio__principles article:last-child { border: 0; }
.studio__principles article:hover { background: var(--ink); color: var(--paper); transform: translateY(-8px); }
.studio__principles span { color: var(--signal); font: 700 .56rem var(--mono); }
.studio__principles h3 { margin: 4rem 0 2rem; font: 950 clamp(2.2rem,4vw,4rem)/.82 var(--display); letter-spacing: -.06em; }
.studio__principles p { max-width: 270px; color: #57534d; font-size: .83rem; line-height: 1.65; transition: color .35s; }
.studio__principles article:hover p { color: #aaa49b; }

.contact { min-height: 100vh; background: var(--signal); color: var(--paper); }
.contact__top { display: flex; justify-content: space-between; }
.contact .section-label { color: rgba(255,255,255,.7); }.contact .section-label span { color: var(--paper); }
.contact .status i { background: var(--paper); box-shadow: 0 0 10px var(--paper); }
.contact .kicker { margin-top: clamp(5rem,9vw,9rem); color: var(--paper); }
.contact h2 { color: var(--paper); font-size: clamp(5rem,10vw,10.5rem); }
.contact h2 em { -webkit-text-stroke-color: var(--paper); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; margin-top: clamp(4rem,7vw,7rem); }
.contact-form label { display: flex; flex-direction: column; gap: .7rem; }
.contact-form label:nth-child(4) { grid-column: 1 / -1; }
.contact-form label > span { font: 800 .54rem var(--mono); letter-spacing: .11em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 1rem 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.62); border-radius: 0; outline: 0; background: transparent; color: var(--paper); font: 700 clamp(.9rem,1.3vw,1.1rem) var(--mono); letter-spacing: .04em; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.62); }
.contact-form select option { background: var(--ink); }
.button--light { align-self: end; background: var(--paper); border-color: var(--paper); color: var(--ink); }
.contact-form .contact-form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-form [type="submit"]:disabled { opacity: .55; pointer-events: none; }
.form-status { align-self: center; margin: 0; font: 700 .65rem/1.6 var(--mono); letter-spacing: .06em; }

.footer { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; padding: 4rem var(--pad) 2rem; background: #030303; }
.footer > p { margin: 0; color: #9c978f; font: 700 .67rem/1.6 var(--mono); letter-spacing: .08em; }
.footer > div:not(.footer__bottom) { display: flex; flex-direction: column; gap: .65rem; color: #9c978f; font: 700 .57rem var(--mono); letter-spacing: .1em; }
.footer__bottom { grid-column: 1/-1; display: flex; justify-content: space-between; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: #6d6963; font: 700 .51rem var(--mono); letter-spacing: .1em; }

.js [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .9s cubic-bezier(.16,1,.3,1); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js .hero__line[data-reveal] { transform: none; }
.js .hero__line[data-reveal] b { transform: translateY(115%); transition: transform 1.05s cubic-bezier(.16,1,.3,1); }
.js .hero__line[data-reveal].is-visible b { transform: none; }
.hero__line:nth-child(2) b { transition-delay: .11s; }
.js .hero [data-reveal] { opacity: 1; transform: none; }
.js .hero .hero__line[data-reveal] b { transform: none; }

@media (max-width: 1080px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { position: relative; display: block; width: 54px; height: 36px; padding: 0; background: transparent; }
  .menu-toggle span { position: absolute; right: 0; width: 25px; height: 1px; background: var(--paper); transition: transform .3s, top .3s; }
  .menu-toggle span:first-child { top: 10px; }.menu-toggle span:nth-child(2) { top: 18px; }
  .menu-toggle b { position: absolute; left: 0; top: 10px; font: 700 .5rem var(--mono); letter-spacing: .08em; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 15px; transform: rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 15px; transform: rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 64px 0 0; z-index: 79; display: flex; flex-direction: column; justify-content: center; padding: var(--pad); background: rgba(8,8,8,.98); visibility: hidden; opacity: 0; transform: translateY(-20px); transition: opacity .3s, transform .3s, visibility 0s .3s; }
  .mobile-menu.is-open { visibility: visible; opacity: 1; transform: none; transition-delay: 0s; }
  .mobile-menu a { display: flex; align-items: baseline; gap: 1rem; padding: .55rem 0; font: 950 clamp(2.5rem,8vw,5rem)/1 var(--display); letter-spacing: -.06em; }
  .mobile-menu small { color: var(--signal); font: 700 .55rem var(--mono); letter-spacing: .08em; }
  .services__head { grid-template-columns: 1fr 2fr; }.services__head > p { grid-column: 2; }
  .service { grid-template-columns: minmax(0,1.05fr) 58px minmax(0,1fr); }
  .intro__stamp { opacity: .35; }
  .priority__head { grid-template-columns: .55fr 1.5fr; }.priority__head > p { grid-column: 2; }
  .ai-systems__intro { grid-template-columns: 1.4fr .7fr; }
  .ai-capabilities { grid-template-columns: repeat(2,1fr); }.ai-capabilities article:nth-child(3n) { border-right: 1px solid rgba(8,8,8,.22); }.ai-capabilities article:nth-child(2n) { border-right: 0; }.ai-capabilities article:nth-last-child(-n+3) { border-bottom: 1px solid rgba(8,8,8,.22); }.ai-capabilities article:nth-last-child(-n+2) { border-bottom: 0; }
  .technology__modules { grid-template-columns: repeat(2,1fr); }.technology__modules article:nth-child(3n) { border-right: 1px solid rgba(241,238,232,.16); }.technology__modules article:nth-child(2n) { border-right: 0; }.technology__modules article:nth-last-child(-n+3) { border-bottom: 1px solid rgba(241,238,232,.16); }.technology__modules article:nth-last-child(-n+2) { border-bottom: 0; }
  .product { min-height: 520px; }
}

@media (max-width: 760px) {
  body, a, button, input, textarea, select { cursor: auto; }
  .cursor { display: none; }
  .site-header { height: 64px; }
  .status { display: none; }
  .brand { font-size: .92rem; }.brand svg { width: 28px; height: 28px; }
  .hero__image { object-position: 64% center; }
  .hero__wash { background: linear-gradient(90deg,rgba(6,6,6,.91),rgba(6,6,6,.22)), linear-gradient(0deg,#080808 0%,transparent 48%); }
  .hero__content { justify-content: flex-end; padding-top: 8rem; padding-bottom: 8.2rem; }
  .hero h1 { margin-block: 1.6rem; font-size: clamp(4rem,21vw,7.8rem); }
  .eyebrow { flex-direction: column; gap: .7rem; }
  .eyebrow span:nth-child(2) { display: none; }
  .hero__foot { flex-direction: column; align-items: flex-start; gap: 1.4rem; }.hero__statement { width: 100%; max-width: 440px; }.hero__proof span:nth-child(2) { display: none; }
  .hero__timecode { top: 88px; }.hero__edge { display: none; }
  .button { width: 100%; min-width: 0; }
  .section { padding-block: 5.5rem; }
  h2 { font-size: clamp(3.1rem,16vw,5.5rem); }
  .intro { display: block; min-height: auto; }.intro__copy { margin-top: 5rem; }.intro h2 { font-size: clamp(3.25rem,16.5vw,5.6rem); }.intro__foot { display: block; margin-top: 4rem; padding-right: 1.2rem; }.intro__foot p + p { margin-top: 1.5rem; }.intro__stamp { right: 1rem; bottom: 2rem; width: 95px; height: 95px; opacity: .18; }
  .priority__head { display: block; }.priority__head h2 { margin-block: 4rem 2rem; font-size: clamp(3.2rem,15vw,5.3rem); }.priority__grid { grid-template-columns: 1fr; }.priority-card { min-height: 520px; }.priority-card h3 { font-size: clamp(4rem,18vw,6rem); }
  .ai-systems__top { align-items: flex-start; }.ai-systems__status { max-width: 135px; line-height: 1.5; }.ai-systems__intro { display: block; margin-top: 4rem; }.ai-systems__intro h2 { font-size: clamp(3.2rem,15vw,5.3rem); }.ai-systems__lead { margin-top: 3rem; }.ai-route { grid-template-columns: repeat(2,1fr); gap: 2rem 1rem; }.ai-capabilities { grid-template-columns: 1fr; }.ai-capabilities article, .ai-capabilities article:nth-child(2n), .ai-capabilities article:nth-child(3n), .ai-capabilities article:nth-last-child(-n+2), .ai-capabilities article:nth-last-child(-n+3) { min-height: 350px; border-right: 0; border-bottom: 1px solid rgba(8,8,8,.22); }.ai-capabilities article:last-child { border-bottom: 0; }.ai-systems__foot { align-items: flex-start; flex-direction: column; gap: 1.5rem; }.ai-systems__foot .button { width: 100%; }
  .services__head { display: block; }.services__head h2 { margin-block: 4rem 2rem; font-size: clamp(3.25rem,16vw,5.6rem); }
  .service { grid-template-columns: 42px 1fr; grid-template-rows: 280px auto auto; min-height: auto; gap: 0; padding: 0 var(--pad) 2.4rem; }.service__media { grid-column: 1 / -1; grid-row: 1; width: calc(100% + (var(--pad) * 2)); height: 280px; margin-left: calc(var(--pad) * -1); }.service__no { grid-column: 1; grid-row: 2; padding: 2.2rem 0 0; }.service h3 { grid-column: 2; grid-row: 2; margin: 2rem 0 1.4rem; padding: 0; font-size: clamp(2.4rem,12vw,4rem); }.service__detail { display: block; grid-column: 2; grid-row: 3; padding-right: 0; }.service__detail p { font-size: .84rem; }.service__glyph { display: none; }.service:hover, .service:focus, .service.is-active { min-height: auto; }
  .restoration__head { display: block; }.restoration__head .section-label { margin-bottom: 4rem; }.restoration__head > p { margin-top: 2rem; max-width: 520px; }
  .compare { min-height: 460px; aspect-ratio: .82; }.compare__layer { background-size: auto 100%; }.compare__before { background-position: 23% center; }.compare__after { background-position: 79% center; }.compare__divider button { width: 56px; height: 56px; }.compare__meta span:last-child { display: none; }
  .colourisation__head { display: block; }.colourisation__head .section-label { margin-bottom: 4rem; }.colourisation__head h2 { font-size: clamp(3rem,14.5vw,5rem); }.colourisation__head > div:last-child { margin-top: 3rem; }.colour-gallery { grid-template-columns: 1fr; }.colour-study figcaption { grid-template-columns: 58px 1fr; min-height: 170px; }.colour-gallery__note { padding-right: 2rem; }.compute { grid-template-columns: 1fr; }.compute__visual { min-height: 440px; border-top: 1px solid rgba(255,61,33,.3); border-left: 0; }.compute__copy h3 { font-size: clamp(3.2rem,14vw,5rem); }.compute__rack { inset: 9% 8% 33%; }
  .technology__top { align-items: flex-start; }.technology__flag { max-width: 120px; line-height: 1.5; }.technology__intro { display: block; margin-top: 4rem; }.technology__intro h2 { font-size: clamp(2.9rem,13.4vw,4.8rem); }.technology__lead { margin-top: 3rem; }.technology__products { grid-template-columns: 1fr; }.product { min-height: 530px; }.product__name h3 { font-size: clamp(4.5rem,22vw,7rem); }.console__header { grid-template-columns: 1fr auto; }.console__header span:nth-child(2) { display: none; }.console__body { grid-template-columns: 1fr; }.console__body > div { min-height: 245px; border-right: 0; border-bottom: 1px solid rgba(255,61,33,.25); }.console__output { min-height: 220px !important; }.technology__modules { grid-template-columns: 1fr; }.technology__modules article, .technology__modules article:nth-child(2n), .technology__modules article:nth-child(3n), .technology__modules article:nth-last-child(-n+2), .technology__modules article:nth-last-child(-n+3) { min-height: 390px; border-right: 0; border-bottom: 1px solid rgba(241,238,232,.16); }.technology__modules article:last-child { border-bottom: 0; }
  .pipeline { display: block; min-height: auto; }.pipeline__visual { margin-bottom: 5rem; }.pipeline__copy .kicker { margin-top: 4rem; }.pipeline__copy h2 { font-size: clamp(3.15rem,15vw,5.2rem); }
  .studio__grid { display: block; margin-top: 4rem; }.studio h2 { margin-bottom: 3rem; font-size: clamp(3.1rem,15vw,5.2rem); }
  .studio__principles { grid-template-columns: 1fr; margin-top: 4rem; }.studio__principles article { min-height: 260px; border: 0; border-bottom: 1px solid rgba(8,8,8,.28); }.studio__principles h3 { margin-top: 3rem; }
  .contact__top .status { display: inline-flex; }.contact h2 { font-size: clamp(4rem,21vw,7rem); }.contact-form { grid-template-columns: 1fr; }.contact-form label:nth-child(4) { grid-column: auto; }
  .footer { grid-template-columns: 1fr; }.footer__bottom { grid-column: 1; }.footer > div:not(.footer__bottom) { margin-top: 1rem; }
}

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