@font-face {
    font-family: "IBM Plex Sans";
    src: url("/assets/fonts/IBMPlexSans-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("/assets/fonts/IBMPlexSans-SemiBold.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("/assets/fonts/IBMPlexSans-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    color-scheme: dark;
    --ink: #0a0b09;
    --ink-soft: #11130f;
    --panel: #171914;
    --panel-2: #1d2019;
    --white: #f3f4ee;
    --muted: #a6aaa0;
    --dim: #71756c;
    --green: #b2bb1d;
    --green-bright: #c5cf21;
    --green-dark: #7e8610;
    --line: #33372d;
    --line-soft: rgb(255 255 255 / 9%);
    --display: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
    --body: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
    --shell: 78rem;
    --pad: clamp(1.25rem, 4vw, 4rem);
    --section: clamp(5rem, 11vw, 9.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
    margin: 0;
    overflow-x: hidden;
    background: var(--ink);
    color: var(--white);
    font-family: var(--body);
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
    content: "";
    pointer-events: none;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
em { color: var(--green-bright); font-style: normal; }
::selection { background: var(--green); color: var(--ink); }
:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 4px; }
.section-shell { width: min(100% - (var(--pad) * 2), var(--shell)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 200; top: .75rem; left: .75rem; padding: .7rem 1rem; transform: translateY(-150%); background: var(--green); color: var(--ink); font-weight: 800; }
.skip-link:focus { transform: none; }

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    transition: background .25s, border-color .25s, backdrop-filter .25s;
}
.site-header.is-scrolled { border-color: var(--line-soft); background: rgb(10 11 9 / 88%); backdrop-filter: blur(18px); }
.header-inner { display: flex; width: min(100% - (var(--pad) * 2), 88rem); min-height: 5.75rem; margin: auto; align-items: center; justify-content: space-between; gap: 2rem; }
.brand img { width: 11.5rem; height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.1rem); }
.main-nav a { position: relative; color: #d7d9d1; font-size: .82rem; font-weight: 650; text-decoration: none; }
.main-nav a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -.5rem; left: 0; height: 1px; transform: scaleX(0); transform-origin: right; background: var(--green); content: ""; transition: transform .2s; }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.main-nav .nav-cta { padding: .7rem 1.1rem; border: 1px solid var(--green); color: var(--white); }
.main-nav .nav-cta:hover { background: var(--green); color: var(--ink); }
.menu-toggle { display: none; border: 0; background: none; }

.hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    padding-top: 9rem;
    padding-bottom: 3rem;
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, .75fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 7rem);
}
.hero::before { position: absolute; z-index: -1; top: 5rem; right: -20vw; width: 60vw; height: 60vw; border-radius: 50%; background: radial-gradient(circle, rgb(178 187 29 / 11%), transparent 62%); content: ""; }
.eyebrow, .section-index { margin: 0; color: var(--green-bright); font-size: .71rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: .7rem; }
.eyebrow span { width: 2.5rem; height: 1px; background: var(--green); }
h1, h2, h3 { margin-top: 0; font-family: var(--display); font-weight: 760; letter-spacing: -.045em; }
h1 { max-width: 11ch; margin: 1.5rem 0 1.8rem; font-size: clamp(3.4rem, 7.4vw, 7.1rem); line-height: .91; }
.hero-lead { max-width: 42rem; margin: 0; color: #c4c7bd; font-size: clamp(1.08rem, 1.6vw, 1.32rem); line-height: 1.65; }
.hero-actions { display: flex; margin-top: 2.2rem; align-items: center; gap: 2rem; flex-wrap: wrap; }
.button { display: inline-flex; min-height: 3.6rem; padding: .8rem 1.35rem; border: 0; align-items: center; justify-content: space-between; gap: 2rem; cursor: pointer; font-weight: 750; text-decoration: none; }
.button-primary { background: var(--green); color: var(--ink); }
.button-primary:hover { background: var(--green-bright); }
.text-link { display: inline-flex; align-items: center; gap: 1rem; color: var(--white); font-size: .9rem; font-weight: 650; text-decoration: none; }
.text-link span { color: var(--green); }
.hero-visual { position: relative; width: 100%; aspect-ratio: .93; }
.network-grid { position: absolute; inset: 3%; opacity: .55; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 3rem 3rem; mask-image: linear-gradient(135deg, transparent 2%, #000 32%, #000 70%, transparent 96%); transform: perspective(650px) rotateY(-8deg) rotateX(5deg); }
.network-grid::before, .network-grid::after { position: absolute; border: 1px solid var(--green); content: ""; }
.network-grid::before { inset: 20% 15%; transform: rotate(8deg); }
.network-grid::after { inset: 35% 28%; border-radius: 50%; box-shadow: 0 0 4rem rgb(178 187 29 / 20%); }
.node { position: absolute; z-index: 3; width: .65rem; height: .65rem; border: 2px solid var(--green); border-radius: 50%; background: var(--ink); box-shadow: 0 0 1rem var(--green); }
.node-a { top: 15%; left: 24%; }.node-b { top: 29%; right: 19%; }.node-c { bottom: 22%; left: 13%; }.node-d { right: 31%; bottom: 9%; }
.system-card { position: absolute; z-index: 2; width: 15rem; padding: 1rem 1.15rem; border: 1px solid var(--line); background: rgb(18 20 15 / 92%); box-shadow: 0 1.5rem 4rem rgb(0 0 0 / 32%); backdrop-filter: blur(8px); }
.system-card::before { position: absolute; top: 0; left: 0; width: 2.4rem; height: 2px; background: var(--green); content: ""; }
.system-card small { display: block; color: var(--green); font-size: .6rem; font-weight: 800; letter-spacing: .13em; }
.system-card strong { display: block; margin: .5rem 0 .1rem; font-family: var(--display); font-size: 1.35rem; }
.system-card span { color: var(--muted); font-size: .7rem; }
.card-a { top: 7%; right: 3%; }.card-b { top: 43%; left: 0; }.card-c { right: 2%; bottom: 7%; }
.hero-proof { position: absolute; right: 0; bottom: 2.5rem; display: grid; width: 15.5rem; padding-left: 1.25rem; border-left: 1px solid var(--green); }
.hero-proof span { color: var(--muted); font-size: .72rem; }.hero-proof strong { font-family: var(--display); font-size: 1.7rem; line-height: 1.1; }

.manifesto { display: grid; padding-block: var(--section); border-top: 1px solid var(--line-soft); grid-template-columns: 1fr 3fr; gap: 2rem; }
.manifesto h2, .section-heading h2, .company h2, .contact h2 { margin: 1rem 0 1.4rem; font-size: clamp(2.5rem, 5.2vw, 5.2rem); line-height: 1.02; }
.manifesto h2 { max-width: 18ch; margin-top: 0; }
.manifesto div > p { max-width: 42rem; color: var(--muted); font-size: 1.12rem; }
.consulting, .solutions, .method, .company { padding-block: var(--section); }
.section-heading { max-width: 58rem; margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.section-heading > p:last-child, .heading-row > p { max-width: 37rem; color: var(--muted); font-size: 1.05rem; }
.heading-row { display: flex; max-width: none; align-items: end; justify-content: space-between; gap: 3rem; }
.heading-row > div { max-width: 54rem; }.heading-row h2 { margin-bottom: 0; }.heading-row > p { max-width: 24rem; margin: 0; padding-bottom: .5rem; }
.consulting-layout { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.diagnostic-map { position: relative; aspect-ratio: 1; max-width: 34rem; border: 1px solid var(--line); border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 16%, rgb(255 255 255 / 5%) 16.3% 16.6%); }
.diagnostic-map::before, .diagnostic-map::after { position: absolute; top: 50%; left: 50%; background: var(--line); content: ""; transform: translate(-50%, -50%) rotate(-20deg); }
.diagnostic-map::before { width: 100%; height: 1px; }.diagnostic-map::after { width: 1px; height: 100%; }
.map-core { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; width: 8rem; aspect-ratio: 1; border: 1px solid var(--green); border-radius: 50%; place-content: center; transform: translate(-50%, -50%); background: var(--ink); color: var(--green); font-family: var(--display); font-size: .85rem; font-weight: 800; letter-spacing: .12em; text-align: center; }
.map-core small { color: var(--white); font-size: 1.5rem; letter-spacing: 0; }
.map-label { position: absolute; z-index: 3; padding: .3rem .6rem; background: var(--ink); color: var(--muted); font-size: .7rem; text-transform: uppercase; }.label-a { top: 4%; left: 42%; }.label-b { top: 34%; right: -2%; }.label-c { right: 9%; bottom: 14%; }.label-d { bottom: 4%; left: 25%; }.label-e { top: 37%; left: -2%; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; padding: 1.6rem 0; border-top: 1px solid var(--line); grid-template-columns: 3.5rem 1fr; gap: 1rem; }
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--green); font-family: var(--display); font-size: .78rem; }
.process-list strong { font-family: var(--display); font-size: 1.45rem; }.process-list p { margin: .3rem 0 0; color: var(--muted); }

.services, .projects, .knowledge, .contact { padding-block: var(--section); background: var(--ink-soft); }
.service-grid { display: grid; border-top: 1px solid var(--line); border-left: 1px solid var(--line); grid-template-columns: repeat(3, 1fr); }
.service-card { position: relative; min-height: 25rem; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-soft); transition: background .25s, transform .25s; }
.service-card:hover { z-index: 1; background: var(--panel); transform: translateY(-.35rem); }
.service-card.featured { background: var(--green); color: var(--ink); }
.service-number { color: var(--dim); font-size: .7rem; letter-spacing: .12em; }.featured .service-number { color: rgb(10 11 9 / 55%); }
.service-mark { position: relative; width: 5rem; height: 5rem; margin: 2.5rem 0 3rem; border: 1px solid var(--green); border-radius: 50%; }
.featured .service-mark { border-color: var(--ink); }
.service-mark::before, .service-mark::after { position: absolute; content: ""; }
.mark-analysis::before { inset: 1.1rem; border: 1px solid currentColor; transform: rotate(45deg); }.mark-analysis::after { top: 50%; left: -1rem; width: 7rem; height: 1px; background: currentColor; }
.mark-server::before { inset: 1rem; border-block: 4px double var(--green); box-shadow: 0 .9rem 0 -2px var(--green); }
.mark-network::before { inset: 50% auto auto 50%; width: .45rem; height: .45rem; border-radius: 50%; background: var(--green); box-shadow: -1.7rem -1.2rem 0 var(--green), 1.8rem -1rem 0 var(--green), 0 1.9rem 0 var(--green); }
.mark-cloud::before { top: 2rem; left: 1rem; width: 3rem; height: 1.3rem; border: 1px solid var(--green); border-radius: 50%; }
.mark-data::before { inset: 1rem 1.3rem; border-block: 1px solid var(--green); box-shadow: 0 .75rem 0 -1px var(--green), 0 1.5rem 0 -1px var(--green); }
.mark-code::before { top: 1.5rem; left: 1rem; color: var(--green); content: "</>"; font-family: monospace; font-size: 1.5rem; }
.service-card h3 { margin-bottom: 1rem; font-size: 1.65rem; line-height: 1.1; }.service-card p { color: var(--muted); }.featured p { color: rgb(10 11 9 / 76%); }
.service-card ul { margin: 1.5rem 0 0; padding: 0; list-style: none; font-size: .78rem; }.service-card li { padding: .3rem 0; border-top: 1px solid rgb(10 11 9 / 20%); }

.solution-list { border-top: 1px solid var(--line); }
.solution-list a { display: grid; min-height: 6.2rem; padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: center; grid-template-columns: 5rem 1fr 3rem; text-decoration: none; transition: padding .2s, color .2s; }
.solution-list a:hover { padding-inline: 1rem; color: var(--green-bright); }
.solution-list span { color: var(--dim); font-size: .72rem; }.solution-list strong { font-family: var(--display); font-size: clamp(1.25rem, 2.5vw, 2.1rem); font-weight: 600; }.solution-list i { color: var(--green); font-size: 1.4rem; font-style: normal; text-align: right; }
.project-grid { display: grid; grid-template-columns: 1.35fr .8fr; gap: 1.5rem; }
.project-card { overflow: hidden; background: var(--panel); }
.project-large { grid-row: span 2; }.project-visual { position: relative; display: flex; min-height: 15rem; align-items: center; justify-content: center; overflow: hidden; background-color: #20231c; background-image: linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px); background-size: 2.5rem 2.5rem; }
.project-large .project-visual { min-height: 30rem; }
.factory-visual span { display: grid; z-index: 2; width: 6rem; aspect-ratio: 1; margin: 1rem; border: 1px solid var(--green); border-radius: 50%; place-content: center; color: var(--green); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.factory-visual span:nth-child(2) { width: 4rem; background: var(--green); color: var(--ink); }
.factory-visual::before { position: absolute; width: 65%; height: 1px; background: var(--green); content: ""; }
.document-visual i { position: absolute; width: 6rem; height: 8rem; border: 1px solid var(--green); background: var(--panel); transform: rotate(-8deg) translate(-1.3rem); }.document-visual i:nth-child(2) { transform: rotate(5deg) translate(1rem); }.document-visual i:nth-child(3) { transform: none; }
.data-visual { gap: 1.6rem; }.data-visual i { width: .7rem; height: .7rem; border-radius: 50%; background: var(--green); box-shadow: 0 0 1.5rem var(--green); }.data-visual::before { position: absolute; width: 55%; height: 1px; background: var(--green); content: ""; }
.project-copy { padding: 1.6rem 1.8rem 1.9rem; }.project-copy > p, .article-grid article > p { color: var(--green); font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.project-copy h3 { margin: .6rem 0 1.5rem; font-size: clamp(1.3rem, 2.3vw, 2.2rem); line-height: 1.15; }.project-link { color: var(--muted); font-size: .8rem; }.project-link i { color: var(--green); font-style: normal; }

.method-steps { display: grid; margin: 0; padding: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); grid-template-columns: repeat(5, 1fr); list-style: none; }
.method-steps li { min-height: 19rem; padding: 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }.method-steps span { color: var(--green); font-size: .7rem; }.method-steps strong { display: block; margin: 5rem 0 1rem; font-family: var(--display); font-size: 1.4rem; }.method-steps p { color: var(--muted); font-size: .87rem; }
.article-grid { display: grid; border-top: 1px solid var(--line); border-left: 1px solid var(--line); grid-template-columns: repeat(3, 1fr); }
.article-grid article { display: flex; min-height: 22rem; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); flex-direction: column; transition: background .2s; }.article-grid article:hover { background: var(--panel); }.article-grid h3 { margin: 1rem 0 auto; font-size: 1.55rem; line-height: 1.25; }.article-grid article > span { color: var(--muted); font-size: .8rem; }
.company { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(3rem, 9vw, 9rem); }.company h2 { margin-bottom: 0; }.company-copy > p { margin: 3.5rem 0; color: var(--muted); font-size: 1.1rem; }.company dl { margin: 0; }.company dl div { padding: 1.1rem 0; border-top: 1px solid var(--line); }.company dl div:last-child { border-bottom: 1px solid var(--line); }.company dt { font-family: var(--display); font-size: 2rem; font-weight: 750; }.company dd { margin: .2rem 0 0; color: var(--muted); font-size: .8rem; }

.contact { background: var(--green); color: var(--ink); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 9vw, 9rem); }
.contact .section-index { color: var(--ink); opacity: .65; }.contact h2 em { color: var(--ink); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: .15em; }.contact-copy > p { max-width: 34rem; font-size: 1.1rem; }.contact-details { display: grid; margin-top: 4rem; font-weight: 700; }.contact-details a { width: fit-content; }
.contact-form { padding: 2.2rem; background: var(--ink); color: var(--white); box-shadow: 1.2rem 1.2rem 0 rgb(10 11 9 / 18%); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: grid; margin-bottom: 1.1rem; color: #d1d3cc; font-size: .75rem; font-weight: 700; gap: .45rem; }.contact-form label > span { display: inline; color: var(--green); }.contact-form label small { color: var(--dim); font-weight: 400; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid #4b5043; border-radius: 0; outline: 0; background: transparent; color: var(--white); }.contact-form input, .contact-form select { height: 2.6rem; }.contact-form textarea { padding: .6rem 0; resize: vertical; }.contact-form select option { background: var(--ink); }.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green); }.contact-form .check-field { display: flex; margin: 1.5rem 0; align-items: flex-start; font-weight: 400; }.check-field input { width: 1rem; height: 1rem; accent-color: var(--green); }.contact-form .button { width: 100%; }.form-note { margin: 1rem 0 0; color: var(--muted); font-size: .72rem; }.form-note.is-visible { color: var(--green-bright); }.form-note.is-error { color: #e66f61; }.form-trap { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

.site-footer { padding: 4.5rem 0 1.5rem; background: #070806; }
.footer-main { display: grid; padding-bottom: 4rem; grid-template-columns: 1fr 1fr 1fr; align-items: start; gap: 3rem; }.footer-main img { width: 13rem; }.footer-main p { max-width: 20rem; margin: .5rem 0; color: var(--muted); }.footer-main nav { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 2rem; }.footer-main a, .footer-legal a { color: var(--muted); font-size: .8rem; text-decoration: none; }.footer-main a:hover, .footer-legal a:hover { color: var(--green); }
.footer-legal { display: flex; padding-top: 1.5rem; border-top: 1px solid var(--line); justify-content: space-between; gap: 2rem; color: var(--dim); font-size: .68rem; }.footer-legal div { display: flex; gap: 1.5rem; }

@media (max-width: 68rem) {
    .main-nav { gap: 1rem; }.main-nav a { font-size: .75rem; }
    .hero { grid-template-columns: 1fr .7fr; }.hero-proof { display: none; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .method-steps { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 52rem) {
    .header-inner { min-height: 4.7rem; }.brand img { width: 9rem; }
    .menu-toggle { display: flex; padding: .7rem 0 .7rem 1rem; align-items: center; gap: .8rem; cursor: pointer; font-size: .75rem; }
    .menu-toggle i, .menu-toggle i::after { display: block; width: 1.5rem; height: 1px; background: var(--white); content: ""; }.menu-toggle i::after { transform: translateY(.45rem); }
    .main-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; padding: 1rem var(--pad) 1.5rem; border-bottom: 1px solid var(--line); align-items: stretch; flex-direction: column; background: var(--ink); }.main-nav.is-open { display: flex; }.main-nav a { padding: .5rem 0; font-size: 1rem; }.main-nav .nav-cta { margin-top: .5rem; padding: .8rem; text-align: center; }
    .hero { min-height: auto; padding-top: 8.5rem; padding-bottom: 6rem; grid-template-columns: 1fr; }.hero-visual { width: min(100%, 32rem); margin-inline: auto; }.hero-copy { z-index: 3; }
    .manifesto, .consulting-layout, .company, .contact-layout { grid-template-columns: 1fr; }
    .manifesto { gap: 2.5rem; }.diagnostic-map { margin-inline: auto; }
    .heading-row { align-items: start; flex-direction: column; }.heading-row > p { max-width: 38rem; }
    .project-grid { grid-template-columns: 1fr; }.project-large { grid-row: auto; }.project-large .project-visual { min-height: 20rem; }
    .method-steps { grid-template-columns: repeat(2, 1fr); }.article-grid { grid-template-columns: 1fr; }.article-grid article { min-height: 17rem; }
    .footer-main { grid-template-columns: 1fr 1fr; }.footer-main nav { grid-column: 1 / -1; }
}

@media (max-width: 36rem) {
    :root { --pad: 1.15rem; }
    h1 { font-size: clamp(3.1rem, 15vw, 4.5rem); }.hero-actions { align-items: stretch; flex-direction: column; }.hero-actions .button { width: 100%; }
    .hero-visual { aspect-ratio: .8; }.system-card { width: 12rem; padding: .8rem; }.system-card strong { font-size: 1.05rem; }.card-b { top: 40%; }.network-grid { background-size: 2.2rem 2.2rem; }
    .service-grid, .method-steps { grid-template-columns: 1fr; }.service-card { min-height: 21rem; }
    .solution-list a { grid-template-columns: 2.5rem 1fr 2rem; }.solution-list strong { font-size: 1.15rem; }
    .factory-visual span { width: 4.7rem; margin: .3rem; }.factory-visual span:nth-child(2) { width: 3.5rem; }
    .field-row { grid-template-columns: 1fr; }.contact-form { padding: 1.4rem; }
    .footer-main, .footer-main nav { grid-template-columns: 1fr; }.footer-legal { align-items: flex-start; flex-direction: column; }.footer-legal div { flex-wrap: wrap; }
}

/* Original direction — light edition */
body:not(.human-theme) {
    color-scheme: light;
    --ink: #f4f5f0;
    --ink-soft: #e9ebe5;
    --panel: #ffffff;
    --panel-2: #e1e4dc;
    --white: #151813;
    --muted: #5f655b;
    --dim: #7b8176;
    --line: #cbd0c4;
    --line-soft: rgb(21 24 19 / 10%);
    background: #f4f5f0;
    color: #151813;
}
body:not(.human-theme)::before { opacity: .13; }
body:not(.human-theme) .site-header.is-scrolled,
body:not(.human-theme) .site-header {
    border-color: rgb(21 24 19 / 10%);
    background: rgb(244 245 240 / 91%);
    backdrop-filter: blur(18px);
}
body:not(.human-theme) .main-nav a { color: #252a23; }
body:not(.human-theme) .main-nav .nav-cta { color: #151813; }
body:not(.human-theme) .main-nav .nav-cta:hover { color: #151813; }
body:not(.human-theme) .menu-toggle { color: #151813; }
body:not(.human-theme) .menu-toggle i,
body:not(.human-theme) .menu-toggle i::after { background: #151813; }
body:not(.human-theme) h1 {
    max-width: 13ch;
    font-size: clamp(2.9rem, 5vw, 5.1rem);
    line-height: 1.01;
    letter-spacing: -.04em;
}
body:not(.human-theme) .manifesto h2,
body:not(.human-theme) .section-heading h2,
body:not(.human-theme) .company h2,
body:not(.human-theme) .contact h2 {
    font-size: clamp(2.25rem, 4.1vw, 4.15rem);
    line-height: 1.06;
}
body:not(.human-theme) .inner-hero h1,
body:not(.human-theme) .article-header h1,
body:not(.human-theme) .legal-header h1 {
    font-size: clamp(3rem, 5vw, 5.1rem);
}
body:not(.human-theme) .hero-lead { color: #5f655b; }
body:not(.human-theme) .system-card span { color: #5f655b; }
body:not(.human-theme) .hero::before {
    background: radial-gradient(circle, rgb(178 187 29 / 18%), transparent 62%);
}
body:not(.human-theme) .network-grid {
    opacity: .7;
    background-image: linear-gradient(rgb(83 84 75 / 20%) 1px, transparent 1px), linear-gradient(90deg, rgb(83 84 75 / 20%) 1px, transparent 1px);
}
body:not(.human-theme) .system-card {
    border-color: #c3c8bc;
    background: rgb(255 255 255 / 94%);
    box-shadow: 0 1.5rem 4rem rgb(50 55 45 / 13%);
}
body:not(.human-theme) .node { background: #f4f5f0; }
body:not(.human-theme) .services,
body:not(.human-theme) .projects,
body:not(.human-theme) .knowledge,
body:not(.human-theme) .inner-band { background: #e9ebe5; }
body:not(.human-theme) .service-card { background: #eef0ea; }
body:not(.human-theme) .service-card:hover,
body:not(.human-theme) .article-grid article:hover,
body:not(.human-theme) .listing-card:hover { background: #ffffff; }
body:not(.human-theme) .project-card,
body:not(.human-theme) .article-conclusion,
body:not(.human-theme) .legal-warning,
body:not(.human-theme) .legal-status,
body:not(.human-theme) .cta-panel { background: #ffffff; }
body:not(.human-theme) .project-visual { background-color: #dfe3da; }
body:not(.human-theme) .contact { color: #151813; }
body:not(.human-theme) .contact h2 em { color: #151813; }
body:not(.human-theme) .site-footer { background: #dde1d7; }
body:not(.human-theme) .footer-main p,
body:not(.human-theme) .footer-main a,
body:not(.human-theme) .footer-legal,
body:not(.human-theme) .footer-legal a { color: #5f655b; }
body:not(.human-theme) .error-code { color: rgb(21 24 19 / 5%); }
body:not(.human-theme).error-page { background: #f4f5f0; }
@media (max-width: 52rem) {
    body:not(.human-theme) .main-nav { background: #f4f5f0; }
    body:not(.human-theme) h1 { font-size: clamp(2.9rem, 11vw, 4.6rem); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Interior pages */
.inner-main { padding-top: 5.75rem; }
.inner-hero { display: grid; min-height: 38rem; padding-block: clamp(6rem, 10vw, 9rem); border-bottom: 1px solid var(--line); grid-template-columns: 1.35fr .65fr; align-items: end; gap: clamp(2rem, 8vw, 8rem); }
.inner-hero h1 { max-width: 12ch; margin-bottom: 0; font-size: clamp(3.7rem, 7.5vw, 7.5rem); }
.inner-lead { max-width: 33rem; margin: 0 0 .6rem; color: #c3c6bd; font-size: clamp(1.08rem, 1.8vw, 1.35rem); }
.inner-lead a { color: var(--green); }
.detail-hero h1 { max-width: 13ch; }
.editorial-block { display: grid; padding-block: var(--section); grid-template-columns: 1fr 3fr; gap: 2rem; }
.prose-large { max-width: 58rem; }.prose-large h2 { margin-bottom: 2rem; font-size: clamp(2.5rem, 4.8vw, 4.8rem); line-height: 1.05; }.prose-large p { max-width: 46rem; color: var(--muted); font-size: 1.1rem; }
.inner-band { padding-block: var(--section); background: var(--ink-soft); }
.topic-grid, .principle-list { display: grid; border-top: 1px solid var(--line); border-left: 1px solid var(--line); grid-template-columns: repeat(3, 1fr); }
.topic-grid article, .principle-list article { min-height: 17rem; padding: 1.6rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.topic-grid span, .principle-list span { color: var(--green); font-size: .68rem; }.topic-grid h3, .principle-list h3 { margin: 4rem 0 1rem; font-size: 1.5rem; }.topic-grid p, .principle-list p { color: var(--muted); font-size: .9rem; }
.detail-process, .outcomes, .principles { padding-block: var(--section); }
.detail-process > ol { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }.detail-process > ol > li { display: grid; padding: 2rem 0; border-bottom: 1px solid var(--line); grid-template-columns: 6rem 1fr; }.detail-process > ol > li > span { color: var(--green); }.detail-process h3 { margin-bottom: .4rem; font-size: 1.65rem; }.detail-process li p { max-width: 45rem; margin: 0; color: var(--muted); }
.cta-panel { display: flex; margin-block: var(--section); padding: clamp(2rem, 5vw, 4.5rem); align-items: end; justify-content: space-between; gap: 3rem; background: var(--panel); }.cta-panel h2 { max-width: 22ch; margin: .8rem 0 0; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.08; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); }.metrics-grid article { padding: 1.5rem; border-left: 1px solid var(--line); }.metrics-grid article:last-child { border-right: 1px solid var(--line); }.metrics-grid strong { display: block; font-family: var(--display); font-size: clamp(2rem, 4vw, 4rem); color: var(--green); }.metrics-grid span { color: var(--muted); font-size: .8rem; }
.contact-page .contact-layout { align-items: start; }.contact-expectations { margin: 2rem 0 4rem; padding: 0; border-top: 1px solid var(--line); list-style: none; }.contact-expectations li { display: grid; padding: 1.2rem 0; border-bottom: 1px solid var(--line); grid-template-columns: 3rem 1fr; }.contact-expectations span { color: var(--green); font-size: .7rem; }.contact-expectations p { margin: 0; color: var(--muted); }.privacy-note { max-width: 34rem; color: var(--dim); font-size: .78rem; }
.listing-grid { display: grid; border-top: 1px solid var(--line); border-left: 1px solid var(--line); grid-template-columns: repeat(3, 1fr); }
.listing-card { display: flex; min-height: 24rem; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); flex-direction: column; text-decoration: none; transition: background .2s, transform .2s; }.listing-card:hover { z-index: 1; background: var(--panel); transform: translateY(-.3rem); }.listing-card > span { color: var(--green); font-size: .7rem; }.listing-card h2 { margin: 4rem 0 1rem; font-size: 1.8rem; line-height: 1.1; }.listing-card p { color: var(--muted); }.listing-card i { margin-top: auto; color: var(--green); font-size: .78rem; font-style: normal; }
.split-detail { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 9vw, 9rem); }.split-detail h2 { margin: 1rem 0; font-size: 3rem; }.check-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }.check-list li { position: relative; padding: 1rem 1rem 1rem 2.2rem; border-bottom: 1px solid var(--line); }.check-list li::before { position: absolute; left: .4rem; color: var(--green); content: "↗"; }
.outcome-grid { display: grid; border-top: 1px solid var(--line); border-left: 1px solid var(--line); grid-template-columns: repeat(4, 1fr); }.outcome-grid article { min-height: 13rem; padding: 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }.outcome-grid span { color: var(--green); font-size: .7rem; }.outcome-grid h3 { margin-top: 4rem; font-size: 1.2rem; }
.related-strip { padding-block: clamp(4rem, 8vw, 7rem); border-top: 1px solid var(--line); }.related-strip > div { display: grid; margin-top: 2rem; }.related-strip a { display: flex; padding: 1.1rem 0; border-bottom: 1px solid var(--line); justify-content: space-between; font-family: var(--display); font-size: clamp(1.1rem, 2vw, 1.6rem); text-decoration: none; }.related-strip a span { color: var(--green); }
.solutions-page { padding-block: var(--section); }.solution-list a small { display: block; max-width: 48rem; margin-top: .25rem; color: var(--muted); font-size: .82rem; font-weight: 400; }.compact-editorial { border-top: 1px solid var(--line); }
.case-flow { padding-block: var(--section); }.case-flow > article { display: grid; padding: 3rem 0; border-top: 1px solid var(--line); grid-template-columns: 6rem 1fr; }.case-flow > article:last-child { border-bottom: 1px solid var(--line); }.case-flow > article > span { color: var(--green); }.case-flow h2 { margin: .5rem 0 1rem; font-size: clamp(2rem, 4vw, 3.5rem); }.case-flow article p:last-child { max-width: 49rem; color: var(--muted); font-size: 1.05rem; }.case-flow ol { padding-left: 1.2rem; color: var(--muted); }
.project-listing > a { display: grid; padding: 2.5rem 0; border-top: 1px solid var(--line); grid-template-columns: 6rem 1fr 3rem; text-decoration: none; }.project-listing > a:last-child { border-bottom: 1px solid var(--line); }.project-list-number { color: var(--green); font-size: .72rem; }.project-listing p { margin: 0; color: var(--green); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }.project-listing h2 { margin: .5rem 0; font-size: clamp(1.8rem, 4vw, 3.5rem); }.project-listing span { color: var(--muted); }.project-listing i { color: var(--green); font-size: 1.5rem; font-style: normal; text-align: right; }
.project-story { padding-block: var(--section); }.project-story > article { display: grid; padding: 3rem 0; border-top: 1px solid var(--line); grid-template-columns: 6rem 1fr; }.project-story > article > span { color: var(--green); }.project-story h2 { margin: .5rem 0 1rem; font-size: clamp(2rem, 4vw, 3.6rem); }.project-story article p:last-child, .project-story li { max-width: 50rem; color: var(--muted); font-size: 1.05rem; }.project-story .story-result { padding: 4rem; border: 0; background: var(--green); color: var(--ink); }.story-result .section-index, .story-result > span { color: var(--ink); }.technology-band .section-shell > div { display: flex; margin-top: 2rem; gap: .75rem; flex-wrap: wrap; }.technology-band span { padding: .6rem 1rem; border: 1px solid var(--line); color: var(--muted); font-size: .8rem; }
.knowledge-listing { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }.knowledge-listing article { display: flex; min-height: 28rem; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); flex-direction: column; }.knowledge-listing article > p { color: var(--green); font-size: .68rem; text-transform: uppercase; }.knowledge-listing h2 { margin: 2rem 0 1rem; font-size: 1.8rem; line-height: 1.18; }.knowledge-listing h2 a { text-decoration: none; }.knowledge-listing article > span { color: var(--muted); }.knowledge-listing .text-link { margin-top: auto; }
.newsletter-note { padding-block: var(--section); }.newsletter-note h2 { max-width: 24ch; margin: 1rem 0; font-size: clamp(2rem, 4vw, 4rem); }.newsletter-note > p:last-child { color: var(--muted); }
.article-header { padding-block: clamp(8rem, 14vw, 12rem) clamp(4rem, 8vw, 7rem); border-bottom: 1px solid var(--line); }.article-header h1 { max-width: 15ch; font-size: clamp(3.3rem, 7vw, 7rem); }.article-header > p:last-child { max-width: 48rem; color: var(--muted); font-size: 1.25rem; }.article-body { display: grid; padding-block: var(--section); grid-template-columns: .55fr 1.45fr; gap: clamp(3rem, 9vw, 9rem); }.article-body aside { position: sticky; top: 8rem; height: fit-content; }.article-body aside p, .article-body aside span { display: block; color: var(--dim); font-size: .75rem; }.article-body aside strong { display: block; margin: .4rem 0; }.article-prose section { padding-bottom: 3.5rem; }.article-prose section > span { color: var(--green); font-size: .7rem; }.article-prose h2 { margin: .8rem 0 1.2rem; font-size: clamp(2rem, 3.5vw, 3.1rem); }.article-prose p { color: #c4c7bd; font-size: 1.1rem; line-height: 1.85; }.article-conclusion { padding: 2.5rem; background: var(--panel); }
.legal-header { padding-block: clamp(8rem, 13vw, 12rem) 4rem; border-bottom: 1px solid var(--line); }.legal-header h1 { margin: 1rem 0; font-size: clamp(3.5rem, 8vw, 7rem); }.legal-header > p:last-child { color: var(--dim); }.legal-content { max-width: 58rem; padding-block: 4rem var(--section); }.legal-content section { padding: 2.5rem 0; border-bottom: 1px solid var(--line); }.legal-content h2 { font-size: 1.8rem; }.legal-content p, .legal-content dd { color: var(--muted); }.legal-content dl div { display: grid; padding: .7rem 0; border-bottom: 1px solid var(--line-soft); grid-template-columns: 12rem 1fr; }.legal-content dd { margin: 0; }.legal-warning, .legal-status { padding: 1.5rem; border-left: 3px solid var(--green); background: var(--panel); }.legal-warning p, .legal-status p { margin-bottom: 0; }
.error-page { min-height: 100vh; }.error-page main { position: relative; display: grid; min-height: 100vh; padding: clamp(1.5rem, 5vw, 5rem); place-items: center; overflow: hidden; }.error-brand { position: absolute; top: 2rem; left: var(--pad); }.error-brand img { width: 12rem; }.error-code { position: absolute; color: rgb(255 255 255 / 3%); font-family: var(--display); font-size: min(50vw, 42rem); font-weight: 900; line-height: .7; }.error-copy { position: relative; z-index: 1; max-width: 48rem; }.error-copy h1 { max-width: 12ch; }.error-copy > p:not(.eyebrow) { max-width: 32rem; color: var(--muted); font-size: 1.1rem; }.error-copy .button { margin-top: 1.5rem; }

@media (max-width: 52rem) {
    .inner-main { padding-top: 4.7rem; }.inner-hero { min-height: 34rem; grid-template-columns: 1fr; align-content: end; }.inner-hero h1 { font-size: clamp(3.4rem, 13vw, 5.8rem); }
    .editorial-block, .split-detail, .article-body { grid-template-columns: 1fr; }.topic-grid, .principle-list, .listing-grid, .knowledge-listing { grid-template-columns: repeat(2, 1fr); }
    .metrics-grid, .outcome-grid { grid-template-columns: repeat(2, 1fr); }.cta-panel { align-items: flex-start; flex-direction: column; }
    .article-body aside { position: static; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
}
@media (max-width: 36rem) {
    .topic-grid, .principle-list, .listing-grid, .knowledge-listing, .metrics-grid, .outcome-grid { grid-template-columns: 1fr; }
    .detail-process > ol > li, .case-flow > article, .project-story > article { grid-template-columns: 3rem 1fr; }
    .project-story .story-result { padding: 2rem 1.2rem; }.project-listing > a { grid-template-columns: 2.5rem 1fr 1.5rem; }.legal-content dl div { grid-template-columns: 1fr; }.footer-main img { width: 12rem; }
}
