@font-face {
  font-family: "Yardakov Condensed";
  src: url("assets/RobotoCondensed-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --black: #050706;
  --black-soft: #0b0e0c;
  --ink: #101411;
  --green: #49df59;
  --green-bright: #6bed75;
  --green-surface: #3fca4f;
  --green-dark: #17642a;
  --paper: #e9eee7;
  --white: #f5f8f3;
  --muted: #98a098;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(5, 7, 6, 0.18);
  --page-x: clamp(20px, 4.5vw, 76px);
  --section-y: clamp(88px, 11vw, 172px);
  --radius: 2px;
  --mx: 50%;
  --my: 50%;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

::selection {
  color: var(--black);
  background: var(--green);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--black);
  background: var(--green);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.scroll-progress {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(73, 223, 89, 0.62);
  transition: width 0.18s ease, height 0.18s ease, background 0.18s ease;
}

.cursor-ring.is-hovering {
  width: 50px;
  height: 50px;
  background: rgba(73, 223, 89, 0.12);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(5, 7, 6, 0.74);
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, border-color 0.25s ease, min-height 0.25s ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  border-color: var(--line-dark);
  background: rgba(5, 7, 6, 0.91);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 13px;
  width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--black);
  background: var(--green);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.brand-name {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 40px);
  color: #c6cbc5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-lab-mobile,
.header-menu-toggle,
.header-mobile-menu {
  display: none;
}

.desktop-nav a {
  position: relative;
}

.nav-product {
  position: relative;
}

.nav-product > a {
  display: block;
  color: var(--green);
}

.nav-product__menu {
  position: absolute;
  top: calc(100% + 21px);
  left: 50%;
  z-index: 30;
  width: 290px;
  padding: 8px;
  border: 1px solid rgba(73, 223, 89, 0.24);
  visibility: hidden;
  background: rgba(5, 9, 6, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translate(-50%, -7px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.nav-product__menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 22px;
  content: "";
}

.nav-product:hover .nav-product__menu,
.nav-product:focus-within .nav-product__menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.desktop-nav .nav-product__menu a,
.nav-product__planned {
  display: grid;
  grid-template-columns: 29px 1fr;
  gap: 3px 10px;
  padding: 14px 13px;
  border: 1px solid transparent;
  color: var(--white);
  text-transform: none;
}

.desktop-nav .nav-product__menu a:hover,
.desktop-nav .nav-product__menu a:focus-visible {
  border-color: rgba(73, 223, 89, 0.34);
  background: rgba(73, 223, 89, 0.07);
}

.nav-product__menu span {
  grid-row: 1 / 3;
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.nav-product__menu strong {
  font-size: 14px;
  letter-spacing: -0.01em;
}

.nav-product__menu small {
  color: #858d86;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-product__planned {
  margin-top: 4px;
  border-top-color: rgba(255, 255, 255, 0.08);
  color: #757c76;
}

.desktop-nav .nav-product__menu a::after {
  display: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav .admin-access-badge {
  display: grid;
  grid-template-columns: auto auto;
  gap: 1px 7px;
  align-items: center;
  margin: -9px 0;
  padding: 8px 11px;
  border: 1px solid rgba(73, 223, 89, 0.34);
  color: var(--white);
  background: rgba(73, 223, 89, 0.055);
  line-height: 1;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.desktop-nav .admin-access-badge::after {
  display: none;
}

.admin-access-badge i {
  grid-row: 1 / 3;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(73, 223, 89, 0.08);
}

.admin-access-badge span {
  max-width: 130px;
  overflow: hidden;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desktop-nav .admin-access-badge.is-authenticated {
  border-color: rgba(73, 223, 89, 0.62);
  background: rgba(73, 223, 89, 0.1);
}

.admin-access-badge small {
  color: #818a82;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav .admin-access-badge:hover,
.desktop-nav .admin-access-badge:focus-visible {
  border-color: var(--green);
  background: rgba(73, 223, 89, 0.11);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-self: end;
  gap: 12px;
  padding: 11px 0 10px;
  border-bottom: 1px solid var(--green);
  font-size: 12px;
  font-weight: 700;
}

.header-cta svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  transition: transform 0.2s ease;
}

.header-cta:hover svg {
  transform: translateX(4px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 31vw);
  gap: clamp(34px, 7vw, 112px);
  align-items: end;
  min-height: 100svh;
  padding: clamp(126px, 15vh, 178px) var(--page-x) clamp(48px, 7vh, 80px);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.45;
}

.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 88%);
}

.hero-glow {
  position: absolute;
  width: min(48vw, 720px);
  aspect-ratio: 1;
  left: var(--mx);
  top: var(--my);
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 255, 85, 0.1), transparent 68%);
  transform: translate(-50%, -50%);
}

.hero-copy,
.signal-card {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: clamp(26px, 4vh, 46px);
  color: #bdc3bd;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.live-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--green);
  border-radius: inherit;
  content: "";
  animation: ping 1.8s ease-out infinite;
}

.hero-title,
.section-title,
.diagnostic-title,
.contact h2 {
  margin: 0;
  font-family: "Yardakov Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-title {
  max-width: 1000px;
  font-size: clamp(58px, 9.4vw, 156px);
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-line > span {
  display: inline-block;
}

.title-line--split {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 50px);
  margin-left: clamp(8px, 6.5vw, 105px);
}

.title-line .slash {
  color: var(--green);
  font-weight: 300;
  transform: skew(-12deg);
}

.title-line--accent {
  color: var(--green);
  white-space: nowrap;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) auto;
  gap: 36px;
  align-items: end;
  max-width: 850px;
  margin-top: clamp(38px, 6vh, 70px);
}

.hero-bottom p {
  max-width: 500px;
  margin: 0;
  color: #b3bab3;
  font-size: clamp(16px, 1.25vw, 20px);
}

.hero-bottom strong {
  color: var(--white);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 58px;
  padding: 0 20px 0 26px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.button--primary {
  color: var(--black);
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(73, 223, 89, 0.28);
  transition: background 0.2s ease, box-shadow 0.25s ease;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--green-bright);
  box-shadow: 0 0 0 8px rgba(73, 223, 89, 0.1);
}

.button-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(5, 7, 6, 0.45);
  font-size: 15px;
}

.text-link {
  color: #aeb5ae;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.03em;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  color: var(--green);
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.signal-card {
  min-height: min(62vh, 570px);
  padding: 20px;
  border: 1px solid rgba(73, 223, 89, 0.35);
  background:
    linear-gradient(180deg, rgba(73, 223, 89, 0.07), transparent 42%),
    rgba(8, 12, 9, 0.78);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
}

.signal-card::before,
.signal-card::after {
  position: absolute;
  width: 12px;
  height: 12px;
  content: "";
}

.signal-card::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--green);
  border-left: 2px solid var(--green);
}

.signal-card::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
}

.signal-card__top {
  display: flex;
  justify-content: space-between;
  color: #99a099;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.signal-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
}

.signal-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.radar {
  position: relative;
  width: min(19vw, 260px);
  min-width: 210px;
  margin: clamp(44px, 8vh, 72px) auto clamp(42px, 7vh, 66px);
  aspect-ratio: 1;
  border: 1px solid rgba(73, 223, 89, 0.16);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49.6%, rgba(73, 223, 89, 0.13) 50%, transparent 50.4%),
    linear-gradient(transparent 49.6%, rgba(73, 223, 89, 0.13) 50%, transparent 50.4%);
}

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(73, 223, 89, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.radar-ring--1 { width: 68%; height: 68%; }
.radar-ring--2 { width: 37%; height: 37%; }
.radar-ring--3 { width: 12%; height: 12%; border-color: var(--green); }

.radar-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46%;
  height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
  box-shadow: 0 -14px 30px rgba(73, 223, 89, 0.2);
  transform-origin: left;
  animation: sweep 4s linear infinite;
}

.radar-core {
  position: absolute;
  top: 25%;
  right: 23%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
  animation: blink 2s ease infinite;
}

.signal-card__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
}

.signal-card__copy span {
  color: #8f968f;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-card__copy strong {
  color: var(--green);
  font-size: clamp(23px, 2.2vw, 34px);
  font-weight: 550;
  letter-spacing: -0.04em;
}

.signal-scale {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  height: 35px;
  margin-top: 20px;
}

.signal-scale span {
  flex: 1;
  height: 20%;
  background: rgba(73, 223, 89, 0.18);
  animation: signal 1.6s ease-in-out infinite alternate;
}

.signal-scale span:nth-child(3n) { height: 80%; animation-delay: -0.8s; }
.signal-scale span:nth-child(4n) { height: 45%; animation-delay: -0.3s; }
.signal-scale span:nth-child(5n) { height: 100%; animation-delay: -1.2s; }

.hero-index {
  position: absolute;
  right: var(--page-x);
  bottom: 20px;
  color: rgba(255, 255, 255, 0.25);
  font-family: ui-monospace, monospace;
  font-size: 9px;
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid rgba(5, 7, 6, 0.25);
  color: var(--black);
  background: var(--green);
}

.ticker-track {
  display: flex;
  gap: 28px;
  align-items: center;
  width: max-content;
  min-height: 50px;
  padding-right: 28px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.11em;
  animation: ticker 24s linear infinite;
}

.ticker-track i {
  font-style: normal;
}

.section {
  position: relative;
  padding: var(--section-y) var(--page-x);
}

.approach,
.experience {
  color: var(--ink);
  background: var(--paper);
}

.section-kicker {
  display: grid;
  grid-template-columns: 48px auto;
  gap: 12px;
  margin-bottom: clamp(54px, 7vw, 98px);
  color: #535a54;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.section-kicker span:first-child {
  color: var(--green-dark);
}

.section-kicker--dark {
  color: #929992;
}

.section-kicker--dark span:first-child {
  color: var(--green);
}

.approach-intro,
.experience-head {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.65fr);
  gap: clamp(45px, 10vw, 160px);
  align-items: end;
}

.section-title {
  font-size: clamp(54px, 7.7vw, 126px);
}

.section-title span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.section-title .title-plain,
.section-title .title-outline {
  display: block;
}

.section-title .title-plain {
  color: inherit;
  -webkit-text-stroke: 0;
}

.lead {
  max-width: 520px;
  margin: 0 0 0.5em;
  color: #424943;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
}

.system-map {
  display: grid;
  grid-template-columns: 1fr minmax(60px, 0.22fr) 1fr minmax(60px, 0.22fr) 1fr;
  align-items: center;
  margin-top: clamp(70px, 10vw, 150px);
}

.map-node {
  position: relative;
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.25);
}

.map-node:hover {
  background: var(--white);
}

.node-number {
  color: #6f786f;
  font-family: ui-monospace, monospace;
  font-size: 10px;
}

.map-node div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
}

.map-node h3 {
  margin: 0 0 6px;
  font-size: clamp(28px, 2.8vw, 44px);
  letter-spacing: -0.045em;
}

.map-node p {
  max-width: 230px;
  margin: 0;
  color: #697069;
  font-size: 13px;
}

.node-pulse {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-dark);
}

.node-pulse::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--green-dark);
  border-radius: inherit;
  content: "";
  animation: ping 2s infinite;
}

.map-connector {
  height: 1px;
  background: var(--line-light);
  overflow: hidden;
}

.map-connector span {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--green-dark);
  animation: connector 2.6s ease-in-out infinite;
}

.diagnostic,
.consultation {
  color: var(--white);
  background: var(--black-soft);
}

.diagnostic {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(50px, 8vw, 120px);
}

.diagnostic-title {
  max-width: 500px;
  font-size: clamp(64px, 8vw, 132px);
  line-height: 0.98;
}

.diagnostic-console {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(340px, 1.28fr);
  min-height: 610px;
  border: 1px solid var(--line-dark);
}

.diagnostic-menu {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
}

.diagnostic-tab {
  flex: 1;
  padding: 20px;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  color: #929992;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease, background 0.2s ease;
}

.diagnostic-tab:last-child {
  border-bottom: 0;
}

.diagnostic-tab span {
  display: block;
  margin-bottom: 13px;
  color: #5d655e;
  font-family: ui-monospace, monospace;
  font-size: 9px;
}

.diagnostic-tab:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.diagnostic-tab.is-active {
  color: var(--black);
  background: var(--green);
}

.diagnostic-tab.is-active span {
  color: rgba(5, 7, 6, 0.58);
}

.diagnostic-output {
  min-width: 0;
}

.console-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line-dark);
  color: #777f78;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.09em;
}

.console-bar div {
  display: flex;
  gap: 6px;
}

.console-bar i {
  width: 7px;
  height: 7px;
  border: 1px solid #5c625d;
  border-radius: 50%;
}

.console-body {
  display: flex;
  flex-direction: column;
  min-height: calc(100% - 52px);
  padding: clamp(28px, 4vw, 58px);
}

.console-prompt {
  color: var(--green);
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.console-body h3 {
  max-width: 570px;
  margin: 34px 0 18px;
  font-size: clamp(34px, 4.2vw, 68px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.console-body > p {
  max-width: 580px;
  margin: 0;
  color: #aeb5ae;
  font-size: clamp(15px, 1.2vw, 19px);
}

.console-body ul {
  display: grid;
  gap: 9px;
  margin: 34px 0 45px;
  padding: 0;
  color: #d3d8d2;
  list-style: none;
  font-size: 13px;
}

.console-body li::before {
  margin-right: 11px;
  color: var(--green);
  content: "+";
}

.console-result {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.console-result span {
  color: #737b74;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.console-result strong {
  max-width: 290px;
  color: var(--green);
  font-size: 15px;
  text-align: right;
}

.experience-head {
  align-items: start;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1px;
  margin-top: clamp(70px, 10vw, 145px);
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.proof-card {
  position: relative;
  min-height: 430px;
  padding: clamp(24px, 3vw, 46px);
  background: var(--paper);
  overflow: hidden;
}

.proof-card--metric {
  grid-row: span 2;
  min-height: 700px;
}

.proof-label {
  color: #5d655e;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.metric-route {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px 30px;
  align-items: center;
  margin: clamp(70px, 10vw, 145px) 0 55px;
}

.metric-old {
  color: #7d857e;
  font-size: clamp(26px, 3vw, 46px);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.metric-line {
  position: relative;
  height: 1px;
  background: #b3bbb4;
}

.metric-line::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--green-dark);
}

.metric-line i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.proof-card.is-visible .metric-line i {
  transform: scaleX(1);
}

.metric-route strong {
  grid-column: 1 / -1;
  color: var(--ink);
  font-family: "Yardakov Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(92px, 12vw, 190px);
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 0.8;
}

.proof-card p {
  max-width: 590px;
  margin: 0;
  color: #454c46;
  font-size: clamp(16px, 1.25vw, 20px);
}

.proof-card small {
  position: absolute;
  right: clamp(24px, 3vw, 46px);
  bottom: clamp(24px, 3vw, 46px);
  left: clamp(24px, 3vw, 46px);
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
  color: #787f79;
  font-size: 10px;
}

.season-dial {
  position: relative;
  width: min(230px, 65%);
  margin: 50px auto 55px;
  aspect-ratio: 1;
  border: 1px solid #a6aea7;
  border-radius: 50%;
}

.season-dial::before,
.season-dial::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: #c4cbc4;
  transform: translate(-50%, -50%);
}

.season-dial::before { width: 1px; height: 112%; }
.season-dial::after { width: 112%; height: 1px; }

.season-arc {
  position: absolute;
  inset: -1px;
  border: 8px solid transparent;
  border-top-color: var(--green-dark);
  border-right-color: var(--green-dark);
  border-radius: 50%;
  transform: rotate(12deg);
}

.season-hand {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 42%;
  height: 2px;
  background: var(--green-dark);
  transform: rotate(-38deg);
  transform-origin: left;
  animation: hand 4s ease-in-out infinite alternate;
}

.season-center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-dark);
  transform: translate(-50%, -50%);
}

.season-dial b {
  position: absolute;
  right: 0;
  bottom: 23%;
  left: 0;
  color: var(--green-dark);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-align: center;
}

.budget-value {
  margin: 60px 0 45px;
}

.budget-value span {
  display: block;
  margin-bottom: 6px;
  color: #757d76;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.budget-value strong {
  display: block;
  font-family: "Yardakov Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(56px, 6.5vw, 96px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.budget-scale {
  position: relative;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
  margin-bottom: 40px;
}

.budget-scale span {
  height: 18px;
  background: #ccd1cc;
}

.budget-scale span:nth-child(n+6) {
  background: rgba(29, 98, 37, 0.28);
}

.budget-scale i {
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: 0;
  width: 3px;
  background: var(--green-dark);
  animation: budget 4.5s ease-in-out infinite;
}

.credentials {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  gap: clamp(45px, 9vw, 130px);
  align-items: end;
  margin-top: clamp(70px, 9vw, 130px);
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid var(--line-light);
  background: #111512;
  color: var(--white);
}

.credentials-copy > span,
.credential-badge span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.11em;
}

.credentials-copy > span {
  color: var(--green);
}

.credentials-copy h3 {
  margin: 45px 0 20px;
  font-family: "Yardakov Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.93;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.credentials-copy p {
  max-width: 520px;
  margin: 0;
  color: #a9b0aa;
}

.credential-stack {
  border-top: 1px solid var(--line-dark);
}

.credential-badge,
.credential-link {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid var(--line-dark);
}

.credential-badge span {
  color: #7f8880;
}

.credential-badge strong {
  color: var(--white);
  font-size: clamp(17px, 2vw, 25px);
  letter-spacing: -0.025em;
}

.credential-link {
  color: var(--green);
  font-size: 12px;
  font-weight: 750;
}

.credential-link span {
  font-size: 20px;
}

.niches {
  display: grid;
  grid-template-columns: minmax(170px, 0.35fr) 1.65fr;
  gap: 40px;
  margin-top: 1px;
  padding: 48px 0 0;
  border-top: 1px solid var(--line-light);
}

.niches > span {
  color: #717972;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.niche-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.niche-list span {
  padding: 10px 14px;
  border: 1px solid var(--line-light);
  color: #303631;
  font-size: 13px;
}

.niche-list span:hover {
  color: var(--paper);
  background: var(--ink);
}

.consultation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(60px, 10vw, 165px);
  overflow: hidden;
}

.consultation-orbit {
  position: absolute;
  top: -18vw;
  right: -18vw;
  width: 48vw;
  aspect-ratio: 1;
  border: 1px solid rgba(73, 223, 89, 0.08);
  border-radius: 50%;
}

.consultation-orbit span {
  position: absolute;
  inset: 18%;
  border: inherit;
  border-radius: inherit;
}

.consultation-orbit span:nth-child(2) {
  inset: 36%;
}

.consultation-orbit i {
  position: absolute;
  top: 48%;
  left: 48%;
  width: 4%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 60px var(--green);
}

.consultation-copy,
.outcome-list {
  position: relative;
  z-index: 2;
}

.section-title--dark span {
  color: var(--green);
  -webkit-text-stroke: 0;
}

.lead--dark {
  margin-top: 48px;
  color: #a8afa8;
}

.consultation-price {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 24px;
  align-items: end;
  max-width: 570px;
  margin-top: clamp(42px, 6vw, 72px);
  padding: 24px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.consultation-price > span {
  grid-column: 1 / -1;
  color: #858d86;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.consultation-price strong {
  color: var(--green);
  font-family: "Yardakov Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(52px, 6vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.consultation-price p {
  margin: 0 0 7px;
  color: #a8afa8;
  font-size: 13px;
  white-space: nowrap;
}

.outcome-list {
  align-self: end;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.outcome-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.outcome-list li > span {
  color: var(--green);
  font-family: ui-monospace, monospace;
  font-size: 9px;
}

.outcome-list strong {
  font-size: 18px;
}

.outcome-list p {
  margin: 5px 0 0;
  color: #878f88;
  font-size: 13px;
}

.fit-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.fit-card {
  position: relative;
  min-height: 250px;
  padding: clamp(28px, 4vw, 56px);
  background: #0e130f;
}

.fit-card--muted {
  background: #090b09;
}

.fit-sign {
  position: absolute;
  top: 30px;
  right: 35px;
  color: var(--green);
  font-family: ui-monospace, monospace;
  font-size: 30px;
}

.fit-card h3 {
  max-width: 380px;
  margin: 60px 0 15px;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -0.045em;
}

.fit-card p {
  max-width: 550px;
  margin: 0;
  color: #8e968e;
}

.contact {
  color: var(--black);
  background: var(--green-surface);
  overflow: hidden;
}

.contact-grid {
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(5, 7, 6, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 7, 6, 0.5) 1px, transparent 1px);
  mask-image: linear-gradient(to right, black, transparent);
}

.contact-head,
.contact-form,
.direct-email {
  position: relative;
  z-index: 2;
}

.contact-head {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
}

.contact-code {
  grid-column: 1 / -1;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.contact h2 {
  font-size: clamp(62px, 9vw, 150px);
}

.contact h2 > span {
  display: block;
}

.contact h2 .contact-title-solid {
  color: var(--black);
  -webkit-text-stroke: 0;
}

.contact h2 .contact-title-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--black);
}

.contact-head p {
  max-width: 470px;
  margin: 0 0 0.5em;
  font-size: clamp(17px, 1.5vw, 22px);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 18px;
  margin-top: clamp(70px, 8vw, 120px);
  padding-top: 30px;
  border-top: 1px solid rgba(5, 7, 6, 0.4);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label > span {
  font-family: ui-monospace, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 0 18px;
  border: 0;
  border-bottom: 1px solid rgba(5, 7, 6, 0.46);
  border-radius: 0;
  outline: none;
  color: var(--black);
  background: transparent;
  font-size: clamp(18px, 2vw, 28px);
  transition: border-color 0.2s ease;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(5, 7, 6, 0.43);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--black);
}

.form-trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-form .consent-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.contact-form .consent-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  border: 1px solid rgba(5, 7, 6, 0.55);
  accent-color: var(--black);
}

.contact-form .consent-check > span {
  max-width: 780px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.consent-check a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
}

.form-footer p {
  max-width: 420px;
  margin: 0;
  color: rgba(5, 7, 6, 0.63);
  font-size: 11px;
}

.contact .button--primary {
  color: var(--green);
  background: var(--black);
}

.contact .button--primary:hover,
.contact .button--primary:focus-visible {
  color: var(--green-bright);
  background: #101410;
  box-shadow: 0 0 0 8px rgba(5, 7, 6, 0.1);
}

.contact .button-icon {
  border-color: rgba(73, 223, 89, 0.45);
}

.form-status {
  display: none;
  margin: 0;
  padding: 14px 18px;
  border: 1px solid rgba(5, 7, 6, 0.45);
  font-size: 13px;
}

.form-status.is-visible {
  display: block;
}

.direct-email {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: baseline;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(5, 7, 6, 0.4);
}

.direct-email span {
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.direct-email strong {
  font-size: clamp(22px, 4vw, 62px);
  letter-spacing: -0.055em;
}

.direct-email:hover strong {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 120px;
  padding: 25px var(--page-x);
  border-top: 1px solid var(--line-dark);
  color: #808881;
  background: var(--black);
  font-size: 11px;
}

.footer-meta {
  justify-self: center;
  max-width: 920px;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.footer-meta nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 9px;
}

.footer-meta a,
.footer-meta button {
  padding: 0;
  border: 0;
  color: #a7aea8;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer > span {
  justify-self: end;
  font-family: ui-monospace, monospace;
}

.cookie-banner {
  position: fixed;
  z-index: 1500;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  max-width: 1120px;
  max-height: calc(100vh - 40px);
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(73, 223, 89, 0.42);
  color: var(--white);
  background: rgba(8, 11, 9, 0.97);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.42);
  overflow-y: auto;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  font-size: 16px;
}

.cookie-banner p {
  max-width: 700px;
  margin: 7px 0 0;
  color: #a8afa8;
  font-size: 12px;
}

.cookie-banner p a {
  color: var(--green);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .button {
  min-height: 46px;
  padding: 0 18px;
  font-size: 10px;
}

.button--secondary {
  border: 1px solid var(--line-dark);
  color: var(--white);
  background: transparent;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.motion-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(34px);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.title-line.reveal:nth-child(2) { transition-delay: 0.08s; }
.title-line.reveal:nth-child(3) { transition-delay: 0.16s; }

@keyframes ping {
  0% { opacity: 0.9; transform: scale(0.6); }
  80%, 100% { opacity: 0; transform: scale(1.5); }
}

@keyframes sweep {
  to { transform: rotate(360deg); }
}

@keyframes blink {
  50% { opacity: 0.3; }
}

@keyframes signal {
  to { height: 100%; background: rgba(73, 223, 89, 0.75); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes connector {
  from { transform: translateX(-110%); }
  to { transform: translateX(360%); }
}

@keyframes hand {
  from { transform: rotate(-68deg); }
  to { transform: rotate(-18deg); }
}

@keyframes budget {
  0%, 100% { left: 0; }
  50% { left: calc(100% - 3px); }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 40px;
  }

  .hero-title {
    font-size: clamp(58px, 9.1vw, 100px);
  }

  .hero-bottom {
    grid-template-columns: 1fr;
  }

  .diagnostic {
    grid-template-columns: 1fr;
  }

  .diagnostic-header {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 40px;
    align-items: end;
  }

  .diagnostic-header .section-kicker {
    margin-bottom: 0;
  }

  .consultation {
    grid-template-columns: 1fr 0.8fr;
    gap: 55px;
  }
}

@media (max-width: 1050px) {
  body.header-menu-open {
    overflow: hidden;
  }

  .site-header {
    grid-template-columns: 1fr auto auto auto;
    gap: 10px;
  }

  .desktop-nav {
    display: none;
  }

  .header-lab-mobile {
    display: grid;
    width: 44px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--green);
    font: 800 9px ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: 0.08em;
  }

  .header-menu-toggle {
    display: flex;
    width: 70px;
    height: 42px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    background: transparent;
    cursor: pointer;
  }

  .header-menu-toggle b {
    font: 800 9px ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: 0.08em;
  }

  .header-menu-toggle i {
    display: grid;
    gap: 5px;
  }

  .header-menu-toggle i span {
    display: block;
    width: 14px;
    height: 1px;
    background: currentColor;
    transition: transform 0.2s ease;
  }

  .header-menu-toggle[aria-expanded="true"] i span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .header-menu-toggle[aria-expanded="true"] i span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .header-mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 76px 0 0;
    display: grid;
    align-content: start;
    padding: 26px clamp(20px, 6vw, 48px) 46px;
    visibility: hidden;
    overflow-y: auto;
    color: var(--white);
    background: linear-gradient(rgba(73, 223, 89, 0.065) 1px, transparent 1px), linear-gradient(90deg, rgba(73, 223, 89, 0.065) 1px, transparent 1px), var(--black);
    background-size: 72px 72px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .header-mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .header-mobile-menu > a,
  .header-mobile-work > a,
  .header-mobile-work > div {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 20px 0;
  }

  .header-mobile-menu span {
    color: var(--green);
    font: 750 9px ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: 0.1em;
  }

  .header-mobile-menu strong {
    font-family: Inter, "SF Pro Text", "Segoe UI", Arial, sans-serif;
    font-size: clamp(22px, 6vw, 34px);
    letter-spacing: -0.035em;
  }

  .header-mobile-menu small {
    color: #929a93;
    font: 700 8px ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .header-mobile-work {
    display: grid;
    margin: 20px 0;
    border-block: 1px solid rgba(73, 223, 89, 0.25);
    padding: 7px 16px 12px;
    background: rgba(73, 223, 89, 0.045);
  }

  .header-mobile-work > p {
    padding: 8px 0;
    color: var(--green);
    font: 750 9px ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: 0.1em;
  }

  .header-mobile-consultation span {
    color: var(--black);
  }
}

@media (max-width: 820px) {
  :root {
    --page-x: 22px;
  }

  /* Android Chromium and Yandex Browser can distort a variable font with
     text-stroke. Keep the mobile contrast with color instead of an outline. */
  .section-title span {
    color: var(--green-dark);
    -webkit-text-stroke: 0;
  }

  .section-title--dark span {
    color: var(--green);
  }

  .contact h2 .contact-title-outline {
    color: rgba(5, 7, 6, 0.5);
    -webkit-text-stroke: 0;
  }

  .site-header {
    grid-template-columns: 1fr auto auto auto;
  }

  .brand-name {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 125px;
  }

  .hero-title {
    font-size: clamp(56px, 16vw, 116px);
  }

  .signal-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center;
    min-height: 0;
    margin-top: 25px;
  }

  .signal-card__top,
  .signal-scale {
    grid-column: 1 / -1;
  }

  .radar {
    width: min(230px, 100%);
    min-width: 0;
    margin: 20px auto;
  }

  .approach-intro,
  .experience-head,
  .contact-head {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .approach-intro > *,
  .experience-head > *,
  .contact-head > *,
  .consultation > *,
  .proof-grid > * {
    min-width: 0;
  }

  .experience {
    overflow: hidden;
  }

  .system-map {
    grid-template-columns: 1fr;
  }

  .map-connector {
    justify-self: center;
    width: 1px;
    height: 65px;
  }

  .map-connector span {
    width: 100%;
    height: 40%;
    animation: none;
    background: var(--green-dark);
  }

  .diagnostic-header {
    grid-template-columns: 1fr;
  }

  .diagnostic-console {
    grid-template-columns: 1fr;
  }

  .diagnostic-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .diagnostic-tab {
    min-height: 110px;
    border-right: 1px solid var(--line-dark);
  }

  .diagnostic-tab:nth-child(even) {
    border-right: 0;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .credentials {
    grid-template-columns: 1fr;
  }

  .proof-card--metric {
    grid-row: auto;
    min-height: 650px;
  }

  .niches {
    grid-template-columns: 1fr;
  }

  .consultation {
    grid-template-columns: 1fr;
  }

  .fit-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: auto 1fr auto;
  }

  .footer-meta p {
    text-align: left;
  }

  .footer-meta nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 66px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .header-mobile-menu {
    inset-block-start: 66px;
  }

  .header-cta span {
    display: none;
  }

  .header-cta {
    width: 44px;
    min-height: 44px;
    justify-content: center;
    border: 1px solid var(--line-dark);
  }

  .hero-title {
    font-size: clamp(50px, 16.4vw, 82px);
    line-height: 0.9;
  }

  .title-line--split {
    margin-left: 0;
  }

  .hero-bottom {
    gap: 25px;
  }

  .signal-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .signal-card__top,
  .signal-scale {
    grid-column: auto;
  }

  .signal-card__copy {
    text-align: center;
    padding-top: 12px;
  }

  .radar {
    width: min(180px, 58vw);
    margin: 6px auto 10px;
  }

  .signal-scale {
    height: 24px;
    margin-top: 8px;
  }

  .section-kicker {
    margin-bottom: 45px;
  }

  .section-title {
    font-size: clamp(49px, 15vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.05em;
  }

  .approach .section-title {
    line-height: 1;
  }

  .experience .section-title {
    font-size: clamp(54px, 15vw, 68px);
    line-height: 1.03;
  }

  .experience .section-title .title-long {
    font-size: 0.62em;
    line-height: 1.16;
    letter-spacing: -0.045em;
    white-space: nowrap;
  }

  .experience .lead {
    overflow-wrap: anywhere;
  }

  .consultation .section-title {
    font-size: clamp(47px, 13.2vw, 64px);
    line-height: 1.04;
  }

  .diagnostic-title {
    font-size: 58px;
    line-height: 1.02;
  }

  .diagnostic-menu {
    grid-template-columns: 1fr;
  }

  .diagnostic-tab {
    min-height: 90px;
    border-right: 0;
  }

  .console-body {
    padding: 28px 20px;
  }

  .console-result {
    flex-direction: column;
    align-items: flex-start;
  }

  .console-result strong {
    text-align: left;
  }

  .proof-card--metric {
    min-height: 570px;
  }

  .metric-route {
    grid-template-columns: 1fr;
    margin-top: 75px;
  }

  .metric-route strong {
    font-size: 28vw;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label,
  .form-wide {
    grid-column: 1;
  }

  .form-footer,
  .direct-email {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact h2 {
    font-size: clamp(46px, 13vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.045em;
  }

  .contact h2 .contact-title-outline {
    margin-top: 16px;
    font-size: 0.96em;
    line-height: 1.08;
  }

  .contact-head {
    gap: 30px;
  }

  .credentials {
    gap: 45px;
    padding: 25px 20px;
  }

  .credentials-copy h3 {
    margin-top: 34px;
    font-size: clamp(39px, 11.5vw, 54px);
    line-height: 1;
  }

  .credential-badge {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
  }

  .credential-link {
    line-height: 1.35;
  }

  .consultation-price {
    grid-template-columns: 1fr;
  }

  .consultation-price p {
    margin: 0;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 24px 14px;
    align-items: start;
  }

  .footer-meta {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
  }

  .footer-meta p {
    font-size: 10px;
    line-height: 1.5;
  }

  .footer-meta nav {
    gap: 9px 15px;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-height: calc(100vh - 20px);
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-actions .button {
    width: 100%;
  }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
