/* TechStop v1 — static site styles */
:root {
  --navy: #103050;
  --navy-deep: #081b2d;
  --navy-black: #061522;
  --cyan: #52bfcd;
  --cyan-soft: #a9e3e8;
  --coral: #eb7971;
  --ink: #11293f;
  --muted: #5f7281;
  --paper: #f6f8f7;
  --white: #ffffff;
  --line: #d8e0e3;
  --shell: min(1240px, calc(100% - 80px));
  --font: "Avenir Next", Avenir, "Century Gothic", "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2,.75,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { background: var(--cyan); color: var(--navy-deep); }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 12px 18px; background: white; color: var(--navy); font-weight: 700; transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: none; }

/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; color: white; transition: background .35s, box-shadow .35s, color .35s; }
.site-header.is-scrolled, .site-header.menu-active { background: rgba(246,248,247,.97); box-shadow: 0 1px 0 rgba(16,48,80,.12); color: var(--navy); }
.header-inner { height: 84px; display: flex; align-items: center; justify-content: space-between; }
.brand { position: relative; display: block; width: 218px; height: 50px; }
.brand img { position: absolute; inset: 0; width: 100%; height: auto; transition: opacity .35s; }
.brand-dark { opacity: 0; }
.site-header.is-scrolled .brand-light, .site-header.menu-active .brand-light { opacity: 0; }
.site-header.is-scrolled .brand-dark, .site-header.menu-active .brand-dark { opacity: 1; }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a { position: relative; text-decoration: none; font-size: .79rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--cyan); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 12px 18px; border: 1px solid currentColor; }
.nav-cta:hover { background: var(--cyan); border-color: var(--cyan); color: var(--navy-deep); }
.menu-toggle { display: none; min-width: 48px; min-height: 48px; border: 0; background: none; color: inherit; }

/* Hero */
.hero { position: relative; min-height: 820px; height: min(940px, 100svh); display: flex; align-items: center; isolation: isolate; overflow: hidden; background: var(--navy-deep); color: white; }
.hero-media, .hero-media img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center 52%; }
.hero-media { z-index: -3; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: rgba(3,16,28,.08); }
.hero-shade { z-index: -2; background: linear-gradient(90deg, rgba(5,20,34,.96) 0%, rgba(5,20,34,.86) 40%, rgba(5,20,34,.24) 72%, rgba(5,20,34,.18)), linear-gradient(0deg, rgba(5,20,34,.82), transparent 42%); }
.signal-map { position: absolute; z-index: -1; inset: 5% -8% 0 34%; width: 75%; height: 95%; overflow: visible; opacity: .8; }
.signal-path { fill: none; stroke: var(--cyan); stroke-width: 1.25; stroke-dasharray: .01 .025; opacity: .48; }
.signal-path-faint { opacity: .2; }
.signal-pulse { fill: var(--cyan); filter: drop-shadow(0 0 7px var(--cyan)); }
.signal-check { fill: var(--coral); stroke: white; stroke-width: 2; filter: drop-shadow(0 0 8px rgba(235,121,113,.6)); }
.hero-content { padding-top: 78px; }
.eyebrow, .kicker { margin: 0 0 22px; color: var(--navy); font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; color: var(--cyan-soft); }
.eyebrow span { width: 28px; height: 2px; margin-right: 12px; background: var(--coral); }
.hero h1 { max-width: 970px; margin: 0; font-size: clamp(3.5rem, 6.5vw, 6.65rem); line-height: .96; letter-spacing: -.055em; text-wrap: balance; }
.hero h1 em { color: var(--cyan-soft); font-style: normal; font-weight: 500; }
.hero-copy { max-width: 620px; margin: 30px 0 0; color: #d7e1e7; font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; padding: 0 22px; border: 0; text-decoration: none; font-weight: 800; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: transform .2s var(--ease), background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--cyan); color: var(--navy-deep); }
.button-primary:hover { background: white; }
.button-primary span { color: var(--coral); font-size: 1.1rem; }
.text-link { min-height: 48px; display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.45); text-decoration: none; font-size: .9rem; font-weight: 700; }
.text-link:hover { border-color: var(--cyan); color: var(--cyan-soft); }
.hero-status { position: absolute; right: 0; bottom: 34px; left: 0; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.58); font-size: .64rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.status-rule { width: 56px; height: 1px; background: rgba(255,255,255,.35); }

/* Global sections */
.section { padding: 138px 0; }
.section-dark { background: var(--navy-deep); color: white; }
.section-heading { margin-bottom: 68px; }
.split-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; }
.section-heading h2, .principles h2, .process h2, .contact h2 { margin: 0; font-size: clamp(2.7rem, 5vw, 5rem); line-height: 1.02; letter-spacing: -.05em; }
.section-heading > p { max-width: 440px; margin: 0 0 7px; color: var(--muted); font-size: 1.06rem; }
.kicker { display: flex; align-items: center; gap: 12px; }
.kicker::before { content: ""; width: 20px; height: 2px; background: var(--coral); }
.kicker-light { color: var(--cyan-soft); }

/* Service explorer */
.services { background: var(--paper); }
.service-explorer { min-height: 610px; display: grid; grid-template-columns: 38% 62%; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.service-tabs { border-right: 1px solid var(--line); }
.service-tab { position: relative; width: 100%; min-height: 148px; display: grid; grid-template-columns: 42px 1fr 30px; align-items: center; gap: 14px; padding: 26px 28px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink); text-align: left; cursor: pointer; transition: background .3s, color .3s; }
.service-tab:last-child { border-bottom: 0; }
.service-tab::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--cyan); transform: scaleY(0); transition: transform .3s var(--ease); }
.service-tab:hover { background: #f0f5f5; }
.service-tab.is-active { background: var(--navy); color: white; }
.service-tab.is-active::before { transform: scaleY(1); }
.tab-number { align-self: start; padding-top: 5px; color: var(--coral); font-size: .67rem; font-weight: 800; letter-spacing: .14em; }
.service-tab strong { display: block; font-size: clamp(1.15rem, 1.6vw, 1.48rem); letter-spacing: -.025em; }
.service-tab small { display: block; margin-top: 8px; color: var(--muted); font-size: .72rem; letter-spacing: .05em; }
.service-tab.is-active small { color: #b9cbd4; }
.tab-arrow { justify-self: end; color: var(--cyan); font-size: 1.2rem; transform: rotate(0); transition: transform .3s; }
.service-tab.is-active .tab-arrow { transform: rotate(45deg); }
.tab-short { display: none; }
.service-stage { min-width: 0; background: var(--navy-deep); color: white; overflow: hidden; }
.service-panel { height: 100%; min-height: 610px; display: grid; grid-template-columns: 47% 53%; align-items: center; animation: panelIn .55s var(--ease) both; }
.service-panel[hidden] { display: none; }
.panel-copy { padding: 55px 24px 55px 55px; }
.panel-label { margin: 0 0 18px; color: var(--cyan); font-size: .68rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.panel-copy h3 { margin: 0; font-size: clamp(2rem, 3.1vw, 3.15rem); line-height: 1.02; letter-spacing: -.045em; }
.panel-copy > p:not(.panel-label) { margin: 24px 0; color: #b9c8d1; }
.panel-copy ul { margin: 0; padding: 0; list-style: none; }
.panel-copy li { position: relative; padding: 9px 0 9px 20px; border-top: 1px solid rgba(255,255,255,.1); color: #e5edf0; font-size: .82rem; }
.panel-copy li::before { content: ""; position: absolute; top: 17px; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.demo-frame { position: relative; height: 410px; margin-right: -40px; border: 1px solid rgba(82,191,205,.28); background-color: #0d263b; box-shadow: 0 40px 70px rgba(0,0,0,.34); overflow: hidden; }
.demo-frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(82,191,205,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(82,191,205,.045) 1px, transparent 1px); background-size: 34px 34px; }
.browser-bar { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 15px; border-bottom: 1px solid rgba(255,255,255,.12); }
.browser-bar i { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); }
.browser-bar i:last-of-type { background: var(--coral); }
.browser-bar span { margin-left: 12px; color: #728c9c; font: 10px ui-monospace, monospace; }
.wire-copy { position: absolute; top: 93px; left: 38px; width: 46%; }
.wire-copy span { display: block; width: 54px; height: 6px; margin-bottom: 25px; background: var(--coral); }
.wire-copy strong { display: block; width: 100%; height: 17px; margin: 9px 0; background: #d9e6e8; transform-origin: left; animation: wireGrow .75s var(--ease) both; }
.wire-copy strong:nth-child(3) { width: 72%; animation-delay: .12s; }
.wire-copy em { display: block; width: 86px; height: 28px; margin-top: 26px; background: var(--cyan); }
.wire-image { position: absolute; top: 75px; right: 0; width: 38%; height: 270px; display: grid; place-items: center; background: #123853; color: var(--cyan); font-size: 3rem; }
.build-cursor { position: absolute; top: 100px; left: 28px; width: 10px; height: 22px; border-left: 2px solid var(--coral); animation: cursor 1s step-end infinite; }
.ai-demo { display: grid; place-items: center; }
.input-node, .output-node, .review-node { position: absolute; z-index: 2; padding: 10px 13px; border: 1px solid rgba(82,191,205,.35); background: #102e45; color: #dce9ed; font-size: .7rem; font-weight: 700; }
.input-node { top: 48px; left: 28px; }
.output-node { right: 18px; bottom: 42px; }
.model-node { position: relative; z-index: 2; width: 128px; height: 128px; display: grid; place-items: center; border: 1px solid var(--cyan); border-radius: 50%; color: var(--cyan); font-size: 1.7rem; font-weight: 800; }
.model-node::after { content: ""; position: absolute; inset: -16px; border: 1px dashed rgba(82,191,205,.32); border-radius: 50%; animation: spin 18s linear infinite; }
.model-node i { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--coral); }
.model-node i:nth-child(2) { top: 23px; left: 15px; }.model-node i:nth-child(3) { top: 30px; right: 13px; }.model-node i:nth-child(4) { bottom: 17px; left: 52px; }
.review-node { right: 27px; top: 50px; display: flex; align-items: center; gap: 10px; border-color: var(--coral); }
.review-node b { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); color: var(--navy-deep); }
.route { position: absolute; z-index: 1; border-top: 1px dashed var(--cyan); transform-origin: left; animation: routeGrow 1s var(--ease) both; }
.route-one { top: 74px; left: 95px; width: 165px; transform: rotate(26deg); }.route-two { right: 80px; bottom: 105px; width: 170px; transform: rotate(24deg); }
.hosting-demo { background-image: linear-gradient(rgba(82,191,205,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(82,191,205,.045) 1px, transparent 1px), url("assets/images/datacenter-mobile.webp"); background-size: 34px 34px, 34px 34px, cover; background-position: center; }
.hosting-demo::before { content: ""; position: absolute; inset: 0; background: rgba(6,21,34,.75); }
.rack { position: absolute; z-index: 2; top: 66px; width: 85px; height: 210px; padding: 18px 10px; border: 2px solid #34536a; background: #0a1f31; }
.rack-a { left: 32px; }.rack-b { right: 25px; }
.rack i { display: block; height: 31px; margin-bottom: 9px; border: 1px solid #24465d; background: repeating-linear-gradient(90deg, #153d54 0 5px, #0b2639 5px 9px); }
.rack i::after { content: ""; display: block; width: 4px; height: 4px; margin: 12px 0 0 57px; border-radius: 50%; background: var(--cyan); box-shadow: 8px 0 var(--coral); }
.deploy-line { position: absolute; z-index: 3; top: 166px; right: 104px; left: 112px; height: 2px; background: rgba(82,191,205,.25); }
.deploy-line span { display: block; width: 12px; height: 12px; margin-top: -5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation: deploy 2.5s var(--ease) infinite; }
.workload { position: absolute; z-index: 3; top: 135px; left: calc(50% - 43px); width: 86px; padding: 7px; border: 1px solid var(--cyan); background: #102e45; color: #d9e8ec; text-align: center; font: 10px ui-monospace, monospace; }
.host-status { position: absolute; z-index: 3; bottom: 38px; left: 50%; transform: translateX(-50%); padding: 9px 14px; background: var(--navy-deep); color: #dce8ec; font-size: .69rem; white-space: nowrap; }
.host-status b { margin-left: 8px; color: var(--coral); }

/* Process */
.process { position: relative; min-height: 900px; overflow: hidden; isolation: isolate; }
.process-image, .process-overlay, .process-image img, .process-image picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.process-image { z-index: -3; }.process-image img { object-fit: cover; }
.process-overlay { z-index: -2; background: linear-gradient(90deg, rgba(5,18,31,.98) 0%, rgba(5,18,31,.88) 48%, rgba(5,18,31,.3)), linear-gradient(0deg, rgba(5,18,31,.9), rgba(5,18,31,.08) 62%); }
.process-inner { position: relative; }
.process-heading { max-width: 780px; }
.process-heading > p:last-child { max-width: 520px; color: #bac8d0; }
.process-story { margin-top: 110px; }
.process-rail { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-step { position: relative; min-height: 112px; padding: 0 20px 22px 0; border: 0; border-bottom: 2px solid rgba(255,255,255,.25); background: none; color: white; text-align: left; cursor: pointer; }
.process-step::after { content: ""; position: absolute; right: 0; bottom: -6px; width: 10px; height: 10px; border: 2px solid rgba(255,255,255,.5); border-radius: 50%; background: var(--navy-deep); transition: .3s; }
.process-step span { display: block; margin-bottom: 23px; color: var(--cyan); font-size: .66rem; font-weight: 800; letter-spacing: .14em; }
.process-step strong { display: block; font-size: 1rem; }
.process-step i { position: absolute; right: 0; bottom: -2px; left: 0; height: 2px; background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform .55s var(--ease); }
.process-step.is-active i, .process-step.is-complete i { transform: scaleX(1); }
.process-step.is-active::after { border-color: var(--cyan); background: var(--cyan); box-shadow: 0 0 0 6px rgba(82,191,205,.13); }
.process-step.checkpoint b { position: absolute; top: 42px; right: 18px; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); color: var(--navy-deep); font-size: .75rem; }
.process-detail { max-width: 600px; min-height: 200px; margin: 54px 0 0 auto; padding-left: 34px; border-left: 1px solid rgba(82,191,205,.45); animation: detailIn .4s var(--ease) both; }
.detail-index { color: var(--coral); font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.process-detail h3 { margin: 0 0 15px; font-size: clamp(1.65rem, 3vw, 2.6rem); line-height: 1.1; letter-spacing: -.035em; }
.process-detail > p:last-child { max-width: 510px; margin: 0; color: #b9c8d0; }

/* Principles */
.principles { background: #fdfdfc; }
.principles-layout { display: grid; grid-template-columns: 1fr .8fr; gap: 120px; align-items: start; }
.principles-intro { position: sticky; top: 130px; }
.principles h2 em { color: var(--cyan); font-style: normal; }
.principles-intro > p:last-child { max-width: 520px; margin-top: 30px; color: var(--muted); font-size: 1.08rem; }
.principle-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.principle-list li { display: grid; grid-template-columns: 48px 1fr; column-gap: 18px; padding: 31px 0; border-bottom: 1px solid var(--line); }
.principle-list span { grid-row: 1 / span 2; color: var(--coral); font-size: .67rem; font-weight: 800; letter-spacing: .13em; }
.principle-list strong { font-size: 1.28rem; }
.principle-list p { margin: 7px 0 0; color: var(--muted); }

/* Portfolio */
.portfolio { background: #e8eef0; }
.portfolio-heading { display: grid; grid-template-columns: 1fr .72fr; gap: 80px; align-items: end; }
.portfolio-list { counter-reset: item; border-top: 1px solid #b9c7cc; }
.portfolio-item { position: relative; display: grid; grid-template-columns: 90px 1.1fr 1fr auto; gap: 30px; align-items: center; min-height: 180px; padding: 26px 0; border-bottom: 1px solid #b9c7cc; overflow: hidden; }
.portfolio-item::before { counter-increment: item; content: "0" counter(item); align-self: start; padding-top: 9px; color: var(--coral); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.portfolio-item::after { content: ""; position: absolute; inset: 0; z-index: 0; background: var(--navy); transform: translateY(101%); transition: transform .45s var(--ease); }
.portfolio-item:hover::after, .portfolio-item:focus-within::after { transform: none; }
.portfolio-item > * { position: relative; z-index: 1; }
.portfolio-label { align-self: start; margin: 0; color: var(--navy); font-size: .66rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.portfolio-item h3 { margin: 9px 0 0; font-size: clamp(1.35rem, 2.3vw, 2.05rem); line-height: 1.08; letter-spacing: -.035em; }
.portfolio-summary { margin: 0; color: var(--muted); font-size: .9rem; }
.portfolio-tags { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.portfolio-tags span { padding: 6px 9px; border: 1px solid #adbdc3; font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.portfolio-item:hover, .portfolio-item:focus-within { color: white; }
.portfolio-item:hover .portfolio-label, .portfolio-item:hover .portfolio-summary, .portfolio-item:focus-within .portfolio-label, .portfolio-item:focus-within .portfolio-summary { color: #bad0d7; }
.portfolio-item:hover .portfolio-tags span { border-color: rgba(255,255,255,.35); }

/* Contact and footer */
.contact { position: relative; overflow: hidden; text-align: center; }
.contact-grid { position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(var(--cyan) 1px, transparent 1px), linear-gradient(90deg, var(--cyan) 1px, transparent 1px); background-size: 70px 70px; mask-image: radial-gradient(circle at center, black, transparent 70%); }
.contact-inner { position: relative; z-index: 1; max-width: 960px; }
.contact-mark { width: 84px; height: 84px; margin: 0 auto 34px; filter: drop-shadow(0 18px 25px rgba(0,0,0,.3)); }
.contact .kicker { justify-content: center; }
.contact h2 { font-size: clamp(3rem, 6vw, 6.3rem); }
.contact-inner > p:not(.kicker) { max-width: 650px; margin: 28px auto; color: #b7c7d0; }
.contact-actions { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 34px; }
.button-disabled { border: 1px solid #607382; background: transparent; color: #a8b4bc; cursor: not-allowed; }
.button-disabled:hover { transform: none; }
.contact-actions small { color: #788c99; }
.contact-actions .button-primary { min-width: 240px; }
.site-footer { padding: 62px 0; background: #fdfdfc; color: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.15fr 1fr auto; gap: 50px; align-items: start; }
.footer-brand { width: 190px; }.footer-brand img { width: 100%; }
.footer-grid > p { margin: 0; color: var(--muted); font-size: .82rem; }
.footer-grid nav { display: flex; gap: 25px; }
.footer-grid nav a { font-size: .72rem; font-weight: 800; text-decoration: none; text-transform: uppercase; }
.footer-grid nav a:hover { color: #287e89; }
.copyright { grid-column: 2; padding-top: 22px; border-top: 1px solid var(--line); }

/* Motion */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@keyframes panelIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }
@keyframes wireGrow { from { transform: scaleX(0); } }
@keyframes cursor { 50% { opacity: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes routeGrow { from { width: 0; } }
@keyframes deploy { from { transform: translateX(0); } to { transform: translateX(200px); } }
@keyframes detailIn { from { opacity: 0; transform: translateY(10px); } }

/* Tablet */
@media (max-width: 980px) {
  :root { --shell: min(100% - 48px, 880px); }
  .site-nav { gap: 20px; }.site-nav a { font-size: .7rem; }.brand { width: 190px; }
  .hero { min-height: 760px; }.hero h1 { font-size: clamp(3.7rem, 9vw, 6rem); }.signal-map { inset-left: 25%; width: 95%; }
  .section { padding: 110px 0; }.split-heading, .portfolio-heading { gap: 40px; }
  .service-explorer { grid-template-columns: 34% 66%; }.service-tab { grid-template-columns: 30px 1fr; padding: 22px 18px; }.service-tab .tab-arrow { display: none; }.service-panel { grid-template-columns: 1fr; align-content: start; }.panel-copy { padding: 45px 42px 26px; }.panel-copy h3 br { display: none; }.demo-frame { height: 300px; margin: 0 0 0 42px; }
  .principles-layout { gap: 60px; }.process { min-height: 860px; }
  .portfolio-item { grid-template-columns: 55px 1fr 1fr; }.portfolio-tags { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }.footer-grid nav { grid-column: 2; grid-row: 1; flex-direction: column; gap: 10px; }.copyright { grid-column: 2; }
}

/* Phone */
@media (max-width: 700px) {
  :root { --shell: calc(100% - 36px); }
  html { scroll-padding-top: 70px; }
  .header-inner { height: 70px; }.brand { width: 168px; }
  .menu-toggle { position: relative; z-index: 2; display: grid; grid-template-columns: auto 24px; align-items: center; gap: 10px; padding: 0; }
  .menu-label { font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .menu-lines, .menu-lines::before { display: block; width: 23px; height: 2px; background: currentColor; transition: transform .25s var(--ease); }
  .menu-lines { position: relative; transform: translateY(-4px); }.menu-lines::before { content: ""; position: absolute; top: 8px; }
  .menu-toggle[aria-expanded="true"] .menu-lines { transform: rotate(45deg); }.menu-toggle[aria-expanded="true"] .menu-lines::before { top: 0; transform: rotate(90deg); }
  .site-nav { position: fixed; inset: 69px 0 auto; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 20px 18px 34px; background: var(--paper); color: var(--navy); box-shadow: 0 18px 30px rgba(6,21,34,.15); visibility: hidden; opacity: 0; transform: translateY(-15px); transition: .25s var(--ease); }
  .site-header.menu-active .site-nav { visibility: visible; opacity: 1; transform: none; }
  .site-nav a { min-height: 54px; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-size: .82rem; }.site-nav a:not(.nav-cta)::after { display: none; }.nav-cta { justify-content: center; margin-top: 16px; border: 0; background: var(--cyan); }
  .hero { min-height: 760px; height: 100svh; align-items: flex-end; padding-bottom: 100px; }.hero-media img { object-position: 64% center; }.hero-shade { background: linear-gradient(0deg, rgba(5,20,34,.98) 0%, rgba(5,20,34,.86) 58%, rgba(5,20,34,.35) 100%); }.signal-map { inset: 10% -45% auto 3%; width: 145%; height: 66%; opacity: .48; }
  .hero-content { padding-top: 110px; }.hero h1 { font-size: clamp(3rem, 13.8vw, 4rem); line-height: .98; }.hero-copy { margin-top: 23px; font-size: 1rem; }.hero-actions { align-items: stretch; flex-direction: column; gap: 13px; margin-top: 28px; }.text-link { width: max-content; }.hero-status { bottom: 22px; }
  .section { padding: 84px 0; }.section-heading { margin-bottom: 45px; }.split-heading, .portfolio-heading { grid-template-columns: 1fr; gap: 24px; }.section-heading h2, .principles h2, .process h2, .contact h2 { font-size: clamp(2.55rem, 12vw, 3.5rem); }.section-heading > p { font-size: .97rem; }
  .service-explorer { display: block; min-height: 0; border: 0; background: transparent; }.service-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; border: 0; }.service-tab { min-width: 0; min-height: 50px; display: grid; grid-template-columns: auto 1fr; gap: 5px; padding: 0 8px; border: 1px solid var(--line) !important; white-space: nowrap; }.service-tab::before, .service-tab .tab-long, .service-tab .tab-arrow { display: none; }.tab-short { display: inline; overflow: hidden; font-size: .7rem; font-weight: 800; text-overflow: ellipsis; }.tab-number { align-self: center; padding: 0; font-size: .58rem; }.service-stage { margin-top: 12px; }.service-panel { min-height: auto; display: block; }.panel-copy { padding: 34px 25px 26px; }.panel-copy h3 { font-size: 2.3rem; }.demo-frame { height: 285px; margin: 0 0 0 25px; }.wire-copy { left: 25px; width: 50%; }.wire-image { width: 34%; }.model-node { width: 104px; height: 104px; }.route-one { width: 105px; }.route-two { width: 100px; }.rack { width: 65px; }.rack-a { left: 15px; }.rack-b { right: 14px; }.deploy-line { left: 78px; right: 78px; }.workload { transform: scale(.86); }.deploy-line span { animation-name: deployMobile; }
  .process { min-height: 940px; }.process-overlay { background: linear-gradient(0deg, rgba(5,18,31,.97) 0%, rgba(5,18,31,.77) 74%, rgba(5,18,31,.5)); }.process-heading > p:last-child { font-size: .92rem; }.process-story { margin-top: 70px; }.process-rail { grid-template-columns: 1fr; border-left: 2px solid rgba(255,255,255,.2); }.process-step { min-height: 70px; padding: 13px 15px 13px 28px; border: 0; }.process-step::after { right: auto; bottom: auto; top: 28px; left: -7px; }.process-step span { display: inline-block; width: 42px; margin: 0; }.process-step strong { display: inline-block; }.process-step i { inset: 0 auto 0 -2px; width: 2px; height: auto; transform: scaleY(0); transform-origin: top; }.process-step.is-active i, .process-step.is-complete i { transform: scaleY(1); }.process-step.checkpoint b { top: 22px; right: 10px; }.process-detail { min-height: 215px; margin-top: 38px; padding-left: 20px; }.process-detail h3 { font-size: 1.85rem; }
  .principles-layout { grid-template-columns: 1fr; gap: 50px; }.principles-intro { position: static; }.principles h2 br { display: none; }.principle-list li { padding: 25px 0; }
  .portfolio-item { grid-template-columns: 38px 1fr; gap: 12px 5px; padding: 26px 0; }.portfolio-item::before { grid-row: 1 / span 3; }.portfolio-summary { grid-column: 2; }.portfolio-item:hover::after, .portfolio-item:focus-within::after { display: none; }.portfolio-item:hover, .portfolio-item:focus-within { color: inherit; }.portfolio-item:hover .portfolio-label, .portfolio-item:hover .portfolio-summary { color: inherit; }
  .contact { padding-block: 95px; }.contact-mark { width: 70px; height: 70px; }.contact h2 br { display: none; }.contact-inner > p:not(.kicker) { font-size: .92rem; }
  .site-footer { padding: 48px 0; }.footer-grid { grid-template-columns: 1fr; gap: 25px; }.footer-grid nav, .copyright { grid-column: 1; grid-row: auto; }.footer-grid nav { flex-direction: row; flex-wrap: wrap; }.copyright { padding-top: 20px; }
}

@keyframes deployMobile { from { transform: translateX(0); } to { transform: translateX(160px); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .signal-pulse { display: none; }
  .deploy-line span { transform: translateX(50%); }
}

@media (forced-colors: active) {
  .signal-map, .contact-grid { display: none; }
  .button, .service-tab, .portfolio-tags span { border: 1px solid ButtonText; }
}
