:root {
    --vellum: #f4efe5;
    --vellum-2: #fffaf1;
    --powder: #e9e0d2;
    --chalk: #ddd2c3;
    --mist: #dce0dc;
    --sage: #cbd6cc;
    --brass: #ad8352;
    --ink: #16110d;
    --ink-2: #2a231d;
    --stone: #766d61;
    --slate: #8f8a82;
    --deep: #050505;
    --deep-2: #11100e;
    --deep-3: #1c1916;
    --oxide: #d7352b;
    --oxide-dark: #9f211a;
    --line: rgba(22, 17, 13, .14);
    --line-soft: rgba(22, 17, 13, .08);
    --line-on-dark: rgba(252, 248, 239, .14);
    --max: 1320px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    background: var(--vellum);
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    font-family: "Inter", Arial, sans-serif;
    background: var(--vellum);
    line-height: 1.5;
    text-rendering: optimizeLegibility;
}

img,
video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.skip-link {
    position: absolute;
    left: -999px;
    top: 1rem;
    z-index: 100;
    padding: .7rem 1rem;
    background: var(--ink);
    color: var(--vellum-2);
}

.skip-link:focus { left: 1rem; }

.site-header {
    position: sticky;
    top: .85rem;
    z-index: 70;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    width: min(calc(100% - 2rem), 1240px);
    margin: .85rem auto 0;
    padding: .42rem .45rem .42rem .55rem;
    border: 1px solid rgba(246, 240, 230, .34);
    border-radius: 999px;
    background: rgba(246, 240, 230, .76);
    box-shadow: 0 16px 54px rgba(5, 5, 5, .18);
    backdrop-filter: blur(22px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    min-width: 180px;
}

.brand img {
    width: 39px;
    height: 39px;
    object-fit: contain;
    border-radius: 0;
    filter: drop-shadow(0 8px 18px rgba(215, 53, 43, .22));
}

.brand span {
    font-family: "Sora", "Inter", Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .15rem;
}

.site-nav a {
    padding: .58rem .78rem;
    border-radius: 999px;
    color: rgba(22, 17, 13, .72);
    font-size: .88rem;
    font-weight: 600;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    background: var(--ink);
    color: var(--vellum-2);
}

.header-cta,
.button,
.rs-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: .78rem 1.05rem;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    color: var(--vellum-2);
    font-weight: 650;
    letter-spacing: 0;
    cursor: pointer;
}

.header-cta:hover,
.button:hover,
.rs-button:hover {
    transform: translateY(-1px);
}

.nav-toggle { display: none; }

h1,
h2 {
    margin: 0;
    color: inherit;
    font-family: "Instrument Serif", Georgia, serif;
    font-weight: 400;
    letter-spacing: 0;
    line-height: .92;
}

h3 {
    margin: 0;
    color: inherit;
    font-family: "Sora", "Inter", Arial, sans-serif;
    font-weight: 650;
    line-height: 1;
}

h1 { font-size: clamp(3.2rem, 5.6vw, 6.35rem); }
h2 { font-size: clamp(2.45rem, 4.6vw, 5.1rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 2.25rem); }

p { margin: 0; }

.rs-label,
.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .52rem;
    margin: 0 0 1rem;
    color: var(--stone);
    font-family: "JetBrains Mono", monospace;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
}

.rs-label::before,
.eyebrow::before,
.section-kicker::before {
    content: "";
    width: .46rem;
    height: .46rem;
    border-radius: 999px;
    background: var(--oxide);
    box-shadow: 0 0 0 6px rgba(215, 53, 43, .12);
}

.rs-label--light { color: rgba(246, 240, 230, .68); }

.rs-actions,
.hero-actions,
.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .72rem;
    margin-top: 1.55rem;
}

.rs-button--red,
.button-red {
    border-color: var(--oxide);
    background: var(--oxide);
    color: #fff6ee;
}

.rs-button--glass,
.button-light-ghost {
    border-color: rgba(246, 240, 230, .28);
    background: rgba(246, 240, 230, .08);
    color: var(--vellum-2);
    backdrop-filter: blur(16px);
}

.rs-button--dark,
.button-dark {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--vellum-2);
}

.button-light {
    border-color: var(--vellum-2);
    background: var(--vellum-2);
    color: var(--ink);
}

.button-ghost {
    background: transparent;
    color: var(--ink);
}

.rs-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    margin: -5.25rem auto 0;
    overflow: hidden;
    border-radius: 0 0 34px 34px;
    background: var(--deep);
    box-shadow: 0 38px 120px rgba(5, 5, 5, .26);
    isolation: isolate;
}

.rs-hero__art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 82% center;
    opacity: 1;
    filter: saturate(1.08) contrast(1.08);
}

.rs-hero__mask {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 75% 42%, rgba(215, 53, 43, .08), transparent 24rem),
        linear-gradient(90deg, var(--deep) 0%, var(--deep) 39%, rgba(5,5,5,.86) 54%, rgba(5,5,5,.18) 76%, rgba(5,5,5,.66) 100%),
        linear-gradient(180deg, rgba(5,5,5,.92) 0%, rgba(5,5,5,.08) 42%, rgba(5,5,5,.82) 100%);
}

.rs-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    padding: clamp(8.4rem, 14vw, 14rem) clamp(1.3rem, 7vw, 7rem) 3rem;
    color: var(--vellum-2);
}

.rs-hero__content h1 {
    max-width: 1050px;
}

.rs-hero__content h1 span {
    display: block;
}

.rs-hero__content p:not(.rs-label) {
    max-width: 680px;
    margin-top: 1.2rem;
    color: rgba(246, 240, 230, .74);
    font-size: clamp(1.06rem, 1.45vw, 1.35rem);
    line-height: 1.55;
}

.rs-hero__instrument {
    position: absolute;
    right: clamp(1rem, 4vw, 3.4rem);
    bottom: clamp(1rem, 4vw, 3rem);
    z-index: 3;
    width: min(470px, calc(100% - 2rem));
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line-on-dark);
    border-radius: 26px;
    background: rgba(11, 10, 9, .72);
    color: var(--vellum-2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
    backdrop-filter: blur(24px);
    transform: rotate(-1.4deg);
    transform-origin: center;
}

.instrument__top,
.instrument__line {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: .78rem .8rem;
    border-bottom: 1px solid rgba(246, 240, 230, .1);
}

.instrument__top {
    color: rgba(246, 240, 230, .52);
    font-family: "JetBrains Mono", monospace;
    font-size: .68rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.instrument__summary {
    display: grid;
    gap: .55rem;
    padding: 1.15rem 1rem 1.2rem;
    border-bottom: 1px solid rgba(246, 240, 230, .1);
}

.instrument__summary small {
    color: rgba(246, 240, 230, .48);
    font-family: "JetBrains Mono", monospace;
    font-size: .68rem;
    text-transform: uppercase;
}

.instrument__summary strong {
    max-width: 13ch;
    font-family: "Sora", "Inter", Arial, sans-serif;
    font-size: clamp(1.55rem, 2.2vw, 2.25rem);
    line-height: 1.04;
}

.instrument__summary p {
    color: rgba(246, 240, 230, .64);
}

.instrument__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    padding: .85rem .8rem;
    border-bottom: 1px solid rgba(246, 240, 230, .1);
}

.instrument__tags span {
    padding: .42rem .58rem;
    border: 1px solid rgba(246, 240, 230, .13);
    border-radius: 999px;
    color: rgba(246, 240, 230, .68);
    font-size: .76rem;
    font-weight: 650;
}

.instrument__proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid rgba(246, 240, 230, .1);
}

.instrument__proof span {
    display: grid;
    gap: .2rem;
    padding: .95rem .8rem;
}

.instrument__proof span + span {
    border-left: 1px solid rgba(246, 240, 230, .1);
}

.instrument__proof b {
    font-family: "Sora", "Inter", Arial, sans-serif;
    font-size: 1.65rem;
    line-height: 1;
}

.instrument__proof em,
.instrument__line em {
    color: rgba(246, 240, 230, .58);
    font-style: normal;
}

.instrument__line {
    grid-template-columns: 12px minmax(0, 1fr) auto;
}

.instrument__line:last-child { border-bottom: 0; }
.instrument__line span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--oxide);
}

.instrument__line strong {
    font-weight: 600;
}

.rs-proof {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: min(calc(100% - 2rem), var(--max));
    margin: 1.4rem auto 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.rs-proof span,
.rs-proof a {
    min-height: 72px;
    display: grid;
    place-items: center;
    padding: 1rem;
    border-right: 1px solid var(--line);
    color: var(--slate);
    font-size: .86rem;
    font-weight: 600;
    text-align: center;
}

.rs-proof span:last-child,
.rs-proof a:last-child { border-right: 0; }

.rs-proof a {
    transition: color .18s ease, background .18s ease;
}

.rs-proof a:hover {
    color: var(--ink);
    background: rgba(252, 248, 239, .54);
}

.rs-section,
.section,
.page-hero {
    width: min(calc(100% - 2rem), var(--max));
    margin: 0 auto;
}

.rs-section,
.section {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.rs-manifesto {
    padding-top: clamp(6rem, 10vw, 10rem);
}

.manifesto__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .7fr);
    gap: clamp(2rem, 7vw, 7rem);
    align-items: end;
}

.manifesto__grid h2 {
    max-width: 10ch;
}

.manifesto__copy {
    display: grid;
    gap: 1.25rem;
    color: var(--stone);
    font-size: clamp(1.08rem, 1.45vw, 1.32rem);
    line-height: 1.6;
}

.manifesto__right {
    display: grid;
    gap: 1.2rem;
}

.memory-strip {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .6rem;
    padding: .8rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        radial-gradient(circle at 12% 50%, rgba(215, 53, 43, .14), transparent 12rem),
        rgba(252, 248, 239, .54);
}

.memory-strip::before {
    content: "";
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, rgba(215, 53, 43, .58), rgba(173, 131, 82, .38), transparent);
}

.memory-strip span {
    position: relative;
    z-index: 1;
    min-height: 72px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(252, 248, 239, .86);
    font-family: "JetBrains Mono", monospace;
    font-size: .72rem;
    font-weight: 650;
    text-transform: uppercase;
}

.rs-composition {
    width: min(calc(100% - 2rem), 1460px);
    padding: clamp(1rem, 2vw, 1.4rem);
    border: 1px solid var(--line);
    border-radius: 30px;
    background:
        radial-gradient(circle at 22% 18%, rgba(215, 53, 43, .12), transparent 26rem),
        linear-gradient(135deg, #fbf8f0, #e9e1d5);
}

.composition__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, .36fr);
    gap: 2rem;
    align-items: end;
    padding: clamp(1rem, 4vw, 3rem);
}

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

.composition__header p:not(.rs-label) {
    max-width: 360px;
    color: var(--stone);
    font-size: 1rem;
}

.composition__board {
    position: relative;
    min-height: 780px;
    border: 1px solid rgba(22, 17, 13, .1);
    border-radius: 24px;
    background:
        linear-gradient(rgba(22,17,13,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22,17,13,.045) 1px, transparent 1px),
        rgba(252, 248, 239, .74);
    background-size: 46px 46px;
    overflow: hidden;
}

.composition__board::before {
    content: "";
    position: absolute;
    inset: 16%;
    border: 1px solid rgba(22, 17, 13, .12);
    border-radius: 999px;
}

.composition__board::after {
    content: "";
    position: absolute;
    inset: 33% 22%;
    border: 1px solid rgba(215, 53, 43, .26);
    border-radius: 999px;
}

.composition__axis {
    position: absolute;
    z-index: 2;
    color: var(--stone);
    font-family: "JetBrains Mono", monospace;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
}

.composition__axis--top { top: 1.2rem; left: 50%; transform: translateX(-50%); }
.composition__axis--bottom { bottom: 1.2rem; left: 50%; transform: translateX(-50%); }
.composition__axis--left { left: 1.2rem; top: 50%; transform: translateY(-50%) rotate(-90deg); }
.composition__axis--right { right: 1.2rem; top: 50%; transform: translateY(-50%) rotate(90deg); }

.composition__center {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: 220px;
    height: 220px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: .4rem;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(215, 53, 43, .25);
    border-radius: 999px;
    background: rgba(252, 248, 239, .88);
    box-shadow: rgba(22, 17, 13, .08) 0 0 0 1px, rgba(22, 17, 13, .08) 0 20px 60px;
    text-align: center;
}

.composition__center span {
    color: var(--oxide);
    font-family: "JetBrains Mono", monospace;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
}

.composition__center strong {
    max-width: 8rem;
    color: var(--ink);
    font-family: "Sora", "Inter", Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 650;
    line-height: 1.05;
}

.composition__item {
    position: absolute;
    z-index: 4;
    width: min(330px, 42%);
    padding: 1rem;
    border: 1px solid rgba(22, 17, 13, .12);
    border-radius: 18px;
    background: rgba(252, 248, 239, .82);
    backdrop-filter: blur(18px);
}

.composition__item span {
    color: var(--oxide);
    font-family: "JetBrains Mono", monospace;
    font-size: .74rem;
    font-weight: 600;
}

.composition__item h3 {
    margin: .65rem 0;
    font-family: "Instrument Serif", Georgia, serif;
    font-weight: 400;
    line-height: .9;
    font-size: clamp(2rem, 3.5vw, 3.6rem);
}

.composition__item p {
    color: var(--stone);
    font-size: .96rem;
}

.item-a { top: 9%; left: 8%; }
.item-b { top: 11%; right: 8%; background: rgba(207, 216, 203, .78); }
.item-c { bottom: 10%; right: 10%; background: rgba(30, 27, 24, .88); color: var(--vellum-2); }
.item-c p { color: rgba(246, 240, 230, .68); }
.item-d { bottom: 13%; left: 10%; background: rgba(234, 222, 204, .82); }

.rs-automation {
    display: grid;
    grid-template-columns: minmax(360px, .82fr) minmax(0, .74fr);
    gap: clamp(1rem, 5vw, 5rem);
    align-items: center;
}

.automation__visual {
    min-height: 640px;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 4vw, 3rem);
    border-radius: 28px;
    background:
        radial-gradient(circle at 80% 8%, rgba(215, 53, 43, .26), transparent 20rem),
        linear-gradient(145deg, var(--deep-3), var(--deep));
    box-shadow: 0 28px 80px rgba(22, 17, 13, .18);
}

.flow-window {
    width: min(520px, 100%);
    overflow: hidden;
    border: 1px solid var(--line-on-dark);
    border-radius: 20px;
    background: rgba(10, 9, 8, .76);
    color: var(--vellum-2);
    box-shadow: inset 0 1px 0 rgba(246,240,230,.08);
}

.flow-window__bar {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem;
    border-bottom: 1px solid rgba(246, 240, 230, .12);
    color: rgba(246, 240, 230, .56);
    font-family: "JetBrains Mono", monospace;
    font-size: .78rem;
}

.flow-window__bar span {
    width: .58rem;
    height: .58rem;
    border-radius: 999px;
    background: rgba(246, 240, 230, .28);
}

.flow-window__bar strong {
    margin-left: .3rem;
    color: var(--vellum-2);
    font-weight: 500;
}

.flow-node,
.flow-route {
    margin: 1rem;
    padding: 1rem;
    border: 1px solid rgba(246, 240, 230, .1);
    border-radius: 14px;
    background: rgba(246, 240, 230, .08);
}

.flow-options {
    display: grid;
    gap: .6rem;
    margin: 1rem;
}

.flow-options span {
    padding: .8rem .9rem;
    border: 1px solid rgba(246, 240, 230, .12);
    border-radius: 999px;
    color: rgba(246, 240, 230, .76);
}

.flow-route {
    display: grid;
    gap: .3rem;
    border-color: rgba(215, 53, 43, .36);
    background: rgba(215, 53, 43, .12);
}

.flow-route em {
    color: rgba(246, 240, 230, .52);
    font-family: "JetBrains Mono", monospace;
    font-size: .72rem;
    font-style: normal;
    text-transform: uppercase;
}

.automation-panel-copy {
    position: relative;
    overflow: hidden;
    padding: clamp(1rem, 3vw, 1.8rem);
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0%, rgba(215, 53, 43, .16), transparent 16rem),
        var(--vellum-2);
}

.automation-panel-copy::after {
    content: "";
    position: absolute;
    right: -5rem;
    bottom: -6rem;
    width: 16rem;
    height: 16rem;
    border: 1px solid rgba(215, 53, 43, .22);
    border-radius: 50%;
}

.automation-panel-copy > * {
    position: relative;
    z-index: 1;
}

.automation-panel-copy span {
    color: var(--oxide);
    font-family: "JetBrains Mono", monospace;
    font-size: .72rem;
    text-transform: uppercase;
}

.automation-panel-copy h2 {
    max-width: 10ch;
    margin-top: .9rem;
}

.automation-panel-copy p {
    max-width: 560px;
    margin-top: 1rem;
    color: var(--stone);
    font-size: clamp(1rem, 1.25vw, 1.15rem);
    line-height: 1.58;
}

.automation-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .6rem;
    margin-top: 1.4rem;
}

.automation-mini-grid strong {
    min-height: 78px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(233, 224, 210, .52);
    font-size: .9rem;
}

.rs-text-link,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.4rem;
    color: var(--ink);
    font-weight: 650;
}

.rs-text-link::after,
.text-link::after {
    content: "->";
    color: var(--oxide);
}

.rs-evidence {
    display: grid;
    grid-template-columns: minmax(0, .62fr) minmax(500px, 1fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}

.evidence__intro {
    position: sticky;
    top: 7rem;
}

.evidence__intro h2 {
    max-width: 10ch;
}

.evidence-orbit {
    position: relative;
    min-height: 360px;
    margin-top: 2rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        radial-gradient(circle at 52% 50%, rgba(215, 53, 43, .26), transparent 8rem),
        radial-gradient(circle at 10% 85%, rgba(173, 131, 82, .18), transparent 12rem),
        linear-gradient(145deg, var(--vellum-2), rgba(203,214,204,.62));
}

.evidence-orbit::before,
.evidence-orbit::after {
    content: "";
    position: absolute;
    inset: 14%;
    border: 1px solid rgba(22, 17, 13, .12);
    border-radius: 50%;
}

.evidence-orbit::after {
    inset: 28%;
    border-color: rgba(215, 53, 43, .34);
}

.evidence-orbit::before {
    box-shadow: 0 0 0 34px rgba(215, 53, 43, .035);
}

.evidence-orbit span {
    position: absolute;
    padding: .55rem .7rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(252, 248, 239, .82);
    color: var(--stone);
    font-size: .78rem;
    font-weight: 650;
}

.evidence-orbit span:nth-child(1) { left: 8%; top: 16%; }
.evidence-orbit span:nth-child(2) { right: 7%; top: 36%; }
.evidence-orbit span:nth-child(3) { left: 15%; bottom: 15%; }
.evidence-orbit span:nth-child(4) { right: 14%; bottom: 16%; }

.evidence-orbit strong {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 108px;
    height: 108px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--oxide);
    color: #fff6ee;
    font-family: "Sora", "Inter", Arial, sans-serif;
    font-size: .9rem;
    box-shadow: 0 18px 48px rgba(215, 53, 43, .25);
}

.evidence__table {
    border-top: 1px solid var(--line);
}

.evidence__row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 1.2rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--line);
}

.evidence__row span {
    color: var(--stone);
    font-family: "JetBrains Mono", monospace;
    font-size: .74rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.evidence__row strong {
    color: var(--ink);
    font-family: "Sora", "Inter", Arial, sans-serif;
    font-size: clamp(1.65rem, 2.7vw, 2.7rem);
    font-weight: 650;
    line-height: .96;
}

.evidence__row em {
    grid-column: 2;
    color: var(--stone);
    font-style: normal;
}

.rs-close {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: end;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 28px;
    background:
        radial-gradient(circle at 86% 14%, rgba(215, 53, 43, .18), transparent 18rem),
        var(--vellum-2);
    border: 1px solid var(--line);
}

.home-command {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) auto;
    gap: clamp(1rem, 4vw, 3rem);
    align-items: center;
    padding: clamp(1.2rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 70%, rgba(215, 53, 43, .15), transparent 18rem),
        var(--vellum-2);
}

.home-command h2 {
    max-width: 12ch;
}

.home-command p:not(.rs-label) {
    max-width: 560px;
    color: var(--stone);
}

.home-command__visual {
    position: relative;
    min-height: 220px;
    border-radius: 22px;
    background:
        linear-gradient(rgba(22,17,13,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22,17,13,.06) 1px, transparent 1px),
        linear-gradient(145deg, #1c1916, #050505);
    background-size: 28px 28px, 28px 28px, auto;
    overflow: hidden;
}

.home-command__visual::before {
    content: "";
    position: absolute;
    inset: 20%;
    border: 1px solid rgba(246,240,230,.18);
    border-radius: 50%;
}

.home-command__visual::after {
    content: "";
    position: absolute;
    left: 14%;
    right: 14%;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(215, 53, 43, .75), transparent);
}

.home-command__visual span {
    position: absolute;
    z-index: 1;
    width: auto;
    height: auto;
    padding: .5rem .64rem;
    border-radius: 999px;
    background: var(--oxide);
    color: #fff6ee;
    font-size: .72rem;
    font-weight: 650;
    box-shadow: 0 0 0 8px rgba(215, 53, 43, .15);
}

.home-command__visual span:nth-child(1) { left: 18%; top: 20%; }
.home-command__visual span:nth-child(2) { right: 18%; top: 35%; }
.home-command__visual span:nth-child(3) { left: 35%; bottom: 18%; }
.home-command__visual span:nth-child(4) { right: 30%; bottom: 26%; }

.rs-close h2 {
    max-width: 11ch;
}

.section-lead,
.page-hero p {
    color: var(--stone);
    font-size: clamp(1.04rem, 1.4vw, 1.26rem);
    line-height: 1.58;
}

.section-heading,
.system-header {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(280px, .44fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: 1.6rem;
}

.page-hero {
    padding: clamp(7rem, 13vw, 11rem) 0 clamp(3rem, 6vw, 5rem);
}

.page-hero-dark {
    width: min(calc(100% - 1.5rem), 1500px);
    min-height: 520px;
    display: grid;
    align-content: end;
    padding: clamp(8rem, 16vw, 12rem) clamp(1.2rem, 6vw, 5rem) clamp(2rem, 6vw, 4rem);
    border-radius: 0 0 28px 28px;
    background:
        radial-gradient(circle at 80% 20%, rgba(215, 53, 43, .36), transparent 24rem),
        linear-gradient(145deg, var(--deep-3), var(--deep));
    color: var(--vellum-2);
}

.page-hero h1 {
    max-width: 980px;
}

.page-hero h1 span {
    display: block;
}
.page-hero-dark p:not(.eyebrow) {
    max-width: 770px;
    margin-top: 1rem;
    color: rgba(246, 240, 230, .66);
}

.service-list {
    display: grid;
    border-top: 1px solid var(--line);
}

.service-line {
    display: grid;
    grid-template-columns: 80px minmax(240px, .65fr) minmax(280px, 1fr);
    gap: 1rem;
    align-items: baseline;
    padding: clamp(1.35rem, 3vw, 2.2rem) 0;
    border-bottom: 1px solid var(--line);
}

.service-line span {
    color: var(--oxide);
    font-family: "JetBrains Mono", monospace;
    font-size: .75rem;
}

.service-line h3 {
    font-family: "Instrument Serif", Georgia, serif;
    font-weight: 400;
    line-height: .92;
    font-size: clamp(1.9rem, 3.2vw, 3.4rem);
}

.service-line p {
    color: var(--stone);
}

.service-architecture {
    padding: clamp(1.2rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: 30px;
    background:
        radial-gradient(circle at 88% 8%, rgba(173, 131, 82, .18), transparent 22rem),
        linear-gradient(145deg, var(--vellum-2), rgba(233, 224, 210, .68));
}

.service-architecture__header {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .48fr);
    gap: 2rem;
    align-items: end;
    padding-bottom: clamp(1.4rem, 3vw, 2rem);
    border-bottom: 1px solid var(--line);
}

.service-architecture__header h2 {
    max-width: 12ch;
}

.service-architecture__header > p {
    color: var(--stone);
    font-size: clamp(1.04rem, 1.35vw, 1.22rem);
}

.service-lanes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-lane {
    min-height: 330px;
    display: grid;
    align-content: space-between;
    gap: 1.5rem;
    padding: clamp(1rem, 2.6vw, 1.8rem);
}

.service-lane + .service-lane {
    border-left: 1px solid var(--line);
}

.service-lane span,
.work-kicker,
.work-panel span,
.work-link-card span,
.principle-strip span,
.about-timeline span {
    color: var(--oxide);
    font-family: "JetBrains Mono", monospace;
    font-size: .72rem;
    text-transform: uppercase;
}

.service-lane h3,
.work-panel h3,
.work-link-card h3,
.contact-channel h3 {
    font-size: clamp(1.55rem, 2.4vw, 2.45rem);
}

.service-lane h3 {
    font-family: "Instrument Serif", Georgia, serif;
    font-weight: 400;
    line-height: .92;
}

.service-lane p {
    color: var(--stone);
}

.service-fit {
    display: grid;
    grid-template-columns: minmax(0, .7fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
    padding-top: 0;
}

.service-fit h2 {
    max-width: 10ch;
}

.service-fit__grid {
    display: grid;
    border-top: 1px solid var(--line);
}

.service-fit__grid article {
    display: grid;
    grid-template-columns: minmax(180px, .45fr) minmax(0, 1fr);
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--line);
}

.service-fit__grid h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.65rem);
}

.service-fit__grid p {
    color: var(--stone);
}

.split,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(330px, .52fr);
    gap: 1rem;
    align-items: start;
}

.premium-split > div:first-child,
.premium-split > .stack,
.contact-layout > .form-card,
.contact-layout > aside,
.process-card,
.form-card,
.case-card,
.work-card,
.service-card,
.card {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--vellum-2);
}

.stack { display: grid; gap: .85rem; }
.process-card,
.form-card,
.case-card,
.work-card,
.service-card,
.card {
    padding: 1rem;
}

.case-grid,
.work-grid,
.service-grid,
.bento-grid,
.system-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.case-large,
.card-wide { grid-column: span 2; }

.case-card,
.work-card,
.service-card,
.card {
    min-height: 280px;
    display: grid;
    align-content: space-between;
}

a.case-card {
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

a.case-card:hover {
    transform: translateY(-3px);
    border-color: rgba(215, 53, 43, .28);
    background: #fffaf0;
}

a.case-card::after {
    content: "Visit site";
    width: fit-content;
    margin-top: 1.4rem;
    padding: .55rem .72rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--stone);
    font-size: .82rem;
    font-weight: 650;
}

a.case-card.case-large::after {
    content: "Visit ChoiceBuys";
}

.case-card span,
.work-card .tag,
.service-card .number,
.system-number {
    color: var(--oxide);
    font-family: "JetBrains Mono", monospace;
    font-size: .72rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.case-card p,
.work-card p,
.service-card p,
.card p,
.process-card p {
    color: var(--stone);
}

.work-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .58fr);
    gap: 1rem;
}

.work-feature {
    position: relative;
    min-height: 620px;
    display: grid;
    align-content: space-between;
    overflow: hidden;
    padding: clamp(1.2rem, 3vw, 2.4rem);
    border-radius: 30px;
    background:
        radial-gradient(circle at 78% 18%, rgba(215, 53, 43, .4), transparent 18rem),
        radial-gradient(circle at 8% 82%, rgba(173, 131, 82, .18), transparent 16rem),
        linear-gradient(145deg, var(--deep-3), var(--deep));
    color: var(--vellum-2);
}

.work-feature::after {
    content: "";
    position: absolute;
    right: -12rem;
    bottom: -14rem;
    width: 34rem;
    height: 34rem;
    border: 1px solid rgba(246, 240, 230, .13);
    border-radius: 50%;
    box-shadow: inset 0 0 80px rgba(215, 53, 43, .18);
}

.work-feature > * {
    position: relative;
    z-index: 1;
}

.work-feature h2 {
    max-width: 9ch;
}

.work-feature p {
    max-width: 680px;
    margin-top: 1rem;
    color: rgba(246, 240, 230, .68);
    font-size: clamp(1.04rem, 1.35vw, 1.22rem);
}

.work-feature__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.work-feature__meta span {
    padding: .5rem .7rem;
    border: 1px solid rgba(246, 240, 230, .14);
    border-radius: 999px;
    background: rgba(246, 240, 230, .06);
    color: rgba(246, 240, 230, .75);
    font-size: .82rem;
    font-weight: 650;
}

.work-secondary-stack {
    display: grid;
    gap: 1rem;
}

.work-panel,
.work-link-card,
.contact-channel,
.about-panel,
.about-timeline article,
.principle-strip article {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--vellum-2);
}

.work-panel {
    min-height: 300px;
    display: grid;
    align-content: space-between;
    padding: 1.15rem;
}

.work-panel.is-dark,
.contact-channel--dark {
    border-color: rgba(246, 240, 230, .14);
    background:
        radial-gradient(circle at 88% 12%, rgba(215, 53, 43, .22), transparent 16rem),
        linear-gradient(145deg, var(--deep-3), var(--deep));
    color: var(--vellum-2);
}

.work-panel p,
.work-link-card p,
.about-panel p,
.about-timeline p,
.principle-strip p,
.contact-channel p {
    color: var(--stone);
}

.work-panel.is-dark p,
.contact-channel--dark p {
    color: rgba(246, 240, 230, .68);
}

.work-index {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding-top: 0;
}

.work-link-card {
    min-height: 340px;
    display: grid;
    align-content: space-between;
    padding: 1.1rem;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.work-link-card:hover,
.work-panel:hover {
    transform: translateY(-3px);
    border-color: rgba(215, 53, 43, .28);
    background: #fffaf0;
}

.work-panel.is-dark:hover {
    background:
        radial-gradient(circle at 88% 12%, rgba(215, 53, 43, .28), transparent 16rem),
        linear-gradient(145deg, var(--deep-3), var(--deep));
}

.work-archive {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(320px, .45fr);
    gap: 2rem;
    align-items: end;
    padding-top: 0;
}

.work-archive h2 {
    max-width: 13ch;
}

.work-archive__links {
    display: grid;
    border-top: 1px solid var(--line);
}

.work-archive__links a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--stone);
    font-weight: 650;
}

.about-architecture {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(360px, .62fr);
    gap: 1rem;
}

.about-panel {
    padding: clamp(1.2rem, 3vw, 2.2rem);
}

.about-panel h2 {
    max-width: 12ch;
    margin-bottom: 1.1rem;
}

.about-panel p + p {
    margin-top: 1rem;
}

.about-timeline {
    display: grid;
    gap: 1rem;
}

.about-timeline article {
    min-height: 190px;
    display: grid;
    align-content: space-between;
    padding: 1.05rem;
}

.principle-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding-top: 0;
}

.principle-strip article {
    min-height: 310px;
    display: grid;
    align-content: space-between;
    padding: 1.05rem;
}

.contact-command {
    grid-template-columns: minmax(0, .98fr) minmax(360px, .48fr);
}

.contact-intake {
    padding: clamp(1.1rem, 3vw, 2rem);
}

.contact-intake__header {
    display: grid;
    gap: .8rem;
    max-width: 760px;
    margin-bottom: 1.3rem;
}

.contact-intake__header h2 {
    max-width: 12ch;
}

.contact-rail {
    display: grid;
    gap: 1rem;
}

.contact-channel {
    padding: 1rem;
}

.contact-channel--dark .eyebrow {
    color: rgba(246, 240, 230, .62);
}

.page-hero-system,
.page-hero-work,
.page-hero-about,
.page-hero-contact {
    grid-template-columns: minmax(0, .9fr) minmax(380px, .52fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: end;
    overflow: hidden;
}

.page-hero__copy {
    position: relative;
    z-index: 2;
}

.page-hero-system::before,
.page-hero-work::before,
.page-hero-about::before,
.page-hero-contact::before {
    content: "";
    position: absolute;
    inset: auto -12rem -16rem auto;
    width: 42rem;
    height: 42rem;
    border: 1px solid rgba(246, 240, 230, .1);
    border-radius: 50%;
    box-shadow: inset 0 0 95px rgba(215, 53, 43, .13);
}

.service-hero-map,
.work-hero-mark,
.about-hero-field,
.contact-hero-capsule {
    position: relative;
    z-index: 1;
    min-height: 360px;
    border: 1px solid rgba(246, 240, 230, .12);
    border-radius: 28px;
    background:
        linear-gradient(rgba(246,240,230,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(246,240,230,.055) 1px, transparent 1px),
        rgba(246, 240, 230, .045);
    background-size: 38px 38px;
    box-shadow: inset 0 1px 0 rgba(246,240,230,.08);
}

.service-hero-map::before,
.service-hero-map::after,
.work-hero-mark::before,
.about-hero-field::before,
.contact-hero-capsule::before {
    content: "";
    position: absolute;
    inset: 16%;
    border: 1px solid rgba(246, 240, 230, .16);
    border-radius: 50%;
}

.service-hero-map::after {
    inset: 32%;
    border-color: rgba(215, 53, 43, .38);
}

.map-node,
.work-hero-mark span,
.about-hero-field span,
.contact-hero-capsule span {
    position: absolute;
    z-index: 2;
    padding: .62rem .78rem;
    border: 1px solid rgba(246, 240, 230, .14);
    border-radius: 999px;
    background: rgba(11, 10, 9, .72);
    color: rgba(246, 240, 230, .74);
    font-size: .82rem;
    font-weight: 650;
    backdrop-filter: blur(16px);
}

.map-node--core {
    left: 50%;
    top: 50%;
    color: var(--vellum-2);
    background: rgba(215, 53, 43, .86);
    transform: translate(-50%, -50%);
}

.map-node:nth-child(2) { left: 8%; top: 18%; }
.map-node:nth-child(3) { right: 9%; top: 26%; }
.map-node:nth-child(4) { left: 16%; bottom: 14%; }
.map-node:nth-child(5) { right: 14%; bottom: 18%; }

.service-hero-map i {
    position: absolute;
    height: 1px;
    width: 48%;
    left: 26%;
    top: 50%;
    background: linear-gradient(90deg, transparent, rgba(215, 53, 43, .54), transparent);
}

.service-hero-map i:nth-of-type(2) { transform: rotate(58deg); }
.service-hero-map i:nth-of-type(3) { transform: rotate(-42deg); }

.service-signal {
    display: grid;
    grid-template-columns: minmax(430px, .78fr) minmax(0, 1fr);
    gap: clamp(1rem, 4vw, 3rem);
    align-items: stretch;
    padding-top: 0;
}

.service-signal__visual {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 30px;
    background:
        radial-gradient(circle at 50% 48%, rgba(215, 53, 43, .28), transparent 11rem),
        radial-gradient(circle at 10% 88%, rgba(173, 131, 82, .22), transparent 16rem),
        radial-gradient(circle at 96% 10%, rgba(203, 214, 204, .72), transparent 13rem),
        linear-gradient(rgba(22,17,13,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22,17,13,.05) 1px, transparent 1px),
        linear-gradient(145deg, var(--vellum-2), rgba(203, 214, 204, .62));
    background-size: auto, 42px 42px, 42px 42px, auto;
}

.service-signal__visual::before,
.service-signal__visual::after {
    content: "";
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(22, 17, 13, .12);
    border-radius: 50%;
}

.service-signal__visual::after {
    inset: 30%;
    border-color: rgba(215, 53, 43, .34);
    box-shadow: 0 0 0 42px rgba(215, 53, 43, .035);
}

.service-signal__visual span {
    position: absolute;
    padding: .7rem .82rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(252, 248, 239, .82);
    font-weight: 650;
}

.service-signal__visual span:nth-child(1) { left: 11%; top: 16%; }
.service-signal__visual span:nth-child(2) { right: 10%; top: 24%; }
.service-signal__visual span:nth-child(3) { left: 13%; bottom: 17%; }
.service-signal__visual span:nth-child(4) { right: 12%; bottom: 17%; }

.service-signal__visual span:nth-child(1)::after,
.service-signal__visual span:nth-child(2)::after,
.service-signal__visual span:nth-child(3)::after,
.service-signal__visual span:nth-child(4)::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 1px;
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(215, 53, 43, .45), transparent);
}

.service-signal__visual span:nth-child(1)::after { transform: rotate(26deg); }
.service-signal__visual span:nth-child(2)::after { transform: rotate(138deg); }
.service-signal__visual span:nth-child(3)::after { transform: rotate(-34deg); }
.service-signal__visual span:nth-child(4)::after { transform: rotate(205deg); }

.service-signal__copy {
    display: grid;
    align-content: center;
    padding: clamp(1.2rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--vellum-2);
}

.service-signal__copy h2 {
    max-width: 12ch;
}

.signal-list {
    display: grid;
    gap: .8rem;
    margin-top: 2rem;
}

.signal-list article {
    padding: 1rem 0;
    border-top: 1px solid var(--line);
}

.signal-list strong {
    display: block;
    margin-bottom: .3rem;
    font-family: "Sora", "Inter", Arial, sans-serif;
    font-size: 1.04rem;
}

.signal-list p {
    color: var(--stone);
}

.page-command {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, .38fr) auto;
    gap: clamp(1rem, 4vw, 3rem);
    align-items: center;
    padding: clamp(1.2rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: 30px;
    background:
        radial-gradient(circle at 86% 18%, rgba(215, 53, 43, .15), transparent 18rem),
        linear-gradient(145deg, var(--vellum-2), rgba(233,224,210,.72));
}

.page-command h2 {
    max-width: 12ch;
}

.page-command > p {
    color: var(--stone);
}

.command-lines,
.command-nodes {
    display: grid;
    gap: .58rem;
}

.command-lines span {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(215, 53, 43, .62), transparent);
}

.command-nodes {
    position: relative;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 108px;
    align-items: center;
}

.command-nodes::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, rgba(215, 53, 43, .75), rgba(173, 131, 82, .48), transparent);
}

.command-nodes span {
    position: relative;
    z-index: 1;
    min-height: 68px;
    display: grid;
    place-items: center;
    padding: .4rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(252, 248, 239, .84);
    color: var(--ink);
    font-family: "JetBrains Mono", monospace;
    font-size: .72rem;
    font-weight: 650;
    text-transform: uppercase;
}

.work-hero-mark {
    transform: rotate(-1deg);
    background:
        radial-gradient(circle at 50% 50%, rgba(215, 53, 43, .24), transparent 9rem),
        linear-gradient(rgba(246,240,230,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(246,240,230,.055) 1px, transparent 1px),
        rgba(246, 240, 230, .045);
    background-size: auto, 34px 34px, 34px 34px, auto;
}

.work-hero-mark::after {
    content: "";
    position: absolute;
    left: 22%;
    right: 14%;
    top: 52%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(215,53,43,.62), transparent);
}

.work-hero-mark span:nth-child(1) { left: 9%; top: 18%; }
.work-hero-mark span:nth-child(2) { right: 10%; top: 30%; }
.work-hero-mark span:nth-child(3) { left: 50%; top: 52%; transform: translate(-50%, -50%); }
.work-hero-mark span:nth-child(4) { right: 20%; bottom: 19%; }
.work-hero-mark span:nth-child(5) { left: 12%; bottom: 14%; }

.work-hero-mark strong,
.about-hero-field strong {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 118px;
    height: 118px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(215, 53, 43, .88);
    color: #fff6ee;
    font-family: "Sora", "Inter", Arial, sans-serif;
    font-size: .78rem;
    text-align: center;
    box-shadow: 0 24px 60px rgba(215, 53, 43, .24);
}

.work-system {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.work-system::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(215, 53, 43, .28), transparent);
}

.work-node {
    position: relative;
    min-height: 360px;
    display: grid;
    align-content: space-between;
    gap: 1.4rem;
    overflow: hidden;
    padding: clamp(1.05rem, 2.4vw, 1.6rem);
    border: 1px solid rgba(246, 240, 230, .14);
    border-radius: 28px;
    background:
        radial-gradient(circle at 88% 12%, rgba(215, 53, 43, .24), transparent 14rem),
        linear-gradient(145deg, #2a211d, #080706 72%);
    color: var(--vellum-2);
    box-shadow: 0 22px 70px rgba(22, 17, 13, .14);
    transition: transform .18s ease, border-color .18s ease;
}

.work-node::after {
    content: "";
    position: absolute;
    right: -7rem;
    bottom: -8rem;
    width: 18rem;
    height: 18rem;
    border: 1px solid rgba(246, 240, 230, .12);
    border-radius: 50%;
}

.work-node:hover {
    transform: translateY(-4px);
    border-color: rgba(215, 53, 43, .34);
}

.work-node > * {
    position: relative;
    z-index: 1;
}

.work-node--large {
    grid-column: span 2;
    min-height: 560px;
    background:
        radial-gradient(circle at 72% 15%, rgba(215, 53, 43, .46), transparent 20rem),
        radial-gradient(circle at 5% 95%, rgba(173, 131, 82, .24), transparent 16rem),
        linear-gradient(145deg, #2a211d, #080706 72%);
}

.work-node--red {
    background:
        radial-gradient(circle at 72% 18%, rgba(246, 240, 230, .18), transparent 16rem),
        linear-gradient(145deg, var(--oxide-dark), var(--deep-2));
}

.work-node--wide {
    grid-column: span 3;
    min-height: 320px;
}

.work-node span,
.about-capabilities span,
.journey-track span {
    color: rgba(246, 240, 230, .68);
    font-family: "JetBrains Mono", monospace;
    font-size: .72rem;
    text-transform: uppercase;
}

.work-node h2 {
    max-width: 9ch;
}

.work-node h2,
.work-node h3 {
    font-family: "Instrument Serif", Georgia, serif;
    font-weight: 400;
    line-height: .9;
    font-size: clamp(1.8rem, 2.7vw, 3rem);
}

.work-node h2 {
    font-size: clamp(3.1rem, 5.6vw, 5.2rem);
}

.work-node p {
    color: rgba(246, 240, 230, .68);
}

.work-node em {
    color: rgba(246, 240, 230, .48);
    font-style: normal;
    font-weight: 650;
}

.about-hero-field {
    background:
        radial-gradient(circle at 50% 52%, rgba(215, 53, 43, .28), transparent 11rem),
        radial-gradient(circle at 16% 88%, rgba(173, 131, 82, .18), transparent 14rem),
        linear-gradient(rgba(246,240,230,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(246,240,230,.055) 1px, transparent 1px),
        rgba(246, 240, 230, .045);
    background-size: auto, 34px 34px, 34px 34px, auto;
}

.about-hero-field::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(215, 53, 43, .66), transparent);
}

.about-hero-field span:nth-child(1) { left: 9%; top: 28%; }
.about-hero-field span:nth-child(2) { left: 32%; bottom: 18%; }
.about-hero-field span:nth-child(3) { right: 18%; top: 24%; }
.about-hero-field span:nth-child(4) { right: 8%; bottom: 16%; }

.about-hero-field strong {
    width: 128px;
    height: 128px;
}

.about-operating-layer {
    display: grid;
    grid-template-columns: minmax(0, .74fr) minmax(340px, .42fr);
    gap: clamp(1rem, 4vw, 3rem);
    align-items: stretch;
    padding-top: clamp(4rem, 7vw, 7rem);
    padding-bottom: clamp(1.5rem, 4vw, 3rem);
}

.about-operating-layer__copy {
    display: grid;
    align-content: center;
    padding: clamp(1rem, 2.5vw, 1.6rem);
    border-left: 1px solid rgba(215, 53, 43, .34);
    background:
        linear-gradient(90deg, rgba(215, 53, 43, .055), transparent 52%);
}

.about-operating-layer__copy h2 {
    max-width: 13ch;
}

.about-operating-layer__copy p:not(.eyebrow) {
    max-width: 660px;
    margin-top: 1rem;
    color: var(--stone);
    font-size: clamp(1.04rem, 1.32vw, 1.18rem);
}

.about-instrument {
    position: relative;
    width: 100%;
    max-width: 460px;
    justify-self: end;
    overflow: hidden;
    border: 1px solid rgba(246, 240, 230, .14);
    border-radius: 24px;
    background:
        radial-gradient(circle at 90% 12%, rgba(215, 53, 43, .28), transparent 14rem),
        radial-gradient(circle at 10% 92%, rgba(173, 131, 82, .18), transparent 16rem),
        linear-gradient(145deg, var(--deep-3), var(--deep));
    color: var(--vellum-2);
    box-shadow: 0 28px 80px rgba(22, 17, 13, .2);
}

.about-instrument .instrument__top,
.about-instrument .instrument__line,
.about-instrument .instrument__summary,
.about-instrument .instrument__tags,
.about-instrument .instrument__proof {
    border-color: rgba(246, 240, 230, .12);
}

.about-instrument .instrument__top {
    color: rgba(246, 240, 230, .58);
}

.about-instrument .instrument__summary {
    grid-template-columns: 1fr;
    gap: .62rem;
    padding: 1rem;
}

.about-instrument .instrument__summary small {
    color: rgba(246, 240, 230, .54);
}

.about-instrument .instrument__summary strong {
    max-width: 16ch;
    color: var(--vellum-2);
    font-family: "Sora", "Inter", Arial, sans-serif;
    font-size: clamp(1.45rem, 2.1vw, 1.95rem);
    font-weight: 650;
    line-height: 1.04;
}

.about-instrument .instrument__summary p {
    max-width: 24rem;
    color: rgba(246, 240, 230, .68);
    font-size: .96rem;
}

.about-instrument .instrument__tags span {
    border-color: rgba(246, 240, 230, .14);
    background: rgba(246, 240, 230, .06);
    color: rgba(246, 240, 230, .76);
}

.about-instrument .instrument__tags {
    padding: .72rem .8rem;
}

.about-instrument .instrument__proof span + span {
    border-color: rgba(246, 240, 230, .12);
}

.about-instrument .instrument__proof b {
    color: var(--vellum-2);
}

.about-instrument .instrument__proof em,
.about-instrument .instrument__line em {
    color: rgba(246, 240, 230, .58);
}

.about-instrument .instrument__line span {
    background: var(--oxide);
}

.about-instrument .instrument__line strong {
    color: var(--vellum-2);
}

.about-journey {
    display: grid;
    grid-template-columns: minmax(0, .54fr) minmax(0, 1fr);
    gap: clamp(1rem, 4vw, 3rem);
    align-items: start;
}

.about-journey__intro {
    position: sticky;
    top: 7rem;
    padding: clamp(1rem, 2vw, 1.4rem);
    border-left: 1px solid rgba(215, 53, 43, .34);
    background:
        linear-gradient(90deg, rgba(215, 53, 43, .055), transparent 48%);
}

.about-journey__intro h2,
.about-now__panel h2 {
    max-width: 12ch;
}

.about-journey__intro p:not(.eyebrow),
.about-now__panel p {
    margin-top: 1rem;
    color: var(--stone);
    font-size: clamp(1.02rem, 1.28vw, 1.16rem);
}

.journey-track {
    position: relative;
    display: grid;
    gap: 1rem;
}

.journey-track::before {
    content: "";
    position: absolute;
    left: 1.25rem;
    top: 1rem;
    bottom: 1rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(215, 53, 43, .6), rgba(22,17,13,.1));
}

.journey-track article {
    position: relative;
    min-height: 190px;
    display: grid;
    align-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.15rem 1.15rem 3.2rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--vellum-2);
}

.journey-track article:nth-child(4) {
    background:
        radial-gradient(circle at 94% 12%, rgba(215, 53, 43, .1), transparent 12rem),
        var(--vellum-2);
}

.journey-track article::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 1.25rem;
    width: .58rem;
    height: .58rem;
    border-radius: 999px;
    background: var(--oxide);
    box-shadow: 0 0 0 8px rgba(215, 53, 43, .12);
}

.journey-track span,
.about-capabilities span {
    color: var(--oxide);
}

.journey-track p {
    color: var(--stone);
}

.about-now {
    display: grid;
    grid-template-columns: minmax(0, .65fr) minmax(0, 1fr);
    gap: 1rem;
    padding-top: 0;
}

.about-now__panel,
.about-capabilities article {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--vellum-2);
}

.about-now__panel {
    padding: clamp(1.2rem, 3vw, 2rem);
}

.about-capabilities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.about-capabilities article {
    min-height: 360px;
    display: grid;
    align-content: space-between;
    padding: 1rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 12%, rgba(215, 53, 43, .08), transparent 12rem),
        var(--vellum-2);
}

.about-capabilities article::after {
    content: "";
    width: 7rem;
    height: 7rem;
    align-self: end;
    justify-self: end;
    margin: -3rem -3rem 0 0;
    border: 1px solid rgba(215, 53, 43, .16);
    border-radius: 50%;
}

.about-capabilities h3 {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(1.85rem, 2.7vw, 2.85rem);
    font-weight: 400;
    line-height: .94;
    overflow-wrap: break-word;
}

.about-capabilities p {
    color: var(--stone);
}

.page-command--about {
    grid-template-columns: minmax(0, .75fr) minmax(240px, .42fr) minmax(0, .54fr) auto;
    background:
        radial-gradient(circle at 72% 14%, rgba(215, 53, 43, .2), transparent 18rem),
        radial-gradient(circle at 12% 80%, rgba(173, 131, 82, .18), transparent 16rem),
        linear-gradient(145deg, var(--vellum-2), rgba(203,214,204,.52));
}

.about-command-map {
    position: relative;
    min-height: 150px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        linear-gradient(rgba(22,17,13,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22,17,13,.045) 1px, transparent 1px),
        rgba(252, 248, 239, .64);
    background-size: 28px 28px;
}

.about-command-map::before {
    content: "";
    position: absolute;
    inset: 24%;
    border: 1px solid rgba(215, 53, 43, .22);
    border-radius: 50%;
}

.about-command-map span {
    position: absolute;
    padding: .45rem .58rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(252, 248, 239, .86);
    font-size: .74rem;
    font-weight: 650;
}

.about-command-map span:nth-child(1) { left: 10%; top: 18%; }
.about-command-map span:nth-child(2) { right: 10%; top: 36%; }
.about-command-map span:nth-child(3) { left: 30%; bottom: 16%; }

.contact-hero-capsule {
    min-height: 320px;
}

.contact-hero-capsule::after {
    content: "";
    position: absolute;
    left: 14%;
    right: 14%;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(215,53,43,.66), transparent);
}

.contact-hero-capsule span:nth-child(1) { left: 9%; top: 24%; }
.contact-hero-capsule span:nth-child(2) { left: 28%; bottom: 18%; }
.contact-hero-capsule span:nth-child(3) { right: 26%; top: 22%; }
.contact-hero-capsule span:nth-child(4) { right: 8%; bottom: 20%; }

.contact-intake__header p:not(.eyebrow) {
    color: var(--stone);
}

.optional-label {
    color: var(--slate);
    font-size: .82rem;
    font-weight: 500;
}

.required-mark {
    color: var(--oxide);
    font-weight: 800;
}

.contact-channel--signal {
    background:
        radial-gradient(circle at 92% 8%, rgba(215, 53, 43, .2), transparent 13rem),
        radial-gradient(circle at 6% 92%, rgba(173, 131, 82, .18), transparent 12rem),
        linear-gradient(145deg, var(--vellum-2), rgba(233, 224, 210, .74));
}

.contact-channel--signal h3 {
    font-family: "Instrument Serif", Georgia, serif;
    font-weight: 400;
    line-height: .92;
}

.list-clean {
    display: grid;
    gap: .75rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.list-clean li {
    display: flex;
    gap: .65rem;
    color: var(--stone);
}

.list-clean li::before {
    content: "";
    width: .42rem;
    height: .42rem;
    flex: 0 0 auto;
    margin-top: .55rem;
    border-radius: 999px;
    background: var(--oxide);
}

form {
    display: grid;
    gap: .9rem;
}

label {
    display: grid;
    gap: .36rem;
    color: var(--ink);
    font-weight: 600;
}

.field-label {
    display: inline-flex;
    align-items: baseline;
    gap: .18rem;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(252, 248, 239, .7);
    color: var(--ink);
    padding: .9rem;
}

textarea {
    min-height: 170px;
    resize: vertical;
}

.notice-success {
    margin-bottom: 1rem;
    padding: .85rem 1rem;
    border: 1px solid rgba(80, 121, 92, .28);
    border-radius: 16px;
    background: rgba(207, 216, 203, .58);
    color: #31452f;
    font-weight: 650;
}

.fine-print,
.legal p {
    color: var(--stone);
}

.legal {
    max-width: 860px;
}

.legal-hero p:not(.eyebrow) {
    max-width: 780px;
    color: var(--stone);
}

.legal-document {
    max-width: 920px;
    padding-top: clamp(2rem, 5vw, 4rem);
}

.legal h2 {
    margin: 2.6rem 0 .75rem;
    font-size: clamp(1.35rem, 2.2vw, 2.1rem);
    line-height: 1.08;
}

.legal-document p {
    margin: .9rem 0 0;
    font-size: 1rem;
    line-height: 1.72;
}

.legal-pre {
    margin: 0;
    white-space: pre-wrap;
    color: var(--stone);
    font-family: "Inter", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.72;
}

.footer-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: end;
    width: min(calc(100% - 2rem), var(--max));
    margin: 4rem auto 0;
    padding: clamp(1.4rem, 3vw, 2.2rem);
    border: 1px solid rgba(246, 240, 230, .12);
    border-radius: 28px;
    background:
        radial-gradient(circle at 88% 12%, rgba(215, 53, 43, .34), transparent 20rem),
        linear-gradient(145deg, var(--deep-3), var(--deep));
    color: var(--vellum-2);
}

.footer-cta h2 {
    max-width: 820px;
}

.site-footer {
    width: min(calc(100% - 2rem), var(--max));
    margin: 1rem auto 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(130px, .5fr));
    gap: 1.4rem;
    padding: 2rem 0;
    border-top: 1px solid var(--line);
}

.footer-grid p {
    max-width: 440px;
    margin-top: .7rem;
    color: var(--stone);
}

.footer-grid h3 {
    margin-bottom: .8rem;
    font-family: "Inter", Arial, sans-serif;
    font-size: .96rem;
    font-weight: 650;
    letter-spacing: 0;
}

.footer-grid a {
    display: block;
    margin: .42rem 0;
    color: var(--stone);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
    color: var(--stone);
    font-size: .88rem;
}

.lead-bot {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 80;
}

.lead-bot-toggle {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    min-height: 46px;
    border: 1px solid rgba(246, 240, 230, .16);
    border-radius: 999px;
    background: rgba(17, 16, 14, .88);
    color: var(--vellum-2);
    padding: .75rem 1rem;
    font: inherit;
    font-weight: 650;
    box-shadow: 0 16px 48px rgba(5,5,5,.24);
    backdrop-filter: blur(18px);
    cursor: pointer;
}

.bot-dot {
    width: .55rem;
    height: .55rem;
    border-radius: 999px;
    background: var(--oxide);
    box-shadow: 0 0 0 6px rgba(215, 53, 43, .2);
}

.lead-bot-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + .7rem);
    width: min(390px, calc(100vw - 2rem));
    overflow: hidden;
    border: 1px solid var(--line-on-dark);
    border-radius: 20px;
    background: var(--deep-2);
    color: var(--vellum-2);
    box-shadow: 0 24px 90px rgba(5, 5, 5, .34);
}

.bot-header,
.bot-actions {
    padding: .9rem;
    border-bottom: 1px solid rgba(246,240,230,.12);
}

.bot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bot-header button {
    border: 0;
    background: transparent;
    color: var(--vellum-2);
    cursor: pointer;
}

.bot-log {
    display: grid;
    gap: .65rem;
    max-height: 310px;
    overflow: auto;
    padding: .9rem;
}

.bot-message {
    padding: .74rem .8rem;
    border-radius: 14px;
    font-size: .95rem;
}

.bot-message-bot {
    background: rgba(246,240,230,.08);
    color: rgba(246,240,230,.82);
}

.bot-message-typing {
    color: rgba(246, 240, 230, .54);
    font-family: "JetBrains Mono", monospace;
    font-size: .78rem;
    text-transform: uppercase;
}

.bot-message-user {
    justify-self: end;
    background: var(--oxide);
    color: #fff6ee;
}

.bot-actions {
    display: grid;
    gap: .5rem;
    border-top: 1px solid rgba(246,240,230,.12);
    border-bottom: 0;
}

.bot-actions button {
    border: 1px solid rgba(246,240,230,.14);
    border-radius: 999px;
    background: rgba(246,240,230,.07);
    color: var(--vellum-2);
    padding: .72rem .9rem;
    text-align: left;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.has-reveal-js [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease;
}

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

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

@media (max-width: 1020px) {
    .site-header {
        grid-template-columns: auto auto;
    }

    .header-cta { display: none; }

    .nav-toggle {
        display: inline-grid;
        justify-self: end;
        gap: .3rem;
        padding: .6rem;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .nav-toggle span {
        width: 1.5rem;
        height: 2px;
        background: var(--ink);
    }

    .site-nav {
        display: none;
        grid-column: 1 / -1;
        justify-content: stretch;
        align-items: stretch;
        padding: .4rem;
        border-radius: 20px;
        background: var(--vellum-2);
    }

    .site-nav.is-open { display: grid; }
    .site-nav a { text-align: center; }

    .rs-hero {
        min-height: 900px;
    }

    .rs-hero__mask {
        background:
            linear-gradient(180deg, rgba(5,5,5,.94), rgba(5,5,5,.52) 46%, rgba(5,5,5,.88));
    }

    .rs-hero__content {
        padding-top: 7.4rem;
    }

    .rs-hero__instrument {
        left: 1rem;
        right: 1rem;
        width: auto;
    }

    .rs-proof,
    .manifesto__grid,
    .composition__header,
    .rs-automation,
    .rs-evidence,
    .rs-close,
    .home-command,
    .section-heading,
    .split,
    .contact-layout,
    .page-hero-system,
    .page-hero-work,
    .page-hero-about,
    .page-hero-contact,
    .service-architecture__header,
    .service-fit,
    .service-signal,
    .page-command,
    .work-showcase,
    .work-archive,
    .work-system,
    .about-architecture,
    .about-operating-layer,
    .about-journey,
    .about-now,
    .footer-cta,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .rs-proof {
        display: flex;
        overflow: auto;
    }

    .rs-proof span,
    .rs-proof a {
        min-width: 190px;
    }

    .composition__board {
        min-height: auto;
        display: grid;
        gap: .8rem;
        padding: 1rem;
    }

    .composition__board::before,
    .composition__board::after,
    .composition__axis,
    .composition__center {
        display: none;
    }

    .composition__item {
        position: relative;
        inset: auto;
        width: auto;
    }

    .evidence__intro {
        position: static;
    }

    .case-grid,
    .work-grid,
    .service-grid,
    .bento-grid,
    .system-grid,
    .service-lanes,
    .work-index,
    .principle-strip,
    .about-capabilities {
        grid-template-columns: 1fr;
    }

    .about-instrument .instrument__summary {
        grid-template-columns: 1fr;
    }

    .about-instrument {
        max-width: none;
        justify-self: stretch;
    }

    .work-system::before,
    .about-operating-layer__copy,
    .about-journey__intro {
        position: static;
    }

    .work-node--large,
    .work-node--wide {
        grid-column: auto;
    }

    .service-hero-map,
    .work-hero-mark,
    .about-hero-field,
    .contact-hero-capsule,
    .service-signal__visual {
        min-height: 320px;
    }

    .service-lane + .service-lane {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .case-large,
    .card-wide {
        grid-column: auto;
    }

    .service-line {
        grid-template-columns: 56px 1fr;
    }

    .service-line p {
        grid-column: 2;
    }

    .service-fit__grid article {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    h1 { font-size: clamp(2.25rem, 9.8vw, 2.7rem); }
    h2 { font-size: clamp(2.05rem, 10vw, 2.8rem); }

    body {
        max-width: 100vw;
    }

    .site-header {
        width: min(342px, calc(100% - 1rem), var(--max));
        grid-template-columns: minmax(0, 1fr) auto;
        top: .5rem;
        border-radius: 22px;
    }

    .brand {
        min-width: auto;
    }

    .brand img {
        width: 35px;
        height: 35px;
    }

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

    .page-hero-dark {
        width: min(342px, calc(100% - 1rem));
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .page-hero__copy,
    .page-hero__copy h1,
    .page-hero__copy p,
    .contact-layout > .form-card,
    .contact-layout > aside,
    .form-card,
    .contact-channel {
        min-width: 0;
        max-width: 100%;
    }

    .page-hero-dark p:not(.eyebrow),
    .contact-intake__header p {
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .map-node,
    .work-hero-mark span,
    .about-hero-field span,
    .contact-hero-capsule span {
        max-width: 7.4rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .contact-hero-capsule span:nth-child(4) {
        right: 4%;
    }

    .rs-hero {
        width: 100%;
        min-height: 900px;
        padding-bottom: .7rem;
    }

    .rs-hero__content {
        width: min(358px, calc(100% - 2rem));
        max-width: min(358px, calc(100% - 2rem));
        padding: 7rem 1rem 1rem;
    }

    .rs-hero__content h1 {
        max-width: 100%;
    }

    .rs-hero__content p:not(.rs-label) {
        width: 100%;
        max-width: 20rem;
        font-size: .98rem;
        overflow-wrap: break-word;
    }

    .rs-hero__instrument {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: min(360px, calc(100% - 1.4rem));
        max-width: min(360px, calc(100% - 1.4rem));
        margin: .9rem auto 0;
    }

    .instrument__summary strong {
        font-size: 1.55rem;
    }

    .instrument__proof b {
        font-size: 1.32rem;
    }

    .instrument__top {
        grid-template-columns: 1fr;
        gap: .2rem;
    }

    .instrument__line {
        grid-template-columns: 12px minmax(0, 1fr);
        gap: .55rem;
        font-size: .92rem;
    }

    .instrument__line strong {
        display: none;
    }

    .about-instrument .instrument__line strong {
        display: block;
        font-size: .86rem;
    }

    .rs-section,
    .section,
    .page-hero,
    .site-footer,
    .footer-cta,
    .rs-composition {
        width: min(342px, calc(100% - 1rem), var(--max));
    }

    .rs-composition,
    .automation__visual,
    .rs-close,
    .home-command,
    .service-hero-map,
    .work-hero-mark,
    .about-hero-field,
    .contact-hero-capsule,
    .service-signal__visual,
    .service-signal__copy,
    .page-command,
    .footer-cta {
        border-radius: 22px;
    }

    .page-hero-dark {
        min-height: auto;
        padding-top: 7rem;
    }

    .page-hero-system,
    .page-hero-work,
    .page-hero-about,
    .page-hero-contact {
        gap: 1rem;
    }

    .service-hero-map,
    .work-hero-mark,
    .about-hero-field,
    .contact-hero-capsule,
    .service-signal__visual {
        min-height: 260px;
    }

    .page-command {
        align-items: stretch;
    }

    .command-lines {
        min-height: 42px;
    }

    .command-nodes {
        min-height: auto;
    }

    .work-node {
        min-height: 300px;
    }

    .evidence__row {
        grid-template-columns: 1fr;
        gap: .5rem;
    }

    .evidence__row em {
        grid-column: auto;
    }

    .lead-bot {
        left: .5rem;
        right: .5rem;
        bottom: .5rem;
    }

    .lead-bot-toggle {
        width: 100%;
    }

    .lead-bot-panel {
        left: 0;
        right: 0;
        width: auto;
    }
}
