:root {
  --bg: #000000;
  --bg-1: #050505;
  --bg-2: #0a0a0a;
  --bg-3: #111111;
  --line: #1c1c1c;
  --line-soft: #161616;
  --text: #f4f4f4;
  --text-2: #9b9b9b;
  --text-3: #636363;
  --ok: #4f9a70;
  --sans: 'Bricolage Grotesque', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Consolas, 'Liberation Mono', monospace;
  --nav-h: 76px;
  --pad: clamp(22px, 5vw, 72px);
  --max: 1220px;
}

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

html {
  font-size: 16px;
  zoom: 80%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

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

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

::selection {
  background: var(--text);
  color: var(--bg);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #1d1d1d;
  border: 3px solid var(--bg);
  border-radius: 8px;
}

:focus-visible {
  outline: 1px solid #8a8a8a;
  outline-offset: 3px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.container--narrow {
  max-width: 900px;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  background: var(--bg);
}

.js .loader {
  display: grid;
}

.js .loader__line {
  transform: scaleX(0);
}

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader__logos {
  position: relative;
  width: 48px;
  height: 48px;
}

.loader__logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.js .loader__logo {
  opacity: 0;
}

.loader__line {
  width: 56px;
  height: 1px;
  background: #2c2c2c;
  transform-origin: left;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 95;
  height: var(--nav-h);
  background: rgba(0, 0, 0, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background-color 0.3s ease, top 0.45s cubic-bezier(0.22, 1, 0.36, 1), width 0.45s cubic-bezier(0.22, 1, 0.36, 1), height 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-radius 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s ease, box-shadow 0.45s ease;
}

.nav.is-scrolled {
  top: 12px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: min(calc(100% - 48px), 900px);
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(6, 6, 6, 0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
}

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

.logo__mark {
  display: block;
  height: 28px;
  width: auto;
}

.logo__text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.nav__links a {
  position: relative;
  font-size: 13px;
  color: var(--text-2);
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-panel {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  padding: 9px 16px;
  border: 1px solid #2b2b2b;
  border-radius: 2px;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.btn-panel:hover {
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.burger {
  display: none;
  position: relative;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease;
}

.burger span:nth-child(1) {
  top: 50%;
  transform: translateY(-3.5px);
}

.burger span:nth-child(2) {
  top: 50%;
  transform: translateY(2px);
}

.burger.is-open span:nth-child(1) {
  transform: translateY(-0.75px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  transform: translateY(-0.75px) rotate(-45deg);
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
  padding: 0 var(--pad);
  transform: translateY(-101%);
  visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1), visibility 0s linear 0.5s;
}

.menu.is-open {
  transform: none;
  visibility: visible;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}

.menu__links {
  display: flex;
  flex-direction: column;
}

.menu__links a {
  display: block;
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

.menu__links a:first-child {
  border-top: 1px solid var(--line-soft);
}

.menu__links a.menu__panel {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  padding-top: 26px;
  border-bottom: 0;
}

.menu__socials {
  position: absolute;
  bottom: 28px;
  left: var(--pad);
  display: flex;
  gap: 10px;
}

body.menu-open {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--solid {
  background: var(--text);
  color: var(--bg);
}

.btn--solid:hover {
  background: #d6d6d6;
}

.btn--ghost {
  border: 1px solid #2c2c2c;
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--text);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
  text-align: left;
  padding: calc(var(--nav-h) + 24px) var(--pad) 128px;
  overflow-x: hidden;
}

.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 42% at 50% 46%, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0) 70%);
}

.hero__frame {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero__kicker {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 36px;
}

.hero__kicker::before,
.hero__kicker::after {
  content: "";
  width: 24px;
  height: 1px;
  background: #2e2e2e;
  display: inline-block;
  margin: 0 12px;
}

.hero__title {
  font-size: clamp(26px, 5.2vw, 72px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  max-width: 1050px;
  color: var(--text-2);
}

.hero__title-line {
  display: block;
}

.hero__title-em {
  color: var(--text);
  font-weight: 700;
}

.hero__rule {
  display: block;
  width: 44px;
  height: 1px;
  margin: 34px 0 0;
  background: #333;
  transform-origin: center;
}

.hero__tagline {
  margin: 26px 0 0;
  max-width: 540px;
  color: var(--text-2);
  font-size: clamp(15px, 2vw, 18px);
}

.hero__actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.mock {
  font-size: 14px;
}

.mock__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--m-bg2);
  border-bottom: 1px solid var(--m-line);
}

.mock__dots {
  display: flex;
  gap: 6px;
}

.mock__dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4e5058;
}

.mock__bar-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--m-muted);
  margin-left: 8px;
}

.mock__bar-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--m-muted);
}

.mock__bar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--m-green);
}

.mock__body {
  display: grid;
  grid-template-columns: 50px 150px minmax(0, 1fr) 110px;
  grid-template-rows: minmax(0, 1fr);
  height: 440px;
}

.mock__rail,
.mock__sidebar,
.mock__chat,
.mock__members {
  min-height: 0;
}

.mock__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  background: var(--m-bg);
  overflow: hidden;
}

.mock__rail-item {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--m-muted);
  background: var(--m-bg2);
}

.mock__rail-item--home {
  background: var(--m-text);
  color: #000;
}

.mock__rail-item--active {
  background: var(--m-bg3);
  color: var(--m-text);
}

.mock__rail-item--active::before {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  border-radius: 0 2px 2px 0;
  background: var(--m-text);
}

.mock__rail-item--add {
  background: transparent;
  border: 1px dashed var(--m-muted);
}

.mock__rail-divider {
  width: 28px;
  height: 2px;
  border-radius: 1px;
  background: #35373c;
}

.mock__sidebar {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 8px;
  background: var(--m-bg2);
  overflow: hidden;
}

.mock__side-head {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--m-muted);
  padding: 8px 10px 6px;
}

.mock__channel {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--m-muted);
}

.mock__channel--active {
  background: var(--m-bg5);
  color: var(--m-text);
}

.mock__chat {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--m-bg3);
}

.mock__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--m-line);
}

.mock__hashtag {
  color: var(--m-muted);
  font-size: 17px;
  font-weight: 600;
}

.mock__channel-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--m-text);
}

.mock__header-right {
  margin-left: auto;
  font-size: 11px;
  color: var(--m-muted);
}

.mock__scroll {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px 14px 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #1e1f22 transparent;
}

.mock__scroll::-webkit-scrollbar {
  width: 6px;
}

.mock__scroll::-webkit-scrollbar-thumb {
  background: #1e1f22;
  border-radius: 3px;
}

.mock__msg {
  display: flex;
  gap: 12px;
}

.mock__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  background: #3b3f45;
  color: var(--m-text);
}

.mock__avatar--a {
  background: #3b3f45;
}

.mock__avatar--n {
  background: #454950;
}

.mock__avatar--me {
  background: #40444d;
}

.mock__avatar--bot {
  background: var(--m-text);
  color: #000;
}

.mock__msg-body {
  min-width: 0;
}

.mock__author {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mock__author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--m-text);
}

.mock__tag {
  background: var(--m-blurple);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 1px 5px;
  border-radius: 3px;
}

.mock__time {
  font-size: 11px;
  color: var(--m-muted);
}

.mock__text {
  margin-top: 3px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--m-text);
}

.mock__chip {
  display: inline-flex;
  align-items: center;
  background: var(--m-blurple);
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 4px;
}

.mock__embed {
  max-width: 340px;
  margin-top: 2px;
  padding: 10px 12px;
  border-left: 3px solid #4e5058;
  border-radius: 4px;
  background: var(--m-bg2);
}

.mock__embed-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--m-text);
}

.mock__embed-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin-top: 10px;
}

.mock__embed-field span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--m-muted);
}

.mock__embed-field b {
  display: block;
  margin-top: 2px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--m-text);
}

.mock__input {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 14px 14px;
  padding: 11px 14px;
  border-radius: 8px;
  background: var(--m-bg4);
}

.mock__input-field {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  padding: 0;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--m-text);
  outline: none;
}

.mock__input-field::placeholder {
  color: var(--m-muted);
}

.mock__input-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--m-muted);
  color: var(--m-bg3);
  font-size: 14px;
  line-height: 1;
}

.mock__input-send {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-left: auto;
  flex-shrink: 0;
  border: 0;
  border-radius: 4px;
  background: var(--m-text);
  color: #000;
  font-size: 12px;
  cursor: pointer;
}

.mock__typing-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 0;
}

.mock__typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--m-muted);
  animation: mock-bounce 1.2s ease-in-out infinite;
}

.mock__typing-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.mock__typing-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes mock-bounce {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.mock__members {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 10px;
  border-left: 1px solid var(--m-line);
  background: var(--m-bg2);
  overflow: hidden;
}

.mock__member {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--m-muted);
}

.mock__member b {
  font-size: 13px;
  font-weight: 600;
  color: var(--m-text);
}

.mock__mavatar {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  background: #3b3f45;
  color: var(--m-text);
}

.mock__mavatar--n {
  background: #454950;
}

.mock__mavatar--bot {
  background: var(--m-text);
  color: #000;
}

.mock__status {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--m-bg2);
  background: #80848e;
}

.mock__status--on {
  background: var(--m-green);
}

.hero__mock {
  position: relative;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #313338;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.65);
  --m-bg: #1e1f22;
  --m-bg2: #2b2d31;
  --m-bg3: #313338;
  --m-bg4: #383a40;
  --m-bg5: #404249;
  --m-line: #26282c;
  --m-text: #dbdee1;
  --m-muted: #949ba4;
  --m-green: #23a55a;
  --m-blurple: #5865f2;
}

.hero__spec {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px var(--pad);
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  pointer-events: none;
}

.hero__spec-scroll {
  text-align: right;
}

.is-typing::after {
  content: "▍";
  display: inline-block;
  margin-left: 3px;
  color: var(--text-3);
  animation: zova-blink 1s steps(1) infinite;
}

@keyframes zova-blink {
  50% {
    opacity: 0;
  }
}

.section {
  padding: clamp(96px, 12vw, 160px) 0;
  scroll-margin-top: calc(var(--nav-h) + 6px);
}

.section--infra {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.sec-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-3);
}

.sec-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #333;
}

.sec-label--center {
  justify-content: center;
}

.sec-label--center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: #333;
}

.sec-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-top: 24px;
}

.sec-title[data-torn] {
  position: relative;
}

.paper-word {
  position: relative;
  display: inline-block;
}

.paper {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  font-family: var(--mono);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #0b0b0b;
  background: #e7e2d4;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.7);
  clip-path: polygon(1% 8%, 12% 2%, 25% 7%, 38% 2%, 52% 8%, 65% 3%, 80% 7%, 92% 2%, 99% 9%, 100% 32%, 97% 55%, 100% 76%, 96% 98%, 82% 93%, 68% 99%, 53% 93%, 38% 98%, 24% 92%, 11% 98%, 3% 92%, 0% 72%, 3% 48%, 0% 25%);
  visibility: hidden;
  white-space: nowrap;
}

.section--infra .sec-title,
.section--infra .sec-sub {
  margin-left: auto;
  margin-right: auto;
}

.sec-sub {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 20px;
  max-width: 520px;
}

.section--infra .sec-sub {
  max-width: 560px;
}

.sec-head__row {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-top: 26px;
}

.sec-head__row .sec-sub {
  margin-top: 0;
  justify-self: end;
}

.svc {
  margin-top: clamp(48px, 6vw, 84px);
}

.svc__row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(0, 1.3fr) 40px;
  align-items: center;
  gap: 24px;
  padding: clamp(28px, 4vw, 44px) 8px;
  border-top: 1px solid var(--line-soft);
  transition: background-color 0.35s ease;
}

.svc__row:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.svc__row:hover {
  background: var(--bg-2);
}

.svc__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-3);
}

.svc__name {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  transition: transform 0.35s ease, color 0.35s ease;
}

.svc__row:hover .svc__name {
  transform: translateX(12px);
  color: var(--text);
}

.svc__desc {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 420px;
}

.svc__arrow {
  font-size: 18px;
  color: var(--text-3);
  opacity: 0.7;
  transition: transform 0.35s ease, color 0.35s ease, opacity 0.35s ease;
}

.svc__row:hover .svc__arrow {
  transform: translateX(6px);
  color: var(--text);
  opacity: 1;
}

.infra__flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(44px, 6vw, 72px);
}

.infra__node {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
}

.infra__idx {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-3);
}

.infra__name {
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.infra__note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 10px;
  margin-bottom: 10px;
}

.infra__link {
  position: relative;
  width: 1px;
  height: clamp(52px, 7vw, 84px);
  margin: 8px 0;
  background: var(--line);
  transform-origin: 50% 50%;
}

.infra__link::after {
  content: "";
  position: absolute;
  left: -3px;
  bottom: -5px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #3a3a3a;
  border-bottom: 1px solid #3a3a3a;
  transform: rotate(45deg);
}

.infra__tag {
  position: absolute;
  left: 22px;
  top: 50%;
  margin-top: -6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}

.lic__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  margin-top: clamp(40px, 5vw, 64px);
}

.lic__list {
  margin-top: 34px;
  border-top: 1px solid var(--line-soft);
}

.lic__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--text-2);
}

.lic__dot {
  width: 4px;
  height: 4px;
  background: #3a3a3a;
  border-radius: 50%;
  flex-shrink: 0;
}

.key {
  position: relative;
  border: 1px solid var(--line);
  background: var(--bg-1);
  padding: clamp(22px, 3vw, 34px);
}

.key__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}

.key__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
}

.key__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ok);
}

.key__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.key__code {
  display: block;
  font-family: var(--mono);
  font-size: clamp(17px, 2.4vw, 23px);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-top: 30px;
  white-space: nowrap;
}

.key__foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 30px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}

.stats {
  padding: clamp(80px, 10vw, 130px) 0;
  border-top: 1px solid var(--line-soft);
  background: var(--bg-2);
  scroll-margin-top: calc(var(--nav-h) + 6px);
}

.stats__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(36px, 5vw, 60px);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.stats__cell {
  padding: clamp(32px, 4.5vw, 56px) clamp(16px, 3vw, 36px);
  border-left: 1px solid var(--line-soft);
}

.stats__cell:first-child {
  border-left: 0;
}

.stats__num {
  display: block;
  font-family: var(--mono);
  font-size: clamp(40px, 6.5vw, 70px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.stats__name {
  display: block;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
}

.stats__note {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-3);
}

.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(110px, 15vw, 180px) 0;
  border-top: 1px solid var(--line-soft);
  scroll-margin-top: calc(var(--nav-h) + 6px);
}

.cta__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 40% at 50% 45%, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 70%);
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta__title {
  font-size: clamp(34px, 6.4vw, 68px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 820px;
  margin: 28px auto 0;
}

.cta__sub {
  color: var(--text-2);
  font-size: 16px;
  margin-top: 20px;
}

.cta__actions {
  margin-top: 36px;
}

.cta__note {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}

.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 90px) var(--pad) 56px;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.footer__desc {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-3);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 3vw, 32px);
  padding-top: 6px;
}

.footer__links a {
  font-size: 13px;
  color: var(--text-2);
  transition: color 0.25s ease;
}

.footer__links a:hover {
  color: var(--text);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--pad);
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-3);
}

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

.footer__social {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--text-3);
  border: 1px solid var(--line);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.footer__social:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

@media (max-width: 1199px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  }

  .mock__body {
    grid-template-columns: 50px 150px minmax(0, 1fr);
  }

  .mock__members {
    display: none;
  }
}

@media (max-height: 900px) {
  .hero {
    padding-top: calc(var(--nav-h) + 12px);
    padding-bottom: 96px;
  }

  .mock__body {
    height: 400px;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mock__body {
    grid-template-columns: 46px minmax(0, 1fr);
    height: 380px;
  }

  .mock__sidebar {
    display: none;
  }

  .mock__header-right {
    display: none;
  }
}

@media (max-width: 900px) {
  .sec-head__row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .sec-head__row .sec-sub {
    justify-self: start;
  }

  .svc__row {
    grid-template-columns: 44px 1fr;
    gap: 10px 18px;
  }

  .svc__desc {
    grid-column: 2;
  }

  .svc__arrow {
    display: none;
  }

  .lic__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 860px) {
  .nav__links,
  .btn-panel {
    display: none;
  }

  .burger {
    display: block;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-h: 64px;
  }

  .nav.is-scrolled {
    width: calc(100% - 32px);
    height: 56px;
    top: 10px;
  }

  .hero {
    padding-bottom: 108px;
  }

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

  .hero__spec-mid {
    display: none;
  }

  .hero__kicker::before,
  .hero__kicker::after {
    display: none;
  }

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

  .stats__cell {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }

  .stats__cell:first-child {
    border-top: 0;
  }

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

  .infra__tag {
    left: 18px;
  }
}

@media (max-width: 900px) {
  *,
  *::before,
  *::after {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .nav {
    background: rgba(0, 0, 0, 0.92);
  }

  .nav.is-scrolled {
    background: rgba(6, 6, 6, 0.96);
  }
}

@media (max-width: 640px) {
  .loader__logos {
    width: 76px;
    height: 76px;
  }
}

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

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