@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;

  --sw-ink: #0a0b0d;
  --sw-ink-2: #0d0f13;
  --sw-panel: #111318;
  --sw-raise: #171a21;
  --sw-paper: #e9ebef;
  --sw-muted: #8d94a0;
  --sw-dim: #626976;
  --sw-line: rgba(255, 255, 255, .09);
  --sw-line-2: rgba(255, 255, 255, .18);
  --sw-signal: #e2703a;
  --sw-signal-soft: rgba(226, 112, 58, .16);
  --sw-workday-image: url("../assets/software/workday-software.webp");

  --sw-mono: ui-monospace, "Cascadia Mono", "Segoe UI Mono", "SF Mono", Menlo, Consolas, monospace;
  --sw-shell: min(1290px, 100% - clamp(30px, 6vw, 104px));

  --p: 0;
}

@supports (color: color-mix(in oklab, white, black)) {
  :root { --sw-line: color-mix(in oklab, var(--sw-paper) 9%, transparent); }
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

[id] { scroll-margin-top: 96px; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--sw-paper);
  background: var(--sw-ink);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button, input, textarea, select { font: inherit; }
::selection { color: var(--sw-ink); background: var(--sw-signal); }

:where(a, button, input, textarea, select):focus-visible {
  outline: 2px solid var(--sw-signal);
  outline-offset: 3px;
}

.sw-shell { width: var(--sw-shell); margin-inline: auto; }

.sw-skip {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--sw-ink);
  background: var(--sw-signal);
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-180%);
}
.sw-skip:focus { transform: none; }

.sw-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(10, 11, 13, 0);
  transition: background .3s ease, border-color .3s ease;
}
.sw-header.is-scrolled {
  border-bottom-color: var(--sw-line);
  background: rgba(10, 11, 13, .82);
  backdrop-filter: blur(14px) saturate(140%);
}
.sw-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 86px;
}
.sw-brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 13px;
  text-decoration: none;
}
.sw-brand img { display: block; width: 168px; height: auto; }
.sw-brand span {
  padding-left: 13px;
  border-left: 1px solid var(--sw-line-2);
  color: var(--sw-signal);
  font-family: var(--sw-mono);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.sw-nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 40px); }
.sw-nav a {
  position: relative;
  padding-block: 6px;
  color: var(--sw-muted);
  font-size: .82rem;
  text-decoration: none;
  transition: color .18s ease;
}
.sw-nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--sw-signal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}
.sw-nav a:hover { color: var(--sw-paper); }
.sw-nav a:hover::after { transform: scaleX(1); }
.sw-header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.sw-header-cta {
  padding: 11px 18px;
  border: 1px solid var(--sw-line-2);
  color: var(--sw-paper);
  font-size: .78rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.sw-header-cta:hover { color: var(--sw-ink); background: var(--sw-signal); border-color: var(--sw-signal); }
.sw-menu-toggle, .sw-mobile-menu, .sw-menu-backdrop { display: none; }

.sw-hero {
  position: relative;
  isolation: isolate;
  height: 100svh;
  min-height: 100svh;
  margin-top: -86px;
  padding-top: 86px;
  overflow: hidden;
}
.sw-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, .76) 0%, rgba(5, 6, 8, .62) 36%, rgba(5, 6, 8, .18) 68%, rgba(5, 6, 8, .08) 100%),
    linear-gradient(180deg, rgba(5, 6, 8, .14) 52%, rgba(5, 6, 8, .5) 100%);
  content: "";
  pointer-events: none;
}
.sw-hero-photo {
  position: absolute;
  z-index: -1;
  inset: 0;
  margin: 0;
  background: #090b0e;
}
.sw-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sw-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 86px);
  padding-block: clamp(54px, 8vh, 92px);
}
.sw-hero-copy {
  width: min(720px, 54vw);
}
.sw-hero h1 {
  margin: 0;
  font-size: clamp(2.9rem, 5.2vw, 5rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.sw-lead {
  max-width: 46ch;
  margin: clamp(24px, 2.6vw, 38px) 0 0;
  color: var(--sw-muted);
  font-size: clamp(1rem, 1.15vw, 1.13rem);
  line-height: 1.68;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .8);
}
.sw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  margin-top: clamp(30px, 3.4vw, 46px);
}
.sw-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 24px;
  color: var(--sw-ink);
  background: var(--sw-paper);
  font-size: .86rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease, gap .2s ease;
}
.sw-cta:hover { gap: 20px; background: var(--sw-signal); }
.sw-quiet-link {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--sw-line-2);
  color: var(--sw-muted);
  font-size: .82rem;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease;
}
.sw-quiet-link:hover { color: var(--sw-paper); border-color: var(--sw-signal); }

.sw-facts-band {
  position: relative;
  z-index: 2;
  background: var(--sw-ink);
}

.sw-process {
  padding-block: clamp(88px, 9vw, 150px);
  background:
    radial-gradient(circle at 82% 44%, rgba(226, 112, 58, .08), transparent 32%),
    var(--sw-ink-2);
}
.sw-process-grid {
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(560px, 1.38fr);
  gap: clamp(54px, 7vw, 112px);
  align-items: center;
}
.sw-process-copy h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.6rem, 4.8vw, 5rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.sw-process-copy p {
  max-width: 38ch;
  margin: 28px 0 0;
  color: var(--sw-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.sw-console {
  position: relative;
  width: 100%;
  border: 1px solid var(--sw-line);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), transparent 220px),
    rgba(15, 17, 21, .91);
  box-shadow: 0 44px 100px -38px #000;
  backdrop-filter: blur(18px) saturate(125%);
}
.sw-console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--sw-line);
  font-family: var(--sw-mono);
  font-size: .655rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.sw-console-id { color: var(--sw-dim); }
.sw-console-state { color: var(--sw-muted); font-variant-numeric: tabular-nums; }

.sw-console-stream { margin: 0; padding: 0; list-style: none; }
.sw-console-stream li {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 2px 18px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--sw-line);
}
.sw-console-stream time {
  grid-row: 1 / 3;
  color: var(--sw-dim);
  font-family: var(--sw-mono);
  font-size: .7rem;
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
}
.sw-console-stream strong { font-size: .93rem; font-weight: 550; }
.sw-console-stream span { color: var(--sw-muted); font-size: .78rem; line-height: 1.5; }
.has-js .sw-console-stream li { opacity: .18; transition: opacity .5s ease; }
.has-js .sw-console-stream li.is-live { opacity: 1; }
.has-js .sw-console-stream li.is-live time { color: var(--sw-signal); }

.sw-console-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}
.sw-console-metrics > div { padding: 18px 20px 20px; }
.sw-console-metrics > div + div { border-left: 1px solid var(--sw-line); }
.sw-console-metrics dt {
  color: var(--sw-dim);
  font-family: var(--sw-mono);
  font-size: .6rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.sw-console-metrics dd {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
  margin: 9px 0 0;
}
.sw-console-metrics b {
  font-size: 2rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.04em;
  line-height: 1;
}
.sw-unit { color: var(--sw-muted); font-size: .85rem; }
.sw-console-metrics em {
  flex-basis: 100%;
  color: var(--sw-dim);
  font-family: var(--sw-mono);
  font-size: .63rem;
  font-style: normal;
  text-decoration: line-through;
  text-decoration-color: var(--sw-signal);
}

.sw-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--sw-line);
  border-bottom: 1px solid var(--sw-line);
  list-style: none;
  background: rgba(7, 8, 11, .58);
  backdrop-filter: blur(14px);
}
.sw-facts li { padding: 22px 26px 24px; }
.sw-facts li + li { border-left: 1px solid var(--sw-line); }
.sw-facts b { display: block; font-size: 1.02rem; font-weight: 550; letter-spacing: -.015em; }
.sw-facts span { display: block; margin-top: 5px; color: var(--sw-dim); font-size: .78rem; }

.sw-rule {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--sw-dim);
  font-family: var(--sw-mono);
  font-size: .63rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.sw-rule i { flex: 1; height: 1px; background: var(--sw-line); }
.sw-rule span:first-child { color: var(--sw-muted); }
.sw-rule-short { padding-bottom: 14px; border-bottom: 1px solid var(--sw-line); }

.sw-mechanic { padding-block: clamp(90px, 11vw, 170px) clamp(70px, 8vw, 120px); }
.has-js .sw-mechanic {
  min-height: 210svh;
  padding-block: 0;
}
.has-js .sw-mechanic > .sw-shell {
  position: sticky;
  top: 86px;
  display: flex;
  min-height: calc(100svh - 86px);
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(28px, 4vh, 48px);
}
.sw-mechanic-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  margin-top: clamp(38px, 4vw, 60px);
}
.sw-mechanic h2,
.sw-fields h2,
.sw-band h2,
.sw-method h2,
.sw-scope h2,
.sw-contact h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.3vw, 4.3rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.042em;
  text-wrap: balance;
}
.sw-mechanic-copy p {
  max-width: 44ch;
  margin: 26px 0 0;
  color: var(--sw-muted);
  font-size: .97rem;
  line-height: 1.7;
}

.sw-mechanic-stage { --p: 0; }
.sw-mechanic-heads {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-family: var(--sw-mono);
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.sw-mechanic-heads .is-before { color: var(--sw-dim); }
.sw-mechanic-heads .is-after { color: var(--sw-paper); }
.sw-mechanic-frame {
  position: relative;
  aspect-ratio: 600 / 340;
  border: 1px solid var(--sw-line);
  border-radius: 4px;
  background:
    radial-gradient(80% 120% at 82% 44%, rgba(226, 112, 58, .08), transparent 68%),
    linear-gradient(145deg, #11141a, #0b0d11 72%);
  overflow: hidden;
}
.sw-diagram {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  shape-rendering: geometricPrecision;
  text-rendering: geometricPrecision;
}
.sw-diagram.is-before { clip-path: inset(0 calc(var(--p) * 100%) 0 0); }
.sw-diagram.is-after { clip-path: inset(0 0 0 calc((1 - var(--p)) * 100%)); }
.sw-d-lines path {
  stroke: var(--sw-dim);
  stroke-width: 1.8;
  vector-effect: non-scaling-stroke;
}
.sw-diagram.is-after .sw-d-lines path { stroke: var(--sw-signal); stroke-width: 2; }
.sw-d-nodes rect {
  fill: var(--sw-raise);
  stroke: var(--sw-line-2);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.sw-diagram.is-after .sw-d-nodes rect { fill: #1b1512; stroke: var(--sw-signal); }
.sw-d-nodes text,
.sw-d-marks text {
  fill: var(--sw-muted);
  font-family: var(--sw-mono);
  font-size: 11px;
  letter-spacing: .04em;
}
.sw-d-marks text { fill: var(--sw-dim); font-size: 10px; }
.sw-mechanic-seam {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((1 - var(--p)) * 100%);
  width: 1px;
  background: var(--sw-signal);
  opacity: calc(1 - (2 * var(--p) - 1) * (2 * var(--p) - 1));
}

.sw-fields { padding-block: clamp(80px, 9vw, 140px); }
.sw-fields h2 { margin-top: clamp(28px, 3vw, 44px); }
.sw-ledger {
  max-width: 1130px;
  margin: clamp(46px, 5vw, 74px) 0 0;
  padding: 0;
  border-top: 1px solid var(--sw-line);
  list-style: none;
}
.sw-ledger li {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) minmax(210px, 270px);
  gap: 30px;
  align-items: start;
  padding: clamp(28px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--sw-line);
  transition: background .3s ease;
}
.sw-ledger li::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--sw-signal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}
.sw-ledger li:hover::before { transform: scaleX(1); }
.sw-ledger-key {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--sw-signal);
  font-family: var(--sw-mono);
  line-height: 1.1;
}
.sw-ledger h3 { margin: 0 0 12px; font-size: 1.4rem; font-weight: 550; letter-spacing: -.025em; }
.sw-ledger-main p { max-width: 56ch; margin: 0; color: var(--sw-muted); font-size: .93rem; line-height: 1.68; }
.sw-ledger-spec {
  margin: 6px 0 0;
  color: var(--sw-dim);
  font-family: var(--sw-mono);
  font-size: .68rem;
  line-height: 1.75;
}

.sw-band {
  position: relative;
  padding-block: clamp(96px, 13vw, 200px);
  border-block: 1px solid var(--sw-line);
  overflow: hidden;
}
.sw-band-plate {
  position: absolute;
  inset: 0;
  background-image: var(--sw-workday-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}
.sw-band-plate::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(58% 94% at 72% 46%, rgba(226, 112, 58, .12), transparent 72%);
  content: "";
}
.sw-band-plate::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--sw-ink) 0%, rgba(10, 11, 13, .96) 34%, rgba(10, 11, 13, .64) 58%, rgba(10, 11, 13, .16) 100%),
    linear-gradient(180deg, rgba(10, 11, 13, .16), rgba(10, 11, 13, .54));
  content: "";
}
.sw-band-inner { position: relative; }
.sw-band h2 { max-width: 20ch; font-size: clamp(2rem, 3.4vw, 3.4rem); }
.sw-band p {
  max-width: 52ch;
  margin: 26px 0 0;
  color: var(--sw-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.sw-method { padding-block: clamp(90px, 11vw, 160px); }
.sw-method-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: start;
}
.sw-method-head { position: sticky; top: 128px; }
.sw-method-head h2 { margin-top: 26px; }
.sw-method-head p {
  max-width: 38ch;
  margin: 26px 0 0;
  color: var(--sw-muted);
  font-size: .95rem;
  line-height: 1.7;
}
.sw-phases { margin: 0; padding: 0; border-top: 1px solid var(--sw-line); list-style: none; }
.sw-phases li {
  position: relative;
  padding: clamp(26px, 3vw, 38px) 0 clamp(26px, 3vw, 38px) clamp(24px, 3vw, 46px);
  border-bottom: 1px solid var(--sw-line);
}
.sw-phases li::before {
  position: absolute;
  top: clamp(32px, 3.4vw, 46px);
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--sw-line-2);
  border-radius: 50%;
  content: "";
  transition: background .4s ease, border-color .4s ease;
}
.sw-phases li.is-visible::before { background: var(--sw-signal); border-color: var(--sw-signal); }
.sw-phase-tag {
  display: block;
  margin-bottom: 14px;
  color: var(--sw-dim);
  font-family: var(--sw-mono);
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.sw-phases h3 { margin: 0 0 12px; font-size: 1.42rem; font-weight: 550; letter-spacing: -.028em; line-height: 1.22; }
.sw-phases p { max-width: 58ch; margin: 0; color: var(--sw-muted); font-size: .93rem; line-height: 1.7; }
.sw-phase-out {
  display: inline-block;
  margin-top: 16px;
  padding: 5px 11px;
  border: 1px solid var(--sw-line);
  color: var(--sw-paper);
  font-family: var(--sw-mono);
  font-size: .64rem;
  letter-spacing: .04em;
}

.sw-scope { padding-block: clamp(80px, 9vw, 140px); }
.sw-scope h2 { margin-top: clamp(28px, 3vw, 44px); }
.sw-scope-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  margin-top: clamp(46px, 5vw, 72px);
}
.sw-scope-cols h3 {
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--sw-line-2);
  font-size: 1.05rem;
  font-weight: 550;
  letter-spacing: -.01em;
}
.sw-scope-cols ul { margin: 0; padding: 0; list-style: none; }
.sw-scope-cols li {
  position: relative;
  padding: 13px 0 13px 26px;
  border-bottom: 1px solid var(--sw-line);
  color: var(--sw-muted);
  font-size: .93rem;
  line-height: 1.55;
}
.sw-scope-cols li::before {
  position: absolute;
  top: 21px;
  left: 0;
  width: 10px;
  height: 1px;
  background: var(--sw-signal);
  content: "";
}
.sw-scope-cols div:last-child li::before { background: var(--sw-dim); }

.sw-stack { margin-top: clamp(60px, 7vw, 96px); }
.sw-stack table {
  width: 100%;
  margin-top: 26px;
  border-collapse: collapse;
  text-align: left;
}
.sw-stack caption {
  margin-bottom: 22px;
  color: var(--sw-paper);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -.02em;
  text-align: left;
}
.sw-stack th, .sw-stack td {
  padding: 18px 24px 18px 0;
  border-bottom: 1px solid var(--sw-line);
  vertical-align: top;
}
.sw-stack thead th {
  border-bottom-color: var(--sw-line-2);
  color: var(--sw-dim);
  font-family: var(--sw-mono);
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.sw-stack tbody th {
  width: 20%;
  color: var(--sw-signal);
  font-family: var(--sw-mono);
  font-size: .9rem;
  font-weight: 500;
}
.sw-stack td { color: var(--sw-muted); font-size: .91rem; line-height: 1.6; }
.sw-stack td:last-child { color: var(--sw-dim); }

.sw-contact {
  padding-block: clamp(90px, 11vw, 160px);
  border-top: 1px solid var(--sw-line);
  background:
    radial-gradient(90% 120% at 12% 0%, rgba(226, 112, 58, .07), transparent 60%),
    var(--sw-ink-2);
}
.sw-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(46px, 7vw, 110px);
  align-items: start;
}
.sw-contact h2 { margin-top: 26px; }
.sw-contact-copy > p {
  max-width: 48ch;
  margin: 28px 0 36px;
  color: var(--sw-muted);
  font-size: .99rem;
  line-height: 1.72;
}
.sw-contact-facts { margin: 0 0 32px; }
.sw-contact-facts div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--sw-line);
}
.sw-contact-facts dt {
  color: var(--sw-dim);
  font-family: var(--sw-mono);
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.sw-contact-facts dd { margin: 0; font-size: .9rem; }
.sw-mail {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--sw-signal);
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
}

.sw-form {
  display: grid;
  gap: 22px;
  padding: clamp(26px, 3.4vw, 46px);
  border: 1px solid var(--sw-line);
  border-radius: 4px;
  background: var(--sw-panel);
}
.sw-form label { min-width: 0; }
.sw-form label > span,
.sw-project-type legend {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 9px;
  color: var(--sw-muted);
  font-size: .74rem;
}
.sw-form i {
  color: var(--sw-dim);
  font-family: var(--sw-mono);
  font-size: .6rem;
  font-style: normal;
  text-transform: uppercase;
}
.sw-project-type { margin: 0; padding: 0; border: 0; }
.sw-project-type > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.sw-project-type input { position: absolute; opacity: 0; }
.sw-project-type label span {
  display: grid;
  place-items: center;
  min-height: 62px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--sw-line-2);
  color: var(--sw-muted);
  font-size: .78rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.sw-project-type label:hover span { color: var(--sw-paper); border-color: var(--sw-muted); }
.sw-project-type input:checked + span {
  color: var(--sw-paper);
  background: var(--sw-signal-soft);
  border-color: var(--sw-signal);
}
.sw-project-type input:focus-visible + span { outline: 2px solid var(--sw-signal); outline-offset: 2px; }
.sw-project-type input[aria-invalid="true"] + span { border-color: #ff8e7d; }
.sw-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sw-form input:not([type="radio"]):not([type="checkbox"]),
.sw-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--sw-line-2);
  border-radius: 2px;
  outline: none;
  color: var(--sw-paper);
  background: rgba(255, 255, 255, .022);
  transition: border-color .2s ease, background .2s ease;
}
.sw-form textarea { min-height: 150px; resize: vertical; }
.sw-form input:focus, .sw-form textarea:focus { border-color: var(--sw-signal); background: rgba(255, 255, 255, .04); }
.sw-form [aria-invalid="true"] { border-color: #ff8e7d; }
.sw-form-trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.sw-privacy {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--sw-muted);
  font-size: .78rem;
}
.sw-privacy input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--sw-signal); }
.sw-privacy span { display: block !important; margin: 0 !important; line-height: 1.55; }
.sw-turnstile { min-height: 0; overflow: hidden; }
.sw-turnstile.is-ready { min-height: 65px; }
.sw-safety, .sw-status {
  min-height: 18px;
  margin: 0;
  color: var(--sw-dim);
  font-size: .7rem;
  line-height: 1.5;
}
.sw-status.is-success { color: var(--sw-paper); }
.sw-status.is-error { color: #ff9d8d; }
.sw-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 17px 20px;
  border: 0;
  border-radius: 2px;
  color: var(--sw-ink);
  background: var(--sw-paper);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease;
}
.sw-submit:hover { background: var(--sw-signal); }
.sw-submit:disabled { cursor: wait; opacity: .6; }

.sw-footer { border-top: 1px solid var(--sw-line); }
.sw-footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr auto;
  align-items: center;
  gap: 28px;
  padding-block: 40px;
}
.sw-footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
.sw-footer nav a, .sw-footer-mail { color: var(--sw-dim); font-size: .78rem; text-decoration: none; }
.sw-footer a:hover { color: var(--sw-signal); }
.sw-footer .sw-brand img { width: 148px; }

.sw-scroll-top {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--sw-line-2);
  border-radius: 2px;
  color: var(--sw-paper);
  background: rgba(17, 19, 24, .9);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
  backdrop-filter: blur(8px);
}
.sw-scroll-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.sw-scroll-top:hover { color: var(--sw-ink); background: var(--sw-signal); }

.reveal { opacity: 1; transform: none; }
.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
}
.has-js .reveal.is-visible { opacity: 1; transform: none; }
.has-js .sw-ledger li:nth-child(2) { transition-delay: .06s; }
.has-js .sw-ledger li:nth-child(3) { transition-delay: .12s; }
.has-js .sw-ledger li:nth-child(4) { transition-delay: .18s; }

html:not(.has-js) .sw-mechanic-stage { --p: 1; }
html:not(.has-js) .sw-mechanic-note { display: none; }

@media (max-width: 1180px) {
  .sw-process-grid { grid-template-columns: 1fr; gap: 48px; }
  .sw-process-copy h2 { max-width: 13ch; }
  .sw-console { max-width: 820px; }
  .sw-mechanic-grid { grid-template-columns: 1fr; gap: 40px; }
  .sw-method-grid { grid-template-columns: 1fr; gap: 44px; }
  .sw-method-head { position: static; }
  .sw-contact-grid { grid-template-columns: 1fr; }
  .sw-ledger li { grid-template-columns: 58px minmax(0, 1fr); gap: 8px 24px; }
  .sw-ledger-spec { grid-column: 2; }
}

@media (max-width: 1080px) {
  .sw-nav, .sw-header-cta { display: none; }
  .sw-header-inner { grid-template-columns: 1fr auto; }
  .sw-menu-toggle {
    display: grid;
    width: 46px;
    height: 42px;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--sw-line-2);
    border-radius: 2px;
    background: transparent;
  }
  .sw-menu-toggle span { display: block; width: 20px; height: 1px; background: var(--sw-paper); transition: transform .2s ease; }
  .sw-header.menu-open .sw-menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .sw-header.menu-open .sw-menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .sw-header.menu-open { background: var(--sw-ink); border-bottom-color: var(--sw-line); }
  .sw-mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    padding: 10px 0 22px;
    border-bottom: 1px solid var(--sw-line);
    background: var(--sw-ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .sw-mobile-menu a {
    width: var(--sw-shell);
    margin-inline: auto;
    padding: 15px 0;
    border-bottom: 1px solid var(--sw-line);
    font-size: 1.18rem;
    font-weight: 500;
    letter-spacing: -.02em;
    text-decoration: none;
  }
  .sw-header.menu-open .sw-mobile-menu { opacity: 1; pointer-events: auto; transform: none; }
  .sw-menu-backdrop {
    position: fixed;
    z-index: 40;
    inset: 0;
    display: block;
    background: rgba(5, 6, 8, .6);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }
  .sw-menu-backdrop.is-visible { opacity: 1; pointer-events: auto; }
  body.mobile-menu-open { overflow: hidden; }
  .sw-facts { grid-template-columns: 1fr 1fr; }
  .sw-facts li:nth-child(3) { border-left: 0; }
  .sw-facts li:nth-child(n+3) { border-top: 1px solid var(--sw-line); }
}

@media (max-width: 820px) {
  .sw-header-inner { min-height: 72px; }
  .sw-brand img { width: 142px; }
  .sw-hero { height: auto; min-height: 100svh; margin-top: -72px; padding-top: 72px; }
  .sw-hero::before {
    background:
      linear-gradient(180deg, rgba(5, 6, 8, .26) 0%, rgba(5, 6, 8, .7) 50%, rgba(5, 6, 8, .92) 100%),
      linear-gradient(90deg, rgba(5, 6, 8, .66), rgba(5, 6, 8, .12));
  }
  .sw-hero-photo img { object-position: 64% center; }
  .sw-hero-grid { min-height: calc(100svh - 72px); padding-block: 46px; }
  .sw-hero-copy { width: 100%; }
  .sw-process { padding-block: 76px; }
  .sw-console {
    width: 100%;
    margin: 0;
  }
  .has-js .sw-mechanic > .sw-shell {
    top: 72px;
    min-height: calc(100svh - 72px);
  }
  .sw-band-plate { background-position: 67% center; }
  .sw-band-plate::after {
    background: linear-gradient(180deg, rgba(10, 11, 13, .9) 0%, rgba(10, 11, 13, .78) 58%, rgba(10, 11, 13, .44) 100%);
  }
  .sw-console-stream li { grid-template-columns: 1fr; gap: 4px; }
  .sw-console-stream time { grid-row: auto; }
  .sw-console-metrics { grid-template-columns: 1fr; }
  .sw-console-metrics > div + div { border-top: 1px solid var(--sw-line); border-left: 0; }
  .sw-console-metrics dd { align-items: baseline; }
  .sw-scope-cols { grid-template-columns: 1fr; gap: 44px; }
  .sw-form-row, .sw-project-type > div { grid-template-columns: 1fr; }
  .sw-stack table, .sw-stack thead, .sw-stack tbody, .sw-stack tr, .sw-stack th, .sw-stack td { display: block; }
  .sw-stack thead { display: none; }
  .sw-stack tbody tr { padding-block: 20px; border-bottom: 1px solid var(--sw-line); }
  .sw-stack th, .sw-stack td { padding: 0; border: 0; }
  .sw-stack tbody th { width: auto; margin-bottom: 10px; font-size: 1rem; }
  .sw-stack td + td { margin-top: 8px; }
  .sw-footer-inner { grid-template-columns: 1fr; align-items: start; gap: 22px; }
}

@media (max-width: 560px) {
  .sw-facts { grid-template-columns: 1fr; }
  .sw-facts li + li { border-top: 1px solid var(--sw-line); border-left: 0; }
  .sw-facts li { padding: 18px 0; }
  .sw-ledger li { grid-template-columns: 42px minmax(0, 1fr); gap: 6px 16px; }
  .sw-mechanic-frame { aspect-ratio: 4 / 3; }
  .sw-d-nodes text { font-size: 15px; }
  .sw-d-marks text { font-size: 13px; }
  .sw-hero-actions { gap: 16px; }
  .sw-cta { width: 100%; justify-content: space-between; }
  .sw-scroll-top { right: 14px; bottom: 14px; }
}

@media (max-width: 420px) {
  .sw-header .sw-brand span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .reveal, .has-js .reveal { opacity: 1; transform: none; }
  .has-js .sw-mechanic {
    min-height: auto;
    padding-block: clamp(90px, 11vw, 170px) clamp(70px, 8vw, 120px);
  }
  .has-js .sw-mechanic > .sw-shell {
    position: static;
    min-height: auto;
    padding-block: 0;
  }
  .has-js .sw-console-stream li { opacity: 1; }
  .sw-mechanic-frame { aspect-ratio: auto; height: auto; }
  .sw-diagram { position: static; clip-path: none !important; }
  .sw-diagram + .sw-diagram { border-top: 1px solid var(--sw-line); }
  .sw-mechanic-seam { display: none; }
  .sw-mechanic-note { display: none; }
}
