:root {

  --bg:         #06080b;
  --bg-alt:     #090c11;
  --surface:    #0c1016;
  --surface-2:  #11161e;
  --surface-3:  #161c26;

  --line:       #1b222c;
  --line-2:     #28323f;

  --fg:         #e8edf3;
  --fg-mut:     #97a3b4;
  --fg-dim:     #737f8f;

  --sig:        #35e08d;
  --sig-2:      #19b96f;
  --sig-ghost:  rgba(53, 224, 141, .10);
  --sig-ring:   rgba(53, 224, 141, .22);
  --amber:      #f0b429;
  --red:        #ff6b6b;

  --r-xs: 2px;
  --r-sm: 3px;
  --r:    6px;
  --r-lg: 10px;

  --maxw: 1180px;
  --gut: 24px;
  --header-h: 60px;

  --font-sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "SF Mono",
    Menlo, Consolas, "Liberation Mono", monospace;

  --ease: cubic-bezier(.2, .7, .3, 1);
  --dur: .22s;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-variant-numeric: tabular-nums;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
  background-size: 68px 68px, 68px 68px;
  -webkit-mask-image: radial-gradient(ellipse 120% 70% at 60% -10%, #000 10%, transparent 78%);
  mask-image: radial-gradient(ellipse 120% 70% at 60% -10%, #000 10%, transparent 78%);
}
body::after {
  content: "";
  position: fixed;
  top: -260px; right: -180px;
  width: 720px; height: 720px;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(circle, rgba(53, 224, 141, .085), transparent 62%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.022em;
  font-weight: 600;
}
p { margin: 0; }

::selection { background: var(--sig); color: #05070a; }

:focus-visible {
  outline: 2px solid var(--sig);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding-block: clamp(56px, 8vw, 104px); }
.section--alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}

.mono {
  font-family: var(--font-mono);
  font-variant-ligatures: none;
}

.micro {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.panel::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  background-repeat: no-repeat;
  background-image:
    linear-gradient(var(--sig), var(--sig)), linear-gradient(var(--sig), var(--sig)),
    linear-gradient(var(--sig), var(--sig)), linear-gradient(var(--sig), var(--sig)),
    linear-gradient(var(--sig), var(--sig)), linear-gradient(var(--sig), var(--sig)),
    linear-gradient(var(--sig), var(--sig)), linear-gradient(var(--sig), var(--sig));
  background-size: 11px 1px, 1px 11px, 11px 1px, 1px 11px,
                   11px 1px, 1px 11px, 11px 1px, 1px 11px;
  background-position:
    left top, left top, right top, right top,
    left bottom, left bottom, right bottom, right bottom;
}
.panel:hover { border-color: var(--line-2); }
.panel:hover::after { opacity: .85; }

.sec-head {
  margin-bottom: clamp(28px, 4vw, 44px);
}
.sec-head__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.sec-head__idx {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--sig);
  letter-spacing: .08em;
}
.sec-head__rule {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, var(--line-2), var(--line) 70%, transparent);
}
.sec-head__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  white-space: nowrap;
}
.sec-title {
  font-size: clamp(27px, 4.2vw, 44px);
  max-width: 20ch;
}
.sec-title em {
  font-style: normal;
  color: var(--sig);
}
.sec-sub {
  margin-top: 16px;
  max-width: 68ch;
  color: var(--fg-mut);
  font-size: 16.5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 20px;
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
    border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn svg { width: 16px; height: 16px; flex: none; }

.btn--primary {
  background: var(--sig);
  color: #05070a;
  font-weight: 700;
}
.btn--primary:hover {
  background: #4ff0a0;
  box-shadow: 0 0 0 1px var(--sig), 0 6px 26px -8px var(--sig-ring);
}
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  border-color: var(--sig);
  color: var(--sig);
  background: var(--sig-ghost);
}
.btn:disabled { opacity: .45; cursor: not-allowed; }

.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--sig-2), var(--sig));
  z-index: 60;
  will-change: transform;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(6, 8, 11, .82);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: border-color var(--dur) var(--ease);
}
.header.is-scrolled { border-bottom-color: var(--line-2); }
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.brand__mark {
  flex: none;
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  background: var(--surface-2);
  color: var(--sig);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.brand:hover .brand__mark { border-color: var(--sig); background: var(--sig-ghost); }
.brand__name {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.brand__role {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  line-height: 1.5;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav a {
  position: relative;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .02em;
  color: var(--fg-mut);
  border-radius: var(--r-xs);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav a::before {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 2px;
  height: 1px;
  background: var(--sig);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform var(--dur) var(--ease);
}
.nav a:hover { color: var(--fg); }
.nav a.is-active { color: var(--sig); }
.nav a.is-active::before { transform: scaleX(1); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang {
  display: inline-flex;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.lang a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--fg-dim);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.lang a + a { border-left: 1px solid var(--line-2); }
.lang a:hover { color: var(--fg); background: var(--surface-2); }
.lang a.is-active { color: #05070a; background: var(--sig); font-weight: 700; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  background: var(--surface-2);
  padding: 0;
  place-items: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 16px; height: 1.5px;
  background: var(--sig);
  transition: transform var(--dur) var(--ease), opacity .15s var(--ease);
}
.nav-toggle span::before { transform: translateY(-5px); }
.nav-toggle span::after { transform: translateY(3.5px); }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: rotate(45deg); }
.nav-toggle.is-open span::after { transform: rotate(-45deg) translateY(-1px); }

.hero {
  position: relative;
  padding-top: clamp(40px, 6vw, 76px);
  padding-bottom: clamp(40px, 6vw, 72px);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.hero__intro {
  position: relative;
  padding-left: 26px;
}
.hero__intro::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 9px;
  border-left: 1px solid var(--line-2);

  background-image: repeating-linear-gradient(
    180deg,
    var(--line-2) 0 1px,
    transparent 1px 14px
  );
  opacity: .6;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 11px 5px 9px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sig);
  margin-bottom: 24px;
}
.status .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sig);
  box-shadow: 0 0 0 3px var(--sig-ghost);
  animation: blip 2.4s var(--ease) infinite;
}
@keyframes blip {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

.hero__title {
  font-size: clamp(38px, 7.4vw, 78px);
  line-height: .98;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.hero__title span { display: block; }
.hero__title .l1 { color: var(--fg-mut); }
.hero__title .l2 { color: var(--fg); }
.hero__title .caret {
  display: inline-block;
  width: .5em; height: .78em;
  margin-left: .1em;
  background: var(--sig);
  vertical-align: baseline;
  animation: caret 1.15s steps(1) infinite;
}
@keyframes caret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.hero__role {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: clamp(13px, 1.5vw, 15px);
  letter-spacing: .02em;
  color: var(--sig);
}
.hero__role .sep { color: var(--fg-dim); }

.hero__desc {
  margin-top: 20px;
  max-width: 56ch;
  color: var(--fg-mut);
  font-size: 17px;
}

.spec {
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}
.spec__row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.spec dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sig-2);
}
.spec dd {
  margin: 0;
  font-size: 15px;
  color: var(--fg-mut);
}

.hero__cta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__intro,
.hero__photo { min-width: 0; }
.shot-frame {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: var(--surface);
  overflow: hidden;
}
.shot-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-image:
    linear-gradient(var(--sig), var(--sig)), linear-gradient(var(--sig), var(--sig)),
    linear-gradient(var(--sig), var(--sig)), linear-gradient(var(--sig), var(--sig)),
    linear-gradient(var(--sig), var(--sig)), linear-gradient(var(--sig), var(--sig)),
    linear-gradient(var(--sig), var(--sig)), linear-gradient(var(--sig), var(--sig));
  background-size: 14px 1px, 1px 14px, 14px 1px, 1px 14px,
                   14px 1px, 1px 14px, 14px 1px, 1px 14px;
  background-position:
    9px 9px, 9px 9px, calc(100% - 9px) 9px, calc(100% - 9px) 9px,
    9px calc(100% - 9px), 9px calc(100% - 9px),
    calc(100% - 9px) calc(100% - 9px), calc(100% - 9px) calc(100% - 9px);
  opacity: .5;
}
.shot-frame__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.shot-frame__bar b { color: var(--sig); font-weight: 500; }
.hero__photo img {
  width: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(1) contrast(1.06) brightness(.92);
  transition: filter .5s var(--ease);
}
.hero__photo:hover img { filter: grayscale(0) contrast(1) brightness(1); }

.hero__flags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}
.hero__flag {
  padding: 12px 14px;
  background: var(--surface);
}
.hero__flag span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 4px;
}
.hero__flag b {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(40px, 6vw, 64px);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.metric {
  position: relative;
  padding: 22px 20px 20px;
  background: var(--surface);
  transition: background var(--dur) var(--ease);
}
.metric:hover { background: var(--surface-2); }
.metric__idx {
  position: absolute;
  top: 12px; right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--fg-dim);
}
.metric__num {
  font-family: var(--font-mono);
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--sig);
}
.metric__label {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--fg-mut);
  line-height: 1.4;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.bento__lead {
  grid-column: span 7;
  padding: clamp(24px, 3vw, 34px);
}
.bento__note {
  grid-column: span 5;
  padding: clamp(24px, 3vw, 34px);
  background: var(--surface-2);
}
.bento__svc { grid-column: span 12; }

.lead-text {
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.lead-text b { color: var(--sig); font-weight: 600; }
.body-text {
  margin-top: 18px;
  color: var(--fg-mut);
  font-size: 16px;
}
.body-text + .body-text { margin-top: 12px; }

.geo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.geo-list span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--fg-mut);
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
  padding: 4px 8px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.service {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--surface);
  transition: background var(--dur) var(--ease);
}
.service:hover { background: var(--surface-2); }
.service__ico {
  flex: none;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--sig);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.service:hover .service__ico { border-color: var(--sig); background: var(--sig-ghost); }
.service__ico svg { width: 17px; height: 17px; }
.service h3 { font-size: 15px; font-weight: 600; }
.service p {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--fg-dim);
  line-height: 1.45;
}

.log {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.log__head {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 128px;
  gap: 20px;
  padding: 10px 20px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.log__row {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 128px;
  gap: 20px;
  align-items: start;
  padding: 20px;
  background: var(--surface);
  transition: background var(--dur) var(--ease);
}
.log__row + .log__row { border-top: 1px solid var(--line); }
.log__row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--sig);
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: transform var(--dur) var(--ease);
}
.log__row:hover { background: var(--surface-2); }
.log__row:hover::before { transform: scaleY(1); }

.log__period {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--fg-dim);
  line-height: 1.5;
}
.log__period b {
  display: block;
  color: var(--fg-mut);
  font-weight: 500;
}
.log__row--now .log__period b { color: var(--sig); }

.log__company {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.log__role {
  margin-top: 3px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--fg-mut);
}
.log__niche {
  margin-top: 10px;
  font-size: 14px;
  color: var(--fg-dim);
}
.log__niche b { color: var(--fg-mut); font-weight: 500; }

.log__state {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 9px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-xs);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  white-space: nowrap;
}
.log__state i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--fg-dim);
}
.log__row--now .log__state { color: var(--sig); border-color: var(--sig-2); }
.log__row--now .log__state i { background: var(--sig); }

.stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stack__block { padding: 20px; }
.stack__head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 14px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--line);
}
.stack__ico {
  flex: none;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--sig);
}
.stack__ico svg { width: 16px; height: 16px; }
.stack__block h3 {
  flex: 1 1 auto;
  font-size: 14.5px;
  font-weight: 600;
}
.stack__count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: .08em;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .02em;
  color: var(--fg-mut);
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 5px 9px;
  border-radius: var(--r-xs);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease),
    background var(--dur) var(--ease);
}
.tag:hover {
  color: var(--sig);
  border-color: var(--sig-2);
  background: var(--sig-ghost);
}

.cases {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.case { overflow: hidden; }
.case::after { inset: 0; }
.case__bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 11px 18px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.case__id {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--sig);
  margin-right: 4px;
}
.case__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-left: auto;
}
.chip {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-mut);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xs);
  padding: 4px 8px;
}
.chip--geo { color: var(--sig); border-color: var(--sig-2); }

.case__body {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(18px, 3vw, 28px);
  align-items: center;
}
.case:nth-child(even) .case__media { order: 2; }

.case__media {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.shot {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--surface-2);
  transition: border-color var(--dur) var(--ease);
}
.shot:hover { border-color: var(--sig-2); }
.shot img {
  width: 100%;
  height: auto;
  filter: brightness(.9) contrast(1.02) saturate(.85);
  transition: filter .35s var(--ease);
}
.shot:hover img { filter: none; }
.shot--tall { max-height: 420px; }
.shot--tall::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--surface));
  pointer-events: none;
}
.shot__cap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 11px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-3);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-mut);
}
.shot__cap svg { width: 13px; height: 13px; flex: none; }
.shot:hover .shot__cap { color: var(--sig); }

.case__content { min-width: 0; }
.case__content h3 {
  font-size: clamp(19px, 2.2vw, 24px);
  letter-spacing: -0.025em;
}
.case__situation {
  margin-top: 12px;
  font-size: 15px;
  color: var(--fg-mut);
}
.case__situation b { color: var(--fg); font-weight: 600; }

.kpi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 20px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.kpi__cell {
  padding: 14px 16px;
  background: var(--surface-2);
}
.kpi__val {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--sig);
}
.kpi__val--warn { color: var(--amber); }
.kpi__key {
  margin-top: 7px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  line-height: 1.4;
}

.block { margin-top: 20px; }
.block__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 11px;
}
.block__label::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--line);
}
.did {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.did span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .02em;
  color: var(--fg-mut);
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
  padding: 4px 8px;
}
.results {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.results li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--fg-mut);
}
.results li svg {
  flex: none;
  width: 16px; height: 16px;
  color: var(--sig);
  margin-top: 4px;
}
.results b { color: var(--sig); font-weight: 600; font-family: var(--font-mono); }

.two-col {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.certs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.cert {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
}
.cert__ico {
  flex: none;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--sig);
}
.cert__ico svg { width: 19px; height: 19px; }
.cert__body { flex: 1 1 auto; min-width: 0; }
.cert__title {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.cert__meta {
  display: block;
  margin-top: 5px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--fg-dim);
}
.cert__arrow {
  flex: none;
  color: var(--fg-dim);
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.cert:hover .cert__arrow { color: var(--sig); transform: translate(2px, -2px); }
.cert__arrow svg { width: 16px; height: 16px; }

.levels {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 24px;
}
.level__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 9px;
}
.level__name { font-size: 15px; font-weight: 600; }
.level__val {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sig);
}
.meter {
  height: 10px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-xs);
  padding: 2px;
  background:
    repeating-linear-gradient(90deg, var(--line) 0 5px, transparent 5px 8px);
  background-origin: content-box;
  background-clip: content-box;
}
.meter__fill {
  display: block;
  height: 100%;
  width: 0;
  background:
    repeating-linear-gradient(90deg, var(--sig) 0 5px, transparent 5px 8px);
  transition: width 1.1s var(--ease);
}

.contact__grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
.contact__intro h2 { font-size: clamp(24px, 3.2vw, 36px); }
.contact__intro > p {
  margin-top: 14px;
  color: var(--fg-mut);
  font-size: 16.5px;
  max-width: 44ch;
}
.channels {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
}
.channel__ico {
  flex: none;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--sig);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.channel:hover .channel__ico { border-color: var(--sig); background: var(--sig-ghost); }
.channel__ico svg { width: 18px; height: 18px; }
.channel__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.channel__value {
  display: block;
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--fg);
}

.form {
  padding: clamp(22px, 3vw, 30px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 8px;
}
.field label::before {
  content: "> ";
  color: var(--sig-2);
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: 12px 13px;
  min-height: 46px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    background var(--dur) var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--fg-dim); opacity: 1; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sig);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px var(--sig-ring);
}
.field textarea { resize: vertical; min-height: 118px; line-height: 1.55; }
.form .btn { width: 100%; margin-top: 4px; }
.form__note {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .04em;
  color: var(--fg-dim);
  text-align: center;
  line-height: 1.5;
}
.form__status {
  margin-top: 14px;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.5;
  display: none;
}
.form__status.is-success {
  display: block;
  background: var(--sig-ghost);
  border-color: var(--sig-2);
  color: var(--sig);
}
.form__status.is-error {
  display: block;
  background: rgba(255, 107, 107, .08);
  border-color: rgba(255, 107, 107, .45);
  color: var(--red);
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  padding-block: 34px 26px;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  align-items: center;
  justify-content: space-between;
}
.footer__brand { display: flex; align-items: center; gap: 11px; }
.footer__socials { display: flex; gap: 8px; }
.footer__socials a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--fg-dim);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease),
    background var(--dur) var(--ease);
}
.footer__socials a:hover {
  color: var(--sig);
  border-color: var(--sig);
  background: var(--sig-ghost);
}
.footer__socials svg { width: 17px; height: 17px; }
.footer__meta {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--fg-dim);
}
.footer__meta a:hover { color: var(--sig); }

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .stack { grid-template-columns: repeat(2, 1fr); }
  .log__head,
  .log__row { grid-template-columns: 160px minmax(0, 1fr) 112px; gap: 14px; }
}

@media (max-width: 940px) {
  .nav { display: none; }
  .nav-toggle { display: grid; }
  .header__actions .btn { display: none; }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line-2);
    padding: 10px var(--gut) 16px;
  }
  .nav.is-open a { padding: 13px 12px; font-size: 14px; }
  .nav.is-open a::before { left: 12px; right: auto; width: 14px; bottom: 8px; }

  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__photo { order: -1; max-width: 400px; }
  .bento__lead,
  .bento__note,
  .bento__svc { grid-column: span 12; }
  .two-col,
  .contact__grid { grid-template-columns: minmax(0, 1fr); }
  .case__body { grid-template-columns: minmax(0, 1fr); }
  .case:nth-child(even) .case__media { order: 0; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .log__head { display: none; }
  .log__row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 16px;
  }
  .log__period { order: -1; }
  .log__period b { display: inline; }
  .log__state { justify-self: start; }
}

@media (max-width: 560px) {
  :root { --gut: 16px; }
  body { font-size: 16px; }
  .hero__intro { padding-left: 18px; }
  .services,
  .stack,
  .form-row { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1 1 auto; }
  .spec__row { grid-template-columns: 74px 1fr; gap: 12px; }
  .kpi { grid-template-columns: 1fr; }
  .footer__inner { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .hero__title .caret { opacity: 1; }
}

@media print {
  body { background: #fff; color: #000; }
  body::before, body::after,
  .header, .progress, .footer__socials, .form { display: none !important; }
  .panel, .metric, .log__row { border-color: #ccc; background: #fff; }
}
