:root {
  --ink: #191c1a;
  --ink-soft: #4f5550;
  --paper: #f1f0e9;
  --paper-warm: #e9e6dc;
  --line: #c9c9bf;
  --white: #fafaf6;
  --acid: #d8ff4f;
  --green: #2f6a4f;
  --blue: #b9d4d0;
  --orange: #e4a260;
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Manrope", Inter, Arial, sans-serif;
  --radius: 3px;
  --shell: min(1380px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
svg { display: block; }
.shell { width: var(--shell); margin-inline: auto; }
.kicker, .eyebrow { margin: 0; font: 500 11px/1.3 var(--mono); letter-spacing: .1em; }
.eyebrow { display: flex; align-items: center; gap: 9px; color: var(--ink-soft); text-transform: uppercase; }
.pulse-dot { position: relative; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #4c9b64; }
.pulse-dot::after { content: ""; position: absolute; inset: -4px; border: 1px solid #4c9b64; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 30% { transform: scale(.6); opacity: 0; } 50% { opacity: .7; } 100% { transform: scale(1.25); opacity: 0; } }

.site-header { position: relative; z-index: 20; width: 100%; height: 80px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 max(32px, calc((100vw - 1380px) / 2)); border-bottom: 1px solid var(--line); background: rgba(241, 240, 233, .92); backdrop-filter: blur(12px); }
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; font-size: 18px; font-weight: 800; letter-spacing: -.04em; }
.brand-mark { width: 25px; height: 25px; padding: 4px; display: grid; gap: 2px; background: var(--ink); border-radius: 2px; }
.brand-mark i { display: block; background: var(--acid); border-radius: 1px; }
.desktop-nav { display: flex; align-self: stretch; align-items: center; gap: 34px; }
.desktop-nav a, .text-link { position: relative; font: 500 12px/1 var(--mono); }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--ink); transition: right .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 24px; }
.button { min-height: 52px; padding: 0 22px; display: inline-flex; justify-content: center; align-items: center; gap: 22px; border: 1px solid var(--ink); border-radius: var(--radius); font: 600 12px/1 var(--mono); transition: transform .2s ease, color .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 16px; }
.button-small { min-height: 42px; padding-inline: 18px; gap: 16px; }
.button-dark { color: var(--paper); background: var(--ink); }
.button-dark:hover { color: var(--acid); }
.button-accent { background: var(--acid); }
.button-accent:hover { background: #e3ff7a; }
.button-outline { background: transparent; }
.menu-button { display: none; width: 42px; height: 42px; padding: 12px 9px; border: 0; background: transparent; }
.menu-button span { display: block; width: 24px; height: 1px; margin: 6px 0; background: var(--ink); transition: .25s; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-nav { position: absolute; top: 80px; left: 0; right: 0; display: none; padding: 24px 32px 38px; background: var(--paper); border-bottom: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 22px; font-weight: 600; }

.hero { padding-top: 92px; }
.hero h1 { max-width: 1140px; margin: 22px 0 26px; font-size: clamp(72px, 9.3vw, 142px); line-height: .88; letter-spacing: -.078em; font-weight: 600; }
.hero h1 em, .profile-identity h1 em { color: var(--green); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-copy { max-width: 610px; margin: 0 0 50px; font-size: clamp(19px, 2vw, 27px); line-height: 1.42; letter-spacing: -.035em; color: var(--ink-soft); }
.search-panel { width: 100%; min-height: 104px; padding: 16px; display: grid; grid-template-columns: 1fr 1px 1fr auto; align-items: center; border: 1px solid #a8aaa1; background: var(--white); box-shadow: 0 13px 34px rgba(45, 47, 43, .07); }
.search-panel label { padding: 0 28px; display: grid; gap: 9px; }
.search-panel label > span { font: 500 10px/1 var(--mono); letter-spacing: .09em; text-transform: uppercase; color: #70766f; }
.search-panel select, .search-panel input { width: 100%; border: 0; outline: 0; background: transparent; appearance: none; font-size: 17px; font-weight: 600; }
.search-panel select { background: linear-gradient(45deg, transparent 50%, var(--ink) 50%) calc(100% - 3px) 54% / 5px 5px no-repeat, linear-gradient(135deg, var(--ink) 50%, transparent 50%) calc(100% + 2px) 54% / 5px 5px no-repeat; }
.search-panel input::placeholder { color: #8b8e87; }
.search-divider { height: 50px; background: var(--line); }
.search-button { height: 70px; min-width: 190px; }
.search-button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.hero-foot { min-height: 132px; display: grid; grid-template-columns: 1fr 140px 180px; align-items: center; gap: 38px; }
.hero-foot > p { max-width: 440px; font: 400 11px/1.55 var(--mono); color: #777c76; }
.mini-stat { border-left: 1px solid var(--line); padding-left: 24px; display: grid; gap: 3px; }
.mini-stat strong { font-size: 23px; letter-spacing: -.04em; }
.mini-stat span { font: 400 10px/1.2 var(--mono); color: #747974; }
.ticker { overflow: hidden; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--ink); color: var(--paper); }
.ticker div { width: max-content; height: 42px; display: flex; align-items: center; gap: 28px; animation: marquee 34s linear infinite; }
.ticker span { font: 500 10px/1 var(--mono); letter-spacing: .13em; }
.ticker b { color: var(--acid); font-size: 12px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-42%); } }

.explore-section { padding: 118px 0 132px; }
.section-heading { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: end; margin-bottom: 58px; }
.section-heading h2, .trust-section h2, .about-lab h2, .services-heading h2, .hardware-section h2 { margin: 17px 0 0; font-size: clamp(46px, 5.7vw, 80px); line-height: .97; letter-spacing: -.06em; font-weight: 600; }
.section-heading-side { display: grid; gap: 30px; }
.section-heading-side > p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink-soft); }
.filter-button { justify-self: start; min-width: 116px; height: 44px; padding: 0 12px 0 17px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--ink); background: transparent; font: 500 11px var(--mono); }
.filter-count { width: 20px; height: 20px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-size: 9px; }
.filter-button svg { margin-left: auto; width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.filter-drawer { margin: -30px 0 34px; padding: 18px 0; display: none; align-items: center; gap: 10px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.filter-drawer.open { display: flex; }
.filter-drawer > span { margin-right: 10px; font: 500 10px var(--mono); text-transform: uppercase; }
.filter-drawer button { padding: 8px 14px; border: 1px solid var(--line); border-radius: 20px; background: transparent; font: 500 11px var(--mono); }
.filter-drawer button.active { border-color: var(--ink); background: var(--ink); color: white; }
.filter-drawer .clear-filter { margin-left: auto; border: 0; text-decoration: underline; }
.lab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lab-card { min-width: 0; border: 1px solid #babbb3; background: rgba(250, 250, 246, .48); transition: transform .25s, opacity .2s; }
.lab-card:hover { transform: translateY(-5px); }
.lab-card.filtered-out { display: none; }
.lab-visual { position: relative; height: 430px; overflow: hidden; display: block; border-bottom: 1px solid #babbb3; }
.lab-visual::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(0,0,0,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.18) 1px, transparent 1px); background-size: 28px 28px; }
.lab-visual-one { background: #b5c8c4; }
.lab-visual-two { background: #d1b195; }
.lab-visual-three { background: #adb099; }
.availability { position: absolute; z-index: 2; top: 18px; left: 18px; padding: 8px 10px; display: flex; align-items: center; gap: 7px; background: rgba(248,248,243,.9); font: 500 9px var(--mono); letter-spacing: .08em; }
.availability i { width: 6px; height: 6px; border-radius: 50%; background: #3d8656; }
.availability.limited i { background: #dd7a35; }
.visual-label { position: absolute; left: 18px; bottom: 18px; z-index: 2; font: 500 9px/1.55 var(--mono); }
.card-arrow { position: absolute; right: 18px; top: 18px; z-index: 2; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(25,28,26,.55); border-radius: 50%; font-size: 17px; transition: transform .2s, background .2s; }
.lab-card:hover .card-arrow { transform: rotate(45deg); background: var(--acid); }
.rack-illustration { position: absolute; left: 50%; bottom: 35px; width: 43%; min-width: 172px; height: 330px; padding: 18px 12px 14px; transform: translateX(-50%) perspective(600px) rotateY(-4deg); background: #292c2a; border: 7px solid #3b3e3b; box-shadow: 21px 18px 40px rgba(17,25,21,.24); }
.rack-top { height: 34px; display: flex; justify-content: center; align-items: center; gap: 4px; border-bottom: 4px solid #161817; }
.rack-top i { width: 4px; height: 4px; border-radius: 50%; background: var(--acid); }
.rack-unit { position: relative; height: 47px; margin-top: 5px; padding: 8px; display: flex; align-items: center; gap: 5px; background: #111312; border: 1px solid #545954; }
.rack-unit span { flex: 1; height: 24px; background: repeating-linear-gradient(90deg, #292d2a 0 2px, #111 2px 4px); }
.rack-unit b { width: 25px; height: 20px; border: 1px solid #565b56; }
.rack-unit i { width: 4px; height: 4px; border-radius: 50%; background: #5a9b6b; box-shadow: 0 0 5px #5a9b6b; }
.rack-unit-lit::after { content: ""; position: absolute; inset: 5px; border-left: 2px solid var(--acid); }
.rack-base { position: absolute; left: -7px; right: -7px; bottom: -12px; height: 11px; background: #202321; }
.lab-photo-card { position: absolute; z-index: 1; left: 50%; bottom: 34px; height: 330px; width: auto; transform: translateX(-50%) rotate(-1.5deg); border: 7px solid #343835; background: #202321; object-fit: cover; box-shadow: 21px 18px 40px rgba(17,25,21,.27); transition: transform .35s ease; }
.lab-card:hover .lab-photo-card { transform: translateX(-50%) rotate(0) scale(1.025); }
.node-orbit { position: absolute; left: 50%; top: 50%; width: 240px; height: 240px; transform: translate(-50%,-50%); border: 1px solid rgba(25,28,26,.5); border-radius: 50%; }
.node-orbit::before, .node-orbit::after { content: ""; position: absolute; inset: 28px -25px; border: 1px solid rgba(25,28,26,.35); border-radius: 50%; transform: rotate(58deg); }
.node-orbit::after { transform: rotate(-58deg); }
.node-orbit b { position: absolute; inset: 74px; border-radius: 50%; background: var(--ink); box-shadow: 0 12px 35px rgba(0,0,0,.25); }
.node-orbit i { position: absolute; z-index: 2; width: 14px; height: 14px; border: 3px solid var(--ink); background: var(--acid); border-radius: 50%; }
.node-orbit i:nth-child(1) { top: 6px; left: 112px; }.node-orbit i:nth-child(2) { bottom: 27px; left: 12px; }.node-orbit i:nth-child(3) { right: -5px; top: 106px; }
.cube-stack { position: absolute; left: 50%; top: 50%; width: 230px; height: 240px; transform: translate(-50%,-45%); }
.cube-stack i { position: absolute; width: 108px; height: 108px; border: 2px solid var(--ink); background: rgba(216,255,79,.78); box-shadow: inset -18px -18px 0 rgba(0,0,0,.12), 14px 14px 0 rgba(25,28,26,.12); transform: rotate(30deg) skew(-10deg); }
.cube-stack i:nth-child(1){ left:65px;top:0 }.cube-stack i:nth-child(2){ left:0;top:75px;background:#6e796a }.cube-stack i:nth-child(3){ right:0;top:90px;background:#d6a368 }.cube-stack i:nth-child(4){ left:61px;bottom:0;background:#292c2a }
.lab-card-body { padding: 25px 22px 18px; }
.lab-location { margin: 0 0 7px; font: 500 9px var(--mono); letter-spacing: .08em; color: #6a6f69; }
.lab-card h3 { margin: 0; font-size: 24px; line-height: 1.2; letter-spacing: -.04em; }
.lab-blurb { min-height: 51px; margin: 18px 0; font-size: 13px; line-height: 1.55; color: #5a605a; }
.service-tags, .spec-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tags span, .spec-tags span { padding: 6px 8px; border: 1px solid #bbbdb5; border-radius: 2px; font: 500 9px var(--mono); }
.lab-meta { margin-top: 22px; padding-top: 16px; display: flex; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); font: 400 9px var(--mono); color: #696e68; }
.lab-meta strong { color: var(--ink); font-weight: 500; }
.empty-state { padding: 80px 20px; text-align: center; border: 1px solid var(--line); }
.empty-state h3 { margin: 0 0 9px; font-size: 28px; }.empty-state p { margin: 0; color: var(--ink-soft); }

.manifesto { padding: 125px 0; background: var(--ink); color: var(--paper); }
.manifesto-grid { display: grid; grid-template-columns: 170px 1fr 430px; gap: 75px; }
.manifesto .kicker { color: #91968f; }
.manifesto-lead { max-width: 590px; margin: 0; font-size: clamp(48px, 5vw, 75px); line-height: 1.02; letter-spacing: -.06em; }
.manifesto-copy { max-width: 520px; margin: 38px 0 0; font-size: 17px; line-height: 1.7; color: #aaaFA8; }
.steps-list { margin: 0; padding: 0; list-style: none; }
.steps-list li { padding: 25px 0; display: grid; grid-template-columns: 42px 1fr; gap: 18px; border-top: 1px solid #4b4e4b; }
.steps-list li:last-child { border-bottom: 1px solid #4b4e4b; }
.steps-list li > span { color: var(--acid); font: 500 10px var(--mono); }
.steps-list strong { font-size: 18px; }
.steps-list p { margin: 8px 0 0; font-size: 13px; line-height: 1.55; color: #9ca19a; }
.trust-section { padding: 120px 0; display: grid; grid-template-columns: 1.2fr .7fr; gap: 130px; align-items: end; }
.trust-copy > p { margin: 0 0 34px; font-size: 17px; line-height: 1.7; color: var(--ink-soft); }
.arrow-link { width: 100%; padding: 17px 0; display: flex; justify-content: space-between; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); font: 500 11px var(--mono); }
.arrow-link span { font-size: 18px; transition: transform .2s; }.arrow-link:hover span { transform: rotate(45deg); }
.cta-section, .profile-cta { padding: 98px 0; background: var(--green); color: var(--paper); }
.cta-section .kicker, .profile-cta .kicker { color: #bfc7be; }
.cta-inner, .profile-cta > div { display: flex; justify-content: space-between; align-items: center; }
.cta-section h2, .profile-cta h2 { margin: 17px 0 0; font-size: clamp(55px, 7.7vw, 112px); line-height: .9; letter-spacing: -.07em; font-weight: 500; }
.circle-cta { flex: none; width: 190px; height: 190px; padding: 0 38px; display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--acid); border-radius: 50%; background: var(--acid); color: var(--ink); font: 600 11px/1.45 var(--mono); text-align: left; transition: transform .3s, background .3s; }
button.circle-cta { font-family: var(--mono); }
.circle-cta b { font-size: 25px; font-weight: 400; }.circle-cta:hover { transform: rotate(-5deg) scale(1.04); background: transparent; color: var(--paper); }
.site-footer { min-height: 170px; display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 30px; align-items: center; }
.site-footer p, .site-footer small { margin: 0; font: 400 10px var(--mono); color: #787d77; }
.site-footer > div { display: flex; gap: 20px; font: 500 10px var(--mono); }
.site-footer a:hover { text-decoration: underline; }

/* Profile */
.profile-page .site-header { position: absolute; background: transparent; }
.profile-hero { padding-top: 117px; }
.back-link { display: inline-block; margin-bottom: 42px; font: 500 10px var(--mono); color: #5d625c; }
.profile-hero-grid { min-height: 590px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); border-right: 1px solid var(--ink); }
.profile-identity { position: relative; padding: 60px 6.5% 45px; }
.profile-avatar { position: absolute; right: 30px; top: 28px; width: 70px; height: 70px; display: grid; place-items: center; background: var(--ink); color: var(--acid); border-radius: 50%; font: 500 14px var(--mono); }
.profile-avatar i { position: absolute; right: 2px; bottom: 4px; width: 13px; height: 13px; border: 3px solid var(--paper); border-radius: 50%; background: #4f9a65; }
.profile-identity h1 { margin: 27px 0 24px; font-size: clamp(65px, 7.1vw, 104px); line-height: .88; letter-spacing: -.07em; font-weight: 600; }
.profile-identity > p { max-width: 500px; margin: 0; font-size: 18px; line-height: 1.65; color: var(--ink-soft); }
.profile-actions { margin-top: 40px; display: flex; gap: 10px; }
.profile-rack-scene { position: relative; overflow: hidden; display: grid; place-items: center; background: var(--blue); border-left: 1px solid var(--ink); }
.profile-rack-scene::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(#34433e 1px, transparent 1px), linear-gradient(90deg,#34433e 1px,transparent 1px); background-size: 32px 32px; }
.scene-coordinate { position: absolute; z-index: 2; top: 22px; right: 22px; font: 500 9px/1.5 var(--mono); text-align: right; }
.profile-lab-photo { position: absolute; z-index: 1; left: 50%; top: 50%; width: auto; height: 67%; aspect-ratio: 674 / 1200; margin: 0; overflow: hidden; display: grid; place-items: center; border: 7px solid #343835; background: #202321; box-shadow: 24px 19px 42px rgba(16,25,21,.24); transform: translate(-50%, -50%) rotate(.35deg); }
.profile-lab-photo::before { display: none; }
.profile-lab-photo::after { content: ""; position: absolute; z-index: 3; inset: 0; box-shadow: inset 0 0 0 1px rgba(216,255,79,.25); pointer-events: none; }
.profile-lab-photo img { position: relative; z-index: 2; width: 100%; height: 100%; display: block; object-fit: contain; object-position: center; }
.profile-rack { position: relative; z-index: 1; width: 250px; height: 490px; padding: 22px 16px 14px; background: #262927; border: 9px solid #3a3d3a; box-shadow: 35px 28px 55px rgba(16,25,21,.23); transform: perspective(800px) rotateY(-5deg); }
.profile-rack-head { height: 40px; display: flex; justify-content: space-between; align-items: start; font: 500 8px var(--mono); color: #aeb3ad; }
.profile-rack-head i { width: 5px; height: 5px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 7px var(--acid); }
.profile-rack-unit { position: relative; height: 60px; margin-top: 7px; padding: 10px; display: flex; align-items: center; gap: 7px; background: #121413; border: 1px solid #535752; }
.profile-rack-unit span { height: 29px; flex: 1; background: repeating-linear-gradient(90deg,#323632 0 2px,#131513 2px 4px); }
.profile-rack-unit i { width: 4px; height: 4px; border-radius: 50%; background: #529368; box-shadow: 0 0 5px #529368; }
.profile-rack-unit.mesh b { height: 32px; flex: 1; background: radial-gradient(circle,#5d615d 1px,transparent 1.2px) 0 0/4px 4px; }
.profile-rack-unit.bright { border-left: 3px solid var(--acid); }
.profile-rack-foot { position: absolute; left: -9px; right: -9px; bottom: -15px; height: 13px; background: #222523; }
.scene-status { position: absolute; z-index: 2; left: 22px; bottom: 18px; padding: 10px 12px; display: flex; align-items: center; gap: 10px; background: rgba(250,250,246,.9); font: 400 8px/1.55 var(--mono); }
.scene-status > i { width: 7px; height: 7px; border-radius: 50%; background: #40895a; }
.scene-status span { display: grid; }.scene-status strong { font-weight: 500; }
.profile-metrics { border: 1px solid var(--ink); display: grid; grid-template-columns: repeat(4,1fr); }
.profile-metrics > div { min-height: 112px; padding: 22px 26px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--ink); }
.profile-metrics > div:last-child { border-right: 0; }
.profile-metrics span { font: 500 8px var(--mono); letter-spacing: .07em; color: #6d726c; }
.profile-metrics strong { font-size: 26px; font-weight: 600; letter-spacing: -.04em; }.profile-metrics small { font-size: 12px; font-weight: 500; }
.profile-content { padding: 105px 0 140px; display: grid; grid-template-columns: 300px 1fr; gap: 9%; align-items: start; }
.operator-card { position: sticky; top: 30px; padding: 28px 26px; border: 1px solid var(--line); background: var(--white); }
.operator-person { margin: 25px 0; display: flex; align-items: center; gap: 14px; }
.person-avatar { position: relative; width: 47px; height: 47px; display: grid; place-items: center; border-radius: 50%; background: #b7c9b8; font: 600 12px var(--mono); }
.person-avatar span { position: absolute; right: 0; bottom: 1px; width: 10px; height: 10px; border: 2px solid var(--white); border-radius: 50%; background: #4b9660; }
.operator-person h3 { margin: 0 0 4px; font-size: 17px; }.operator-person p { margin: 0; font: 400 9px var(--mono); color: #777c77; }
.operator-bio { margin: 0; font-size: 13px; line-height: 1.7; color: var(--ink-soft); }
.operator-card dl { margin: 27px 0 0; }.operator-card dl div { padding: 12px 0; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font: 400 9px var(--mono); }.operator-card dt { color: #727771; }.operator-card dd { margin: 0; }.operator-card dd span { color: var(--green); }
.operator-site-link { color: var(--green); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.text-button { width: 100%; margin-top: 10px; padding: 16px 0; display: flex; justify-content: space-between; border: 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: transparent; font: 500 10px var(--mono); }
.text-button span { font-size: 17px; }
.profile-main { min-width: 0; }
.about-lab { padding-bottom: 100px; }
.about-lab > p:not(.kicker) { max-width: 720px; margin: 30px 0 0; font-size: 17px; line-height: 1.8; color: var(--ink-soft); }
.principles { margin-top: 48px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.principles div { min-height: 105px; padding: 17px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); }.principles div:last-child { border-right: 0; }.principles span { font: 500 9px var(--mono); color: var(--green); }.principles strong { font-size: 13px; }
.services-section { scroll-margin-top: 25px; padding-top: 92px; border-top: 1px solid var(--ink); }
.services-heading { margin-bottom: 46px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.services-heading > span { margin-bottom: 8px; display: flex; align-items: center; gap: 8px; font: 500 9px var(--mono); }.services-heading > span i { width: 7px; height: 7px; border-radius: 50%; background: #4d9460; }
.service-list { border-top: 1px solid var(--ink); }
.service-card { min-height: 240px; padding: 30px 0; display: grid; grid-template-columns: 35px 74px minmax(0,1fr) 130px; gap: 24px; border-bottom: 1px solid var(--line); }
.service-number { font: 500 9px var(--mono); color: #737872; }
.service-icon { width: 62px; height: 62px; display: grid; place-items: center; border: 1px solid var(--ink); background: var(--acid); }.service-icon svg { width: 37px; fill: none; stroke: currentColor; stroke-width: 1.25; }
.service-type { font: 500 9px var(--mono); color: var(--green); letter-spacing: .08em; }
.service-info h3 { margin: 8px 0 12px; font-size: 25px; letter-spacing: -.04em; }.service-info > p { max-width: 520px; margin: 0 0 22px; font-size: 13px; line-height: 1.65; color: var(--ink-soft); }
.service-price { display: flex; flex-direction: column; align-items: end; }.service-price > span { font: 500 8px var(--mono); color: #747974; }.service-price strong { margin: 5px 0 22px; font-size: 27px; letter-spacing: -.04em; }.service-price small { font-size: 11px; font-weight: 500; color: #6c716b; }.service-price .button { margin-top: auto; min-height: 42px; padding: 0 15px; gap: 14px; }
.service-price.capability-action strong { margin-top: 8px; font: 500 12px var(--mono); letter-spacing: .06em; color: var(--green); }
.hardware-section { margin-top: 110px; padding: 85px 0; display: grid; grid-template-columns: 1fr 1.25fr; gap: 80px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.hardware-list { margin: 0; }.hardware-list div { padding: 14px 0; display: grid; grid-template-columns: 110px 1fr; gap: 20px; border-top: 1px solid var(--line); font-size: 12px; }.hardware-list div:last-child { border-bottom: 1px solid var(--line); }.hardware-list dt { font: 400 9px var(--mono); color: #747974; }.hardware-list dd { margin: 0; font-weight: 600; }
.reviews-section { padding-top: 105px; }.reviews-heading { display: flex; justify-content: space-between; align-items: end; }.reviews-heading h2 { margin: 10px 0 0; font-size: 67px; letter-spacing: -.07em; }.reviews-heading h2 span { color: var(--green); font-size: 24px; }.reviews-heading > p { margin: 0; font: 400 10px/1.6 var(--mono); color: #717671; text-align: right; }
.reviews-section blockquote { margin: 45px 0 0; padding: 42px; background: var(--ink); color: var(--paper); }.reviews-section blockquote > p { max-width: 780px; margin: 0 0 42px; font-family: Georgia, serif; font-size: clamp(28px,3vw,42px); line-height: 1.3; letter-spacing: -.035em; }.reviews-section blockquote footer { display: grid; gap: 5px; font: 400 9px var(--mono); }.reviews-section blockquote footer strong { font-weight: 500; color: var(--acid); }.reviews-section blockquote footer span { color: #9da19c; }
.portfolio-statement .reviews-heading h2 { font-size: clamp(48px, 5.4vw, 76px); line-height: .94; }
.profile-cta > div { width: var(--shell); margin: auto; }

/* Connection modal */
.connect-dialog { width: min(680px, calc(100vw - 28px)); max-height: calc(100vh - 28px); padding: 0; overflow: auto; border: 1px solid var(--ink); background: var(--paper); color: var(--ink); box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.connect-dialog::backdrop { background: rgba(20,23,21,.66); backdrop-filter: blur(5px); }
.dialog-close { position: absolute; z-index: 2; top: 18px; right: 20px; width: 34px; height: 34px; border: 1px solid var(--ink); border-radius: 50%; background: transparent; font-size: 22px; line-height: 1; }
.dialog-step { padding: 52px; }.dialog-step h2 { margin: 16px 0; font-size: 52px; line-height: .97; letter-spacing: -.06em; }.dialog-intro { max-width: 510px; margin: 0 0 30px; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.connect-dialog form { display: grid; gap: 18px; }.connect-dialog label { display: grid; gap: 8px; }.connect-dialog label > span { font: 500 9px var(--mono); letter-spacing: .08em; }.connect-dialog input, .connect-dialog textarea { width: 100%; padding: 14px 15px; border: 1px solid #aeb0a8; border-radius: 0; background: var(--white); outline: 0; }.connect-dialog input:focus, .connect-dialog textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }.connect-dialog input[readonly] { background: #e3e3dc; }.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }.connect-dialog form .button { justify-self: start; }.connect-dialog form > small { font: 400 8px var(--mono); color: #777c76; }.dialog-success { padding-block: 100px; text-align: center; }.success-mark { margin: 0 auto 25px; width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; background: var(--acid); font-size: 26px; }.dialog-success .kicker { display: block; }.dialog-success p:not(.kicker) { max-width: 420px; margin: 20px auto 30px; color: var(--ink-soft); line-height: 1.6; }
.toast { position: fixed; z-index: 99; left: 50%; bottom: 24px; padding: 12px 16px; transform: translate(-50%, 20px); opacity: 0; pointer-events: none; background: var(--ink); color: var(--paper); border: 1px solid #494d49; font: 500 10px var(--mono); transition: .25s; }.toast.show { opacity: 1; transform: translate(-50%,0); }

@media (max-width: 1040px) {
  :root { --shell: min(100% - 40px, 920px); }
  .site-header { padding-inline: 20px; grid-template-columns: 1fr auto; }.desktop-nav { display: none; }.menu-button { display: block; }.mobile-nav.open { display: block; }.header-actions { grid-column: 2; }
  .hero h1 { font-size: clamp(66px, 11vw, 104px); }
  .lab-grid { grid-template-columns: repeat(2,1fr); }.lab-card:last-child { grid-column: 1 / -1; }.lab-card:last-child .lab-visual { height: 360px; }
  .manifesto-grid { grid-template-columns: 110px 1fr; }.steps-list { grid-column: 2; }
  .profile-hero-grid { grid-template-columns: 1.08fr .92fr; }.profile-identity { padding-left: 35px; padding-right: 35px; }.profile-rack { width: 210px; }.profile-metrics > div { padding: 18px; }
  .profile-content { grid-template-columns: 250px 1fr; gap: 5%; }.service-card { grid-template-columns: 30px 62px minmax(0,1fr); }.service-price { grid-column: 3; flex-direction: row; align-items: center; gap: 12px; }.service-price strong { margin: 0 auto 0 5px; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100vw - 30px); }
  .site-header { height: 68px; }.brand { font-size: 16px; }.brand-mark { width: 23px; height: 23px; }.header-actions { gap: 5px; }.header-actions .button { display: none; }.mobile-nav { top: 68px; padding-inline: 15px; }.desktop-only { display: none; }
  .hero { padding-top: 67px; }.hero h1 { margin-top: 16px; font-size: clamp(56px, 20vw, 88px); line-height: .87; }.hero-copy { margin-bottom: 34px; font-size: 18px; }
  .search-panel { padding: 0; display: grid; grid-template-columns: 1fr; }.search-panel label { padding: 20px; border-bottom: 1px solid var(--line); }.search-divider { display: none; }.search-button { margin: 10px; min-width: 0; }
  .hero-foot { min-height: 155px; grid-template-columns: 1fr 1fr; gap: 14px; }.hero-foot > p { grid-column: 1 / -1; margin: 26px 0 6px; }.mini-stat { padding-left: 12px; }
  .explore-section { padding: 80px 0; }.section-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 38px; }.section-heading h2, .trust-section h2, .about-lab h2, .services-heading h2, .hardware-section h2 { font-size: 47px; }.section-heading-side { gap: 20px; }.filter-drawer.open { flex-wrap: wrap; }.filter-drawer > span { width: 100%; }.filter-drawer .clear-filter { margin-left: 0; }
  .lab-grid { grid-template-columns: 1fr; }.lab-card:last-child { grid-column: auto; }.lab-visual, .lab-card:last-child .lab-visual { height: 390px; }.lab-blurb { min-height: 0; }
  .manifesto { padding: 80px 0; }.manifesto-grid { grid-template-columns: 1fr; gap: 30px; }.manifesto-lead { font-size: 48px; }.steps-list { grid-column: 1; }.manifesto-copy { font-size: 15px; }
  .trust-section { padding: 80px 0; grid-template-columns: 1fr; gap: 38px; }.cta-section, .profile-cta { padding: 75px 0; }.cta-inner, .profile-cta > div { align-items: end; }.cta-section h2, .profile-cta h2 { font-size: 51px; }.circle-cta { width: 125px; height: 125px; padding: 0 23px; font-size: 8px; }.circle-cta b { font-size: 18px; }
  .site-footer { padding: 45px 0; grid-template-columns: 1fr 1fr; gap: 24px; }.site-footer > div { flex-wrap: wrap; }.site-footer small { text-align: right; }
  .profile-page .site-header { position: relative; }.profile-hero { padding-top: 22px; }.back-link { margin-bottom: 22px; }.profile-hero-grid { grid-template-columns: 1fr; }.profile-identity { padding: 42px 23px; }.profile-avatar { width: 56px; height: 56px; }.profile-identity h1 { font-size: 65px; }.profile-identity > p { font-size: 15px; }.profile-actions { display: grid; }.profile-rack-scene { min-height: 560px; border-left: 0; border-top: 1px solid var(--ink); }.profile-lab-photo { width: auto; height: 67%; max-width: calc(100% - 64px); }.profile-lab-photo img { width: 100%; height: 100%; max-width: none; }.profile-metrics { grid-template-columns: 1fr 1fr; }.profile-metrics strong { font-size: 20px; }.profile-metrics > div { border-bottom: 1px solid var(--ink); }.profile-metrics > div:nth-child(2) { border-right: 0; }.profile-metrics > div:nth-child(3),.profile-metrics > div:nth-child(4) { border-bottom: 0; }
  .profile-content { padding: 65px 0 90px; grid-template-columns: 1fr; }.operator-card { position: static; margin-bottom: 75px; }.about-lab { padding-bottom: 70px; }.about-lab > p:not(.kicker) { font-size: 15px; }.principles { grid-template-columns: 1fr; }.principles div { min-height: 75px; border-right: 0; border-bottom: 1px solid var(--line); }.principles div:last-child { border-bottom: 0; }
  .services-section { padding-top: 65px; }.services-heading { align-items: start; flex-direction: column; }.service-card { padding: 25px 0; grid-template-columns: 30px 1fr; gap: 16px; }.service-icon { grid-column: 2; }.service-info { grid-column: 2; }.service-price { grid-column: 2; flex-wrap: wrap; }.service-price strong { margin-left: 0; }.service-price .button { margin-left: auto; }
  .hardware-section { margin-top: 70px; padding: 65px 0; grid-template-columns: 1fr; gap: 40px; }.hardware-list div { grid-template-columns: 80px 1fr; }.reviews-section { padding-top: 70px; }.reviews-section blockquote { padding: 28px 24px; }.reviews-heading h2 { font-size: 55px; }
  .dialog-step { padding: 42px 22px; }.dialog-step h2 { font-size: 42px; }.form-row { grid-template-columns: 1fr; }
}

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