@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/geist-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/geist-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

:root {
  --ink: #07111f;
  --deep: #050b12;
  --deep-soft: #0a1625;
  --deep-card: #0d1a2a;
  --paper: #f3f1ea;
  --paper-warm: #e9e6dc;
  --white: #f7f8f5;
  --pure-white: #ffffff;
  --lime: #d8ff45;
  --lime-dark: #a8d415;
  --cyan: #34c8ff;
  --blue: #4a78ff;
  --green: #35e47a;
  --muted: #606a79;
  --muted-light: #98a4b4;
  --line: rgba(7, 17, 31, 0.14);
  --line-light: rgba(247, 248, 245, 0.14);
  --shadow: 0 32px 90px rgba(3, 9, 17, 0.15);
  --shadow-dark: 0 34px 90px rgba(0, 0, 0, 0.32);
  --shell: min(1320px, calc(100vw - 64px));
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--deep);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

picture {
  display: contents;
}

img {
  height: auto;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--lime);
  color: var(--deep);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--deep);
  font-weight: 750;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
}

.section-pad {
  padding: 132px 0;
}

.section-index {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 68px;
}

.section-head h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  max-width: 890px;
  font-size: clamp(42px, 5.2vw, 78px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-head h2 span,
.about-copy h2 span {
  color: var(--muted);
}

.section-head > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.section-head-light .section-index {
  color: var(--lime);
}

.section-head-light h2,
.section-head-light > p {
  color: var(--white);
}

.section-head-light h2 span {
  color: var(--muted-light);
}

.section-head-light > p {
  color: var(--muted-light);
}

html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 760;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-lime {
  background: var(--lime);
  color: var(--deep);
  box-shadow: 0 16px 40px rgba(216, 255, 69, 0.14);
}

.button-lime:hover {
  background: #e4ff7a;
}

.button-ghost {
  border-color: rgba(247, 248, 245, 0.2);
  color: var(--white);
}

.button-ghost:hover {
  border-color: rgba(247, 248, 245, 0.5);
  background: rgba(247, 248, 245, 0.07);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: #102139;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(247, 248, 245, 0.1);
  content: "";
}

.site-header.is-scrolled {
  background: rgba(5, 11, 18, 0.86);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

html.menu-open .site-header {
  background: rgba(5, 11, 18, 0.98);
  box-shadow: none;
  backdrop-filter: none;
}

.header-inner {
  display: grid;
  min-height: 84px;
  grid-template-columns: 248px 1fr auto;
  gap: 40px;
  align-items: center;
}

.logo {
  display: inline-flex;
  width: 206px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.desktop-nav a {
  position: relative;
  color: rgba(247, 248, 245, 0.68);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.desktop-nav a:hover,
.desktop-nav a.is-current {
  color: var(--white);
}

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

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(247, 248, 245, 0.16);
  border-radius: 10px;
  background: rgba(5, 11, 18, 0.28);
}

.language-switcher a {
  display: inline-flex;
  min-width: 34px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  border-radius: 7px;
  color: rgba(247, 248, 245, 0.58);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.06em;
  transition: color 180ms ease, background 180ms ease;
}

.language-switcher a:hover,
.language-switcher a:focus-visible,
.language-switcher a[aria-current="true"] {
  background: rgba(216, 255, 69, 0.1);
  color: var(--lime);
}

.language-switcher-mobile {
  display: none;
}

.header-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid rgba(247, 248, 245, 0.2);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 740;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.header-action:hover {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--deep);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(247, 248, 245, 0.2);
  border-radius: 11px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.2s ease;
}

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

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

.mobile-menu {
  position: fixed;
  z-index: 99;
  inset: 84px 0 0;
  display: flex;
  flex-direction: column;
  padding: 28px max(32px, calc((100vw - var(--shell)) / 2)) max(32px, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 84% 16%, rgba(216, 255, 69, 0.08), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(52, 200, 255, 0.06), transparent 34%),
    linear-gradient(155deg, rgba(5, 11, 18, 0.98), rgba(7, 17, 31, 0.96));
  backdrop-filter: blur(16px);
  animation: mobile-menu-in 220ms var(--ease) both;
  isolation: isolate;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.mobile-menu a {
  display: flex;
  min-height: 64px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(247, 248, 245, 0.12);
  background: transparent;
  color: var(--white);
  font-size: 26px;
  font-weight: 560;
  letter-spacing: -0.03em;
  transition: color 200ms ease, padding-left 200ms var(--ease), border-color 200ms ease, background 200ms ease;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.mobile-menu a[aria-current="page"] {
  border-color: rgba(216, 255, 69, 0.42);
  color: var(--lime);
  padding-left: 8px;
}

.mobile-menu .mobile-menu-cta {
  min-height: 58px;
  justify-content: space-between;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid rgba(216, 255, 69, 0.76);
  border-radius: 12px;
  color: var(--lime);
  font-size: 16px;
  font-weight: 720;
  letter-spacing: 0;
}

.mobile-menu .mobile-menu-cta::after {
  content: "↗";
}

.mobile-menu .mobile-menu-cta:hover,
.mobile-menu .mobile-menu-cta:focus-visible {
  padding-left: 16px;
  background: var(--lime);
  color: var(--deep);
}

.mobile-menu .language-switcher-mobile {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 16px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid rgba(247, 248, 245, 0.12);
  border-radius: 0;
  background: transparent;
}

.mobile-menu .language-switcher-mobile a {
  width: auto;
  min-width: 48px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(247, 248, 245, 0.58);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.mobile-menu .language-switcher-mobile a:hover,
.mobile-menu .language-switcher-mobile a:focus-visible,
.mobile-menu .language-switcher-mobile a[aria-current="true"] {
  padding-left: 0;
  background: transparent;
  color: var(--lime);
}

.mobile-menu-contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  margin-top: auto;
  padding-top: 28px;
}

.mobile-menu-contacts > span {
  grid-column: 1 / -1;
  color: rgba(247, 248, 245, 0.48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-menu .mobile-menu-contacts a {
  min-width: 0;
  min-height: 44px;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  border: 0;
  color: rgba(247, 248, 245, 0.72);
  font-size: 13px;
  font-weight: 560;
  letter-spacing: 0;
}

.mobile-menu .mobile-menu-contacts a:hover,
.mobile-menu .mobile-menu-contacts a:focus-visible {
  padding-left: 0;
  border-color: transparent;
  color: var(--lime);
}

.mobile-menu-contacts strong,
.mobile-menu-contacts small {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-align: right;
}

@keyframes mobile-menu-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero */

.hero {
  position: relative;
  min-height: 950px;
  overflow: hidden;
  padding: 176px 0 36px;
  background:
    radial-gradient(circle at 70% 20%, rgba(52, 200, 255, 0.08), transparent 31%),
    radial-gradient(circle at 26% 70%, rgba(216, 255, 69, 0.05), transparent 28%),
    var(--deep);
  color: var(--white);
}

.hero-grid,
.contact-grid-bg,
.case-stage-grid,
.security-grid,
.case-cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(120, 166, 204, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 166, 204, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-grid::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--deep) 2%, transparent 30%, transparent 72%, var(--deep) 98%);
  content: "";
}

.hero-orbit {
  position: absolute;
  width: 560px;
  height: 560px;
  border: 1px solid;
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(var(--parallax-y, 0));
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.hero-orbit::before {
  inset: 48px;
  border: 1px solid currentColor;
  opacity: 0.5;
}

.hero-orbit::after {
  width: 9px;
  height: 9px;
  background: currentColor;
  box-shadow: 0 0 20px currentColor;
}

.hero-orbit-cyan {
  top: 60px;
  right: -360px;
  color: rgba(52, 200, 255, 0.22);
}

.hero-orbit-cyan::after {
  top: 82px;
  left: 54px;
}

.hero-orbit-lime {
  bottom: -420px;
  left: 20%;
  color: rgba(216, 255, 69, 0.18);
}

.hero-orbit-lime::after {
  top: 20px;
  right: 120px;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(440px, 0.9fr) minmax(520px, 1.1fr);
  gap: 70px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  color: var(--muted-light);
  font-size: 12px;
  font-weight: 740;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 2px;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(216, 255, 69, 0.5);
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 6.2vw, 92px);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero-lead {
  max-width: 660px;
  margin: 36px 0 0;
  color: rgba(247, 248, 245, 0.7);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.hero-stack li {
  padding: 7px 12px;
  border: 1px solid rgba(247, 248, 245, 0.12);
  border-radius: 999px;
  color: rgba(247, 248, 245, 0.55);
  font-family: Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-workbench {
  position: relative;
  min-height: 600px;
  perspective: 1400px;
}

.workbench-glow {
  position: absolute;
  top: 10%;
  left: 8%;
  width: 80%;
  height: 70%;
  border-radius: 50%;
  background: rgba(52, 200, 255, 0.13);
  filter: blur(90px);
}

.workbench-window {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: absolute;
  z-index: 3;
  top: 58px;
  right: 8px;
  left: 26px;
  overflow: hidden;
  border: 1px solid rgba(247, 248, 245, 0.18);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(17, 36, 58, 0.97), rgba(7, 17, 31, 0.96));
  box-shadow: var(--shadow-dark);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotate(-1.4deg);
  transition: transform 0.28s var(--ease);
  transform-style: preserve-3d;
}

.workbench-window::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.07), transparent 28%),
    radial-gradient(circle at 65% 40%, rgba(52, 200, 255, 0.06), transparent 34%);
  content: "";
  pointer-events: none;
}

.workbench-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid rgba(247, 248, 245, 0.12);
  background: rgba(5, 11, 18, 0.45);
}

.workbench-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(247, 248, 245, 0.74);
  font-family: Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.system-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(53, 228, 122, 0.18);
  border-radius: 999px;
  background: rgba(53, 228, 122, 0.08);
  color: #83f2af;
  font-size: 10px;
  font-weight: 690;
}

.system-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.workbench-body {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.workbench-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.workbench-heading div {
  display: grid;
  gap: 2px;
}

.workbench-heading small {
  color: var(--muted-light);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workbench-heading strong {
  color: var(--white);
  font-size: 19px;
  font-weight: 620;
}

.workbench-code {
  color: rgba(247, 248, 245, 0.3);
  font-family: Consolas, monospace;
  font-size: 10px;
}

.workbench-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 14px;
}

.workbench-core {
  position: relative;
  min-height: 292px;
  overflow: hidden;
  border: 1px solid rgba(247, 248, 245, 0.11);
  border-radius: 18px;
  background:
    radial-gradient(circle at center, rgba(52, 200, 255, 0.12), transparent 45%),
    rgba(2, 9, 16, 0.45);
}

.core-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(52, 200, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 210px;
  height: 210px;
}

.ring-two {
  width: 148px;
  height: 148px;
  border-color: rgba(216, 255, 69, 0.18);
}

.core-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 98px;
  height: 98px;
  place-items: center;
  border: 1px solid rgba(247, 248, 245, 0.18);
  border-radius: 28px;
  background: rgba(13, 27, 43, 0.92);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
}

.core-mark img {
  width: 56px;
}

.core-label {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  color: var(--muted-light);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.node {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid var(--deep);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(52, 200, 255, 0.7);
}

.node-a { top: 38px; left: 50%; }
.node-b { top: 50%; right: 26px; background: var(--lime); }
.node-c { bottom: 34px; left: 30%; background: var(--blue); }
.node-d { top: 48%; left: 24px; background: var(--lime); }

.workbench-streams {
  display: grid;
  gap: 10px;
}

.workbench-streams article {
  display: grid;
  min-height: 87px;
  grid-template-columns: 27px 1fr 38px;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(247, 248, 245, 0.1);
  border-radius: 14px;
  background: rgba(247, 248, 245, 0.035);
}

.workbench-streams article > span {
  color: rgba(247, 248, 245, 0.28);
  font-family: Consolas, monospace;
  font-size: 10px;
}

.workbench-streams div {
  display: grid;
  gap: 2px;
}

.workbench-streams strong {
  color: var(--white);
  font-size: 12px;
  font-weight: 650;
}

.workbench-streams small {
  color: var(--muted-light);
  font-size: 9px;
}

.workbench-streams b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: rgba(52, 200, 255, 0.1);
  color: var(--cyan);
  font-family: Consolas, monospace;
  font-size: 9px;
}

.workbench-streams article:nth-child(2) b {
  background: rgba(216, 255, 69, 0.1);
  color: var(--lime);
}

.workbench-streams article:nth-child(3) b {
  background: rgba(74, 120, 255, 0.13);
  color: #88a4ff;
}

.workbench-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(247, 248, 245, 0.1);
}

.workbench-footer span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(247, 248, 245, 0.48);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.workbench-footer i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.signal-cyan { background: var(--cyan); }
.signal-lime { background: var(--lime); }
.signal-blue { background: var(--blue); }

.floating-note {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(247, 248, 245, 0.18);
  border-radius: 14px;
  background: rgba(10, 22, 37, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  transform: translateY(var(--parallax-y, 0));
}

.note-result {
  top: 12px;
  right: 50px;
  display: grid;
  gap: 2px;
  padding: 13px 17px;
}

.floating-note span {
  color: var(--muted-light);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.floating-note strong {
  color: var(--white);
  font-size: 12px;
}

.note-cycle {
  right: -12px;
  bottom: 54px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
}

.note-cycle > i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  background: var(--lime);
  color: var(--deep);
  font-style: normal;
  font-weight: 800;
}

.note-cycle div {
  display: grid;
}

.hero-foot {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 34px;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(247, 248, 245, 0.12);
}

.hero-foot p {
  max-width: 560px;
  margin: 0;
  color: rgba(247, 248, 245, 0.5);
  font-size: 12px;
}

.hero-foot > span {
  color: rgba(247, 248, 245, 0.26);
  font-family: Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.11em;
}

/* Ticker */

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--lime);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 17px 0;
  animation: ticker 32s linear infinite;
}

.ticker-track span {
  color: var(--deep);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--deep);
}

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

/* Services */

.services-section {
  background: var(--paper);
}

.service-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -24px 0 38px;
}

.service-filters button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 680;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.service-filters button:hover,
.service-filters button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 245, 0.52);
  transition: background 0.28s ease, transform 0.28s var(--ease), box-shadow 0.28s ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--pure-white);
  box-shadow: 0 22px 60px rgba(3, 9, 17, 0.1);
  transform: translateY(-6px);
}

.service-card:focus-within {
  z-index: 2;
  background: var(--pure-white);
  box-shadow: 0 22px 60px rgba(3, 9, 17, 0.1);
  transform: translateY(-6px);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
}

.service-top span {
  color: var(--muted);
  font-family: Consolas, monospace;
  font-size: 11px;
}

.service-top b {
  display: grid;
  min-width: 48px;
  height: 32px;
  place-items: center;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-family: Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.service-card h3 {
  margin: 80px 0 14px;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-card-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.service-card-price span {
  font-size: 16px;
  font-weight: 740;
  letter-spacing: -0.025em;
}

.service-card-price small {
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}

.service-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 720;
}

.service-card > a span {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.service-card > a:hover span {
  transform: translate(3px, -3px);
}

.service-card-accent {
  background: var(--lime);
}

.service-card-accent:hover {
  background: #e2ff71;
}

.service-card-accent:focus-within {
  background: #e2ff71;
}

.service-card-accent .service-top b,
.service-card-accent > a {
  border-color: rgba(7, 17, 31, 0.22);
}

.service-card-accent p,
.service-card-accent .service-top span,
.service-card-accent .service-top b {
  color: rgba(7, 17, 31, 0.7);
}

.service-card-dark {
  border-color: rgba(247, 248, 245, 0.12);
  background: var(--ink);
  color: var(--white);
}

.service-card-dark:hover {
  background: #102139;
}

.service-card-dark:focus-within {
  background: #102139;
}

.service-card-dark p,
.service-card-dark .service-top span,
.service-card-dark .service-top b {
  color: var(--muted-light);
}

.service-card-dark .service-top b,
.service-card-dark > a {
  border-color: rgba(247, 248, 245, 0.16);
}

.service-card-blue {
  background: var(--blue);
  color: var(--white);
}

.service-card-blue:hover {
  background: #5b86ff;
}

.service-card-blue:focus-within {
  background: #5b86ff;
}

.service-card-blue p,
.service-card-blue .service-top span,
.service-card-blue .service-top b {
  color: rgba(247, 248, 245, 0.78);
}

.service-card-blue .service-top b,
.service-card-blue > a {
  border-color: rgba(247, 248, 245, 0.22);
}

.service-card-dark .service-card-price small,
.service-card-blue .service-card-price small {
  color: var(--muted-light);
}

/* Pricing */

.pricing-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 255, 69, 0.09), transparent 30%),
    radial-gradient(circle at 92% 72%, rgba(52, 200, 255, 0.08), transparent 28%),
    #0b1726;
}

.pricing-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(247, 248, 245, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 248, 245, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
}

.pricing-section .shell { position: relative; }

.pricing-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-group {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: rgba(247, 248, 245, 0.045);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.pricing-group-head {
  min-height: 80px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line-light);
}

.pricing-group-head > span {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.pricing-group-head small {
  color: var(--lime);
  font: 700 9px/1 Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-group ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-group li + li { border-top: 1px solid var(--line-light); }

.pricing-group li a {
  min-height: 88px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  transition: background 0.22s ease, padding 0.22s var(--ease);
}

.pricing-group li a:hover {
  padding-right: 20px;
  background: rgba(247, 248, 245, 0.065);
}

.pricing-group li a > span {
  font-size: 13px;
  line-height: 1.35;
}

.pricing-group strong {
  display: grid;
  gap: 3px;
  color: var(--lime);
  font-size: 15px;
  font-weight: 720;
  text-align: right;
  white-space: nowrap;
}

.pricing-group strong small {
  max-width: 180px;
  color: var(--muted-light);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.35;
  white-space: normal;
}

.pricing-note {
  margin-top: 18px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: rgba(247, 248, 245, 0.035);
  color: var(--white);
}

.pricing-note > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(216, 255, 69, 0.35);
  border-radius: 50%;
  color: var(--lime);
  font: italic 700 13px/1 Georgia, serif;
}

.pricing-note p {
  margin: 0;
  color: var(--muted-light);
  font-size: 12px;
  line-height: 1.6;
}

.pricing-note a {
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-note a span { margin-left: 6px; }

/* Approach */

.approach-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 10%, rgba(52, 200, 255, 0.09), transparent 25%),
    var(--deep);
}

.approach-section::before {
  position: absolute;
  top: 0;
  right: 9%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(52, 200, 255, 0.2), transparent);
  content: "";
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.process-card {
  min-height: 300px;
  padding: 28px 25px 30px 0;
  border-right: 1px solid var(--line-light);
  color: var(--white);
}

.process-card + .process-card {
  padding-left: 25px;
}

.process-card:last-child {
  border-right: 0;
}

.process-card > span {
  color: var(--lime);
  font-family: Consolas, monospace;
  font-size: 11px;
}

.process-line {
  position: relative;
  height: 50px;
  margin-top: 24px;
}

.process-line::before {
  position: absolute;
  top: 50%;
  right: -25px;
  left: 0;
  height: 1px;
  background: rgba(247, 248, 245, 0.14);
  content: "";
}

.process-card:last-child .process-line::before {
  right: 0;
}

.process-line i {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--deep);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(52, 200, 255, 0.7);
  transform: translateY(-50%);
}

.process-card:nth-child(even) .process-line i {
  background: var(--lime);
  box-shadow: 0 0 14px rgba(216, 255, 69, 0.55);
}

.process-card h3 {
  margin: 22px 0 13px;
  font-size: 23px;
  font-weight: 580;
  letter-spacing: -0.035em;
}

.process-card p {
  margin: 0;
  color: var(--muted-light);
  font-size: 14px;
  line-height: 1.65;
}

.stack-panel {
  display: grid;
  grid-template-columns: 130px 1fr 270px;
  gap: 26px;
  align-items: center;
  margin-top: 56px;
  padding: 24px 28px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: rgba(247, 248, 245, 0.035);
}

.stack-panel > p {
  margin: 0;
  color: var(--lime);
  font-size: 11px;
  font-weight: 730;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stack-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stack-panel li {
  padding: 7px 10px;
  border: 1px solid rgba(247, 248, 245, 0.13);
  border-radius: 7px;
  color: var(--white);
  font-family: Consolas, monospace;
  font-size: 10px;
}

.stack-panel > span {
  color: var(--muted-light);
  font-size: 12px;
  text-align: right;
}

/* Featured portfolio */

.portfolio-section {
  background: var(--paper-warm);
}

.featured-case {
  display: grid;
  min-height: 720px;
  grid-template-columns: 0.92fr 1.08fr;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.case-copy {
  display: flex;
  flex-direction: column;
  padding: 52px;
}

.case-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-copy h3 {
  margin: 60px 0 15px;
  font-size: clamp(50px, 5vw, 74px);
  font-weight: 540;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.case-lead {
  max-width: 520px;
  margin: 0 0 18px !important;
  color: var(--ink) !important;
  font-size: 21px !important;
  font-weight: 520;
  line-height: 1.4 !important;
}

.case-copy > p {
  max-width: 550px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.case-tags li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: auto 0 30px;
  background: var(--line);
}

.case-metrics div {
  display: grid;
  gap: 5px;
  padding: 17px 15px;
  background: var(--white);
}

.case-metrics strong {
  font-size: 21px;
  font-weight: 670;
  letter-spacing: -0.04em;
}

.case-metrics span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.3;
}

.case-copy .button {
  align-self: flex-start;
}

.case-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(52, 200, 255, 0.14), transparent 32%),
    linear-gradient(145deg, #0c1b2c, var(--deep));
}

.case-visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(52, 200, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 200, 255, 0.16) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: perspective(500px) rotateX(58deg) scale(1.7) translateY(18%);
  transform-origin: bottom;
}

.case-console {
  position: absolute;
  top: 105px;
  right: 64px;
  left: 54px;
  overflow: hidden;
  border: 1px solid rgba(247, 248, 245, 0.17);
  border-radius: 20px;
  background: rgba(9, 21, 35, 0.94);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

.console-top {
  display: flex;
  height: 45px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid rgba(247, 248, 245, 0.11);
  color: var(--muted-light);
  font-family: Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.console-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.console-body {
  display: grid;
  grid-template-columns: 42px 1fr;
  min-height: 360px;
}

.console-sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  padding-top: 22px;
  border-right: 1px solid rgba(247, 248, 245, 0.09);
}

.console-sidebar b {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(247, 248, 245, 0.2);
  border-radius: 4px;
}

.console-sidebar b.is-active {
  border-color: var(--lime);
  background: var(--lime);
}

.console-main {
  padding: 22px;
}

.console-title {
  display: grid;
  gap: 1px;
}

.console-title span {
  color: var(--white);
  font-size: 15px;
  font-weight: 620;
}

.console-title small {
  color: var(--muted-light);
  font-size: 8px;
}

.console-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.console-kpis span {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 9px;
  border: 1px solid rgba(247, 248, 245, 0.1);
  border-radius: 8px;
  background: rgba(247, 248, 245, 0.035);
}

.console-kpis i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.console-kpis b {
  color: var(--muted-light);
  font-size: 7px;
}

.console-chart {
  display: flex;
  height: 104px;
  align-items: flex-end;
  gap: 9px;
  margin-top: 14px;
  padding: 15px;
  border-radius: 10px;
  background: rgba(247, 248, 245, 0.035);
}

.console-chart span {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(var(--cyan), rgba(52, 200, 255, 0.15));
}

.console-chart span:nth-child(1) { height: 34%; }
.console-chart span:nth-child(2) { height: 58%; }
.console-chart span:nth-child(3) { height: 45%; }
.console-chart span:nth-child(4) { height: 82%; background: linear-gradient(var(--lime), rgba(216, 255, 69, 0.12)); }
.console-chart span:nth-child(5) { height: 68%; }
.console-chart span:nth-child(6) { height: 92%; }

.console-rows {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.console-rows i {
  height: 11px;
  border-radius: 3px;
  background: rgba(247, 248, 245, 0.07);
}

.console-rows i:nth-child(2) { width: 82%; }
.console-rows i:nth-child(3) { width: 66%; }

.case-phone {
  position: absolute;
  z-index: 3;
  right: 52px;
  bottom: -165px;
  width: 190px;
  height: 420px;
  overflow: hidden;
  padding: 8px;
  border: 2px solid rgba(247, 248, 245, 0.44);
  border-radius: 34px;
  background: #10161d;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.58);
  transform: rotate(5deg);
}

.case-phone img {
  width: 100%;
  height: 100%;
  border-radius: 27px;
  object-fit: cover;
  object-position: top;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 50%;
  width: 42px;
  height: 4px;
  border-radius: 99px;
  background: #18212a;
  transform: translateX(-50%);
}

.case-status {
  position: absolute;
  z-index: 4;
  right: 205px;
  bottom: 51px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(247, 248, 245, 0.15);
  border-radius: 11px;
  background: rgba(6, 15, 25, 0.9);
  color: var(--white);
  font-size: 9px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.case-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.portfolio-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.portfolio-more p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.portfolio-more a {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 730;
}

/* About */

.about-section {
  background: var(--lime);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  align-items: center;
}

.about-mark {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(7, 17, 31, 0.2);
  border-radius: var(--radius-xl);
}

.about-mark::before,
.about-mark::after {
  position: absolute;
  border: 1px solid rgba(7, 17, 31, 0.15);
  border-radius: 50%;
  content: "";
}

.about-mark::before {
  width: 430px;
  height: 430px;
}

.about-mark::after {
  width: 300px;
  height: 300px;
}

.about-mark img {
  position: relative;
  z-index: 2;
  width: 220px;
}

.about-mark span {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: rgba(7, 17, 31, 0.55);
  font-family: Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-copy .section-index {
  color: rgba(7, 17, 31, 0.62);
}

.about-copy h2 span {
  color: rgba(7, 17, 31, 0.46);
}

.about-lead {
  max-width: 760px;
  margin: 38px 0 0;
  font-size: 20px;
  font-weight: 520;
  line-height: 1.5;
}

.about-points {
  display: grid;
  margin-top: 55px;
  border-top: 1px solid rgba(7, 17, 31, 0.2);
}

.about-points article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(7, 17, 31, 0.2);
}

.about-points article > span {
  padding-top: 2px;
  color: rgba(7, 17, 31, 0.5);
  font-family: Consolas, monospace;
  font-size: 10px;
}

.about-points p {
  display: grid;
  gap: 4px;
  margin: 0;
  color: rgba(7, 17, 31, 0.66);
  font-size: 13px;
}

.about-points strong {
  color: var(--ink);
  font-size: 16px;
}

/* Contact */

.contact-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 100px;
  background:
    radial-gradient(circle at 12% 50%, rgba(52, 200, 255, 0.09), transparent 30%),
    var(--deep);
  color: var(--white);
}

.contact-grid-bg {
  opacity: 0.12;
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
  align-items: start;
}

.contact-layout > *,
.contact-form,
.form-heading > div,
.contact-form input,
.contact-form select,
.contact-form textarea {
  min-width: 0;
}

.contact-copy .section-index {
  color: var(--lime);
}

.contact-copy h2 {
  font-size: clamp(50px, 5.4vw, 78px);
}

.contact-copy h2 span {
  color: var(--lime);
}

.contact-copy > p {
  max-width: 520px;
  margin: 34px 0 0;
  color: var(--muted-light);
  font-size: 17px;
  line-height: 1.7;
}

.contact-direct {
  display: grid;
  gap: 9px;
  margin-top: 28px;
}

.contact-direct a {
  width: min(100%, 520px);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(247, 248, 245, 0.14);
  border-radius: 12px;
  background: rgba(247, 248, 245, 0.035);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-direct a:hover {
  border-color: rgba(216, 255, 69, 0.45);
  background: rgba(247, 248, 245, 0.07);
}

.contact-direct span {
  color: var(--muted-light);
  font: 700 9px/1 Consolas, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: 14px;
  font-weight: 620;
  text-align: right;
}

.contact-route {
  position: relative;
  width: 300px;
  height: 74px;
  margin: 42px 0 28px;
}

.contact-route::before,
.contact-route::after {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), var(--cyan));
  content: "";
}

.contact-route::before {
  top: 22px;
  left: 0;
  width: 165px;
}

.contact-route::after {
  top: 46px;
  left: 156px;
  width: 110px;
  transform: rotate(25deg);
  transform-origin: left;
}

.contact-route i,
.contact-route span {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid var(--deep);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(216, 255, 69, 0.5);
}

.contact-route i:nth-child(1) { top: 18px; left: 0; }
.contact-route i:nth-child(2) { top: 18px; left: 160px; background: var(--cyan); }
.contact-route i:nth-child(3) { top: 65px; left: 260px; background: var(--blue); }
.contact-route span { top: 10px; left: 80px; width: 6px; height: 6px; }

.contact-copy ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-copy li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(247, 248, 245, 0.68);
  font-size: 13px;
}

.contact-copy li span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(247, 248, 245, 0.16);
  border-radius: 8px;
  color: var(--cyan);
  font-family: Consolas, monospace;
  font-size: 8px;
}

.contact-form {
  padding: 36px;
  border: 1px solid rgba(247, 248, 245, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(12, 26, 43, 0.88);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(16px);
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(247, 248, 245, 0.13);
}

.form-heading div {
  display: grid;
  gap: 4px;
}

.form-heading span {
  color: var(--lime);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading strong {
  overflow-wrap: anywhere;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.form-heading > b {
  color: rgba(247, 248, 245, 0.28);
  font-family: Consolas, monospace;
  font-size: 9px;
  font-weight: 500;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form > label,
.form-grid label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.contact-form label > span {
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(247, 248, 245, 0.14);
  border-radius: 11px;
  outline: 0;
  background: rgba(5, 11, 18, 0.46);
  color: var(--white);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 51px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(247, 248, 245, 0.28);
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted-light) 50%),
    linear-gradient(135deg, var(--muted-light) 50%, transparent 50%);
  background-position: calc(100% - 19px) 21px, calc(100% - 14px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.contact-form select option {
  background: var(--deep);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--cyan);
  background-color: rgba(5, 11, 18, 0.68);
  box-shadow: 0 0 0 3px rgba(52, 200, 255, 0.1);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}

.contact-form .consent {
  display: flex;
  grid-template-columns: none;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
  margin: 4px 0 22px;
}

.contact-form .consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--lime);
}

.contact-form .consent span {
  color: rgba(247, 248, 245, 0.48);
  font-size: 10px;
  line-height: 1.5;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-submit b {
  margin-left: auto;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 -8px;
  color: var(--muted-light);
  font-size: 12px;
}

.form-status.is-success {
  color: #8ef3b6;
}

.form-status.is-error {
  color: #ff9d9d;
}

.form-error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 70% 20%, rgba(52, 200, 255, 0.1), transparent 30%),
    var(--deep);
  color: var(--white);
}

.form-error-page main {
  width: min(680px, 100%);
  padding: 48px;
  border: 1px solid rgba(247, 248, 245, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(12, 26, 43, 0.88);
  box-shadow: var(--shadow-dark);
}

.form-error-page main > img {
  width: 210px;
  margin-bottom: 70px;
}

.form-error-page .section-index {
  color: var(--lime);
}

.form-error-page h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 68px);
  font-weight: 530;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.form-error-page h1 span {
  color: var(--lime);
}

.form-error-page main > p:not(.section-index) {
  margin: 28px 0;
  color: var(--muted-light);
  font-size: 15px;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(247, 248, 245, 0.11);
  background: #03080d;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  padding: 78px 0 58px;
}

.footer-brand img {
  width: 220px;
}

.footer-brand p {
  max-width: 320px;
  margin: 22px 0 0;
  color: var(--muted-light);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links div > span {
  margin-bottom: 8px;
  color: rgba(247, 248, 245, 0.32);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(247, 248, 245, 0.7);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(247, 248, 245, 0.1);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(247, 248, 245, 0.58);
  font-size: 10px;
}

.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Responsive */

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 48px, 1120px);
  }

  .header-inner {
    grid-template-columns: 200px 1fr auto;
    gap: 22px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .header-tools {
    gap: 10px;
  }

  .language-switcher-desktop a {
    min-width: 30px;
    padding: 0 5px;
  }

  .hero {
    min-height: 890px;
  }

  .hero-layout {
    grid-template-columns: minmax(390px, 0.92fr) minmax(470px, 1.08fr);
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(56px, 6.3vw, 78px);
  }

  .hero-workbench {
    transform: scale(0.92);
    transform-origin: center right;
  }

  .service-card {
    min-height: 370px;
    padding: 25px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .featured-case {
    grid-template-columns: 1fr 1fr;
  }

  .case-copy {
    padding: 40px;
  }

  .contact-layout {
    gap: 60px;
  }
}

@media (max-width: 1024px) {
  .section-pad {
    padding: 104px 0;
  }

  .desktop-nav,
  .header-tools {
    display: none;
  }

  .header-inner {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-menu {
    inset: 76px 0 0;
  }

  .contact-section {
    scroll-margin-top: 92px;
  }

  .hero {
    min-height: auto;
    padding: 150px 0 110px;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    font-size: clamp(62px, 9vw, 90px);
  }

  .hero-workbench {
    min-height: 590px;
    margin-top: 15px;
    transform: none;
  }

  .hero-foot {
    position: relative;
    bottom: auto;
    margin-top: 38px;
  }

  .section-head {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .section-head > * {
    min-width: 0;
  }

  .section-head > p {
    max-width: 650px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-groups {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card:nth-child(2) {
    border-right: 0;
  }

  .process-card:nth-child(3),
  .process-card:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }

  .stack-panel {
    grid-template-columns: 1fr;
  }

  .stack-panel > span {
    text-align: left;
  }

  .featured-case {
    grid-template-columns: 1fr;
  }

  .case-copy {
    min-height: 670px;
  }

  .case-visual {
    min-height: 620px;
  }

  .about-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
  }

  .about-mark {
    min-height: 480px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-copy {
    max-width: 750px;
  }

  .contact-copy ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 32px);
    --radius-xl: 24px;
  }

  .section-pad {
    padding: 82px 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .logo {
    width: 176px;
  }

  .mobile-menu {
    inset: 70px 0 0;
    padding: 24px 16px;
  }

  .mobile-menu a {
    font-size: 23px;
  }

  .mobile-menu .mobile-menu-cta {
    font-size: 15px;
  }

  .mobile-menu-contacts {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-top: 20px;
  }

  .mobile-menu-contacts > span {
    margin-bottom: 4px;
  }

  .contact-section {
    scroll-margin-top: 86px;
  }

  .hero {
    padding: 126px 0 72px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(48px, 13vw, 70px);
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 17px;
  }

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

  .hero .button {
    width: 100%;
  }

  .hero-stack {
    margin-top: 28px;
  }

  .hero-workbench {
    min-height: 510px;
    margin-right: -12px;
    margin-left: -12px;
  }

  .workbench-window {
    top: 45px;
    right: 0;
    left: 0;
  }

  .workbench-body {
    padding: 16px;
  }

  .workbench-grid {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 8px;
  }

  .workbench-core {
    min-height: 250px;
  }

  .ring-one {
    width: 160px;
    height: 160px;
  }

  .ring-two {
    width: 115px;
    height: 115px;
  }

  .core-mark {
    width: 76px;
    height: 76px;
    border-radius: 22px;
  }

  .core-mark img {
    width: 44px;
  }

  .workbench-streams article {
    min-height: 75px;
    grid-template-columns: 20px 1fr 28px;
    padding: 9px;
  }

  .workbench-streams b {
    width: 28px;
    height: 28px;
  }

  .note-result {
    right: 15px;
  }

  .note-cycle {
    right: 5px;
    bottom: 4px;
  }

  .hero-foot {
    align-items: flex-start;
    gap: 30px;
  }

  .hero-foot > span {
    display: none;
  }

  .ticker-track {
    padding: 14px 0;
  }

  .section-head {
    margin-bottom: 44px;
  }

  .section-head h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .service-filters {
    margin-top: -6px;
  }

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

  .service-card {
    min-height: 350px;
  }

  .pricing-group li a {
    min-height: 82px;
    padding: 16px 18px;
  }

  .pricing-note {
    grid-template-columns: auto 1fr;
  }

  .pricing-note a {
    grid-column: 1 / -1;
  }

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

  .process-card,
  .process-card + .process-card {
    min-height: 240px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .process-card:nth-child(3),
  .process-card:nth-child(4) {
    border-top: 0;
  }

  .process-line::before {
    right: 0;
  }

  .stack-panel {
    margin-top: 38px;
    padding: 22px;
  }

  .featured-case {
    min-height: auto;
  }

  .case-copy {
    min-height: 0;
    padding: 30px 24px;
  }

  .case-meta {
    align-items: flex-start;
    gap: 20px;
  }

  .case-copy h3 {
    margin-top: 42px;
    font-size: 52px;
  }

  .case-metrics {
    margin-top: 42px;
  }

  .case-metrics strong {
    font-size: 17px;
  }

  .case-visual {
    min-height: 530px;
  }

  .case-console {
    top: 60px;
    right: 20px;
    left: 20px;
  }

  .case-phone {
    right: 28px;
    width: 160px;
  }

  .case-status {
    right: 165px;
    bottom: 35px;
  }

  .portfolio-more {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-mark {
    min-height: 380px;
  }

  .about-lead {
    font-size: 18px;
  }

  .contact-layout {
    gap: 50px;
  }

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

  .contact-direct a {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .contact-direct strong { text-align: left; }

  .contact-form {
    padding: 26px 20px;
  }

  .form-error-page main {
    padding: 30px 22px;
  }

  .form-error-page main > img {
    margin-bottom: 50px;
  }

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

  .form-heading strong {
    font-size: 19px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 58px 0 42px;
  }
}

@media (min-width: 761px) and (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .hero-workbench {
    min-height: 455px;
  }

  .workbench-heading strong {
    font-size: 15px;
  }

  .workbench-heading small,
  .workbench-code,
  .workbench-footer {
    display: none;
  }

  .workbench-streams strong {
    font-size: 10px;
  }

  .workbench-streams small {
    font-size: 8px;
  }

  .core-label {
    display: none;
  }

  .case-metrics {
    grid-template-columns: 1fr;
  }

  .case-metrics div {
    grid-template-columns: 90px 1fr;
    align-items: center;
  }

  .case-phone {
    right: 12px;
  }

  .case-status {
    right: auto;
    left: 18px;
  }

  .footer-links {
    gap: 25px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* 2026 compact homepage */

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

.mobile-menu {
  overflow-y: auto;
  overscroll-behavior: contain;
}

.directions-grid .direction-card {
  min-height: 560px;
}

.direction-card .service-top {
  margin-bottom: 0;
}

.direction-card .service-top b {
  min-width: 92px;
}

.direction-card h3 {
  margin-top: 52px;
}

.direction-card h3 a {
  transition: opacity 0.2s ease;
}

.direction-card h3 a:hover {
  opacity: 0.7;
}

.direction-services {
  display: grid;
  gap: 8px;
  margin: 25px 0 28px;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  list-style: none;
}

.direction-services li {
  position: relative;
  padding-left: 15px;
}

.direction-services li::before {
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
  transform: translateY(-50%);
}

.direction-card > a {
  min-height: 44px;
  margin-top: auto;
}

.service-card-dark .direction-services,
.service-card-blue .direction-services {
  color: var(--muted-light);
}

.service-card-dark .direction-services li::before,
.service-card-blue .direction-services li::before {
  background: var(--lime);
}

.service-card-accent .direction-services {
  color: rgba(7, 17, 31, 0.7);
}

.service-card-accent .direction-services li::before {
  background: var(--ink);
}

.case-brief {
  display: grid;
  gap: 18px;
  margin: 26px 0 0;
}

.case-brief div {
  display: grid;
  gap: 5px;
}

.case-brief dt {
  color: var(--blue);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-brief dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.case-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
}

.case-actions > a:not(.button) {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 720;
}

.case-actions > a:not(.button):hover {
  color: var(--blue);
}

.compact-price {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: rgba(247, 248, 245, 0.045);
  color: var(--white);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(12px);
}

.compact-price-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.compact-price-table th,
.compact-price-table td {
  padding: 22px 28px;
  border-bottom: 1px solid var(--line-light);
  text-align: left;
}

.compact-price-table thead th {
  color: rgba(247, 248, 245, 0.42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compact-price-table thead th:last-child,
.compact-price-table tbody td {
  width: 38%;
  text-align: right;
}

.compact-price-table tbody th {
  font-size: 15px;
  font-weight: 570;
}

.compact-price-table tbody td {
  white-space: nowrap;
}

.compact-price-table tbody td strong {
  color: var(--lime);
  font-size: 17px;
  font-weight: 720;
}

.compact-price-table tbody td small {
  margin-left: 9px;
  color: var(--muted-light);
  font-size: 10px;
}

.compact-price-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 28px;
}

.compact-price-note p {
  max-width: 760px;
  margin: 0;
  color: var(--muted-light);
  font-size: 12px;
  line-height: 1.65;
}

.compact-price-note > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.button-outline-light {
  border-color: rgba(247, 248, 245, 0.24);
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.trust-section {
  background: var(--lime);
}

.trust-section .section-index {
  color: rgba(7, 17, 31, 0.62);
}

.trust-section .section-head h2 span {
  color: rgba(7, 17, 31, 0.47);
}

.trust-section .section-head > p {
  color: rgba(7, 17, 31, 0.68);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(7, 17, 31, 0.2);
  border-left: 1px solid rgba(7, 17, 31, 0.2);
}

.trust-grid article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid rgba(7, 17, 31, 0.2);
  border-bottom: 1px solid rgba(7, 17, 31, 0.2);
}

.trust-grid article > span {
  color: rgba(7, 17, 31, 0.52);
  font: 700 10px/1.2 Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-grid h3 {
  margin: 72px 0 14px;
  font-size: 22px;
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.trust-grid p {
  margin: 0;
  color: rgba(7, 17, 31, 0.68);
  font-size: 13px;
  line-height: 1.6;
}

.trust-stack {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 0;
}

.trust-stack span {
  color: rgba(7, 17, 31, 0.52);
  font: 700 10px/1 Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-stack p {
  margin: 0;
  font-size: 12px;
  font-weight: 650;
}

.contact-form .consent {
  min-height: 44px;
  align-items: flex-start;
}

.contact-form .consent a {
  color: var(--lime);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-form .consent a:hover {
  color: var(--white);
}

@media (max-width: 1180px) {
  .direction-card h3 {
    font-size: 24px;
  }

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

  .compact-price-note > div {
    justify-content: flex-start;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .directions-grid .direction-card {
    min-height: auto;
  }

  .direction-card h3 {
    margin-top: 42px;
  }

  .direction-services {
    margin-bottom: 24px;
  }

  .case-brief {
    margin-top: 22px;
  }

  .case-actions {
    align-items: stretch;
  }

  .case-actions .button,
  .case-actions > a:not(.button) {
    width: 100%;
    justify-content: center;
  }

  .compact-price-table th,
  .compact-price-table td {
    padding: 18px 16px;
  }

  .compact-price-table thead th:last-child,
  .compact-price-table tbody td {
    width: 44%;
  }

  .compact-price-table tbody th {
    font-size: 13px;
  }

  .compact-price-table tbody td strong {
    display: block;
    font-size: 14px;
  }

  .compact-price-table tbody td small {
    display: block;
    margin: 3px 0 0;
  }

  .compact-price-note {
    gap: 24px;
    padding: 22px 16px;
  }

  .compact-price-note > div,
  .compact-price-note .button {
    width: 100%;
  }

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

  .trust-grid article {
    min-height: 220px;
  }

  .trust-grid h3 {
    margin-top: 48px;
  }

  .trust-stack {
    display: grid;
  }
}

@media (max-width: 460px) {
  .compact-price-table thead th {
    padding: 14px 12px;
    font-size: 8px;
  }

  .compact-price-table th,
  .compact-price-table td {
    padding: 16px 12px;
  }

  .compact-price-table tbody th {
    font-size: 12px;
    line-height: 1.35;
  }

  .compact-price-table tbody td strong {
    font-size: 13px;
  }
}

@media (max-width: 760px) {
  .footer-links a,
  .footer-bottom a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .contact-form .consent input {
    margin-top: 4px;
  }
}

@media (min-width: 1025px) and (max-height: 800px) {
  .hero {
    min-height: 800px;
    padding-top: 120px;
  }

  .hero-layout {
    align-items: start;
  }

  .hero .eyebrow {
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(54px, 5.5vw, 72px);
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-stack {
    margin-top: 20px;
  }

  .hero-workbench {
    min-height: 540px;
    transform: scale(0.9);
    transform-origin: center top;
  }
}
