:root {
  --ink: #f4f2f8;
  --muted: #aaa6b5;
  --dim: #75717e;
  --bg: #07070a;
  --panel: #0e0e13;
  --panel-2: #13131a;
  --line: rgba(255,255,255,.1);
  --purple: #8b5cf6;
  --purple-light: #b69bff;
  --blue: #4169ff;
  --green: #77e2b4;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--bg); color: var(--ink); font-family: "Manrope", sans-serif; }
body.menu-open { overflow: hidden; }
body.modal-open { overflow: hidden; }
a { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.skip-link { position: fixed; top: -60px; left: 1rem; z-index: 100; padding: .8rem 1rem; background: white; color: black; transition: top .2s; }
.skip-link:focus { top: 1rem; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; display: flex; align-items: center; justify-content: space-between; height: 84px; padding: 0 max(24px, calc((100vw - var(--max)) / 2)); border-bottom: 1px solid transparent; transition: background .3s, border-color .3s, height .3s; }
.site-header.scrolled { height: 68px; background: rgba(7,7,10,.82); border-color: var(--line); backdrop-filter: blur(20px); }
.brand { display: inline-flex; align-items: center; text-decoration: none; font-weight: 800; letter-spacing: -.06em; }
.brand-logo { display: block; width: 118px; height: auto; }
.brand-mark { font-size: 1.4rem; font-style: italic; }
.brand-mark span { color: var(--purple-light); }
.brand-dot { margin-left: .18rem; color: var(--muted); font: 500 .68rem "DM Mono", monospace; letter-spacing: .08em; }
.site-nav { display: flex; align-items: center; gap: 2.25rem; }
.site-nav a { color: var(--muted); font-size: .86rem; font-weight: 600; text-decoration: none; transition: color .2s; }
.site-nav a:hover, .site-nav a:focus-visible { color: white; }
.site-nav .nav-cta { padding: .72rem 1rem; border: 1px solid var(--line); color: white; }
.nav-cta span { margin-left: .65rem; color: var(--purple-light); }
.menu-button { display: none; }

.hero { position: relative; min-height: 100svh; display: grid; grid-template-columns: 1.08fr .92fr; align-content: center; gap: 4rem; max-width: 1440px; margin: auto; padding: 140px max(32px, calc((100% - var(--max)) / 2)) 72px; isolation: isolate; }
.hero::before { content: ""; position: absolute; width: 44rem; height: 44rem; top: -20rem; right: -8rem; z-index: -2; background: radial-gradient(circle, rgba(108,64,255,.2), transparent 68%); }
.hero-grid { position: absolute; inset: 0; z-index: -3; opacity: .16; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 90%); }
.hero-copy { align-self: center; }
.eyebrow, .section-label { color: var(--purple-light); font: 500 .68rem "DM Mono", monospace; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: .65rem; }
.eyebrow span { width: 1.8rem; height: 1px; background: var(--purple); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 850px; margin: 1.5rem 0 1.8rem; font-size: clamp(3.5rem, 6.8vw, 7.2rem); line-height: .93; letter-spacing: -.075em; }
h1 em { color: var(--purple-light); font-style: normal; }
.hero-intro { max-width: 680px; color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.18rem); line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.4rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 1.25rem; text-decoration: none; font-size: .85rem; font-weight: 700; }
.button-primary { background: var(--ink); color: var(--bg); transition: background .2s, transform .2s; }
.button-primary:hover { background: var(--purple-light); transform: translateY(-2px); }
.button span { margin-left: 1.2rem; }
.text-link { color: var(--muted); font-size: .84rem; text-decoration: none; }
.text-link span { margin-left: .5rem; color: var(--purple-light); }

.hero-console { position: relative; align-self: center; min-width: 0; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(18,18,25,.96), rgba(10,10,14,.94)); box-shadow: 0 40px 100px rgba(0,0,0,.45), 0 0 0 1px rgba(139,92,246,.05) inset; transform: perspective(1200px) rotateY(-4deg) rotateX(2deg); }
.console-bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 46px; padding: 0 1rem; border-bottom: 1px solid var(--line); color: var(--dim); font: .62rem "DM Mono", monospace; }
.console-bar > :last-child { justify-self: end; color: var(--green); }
.console-dots { display: flex; gap: .4rem; }
.console-dots i { width: 7px; height: 7px; border-radius: 50%; background: #34333b; }
.console-body { padding: clamp(1.4rem, 4vw, 2.5rem); overflow: hidden; font: clamp(.7rem, 1.1vw, .88rem)/2.15 "DM Mono", monospace; white-space: nowrap; }
.console-body p { margin-bottom: 0; }
.line-number { display: inline-block; width: 2.4rem; color: #3f3d48; user-select: none; }
.code-purple { color: #bd91ff; }
.code-green { color: var(--green); }
.code-blue { color: #70a8ff; }
.console-result { margin-top: .9rem!important; padding-top: .8rem; border-top: 1px solid var(--line); color: var(--muted); }
.cursor { display: inline-block; width: 7px; height: 1em; margin-left: .35rem; background: var(--purple-light); vertical-align: -.12em; animation: blink 1s step-end infinite; }
.orbit { position: absolute; z-index: -1; border: 1px solid rgba(139,92,246,.2); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 250px; height: 250px; right: -120px; bottom: -130px; }
.orbit-two { width: 160px; height: 160px; right: -75px; bottom: -85px; border-color: rgba(65,105,255,.3); }
.hero-footer { grid-column: 1 / -1; align-self: end; display: flex; justify-content: space-between; padding-top: 3.5rem; color: var(--dim); font: .62rem "DM Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.availability { display: flex; align-items: center; gap: .6rem; }
.availability i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px var(--green); }

.section-pad { max-width: var(--max); margin: auto; padding: 9rem 0; }
.statement { display: grid; grid-template-columns: 1fr 3fr; border-top: 1px solid var(--line); }
.statement-copy { max-width: 950px; margin: 0; font-size: clamp(2.2rem, 4.5vw, 4.5rem); font-weight: 600; line-height: 1.12; letter-spacing: -.055em; }
.statement-copy span { color: var(--dim); }
.section-heading { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: end; padding-bottom: 4rem; }
.section-heading h2, .approach-copy h2, .principles-intro h2, .contact h2 { margin: 1.2rem 0 0; font-size: clamp(2.6rem, 5vw, 5.2rem); line-height: 1; letter-spacing: -.065em; }
.section-heading > p { margin-bottom: .6rem; color: var(--muted); line-height: 1.7; }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 410px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); transition: background .25s; }
.service-card:hover { background: var(--panel); }
.service-number { color: var(--dim); font: .65rem "DM Mono", monospace; }
.service-icon { width: 52px; height: 52px; margin: 3.5rem 0 2.4rem; color: var(--purple-light); }
.service-icon svg { fill: none; width: 100%; stroke: currentColor; stroke-width: 1.2; }
.service-card h3 { margin-bottom: .9rem; font-size: 1.55rem; letter-spacing: -.03em; }
.service-card p { max-width: 430px; color: var(--muted); line-height: 1.65; }
.service-card ul { position: absolute; right: 2rem; bottom: 2rem; left: 2rem; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.service-card li { padding: .45rem .65rem; border: 1px solid var(--line); color: var(--dim); font: .6rem "DM Mono", monospace; text-transform: uppercase; }

.audit-callout { max-width: var(--max); margin: -5rem auto 8rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.25rem 1.5rem; border: 1px solid rgba(182,155,255,.26); background: linear-gradient(135deg, rgba(139,92,246,.13), rgba(19,19,26,.94)); }
.audit-callout p { margin: 0; color: var(--muted); line-height: 1.6; }
.audit-callout p span { color: white; font-weight: 800; }
.audit-callout a { flex: 0 0 auto; color: var(--purple-light); font-size: .85rem; font-weight: 800; text-decoration: none; }
.audit-callout a:hover { color: white; }
.audit-callout a span { margin-left: .45rem; }

.work { border-top: 1px solid var(--line); }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.project-card { min-width: 0; padding: 1.25rem; background: var(--panel); }
.project-card-large { grid-row: span 2; }
.project-shot { display: block; width: 100%; overflow: hidden; aspect-ratio: 16 / 10; padding: 0; border: 1px solid rgba(255,255,255,.12); background: #050508; color: inherit; cursor: pointer; }
.project-card-large .project-shot { aspect-ratio: 16 / 10; }
.project-shot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .55s ease, filter .55s ease; }
.project-shot:hover img, .project-shot:focus-visible img { transform: scale(1.035); filter: saturate(1.08); }
.project-info { display: flex; align-items: start; justify-content: space-between; gap: 1.5rem; margin-top: 1.3rem; }
.project-kicker { margin-bottom: .45rem; color: var(--purple-light); font: .6rem "DM Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
.project-card h3 { margin: 0; font-size: clamp(1.25rem, 2.2vw, 2rem); letter-spacing: -.04em; }
.project-link { flex: 0 0 auto; padding: 0; border: 0; background: transparent; color: var(--muted); font: inherit; font-size: .78rem; font-weight: 700; text-align: left; text-decoration: none; cursor: pointer; }
.project-link:hover, .project-link:focus-visible { color: white; }
.project-link span { margin-left: .45rem; color: var(--purple-light); }
.project-card > p { max-width: 720px; margin: 1rem 0 0; color: var(--muted); line-height: 1.65; }
.project-live-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; color: var(--purple-light); font-size: .76rem; font-weight: 800; text-decoration: none; }
.project-live-link:hover, .project-live-link:focus-visible { color: white; }
.project-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .22s ease; }
.project-modal.open { opacity: 1; pointer-events: auto; }
.project-modal-backdrop { position: absolute; inset: 0; background: rgba(3,3,6,.78); backdrop-filter: blur(18px); }
.project-modal-panel { position: relative; width: min(1120px, 100%); max-height: min(88svh, 900px); display: grid; grid-template-columns: 1.35fr .65fr; overflow: hidden; border: 1px solid rgba(255,255,255,.16); background: #0b0b10; box-shadow: 0 40px 120px rgba(0,0,0,.65); }
.project-modal-close { position: absolute; top: 14px; right: 14px; z-index: 2; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.16); background: rgba(7,7,10,.78); color: white; font-size: 1.45rem; line-height: 1; cursor: pointer; }
.project-modal-close:hover, .project-modal-close:focus-visible { border-color: rgba(182,155,255,.5); color: var(--purple-light); }
.project-modal-media { min-height: 0; overflow: auto; background: #050508; }
.project-modal-media img { display: block; width: 100%; height: auto; min-height: 100%; object-fit: contain; }
.project-modal-copy { align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 4vw, 3rem); border-left: 1px solid var(--line); }
.project-modal-copy h3 { margin: .45rem 0 1.1rem; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -.06em; }
.project-modal-copy > p:not(.project-kicker) { color: var(--muted); line-height: 1.75; }
.project-modal-link { align-self: flex-start; margin-top: 1.2rem; }
.project-modal-link[hidden] { display: none; }

.system { border-top: 1px solid var(--line); }
.system-map { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding: 1px; background: var(--line); isolation: isolate; }
.system-rail { position: absolute; top: 50%; right: 8%; left: 8%; z-index: -1; height: 1px; background: linear-gradient(90deg, var(--purple), var(--blue), var(--purple)); box-shadow: 0 0 32px rgba(139,92,246,.5); }
.system-node { position: relative; min-height: 360px; padding: 2rem; background: var(--panel); }
.system-node.featured { background: linear-gradient(160deg, #191329, #101018 72%); }
.system-node.featured::before { content: ""; position: absolute; inset: 0; border: 1px solid rgba(182,155,255,.38); pointer-events: none; }
.node-number, .node-tag { color: var(--dim); font: .62rem "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.node-mark { display: grid; place-items: center; width: 58px; height: 58px; margin: 4rem 0 2.6rem; border: 1px solid rgba(182,155,255,.35); border-radius: 50%; background: #111118; color: var(--purple-light); font-size: 1.2rem; box-shadow: 0 0 0 10px rgba(139,92,246,.04); }
.system-node h3 { margin-bottom: .8rem; font-size: 1.45rem; letter-spacing: -.03em; }
.system-node p { max-width: 310px; color: var(--muted); line-height: 1.65; }
.node-tag { position: absolute; right: 2rem; bottom: 2rem; left: 2rem; color: var(--purple-light); }
.system-caption { display: flex; align-items: center; justify-content: center; gap: 1.2rem; padding: 1.3rem; border: 1px solid var(--line); border-top: 0; color: var(--dim); font: .62rem "DM Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
.system-caption i { width: 4px; height: 4px; border-radius: 50%; background: var(--purple); }

.approach { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8rem; }
.approach-copy { position: sticky; top: 130px; align-self: start; }
.approach-copy h2 span { color: var(--dim); }
.approach-copy > p:last-child { max-width: 500px; margin-top: 2rem; color: var(--muted); line-height: 1.75; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 1rem; padding: 2.6rem 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--purple-light); font: .65rem "DM Mono", monospace; }
.process-list h3 { margin-bottom: .8rem; font-size: 1.4rem; letter-spacing: -.03em; }
.process-list p { margin: 0; color: var(--muted); line-height: 1.65; }

.founder { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7rem; border-top: 1px solid var(--line); }
.founder-card { position: relative; min-height: 520px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 2.5rem; border: 1px solid var(--line); background: radial-gradient(circle at 20% 10%, rgba(139,92,246,.24), transparent 45%), var(--panel); }
.founder-card::after { content: ""; position: absolute; right: -30%; bottom: -25%; width: 100%; aspect-ratio: 1; border: 1px solid rgba(182,155,255,.17); border-radius: 50%; box-shadow: 0 0 0 55px rgba(139,92,246,.03), 0 0 0 110px rgba(139,92,246,.025); }
.founder-logo { position: relative; z-index: 1; display: block; width: min(100%, 390px); height: auto; margin: -1.4rem auto 0; filter: drop-shadow(0 24px 34px rgba(139,92,246,.14)); }
.founder-photo-wrap { position: relative; z-index: 1; overflow: hidden; aspect-ratio: 4 / 4.6; margin: -1rem -1rem 0; border: 1px solid rgba(255,255,255,.12); background: #08080c; }
.founder-photo-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(7,7,10,0) 48%, rgba(7,7,10,.82) 100%); pointer-events: none; }
.founder-photo { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 34%; filter: saturate(.95) contrast(1.04); }
.founder-photo-badge { position: absolute; right: 1rem; bottom: 1rem; z-index: 2; width: 108px; height: auto; filter: drop-shadow(0 14px 24px rgba(0,0,0,.5)); }
.founder-identity { position: relative; z-index: 1; display: flex; flex-direction: column; gap: .25rem; margin: 1.4rem 0 1rem; }
.founder-identity span { color: white; font-size: 1.25rem; font-weight: 800; letter-spacing: -.035em; }
.founder-identity small { color: var(--purple-light); font: .62rem "DM Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
.founder-identity a { align-self: flex-start; margin-top: .55rem; color: var(--muted); font-size: .86rem; font-weight: 700; text-decoration: none; }
.founder-identity a:hover, .founder-identity a:focus-visible { color: white; }
.founder-identity a span { margin-left: .35rem; color: var(--purple-light); font-size: inherit; letter-spacing: 0; }
.founder-monogram { color: white; font-size: clamp(4rem, 8vw, 7rem); font-style: italic; font-weight: 800; letter-spacing: -.1em; }
.founder-monogram span { color: var(--purple-light); }
.founder-card > p { position: relative; z-index: 1; max-width: 370px; margin: 0; color: var(--muted); font-size: 1.15rem; line-height: 1.65; }
.founder-copy { align-self: center; }
.founder-copy h2, .fit-heading h2, .audit-intro h2 { margin: 1.2rem 0 2rem; font-size: clamp(2.6rem, 5vw, 5rem); line-height: 1.02; letter-spacing: -.065em; }
.founder-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.founder-columns p { color: var(--muted); line-height: 1.75; }
.founder-facts { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; }
.founder-facts span { padding: .55rem .72rem; border: 1px solid var(--line); background: rgba(255,255,255,.025); color: var(--muted); font: .6rem "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.founder-signoff { display: flex; align-items: center; gap: .8rem; margin-top: 2rem; color: var(--purple-light); font: .62rem "DM Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.founder-signoff span { width: 2rem; height: 1px; background: var(--purple); }

.fit { border-top: 1px solid var(--line); }
.fit-heading { display: grid; grid-template-columns: 1fr 3fr; gap: 2rem; margin-bottom: 4rem; }
.fit-heading h2 { max-width: 860px; margin-top: 0; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; }
.fit-card { padding: clamp(2rem, 4vw, 3.5rem); border: 1px solid var(--line); }
.fit-card + .fit-card { border-left: 0; }
.fit-positive { background: linear-gradient(145deg, rgba(119,226,180,.05), transparent 50%); }
.fit-negative { background: var(--panel); }
.fit-title { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.fit-title span { display: grid; place-items: center; flex: 0 0 32px; height: 32px; border: 1px solid currentColor; border-radius: 50%; color: var(--green); }
.fit-negative .fit-title span { color: var(--dim); }
.fit-title h3 { margin: 0; font-size: 1.35rem; }
.fit-card ul { margin: 0; padding: 0; list-style: none; }
.fit-card li { position: relative; padding: 1.15rem 0 1.15rem 1.4rem; border-top: 1px solid var(--line); color: var(--muted); line-height: 1.6; }
.fit-card li::before { content: ""; position: absolute; top: 1.75rem; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.fit-negative li::before { background: var(--dim); }

.audit { max-width: none; padding-inline: max(32px, calc((100% - var(--max)) / 2)); background: #0b0a10; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.audit-shell { max-width: var(--max); margin: auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 7rem; }
.audit-intro { align-self: center; }
.audit-badge { display: inline-flex; margin-top: 2rem; padding: .55rem .75rem; border: 1px solid rgba(182,155,255,.32); color: var(--purple-light); font: .62rem "DM Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.audit-intro > p:not(.section-label) { max-width: 520px; color: var(--muted); line-height: 1.75; }
.audit-intro .button { margin-top: 1.5rem; }
.audit-details { border: 1px solid var(--line); background: var(--panel); }
.audit-label { margin: 0; padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--line); color: var(--dim); font: .62rem "DM Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
.audit-details ol { margin: 0; padding: 0 1.5rem; list-style: none; }
.audit-details li { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; padding: 1.55rem 0; border-bottom: 1px solid var(--line); }
.audit-details li > span { color: var(--purple-light); font: .62rem "DM Mono", monospace; }
.audit-details h3 { margin-bottom: .4rem; font-size: 1rem; }
.audit-details li p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.55; }
.audit-timeline { display: flex; align-items: center; padding: 1.5rem; color: var(--dim); font: .57rem "DM Mono", monospace; letter-spacing: .06em; text-transform: uppercase; }
.audit-timeline i { flex: 1; height: 1px; margin: 0 .65rem; background: linear-gradient(90deg, var(--purple), rgba(139,92,246,.15)); }

.principles { border-top: 1px solid var(--line); }
.principles-intro { display: grid; grid-template-columns: 1fr 3fr; gap: 2rem; margin-bottom: 5rem; }
.principles-intro h2 { max-width: 900px; margin-top: 0; }
.principles-intro em { color: var(--purple-light); font-style: normal; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.principle-grid article { min-height: 310px; padding: 2rem; border: 1px solid var(--line); border-right: 0; }
.principle-grid article:last-child { border-right: 1px solid var(--line); }
.principle-grid span { color: var(--purple-light); font: .65rem "DM Mono", monospace; text-transform: uppercase; }
.principle-grid h3 { margin: 5.5rem 0 1rem; font-size: 1.35rem; letter-spacing: -.025em; }
.principle-grid p { color: var(--muted); line-height: 1.65; }

.contact { position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.contact-glow { position: absolute; right: -10rem; bottom: -30rem; width: 50rem; height: 50rem; border-radius: 50%; background: radial-gradient(circle, rgba(112,70,255,.22), transparent 66%); pointer-events: none; }
.contact-main { display: grid; grid-template-columns: .86fr 1.14fr; gap: 5rem; align-items: start; margin: 4rem 0 3rem; }
.contact-copy { position: sticky; top: 110px; }
.contact h2 { max-width: 850px; }
.contact-copy p { max-width: 520px; color: var(--muted); line-height: 1.75; }
.contact-copy a { display: inline-flex; gap: 1rem; margin-top: 1.7rem; padding-bottom: .35rem; border-bottom: 1px solid var(--purple-light); color: var(--purple-light); font-size: clamp(1.1rem, 2vw, 1.5rem); text-decoration: none; }
.contact-copy a:hover { color: white; }
.contact-form { position: relative; display: grid; gap: 1rem; padding: 1.25rem; border: 1px solid var(--line); background: rgba(14,14,19,.78); backdrop-filter: blur(18px); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.contact-form label { display: grid; gap: .55rem; min-width: 0; }
.contact-form label > span { color: var(--dim); font: .62rem "DM Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; background: #08080c; color: var(--ink); font: inherit; font-size: .95rem; outline: 0; transition: border-color .2s, background .2s, box-shadow .2s; }
.contact-form input, .contact-form select { min-height: 52px; padding: 0 .9rem; }
.contact-form textarea { min-height: 150px; padding: .9rem; resize: vertical; line-height: 1.55; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(182,155,255,.72); background: #0c0c12; box-shadow: 0 0 0 3px rgba(139,92,246,.16); }
.contact-form small { min-height: 1rem; color: #ff8f8f; font-size: .78rem; }
.contact-form .button { width: 100%; border: 0; cursor: pointer; }
.contact-form .button:disabled { cursor: wait; opacity: .68; transform: none; }
.form-status { min-height: 1.25rem; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.form-status.success { color: var(--green); }
.form-status.error { color: #ff8f8f; }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-meta { display: flex; align-items: end; justify-content: space-between; }
.contact-meta p { max-width: 540px; margin: 0; color: var(--muted); line-height: 1.7; }
.contact-meta span { color: var(--dim); font: .62rem "DM Mono", monospace; text-transform: uppercase; }
.site-footer { max-width: var(--max); margin: auto; padding: 2rem 0 3rem; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; color: var(--dim); font-size: .72rem; }
.site-footer p { margin: 0; }
.site-footer p:nth-child(2) { text-align: center; }
.site-footer p:last-child { text-align: right; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.visible { opacity: 1; transform: none; }
@keyframes blink { 50% { opacity: 0; } }

@media (max-width: 1300px) {
  .section-pad:not(.audit), .site-footer { margin-inline: 32px; }
  .audit-callout { margin-inline: 32px; }
}
@media (max-width: 900px) {
  .menu-button { display: grid; place-content: center; gap: 6px; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; color: white; }
  .menu-button span:not(.sr-only) { display: block; width: 18px; height: 1px; background: currentColor; transition: transform .2s; }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 68px 0 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 3rem 24px; background: var(--bg); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 1.2rem 0; border-bottom: 1px solid var(--line); font-size: 1.35rem; }
  .site-nav .nav-cta { margin-top: 1rem; padding: 1.2rem; text-align: center; }
  .hero { grid-template-columns: 1fr; gap: 3rem; padding-top: 130px; }
  .hero-console { width: min(100%, 660px); transform: none; }
  .hero-footer { padding-top: 1rem; }
  .statement { grid-template-columns: 1fr; gap: 2rem; }
  .section-heading { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card-large { grid-row: auto; }
  .project-card-large .project-shot, .project-shot { aspect-ratio: 16 / 10; }
  .project-modal-panel { grid-template-columns: 1fr; overflow: auto; }
  .project-modal-media { max-height: 54svh; }
  .project-modal-copy { border-top: 1px solid var(--line); border-left: 0; }
  .approach { grid-template-columns: 1fr; gap: 4rem; }
  .approach-copy { position: static; }
  .system-map { grid-template-columns: 1fr; }
  .system-rail { top: 8%; bottom: 8%; left: 61px; width: 1px; height: auto; }
  .system-node { min-height: 300px; padding-left: 7rem; }
  .node-mark { position: absolute; top: 50%; left: 2rem; margin: 0; transform: translateY(-50%); }
  .founder { grid-template-columns: 1fr; gap: 4rem; }
  .founder-card { min-height: 420px; }
  .fit-heading { grid-template-columns: 1fr; }
  .audit-shell { grid-template-columns: 1fr; gap: 4rem; }
  .principles-intro { grid-template-columns: 1fr; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-grid article { min-height: auto; border-right: 1px solid var(--line); border-bottom: 0; }
  .principle-grid article:last-child { border-bottom: 1px solid var(--line); }
  .principle-grid h3 { margin-top: 3.5rem; }
  .contact-main { grid-template-columns: 1fr; gap: 3rem; }
  .contact-copy { position: static; }
}
@media (max-width: 600px) {
  .site-header { height: 68px; padding-inline: 20px; }
  .brand-logo { width: 104px; }
  .hero { min-height: auto; padding: 110px 20px 40px; }
  h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 1.2rem; }
  .text-link { padding: .5rem 0; }
  .hero-footer { flex-direction: column; gap: .8rem; line-height: 1.5; }
  .console-body { font-size: .62rem; padding: 1.2rem .8rem; }
  .line-number { width: 1.8rem; }
  .console-bar { grid-template-columns: 1fr 1fr; }
  .console-bar > :nth-child(2) { display: none; }
  .section-pad:not(.audit) { margin-inline: 20px; padding-block: 6rem; }
  .audit { padding: 6rem 20px; }
  .service-list { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card ul { position: static; margin-top: 2rem; }
  .audit-callout { align-items: flex-start; flex-direction: column; margin: -3rem 20px 6rem; }
  .section-heading h2, .approach-copy h2, .principles-intro h2, .contact h2 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .project-card { padding: .85rem; }
  .project-info { flex-direction: column; gap: .8rem; }
  .project-shot { aspect-ratio: 4 / 3; }
  .project-card-large .project-shot { aspect-ratio: 4 / 3; }
  .project-modal { padding: 12px; }
  .project-modal-panel { max-height: 92svh; }
  .project-modal-copy { padding: 1.4rem; }
  .project-modal-close { top: 10px; right: 10px; width: 38px; height: 38px; }
  .system-node { min-height: 330px; padding: 2rem; }
  .system-rail { display: none; }
  .node-mark { position: static; margin: 3.5rem 0 2rem; transform: none; }
  .system-caption { align-items: flex-start; flex-direction: column; }
  .system-caption i { display: none; }
  .process-list li { grid-template-columns: 42px 1fr; }
  .founder-columns { grid-template-columns: 1fr; gap: .2rem; }
  .founder-photo-wrap { margin: -.8rem -.8rem 0; }
  .founder-photo-badge { width: 94px; }
  .founder-facts span { flex: 1 1 calc(50% - .55rem); text-align: center; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-card + .fit-card { border-top: 0; border-left: 1px solid var(--line); }
  .audit-timeline { align-items: flex-start; flex-direction: column; gap: .7rem; }
  .audit-timeline i { width: 1px; height: 18px; margin: 0 0 0 .2rem; flex: none; }
  .contact-form { padding: 1rem; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-meta { align-items: start; flex-direction: column; gap: 2rem; }
  .site-footer { margin-inline: 20px; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .site-footer p:nth-child(2) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
  .reveal { opacity: 1; transform: none; }
}
