:root {
  color-scheme: dark;
  --brand-ink-950: #050708;
  --brand-ink-900: #080b0e;
  --brand-paper: #f3f0e8;
  --brand-paper-soft: #c9c7c0;
  --brand-signal: #d8ff68;
  --ink-950: var(--brand-ink-950);
  --ink-900: var(--brand-ink-900);
  --ink-850: #0c1014;
  --ink-800: #11171c;
  --ink-700: #182129;
  --ink-600: #25313a;
  --paper: var(--brand-paper);
  --paper-soft: var(--brand-paper-soft);
  --muted: #8e969a;
  --signal: var(--brand-signal);
  --signal-2: #8ff8de;
  --copper: #d7a46f;
  --danger: #ff7f75;
  --warning: #ffd166;
  --success: #81f1b2;
  --line: rgba(243, 240, 232, 0.12);
  --line-strong: rgba(243, 240, 232, 0.22);
  --glass: rgba(13, 17, 20, 0.72);
  --glass-strong: rgba(16, 22, 26, 0.92);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 11px;
  --container: min(1240px, calc(100vw - 40px));
  --display: clamp(3.25rem, 8vw, 8rem);
  --h1: clamp(2.8rem, 6vw, 6.3rem);
  --h2: clamp(2.1rem, 4.5vw, 4.5rem);
  --h3: clamp(1.35rem, 2vw, 2rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--ink-950);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% -10%, rgba(143, 248, 222, 0.1), transparent 34rem),
    radial-gradient(circle at 100% 20%, rgba(216, 255, 104, 0.08), transparent 30rem),
    var(--ink-950);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  color: var(--ink-950);
  background: var(--signal);
}

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

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

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

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

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--ink-950);
  background: var(--signal);
  transition: transform 0.2s ease;
}

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

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

.muted {
  color: var(--muted);
}

.signal {
  color: var(--signal);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--paper-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--signal), transparent);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--h2);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.section-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--paper-soft);
  font-size: 1.02rem;
}

.section-kicker {
  margin-bottom: 16px;
  color: var(--signal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 118px 0;
}

.section.compact {
  padding: 82px 0;
}

.grid-line {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(243, 240, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 240, 232, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 84%, transparent);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 1000;
  width: min(1260px, calc(100vw - 28px));
  transform: translateX(-50%);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 13px 12px 17px;
  border: 1px solid rgba(243, 240, 232, 0.12);
  border-radius: 18px;
  background: rgba(7, 10, 12, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(130%);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: 178px;
  height: auto;
  aspect-ratio: 500 / 96;
}

.brand-logo-footer {
  width: min(280px, 100%);
  aspect-ratio: 500 / 125;
}

.brand-logo-light {
  display: none;
}

.brand-logo-static {
  display: none;
}

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

.main-nav a {
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--paper-soft);
  font-size: 0.86rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--paper);
  background: rgba(243, 240, 232, 0.07);
  outline: none;
}

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

.header-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(243, 240, 232, 0.035);
}

.header-icon:hover { border-color: rgba(216, 255, 104, 0.42); }
.header-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.header-icon img { width: 23px; height: 23px; object-fit: contain; border-radius: 6px; }
.telegram-action { color: #2aabee; }
.max-action img { filter: invert(1); }
:root[data-theme="light"] .max-action img { filter: none; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(129, 241, 178, 0.16);
  border-radius: 999px;
  color: #b7f7d1;
  background: rgba(129, 241, 178, 0.06);
  font-size: 0.76rem;
  white-space: nowrap;
}

.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(129, 241, 178, 0.1), 0 0 16px rgba(129, 241, 178, 0.7);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: 0.87rem;
  font-weight: 750;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--ink-950);
  background: var(--signal);
  box-shadow: 0 14px 34px rgba(216, 255, 104, 0.15);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(216, 255, 104, 0.23);
}

.btn-secondary {
  border-color: var(--line-strong);
  background: rgba(243, 240, 232, 0.045);
}

.btn-secondary:hover {
  border-color: rgba(243, 240, 232, 0.36);
  background: rgba(243, 240, 232, 0.08);
}

.btn-ghost {
  min-height: 40px;
  padding: 8px 12px;
  border-color: transparent;
  color: var(--paper-soft);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--paper);
  background: rgba(243, 240, 232, 0.06);
}

.btn-danger {
  border-color: rgba(255, 127, 117, 0.2);
  color: #ffc5c1;
  background: rgba(255, 127, 117, 0.07);
}

.btn-icon {
  width: 40px;
  min-height: 40px;
  padding: 0;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(243, 240, 232, 0.04);
}

.theme-toggle {
  --icon-accent: var(--signal);
  --icon-muted: var(--muted);
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  color: var(--paper);
  background: rgba(243, 240, 232, 0.04);
  font-size: 1.05rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.theme-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

.status-pill.status-operational {
  border-color: rgba(129, 241, 178, 0.2);
  color: #b7f7d1;
  background: rgba(129, 241, 178, 0.06);
}

.status-pill.status-operational::before {
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(129, 241, 178, 0.1), 0 0 16px rgba(129, 241, 178, 0.7);
}

.status-pill.status-partial {
  border-color: rgba(255, 209, 102, 0.22);
  color: #ffe19a;
  background: rgba(255, 209, 102, 0.07);
}

.status-pill.status-partial::before {
  background: var(--warning);
  box-shadow: 0 0 0 5px rgba(255, 209, 102, 0.1), 0 0 16px rgba(255, 209, 102, 0.55);
}

.status-pill.status-degraded {
  border-color: rgba(255, 127, 117, 0.22);
  color: #ffc3bf;
  background: rgba(255, 127, 117, 0.07);
}

.status-pill.status-degraded::before {
  background: var(--danger);
  box-shadow: 0 0 0 5px rgba(255, 127, 117, 0.1), 0 0 16px rgba(255, 127, 117, 0.55);
}

.hero {
  position: relative;
  display: flex;
  min-height: 940px;
  align-items: center;
  overflow: hidden;
  padding: 160px 0 90px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -42%;
  width: 860px;
  height: 860px;
  border: 1px solid rgba(216, 255, 104, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 74px rgba(216, 255, 104, 0.012),
    0 0 0 146px rgba(143, 248, 222, 0.01),
    inset 0 0 100px rgba(216, 255, 104, 0.025);
  pointer-events: none;
}

#network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.64;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.72fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
  padding-top: 35px;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--h1);
  font-weight: 400;
  line-height: 0.89;
  letter-spacing: -0.066em;
}

.hero h1 .line {
  display: block;
}

.hero h1 .accent-line {
  color: var(--signal);
  font-style: italic;
}

.hero-lead {
  max-width: 660px;
  margin: 29px 0 0;
  color: var(--paper-soft);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.hero-network-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 28px;
  color: var(--muted);
  font: 0.72rem/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.hero-network-proof span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-network-proof span:not(:last-child)::after {
  content: "→";
  margin-left: 10px;
  color: rgba(143, 248, 222, 0.48);
}

.hero-network-proof i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 12px rgba(216, 255, 104, 0.46);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 35px;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--signal-2);
}

.configurator {
  position: relative;
  min-width: 0;
  scroll-margin-top: 132px;
  padding: 26px;
  border: 1px solid rgba(243, 240, 232, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(216, 255, 104, 0.05), transparent 45%),
    rgba(8, 12, 14, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.configurator::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(243, 240, 232, 0.055);
  border-radius: 22px;
  pointer-events: none;
}

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

.config-top h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 750;
}

.config-top p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.orbit-mini {
  position: relative;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(216, 255, 104, 0.25);
  border-radius: 50%;
}

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

.orbit-mini::before {
  inset: 8px;
  border: 1px dashed rgba(143, 248, 222, 0.28);
  animation: spin 12s linear infinite;
}

.orbit-mini::after {
  top: 10px;
  left: 7px;
  width: 6px;
  height: 6px;
  background: var(--signal);
  box-shadow: 0 0 18px rgba(216, 255, 104, 0.7);
}

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

.range-group {
  padding: 22px 0 0;
}

.range-row {
  display: grid;
  grid-template-columns: 78px 1fr 74px;
  gap: 15px;
  align-items: center;
  margin-bottom: 19px;
}

.range-row label {
  color: var(--paper-soft);
  font-size: 0.8rem;
}

.range-value {
  justify-self: end;
  min-width: 68px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(243, 240, 232, 0.045);
  font-size: 0.75rem;
  text-align: center;
}

input[type="range"] {
  width: 100%;
  height: 4px;
  appearance: none;
  border-radius: 99px;
  outline: none;
  background: linear-gradient(90deg, var(--signal) var(--fill, 50%), rgba(243, 240, 232, 0.13) var(--fill, 50%));
}

input[type="range"]::-webkit-slider-thumb {
  width: 17px;
  height: 17px;
  appearance: none;
  border: 4px solid var(--ink-900);
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 1px rgba(216, 255, 104, 0.45), 0 0 16px rgba(216, 255, 104, 0.35);
  cursor: grab;
}

input[type="range"]::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 4px solid var(--ink-900);
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 1px rgba(216, 255, 104, 0.45), 0 0 16px rgba(216, 255, 104, 0.35);
  cursor: grab;
}

.config-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.option-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--paper-soft);
  background: rgba(243, 240, 232, 0.03);
  font-size: 0.76rem;
}

.option-chip b {
  color: var(--signal-2);
  font-weight: 700;
}

.config-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.config-price small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.72rem;
}

.config-price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.config-price span {
  color: var(--muted);
  font-size: 0.78rem;
}

.config-note {
  margin: 15px 0 0;
  color: #747e83;
  font-size: 0.67rem;
}

.marquee-shell {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(243, 240, 232, 0.016);
}

.benefit-band {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 8%, rgba(143, 248, 222, 0.045), transparent 24rem),
    radial-gradient(circle at 88% 88%, rgba(216, 255, 104, 0.055), transparent 28rem),
    rgba(243, 240, 232, 0.012);
}

.benefit-band-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  padding-block: clamp(34px, 4.2vw, 58px);
}

.benefit-band article {
  position: relative;
  grid-column: span 4;
  min-width: 0;
  min-height: 172px;
  overflow: hidden;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(243, 240, 232, 0.04), rgba(243, 240, 232, 0.01)),
    var(--ink-900);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  isolation: isolate;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.benefit-band article:nth-child(1),
.benefit-band article:nth-child(5) {
  grid-column: span 5;
}

.benefit-band article:nth-child(2),
.benefit-band article:nth-child(4) {
  grid-column: span 3;
}

.benefit-band article::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -50px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(216, 255, 104, 0.11);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 255, 104, 0.07), transparent 68%);
}

.benefit-band article:nth-child(2n)::after {
  border-color: rgba(143, 248, 222, 0.12);
  background: radial-gradient(circle, rgba(143, 248, 222, 0.06), transparent 68%);
}

.benefit-band article:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 255, 104, 0.28);
  background:
    linear-gradient(145deg, rgba(216, 255, 104, 0.07), rgba(243, 240, 232, 0.012)),
    var(--ink-900);
}

.benefit-band article > span {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--signal);
  font: 750 0.68rem/1 ui-monospace, monospace;
  letter-spacing: 0.08em;
}

.benefit-band article > img {
  width: 46px;
  height: 46px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(243, 240, 232, 0.025);
}

.benefit-band strong {
  max-width: 260px;
  margin-top: auto;
  padding-top: 30px;
  font-size: 0.95rem;
  line-height: 1.25;
}

.benefit-band small {
  max-width: 260px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.network-operations {
  isolation: isolate;
  overflow: clip;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 42%, rgba(216, 255, 104, 0.065), transparent 32rem),
    radial-gradient(circle at 88% 80%, rgba(143, 248, 222, 0.04), transparent 24rem);
}

.network-operations::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(243, 240, 232, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 240, 232, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 40% 90%, transparent);
}

.network-operations-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.66fr) minmax(620px, 1.34fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.network-operations-copy h2 {
  max-width: 540px;
  margin: 0;
  font: 400 clamp(2.6rem, 4.6vw, 4.8rem)/0.96 Georgia, "Times New Roman", serif;
  letter-spacing: -0.055em;
}

.network-operations-copy > p {
  max-width: 510px;
  margin: 26px 0 0;
  color: var(--paper-soft);
}

.network-operations-facts {
  display: grid;
  gap: 1px;
  margin: 36px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--line);
}

.network-operations-facts div {
  min-width: 0;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(8, 12, 14, 0.88);
}

.network-operations-facts dt {
  color: var(--muted);
  font-size: 0.76rem;
}

.network-operations-facts dd {
  margin: 0;
  color: var(--signal-2);
  font-size: 0.76rem;
  font-weight: 720;
  text-align: right;
}

.network-map {
  position: relative;
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background:
    radial-gradient(circle at 51% 46%, rgba(216, 255, 104, 0.1), transparent 18rem),
    linear-gradient(145deg, rgba(17, 23, 28, 0.94), rgba(8, 11, 13, 0.96));
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.3);
}

.network-map::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(243, 240, 232, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 240, 232, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.network-map::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 330px;
  aspect-ratio: 1;
  border: 1px solid rgba(216, 255, 104, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(216, 255, 104, 0.018), 0 0 0 92px rgba(143, 248, 222, 0.012);
  pointer-events: none;
}

.network-map-routes {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-map-route {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.network-map-route-main,
.network-map-route-return {
  stroke-width: 1.35;
  stroke-dasharray: 5 12;
  animation: network-route-flow 8s linear infinite;
  animation-play-state: paused;
}

.network-map-route-main { stroke: rgba(216, 255, 104, 0.38); }
.network-map-route-return {
  stroke: rgba(143, 248, 222, 0.28);
  animation-direction: reverse;
  animation-duration: 9.2s;
}

.network-map-route-backup {
  stroke: rgba(143, 248, 222, 0.24);
  stroke-width: 1.2;
  stroke-dasharray: 3 10;
}

.network-map.is-running .network-map-route-main,
.network-map.is-running .network-map-route-return {
  animation-play-state: running;
}

.network-map-packet {
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: drop-shadow(0 0 7px currentColor);
}

.network-map-packet-request { color: var(--signal); fill: var(--signal); }
.network-map-packet-response,
.network-map-packet-backup { color: var(--signal-2); fill: var(--signal-2); }
.network-map.is-running .network-map-packet { opacity: 0.95; }

.network-node {
  position: absolute;
  z-index: 2;
  width: 142px;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(8, 12, 14, 0.9);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.network-node::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 12px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--ink-850);
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 14px rgba(216, 255, 104, 0.55);
}

.network-node-index {
  color: var(--signal);
  font: 700 0.61rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
}

.network-node strong,
.network-node small {
  display: block;
}

.network-node strong {
  margin-top: 9px;
  font-size: 0.78rem;
}

.network-node small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.3;
}

.network-node-edge { left: 12.4%; top: 45.7%; transform: translate(-50%, -50%); }
.network-node-boundary { left: 32.1%; top: 27.2%; transform: translate(-50%, -50%); }
.network-node-kvm { left: 50.8%; top: 45.7%; transform: translate(-50%, -50%); }
.network-node-vps { left: 74.3%; top: 26.4%; transform: translate(-50%, -50%); }
.network-node-backup { left: 75.8%; top: 77.4%; transform: translate(-50%, -50%); }

.network-map-status {
  position: absolute;
  z-index: 3;
  left: 22px;
  right: 22px;
  bottom: 20px;
  min-height: 42px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(5, 8, 10, 0.78);
  color: var(--paper-soft);
  font-size: 0.7rem;
  backdrop-filter: blur(14px);
}

.network-map-status i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px rgba(129, 241, 178, 0.55);
}

.network-map-status b {
  margin-left: auto;
  color: var(--signal-2);
  font: 700 0.66rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
}

@keyframes network-route-flow {
  to { stroke-dashoffset: -160; }
}

@keyframes network-node-tour {
  0%, 62%, 100% { border-color: var(--line); transform: none; }
  68%, 76% { border-color: rgba(216, 255, 104, 0.38); transform: translateY(-2px); }
}

.marquee {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: marquee 30s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 42px;
  min-width: max-content;
  padding: 21px 22px;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--paper-soft);
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee-item::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid var(--signal);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--ink-950);
  background: var(--signal);
}

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

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.74fr));
  grid-template-rows: repeat(2, minmax(300px, auto));
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(243, 240, 232, 0.045), rgba(243, 240, 232, 0.012)),
    var(--ink-900);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 255, 104, 0.23);
}

.service-illustration {
  width: min(680px, 100%);
  height: auto;
  margin: 32px auto 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.32);
}

.service-card.large {
  grid-column: 1;
  grid-row: 1 / 3;
  min-height: 676px;
  background:
    radial-gradient(circle at 78% 25%, rgba(216, 255, 104, 0.1), transparent 15rem),
    linear-gradient(155deg, rgba(143, 248, 222, 0.035), transparent 50%),
    var(--ink-900);
}

.service-card.hosting {
  grid-column: 2;
  grid-row: 1;
}

.service-card.care {
  grid-column: 3;
  grid-row: 1;
}

.service-card.sites {
  grid-column: 2 / 4;
  grid-row: 2;
  background:
    radial-gradient(circle at 86% 18%, rgba(216, 255, 104, 0.09), transparent 13rem),
    linear-gradient(125deg, rgba(143, 248, 222, 0.045), transparent 46%),
    var(--ink-900);
}

.service-card.sites h3 {
  max-width: 680px;
}

.card-index {
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 0.85rem;
}

.service-card h3 {
  max-width: 470px;
  margin: 20px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3.3rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.service-card:not(.large) h3 {
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
}

.service-card p {
  max-width: 520px;
  margin: 0;
  color: var(--paper-soft);
  font-size: 0.95rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 23px;
}

.tag {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--paper-soft);
  background: rgba(243, 240, 232, 0.03);
  font-size: 0.7rem;
}

.decision-section {
  position: relative;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 20%, rgba(216, 255, 104, 0.07), transparent 25rem),
    linear-gradient(145deg, rgba(143, 248, 222, 0.025), transparent 48%),
    var(--ink-900);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.decision-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--paper);
  background:
    linear-gradient(150deg, rgba(243, 240, 232, 0.045), transparent 54%),
    rgba(5, 7, 8, 0.7);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.decision-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(216, 255, 104, 0.13);
  border-radius: 50%;
  box-shadow: inset 0 0 0 28px rgba(216, 255, 104, 0.018);
}

.decision-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 255, 104, 0.32);
  background:
    linear-gradient(150deg, rgba(216, 255, 104, 0.075), transparent 54%),
    rgba(5, 7, 8, 0.82);
}

.decision-card > span {
  color: var(--signal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.decision-card > strong {
  margin-top: 62px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.decision-card > small {
  margin-top: 15px;
  color: var(--paper-soft);
  font-size: 0.78rem;
  line-height: 1.6;
}

.decision-card > i {
  z-index: 1;
  margin-top: auto;
  padding-top: 28px;
  color: var(--signal-2);
  font-size: 0.74rem;
  font-style: normal;
}

.conversion-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(5, 7, 8, 0.64);
}

.conversion-steps article {
  display: grid;
  min-height: 126px;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: center;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.conversion-steps article:last-child {
  border-right: 0;
}

.conversion-steps b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(216, 255, 104, 0.28);
  border-radius: 50%;
  color: var(--signal);
  font-size: 0.68rem;
}

.conversion-steps span,
.conversion-steps strong,
.conversion-steps small {
  display: block;
}

.conversion-steps strong {
  font-size: 0.9rem;
}

.conversion-steps small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.server-sculpture {
  position: relative;
  height: 270px;
  margin-top: 38px;
  perspective: 1000px;
}

.server-stack {
  position: absolute;
  right: 3%;
  bottom: 4px;
  width: min(92%, 440px);
  transform: rotateX(57deg) rotateZ(-26deg);
  transform-style: preserve-3d;
}

.server-layer {
  position: relative;
  height: 82px;
  margin-top: -25px;
  border: 1px solid rgba(243, 240, 232, 0.19);
  border-radius: 17px;
  background:
    linear-gradient(90deg, rgba(216, 255, 104, 0.14), transparent 50%),
    linear-gradient(145deg, #141b20, #0b0f12);
  box-shadow: -15px 22px 40px rgba(0, 0, 0, 0.3);
}

.server-layer::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 19px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow:
    18px 0 0 rgba(143, 248, 222, 0.6),
    36px 0 0 rgba(243, 240, 232, 0.16),
    0 0 17px rgba(216, 255, 104, 0.65);
}

.server-layer::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 15px;
  width: 42%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(243, 240, 232, 0.17) 0 4px, transparent 4px 8px);
}

.server-beam {
  position: absolute;
  right: 20%;
  bottom: 14px;
  width: 2px;
  height: 220px;
  transform: rotate(-14deg);
  background: linear-gradient(to top, var(--signal), transparent);
  box-shadow: 0 0 18px rgba(216, 255, 104, 0.5);
}

.panel-showcase {
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 29px;
  background:
    radial-gradient(circle at 70% 0%, rgba(143, 248, 222, 0.08), transparent 28rem),
    #080b0e;
  box-shadow: var(--shadow);
}

.panel-window {
  overflow: hidden;
  border: 1px solid rgba(243, 240, 232, 0.12);
  border-radius: 19px;
  background: #0b1013;
}

.panel-topbar {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 17px;
  border-bottom: 1px solid var(--line);
}

.panel-dots {
  display: flex;
  gap: 6px;
}

.panel-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(243, 240, 232, 0.2);
}

.panel-dots span:first-child {
  background: var(--signal);
}

.panel-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(243, 240, 232, 0.02);
}

.panel-tab {
  padding: 7px 11px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  color: var(--muted);
  background: transparent;
  font-size: 0.72rem;
}

.panel-tab.active {
  color: var(--ink-950);
  background: var(--signal);
}

.panel-body {
  display: grid;
  min-height: 510px;
  grid-template-columns: 210px 1fr;
}

.panel-sidebar {
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  background: #090d10;
}

.panel-user {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 7px 8px 19px;
}

.avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: var(--ink-950);
  background: var(--signal-2);
  font-size: 0.75rem;
  font-weight: 800;
}

.panel-user strong,
.panel-user small {
  display: block;
}

.panel-user strong {
  font-size: 0.76rem;
}

.panel-user small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.62rem;
}

.panel-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  padding: 10px;
  border-radius: 9px;
  color: #899398;
  font-size: 0.72rem;
}

.panel-nav-item.active {
  color: var(--paper);
  background: rgba(243, 240, 232, 0.06);
}

.nav-glyph {
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 3px;
}

.panel-content {
  padding: 24px;
}

.panel-view {
  display: none;
}

.panel-view.active {
  display: block;
  animation: panel-in 0.35s ease;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.panel-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.panel-title-row h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.panel-title-row p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.metric {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(243, 240, 232, 0.025);
}

.metric span,
.metric strong,
.metric small {
  display: block;
}

.metric span {
  color: var(--muted);
  font-size: 0.62rem;
}

.metric strong {
  margin-top: 6px;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.metric small {
  margin-top: 4px;
  color: var(--signal-2);
  font-size: 0.59rem;
}

.mini-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.mini-row {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 0.5fr;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 0.68rem;
}

.mini-row:last-child {
  border-bottom: 0;
}

.mini-row.header {
  color: var(--muted);
  background: rgba(243, 240, 232, 0.028);
  font-size: 0.59rem;
  text-transform: uppercase;
}

.server-name {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.server-name::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px rgba(129, 241, 178, 0.55);
}

.badge {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--paper-soft);
  background: rgba(243, 240, 232, 0.03);
  font-size: 0.62rem;
  line-height: 1;
}

.badge.success {
  border-color: rgba(129, 241, 178, 0.18);
  color: #b9f9d3;
  background: rgba(129, 241, 178, 0.06);
}

.badge.warning {
  border-color: rgba(255, 209, 102, 0.2);
  color: #ffe19a;
  background: rgba(255, 209, 102, 0.06);
}

.badge.danger {
  border-color: rgba(255, 127, 117, 0.2);
  color: #ffc3bf;
  background: rgba(255, 127, 117, 0.06);
}

.badge.info {
  border-color: rgba(143, 248, 222, 0.2);
  color: #bffbef;
  background: rgba(143, 248, 222, 0.06);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.ai-operations-banner {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  overflow: hidden;
  padding: clamp(26px, 4vw, 50px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 84% 20%, rgba(143, 248, 222, 0.06), transparent 24rem),
    linear-gradient(135deg, rgba(216, 255, 104, 0.045), transparent 58%),
    var(--ink-900);
}

.ai-operations-banner h3 { margin: 34px 0 14px; font: 400 clamp(2rem, 4vw, 3.8rem)/1 Georgia, serif; letter-spacing: -0.05em; }
.ai-operations-banner p { margin: 0; color: var(--muted); line-height: 1.65; }
.ai-operations-banner img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #080d0e;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.advantage {
  min-height: 260px;
  padding: 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(243, 240, 232, 0.012);
  transition: background 0.3s ease;
}

.advantage:hover {
  background: rgba(216, 255, 104, 0.025);
}

.advantage-icon {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--signal);
  background: rgba(243, 240, 232, 0.025);
}

.advantage-icon::after {
  content: attr(data-icon);
  font: 750 0.82rem/1 ui-monospace, monospace;
  letter-spacing: -0.04em;
}

.advantage-icon img {
  width: 34px;
  height: 34px;
}

.portal-preview {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--ink-900);
  box-shadow: var(--shadow);
}

.portal-preview img { display: block; width: 100%; height: auto; }
.portal-preview figcaption { padding: 14px 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.72rem; }

.panel-demo-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 2px 4px 16px;
}

.panel-demo-intro span {
  flex: none;
  color: var(--signal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-demo-intro p {
  max-width: 720px;
  margin: 0;
  color: var(--paper-soft);
  font-size: 0.8rem;
}

.portal-proof {
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(243, 240, 232, 0.025);
}

.portal-proof summary {
  padding: 13px 15px;
  cursor: pointer;
  color: var(--paper-soft);
  font-size: 0.75rem;
  list-style-position: inside;
}

.portal-proof[open] summary {
  border-bottom: 1px solid var(--line);
}

.portal-proof .portal-preview {
  border: 0;
  border-radius: 0 0 13px 13px;
  box-shadow: none;
}

.proof-section {
  background:
    radial-gradient(circle at 78% 35%, rgba(216, 255, 104, 0.1), transparent 26rem),
    var(--ink-950);
}

.proof-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  padding: clamp(36px, 6vw, 72px);
  border: 1px solid rgba(216, 255, 104, 0.19);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(243, 240, 232, 0.04), transparent 52%),
    rgba(8, 12, 14, 0.9);
  box-shadow: var(--shadow);
}

.proof-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.proof-copy p {
  max-width: 560px;
  margin: 22px 0 28px;
  color: var(--paper-soft);
}

.proof-facts {
  display: grid;
  gap: 10px;
}

.proof-facts article {
  display: grid;
  min-height: 132px;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 17px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(5, 7, 8, 0.58);
}

.proof-facts span {
  grid-row: 1 / 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(216, 255, 104, 0.22);
  border-radius: 50%;
  color: var(--signal);
  font-size: 0.68rem;
}

.proof-facts strong {
  align-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 400;
}

.proof-facts small {
  align-self: start;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.advantage h3 {
  margin: 48px 0 10px;
  font-size: 1.05rem;
}

.advantage p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.datacenter-section {
  border-block: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(216, 255, 104, 0.035), transparent 52%), var(--ink-900);
}

.datacenter-carousel {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: var(--ink-950);
  box-shadow: var(--shadow);
}

.datacenter-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.76fr);
  min-height: 540px;
}

.datacenter-slide[hidden] { display: none; }
.datacenter-media {
  position: relative;
  min-width: 0;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #070a09;
}

.datacenter-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 7, 8, 0.04), rgba(5, 7, 8, 0.18)),
    linear-gradient(135deg, rgba(216, 255, 104, 0.1), transparent 42%, rgba(3, 7, 8, 0.35));
}

.datacenter-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  filter: saturate(0.58) contrast(1.08) brightness(0.66);
  transform: scale(1.01);
  transition: filter 0.45s ease, transform 0.7s ease;
}

.datacenter-slide.active:hover .datacenter-media img {
  filter: saturate(0.64) contrast(1.08) brightness(0.72);
  transform: scale(1.025);
}

.datacenter-slide > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 56px);
  background:
    radial-gradient(circle at 90% 10%, rgba(216, 255, 104, 0.055), transparent 18rem),
    var(--ink-950);
}
.datacenter-slide span { margin-bottom: auto; color: var(--signal); font: 750 0.72rem/1 ui-monospace, monospace; letter-spacing: 0.08em; }
.datacenter-slide h3 {
  margin: 80px 0 18px;
  overflow-wrap: break-word;
  font: 400 clamp(2rem, 2.8vw, 3rem)/1 Georgia, serif;
  letter-spacing: -0.05em;
}
.datacenter-slide p { margin: 0; color: var(--muted); line-height: 1.65; }
.datacenter-controls { display: flex; align-items: center; justify-content: flex-end; gap: 12px; padding: 15px 18px; border-top: 1px solid var(--line); }
.datacenter-controls button { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.datacenter-controls button:hover, .datacenter-controls button:focus-visible { border-color: var(--signal); color: var(--signal); }
.datacenter-controls span { min-width: 64px; text-align: center; color: var(--paper-soft); font: 700 0.72rem/1 ui-monospace, monospace; }
.datacenter-legal { max-width: 920px; margin: 20px 0 0; color: var(--muted); font-size: 0.74rem; line-height: 1.6; }

.workflow {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  align-items: start;
}

.workflow-sticky {
  position: sticky;
  top: 130px;
}

.workflow-sticky h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: var(--h2);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.workflow-sticky p {
  max-width: 430px;
  margin: 24px 0 0;
  color: var(--paper-soft);
}

.workflow-list {
  border-top: 1px solid var(--line);
}

.workflow-step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.step-no {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--signal);
  font-family: Georgia, serif;
}

.workflow-step h3 {
  margin: 3px 0 9px;
  font-size: 1.15rem;
}

.workflow-step p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.document-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 44px;
}

.document-flow::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 255, 104, 0.45), rgba(143, 248, 222, 0.45), transparent);
}

.doc-stage {
  position: relative;
  z-index: 2;
  min-height: 220px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(8, 12, 14, 0.88);
}

.doc-node {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(216, 255, 104, 0.28);
  border-radius: 50%;
  color: var(--ink-950);
  background: var(--signal);
  box-shadow: 0 0 24px rgba(216, 255, 104, 0.16);
  font-size: 0.68rem;
  font-weight: 800;
}

.doc-stage h3 {
  margin: 0 0 9px;
  font-size: 0.93rem;
}

.doc-stage p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.tariff-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(243, 240, 232, 0.015);
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.tariff-card {
  position: relative;
  min-height: 520px;
  padding: 31px;
  border-right: 1px solid var(--line);
}

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

.tariff-card.featured {
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 255, 104, 0.1), transparent 18rem),
    rgba(216, 255, 104, 0.02);
}

.tariff-label {
  color: var(--signal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tariff-card h3 {
  margin: 16px 0 12px;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.tariff-card > p {
  min-height: 72px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.tariff-price {
  margin: 28px 0;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.tariff-price strong {
  font-family: Georgia, serif;
  font-size: 2.7rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.tariff-price span {
  color: var(--muted);
  font-size: 0.75rem;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  color: var(--paper-soft);
  font-size: 0.8rem;
}

.feature-list li::before {
  content: "↗";
  color: var(--signal-2);
}

.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
}

.faq h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: var(--h2);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  border: 0;
  cursor: pointer;
  color: var(--paper);
  background: transparent;
  text-align: left;
  font-size: 1rem;
}

.faq-question span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.faq-question span:last-child {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--signal);
  font-size: 0;
}

.faq-question span:last-child::before {
  content: "+";
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-question span:last-child::before {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 680px;
  margin: 0;
  padding: 0 0 25px;
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 8vw, 92px);
  border: 1px solid rgba(216, 255, 104, 0.18);
  border-radius: 36px;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 255, 104, 0.16), transparent 28rem),
    radial-gradient(circle at 0% 100%, rgba(143, 248, 222, 0.09), transparent 24rem),
    #0a0f12;
}

.cta-panel::before {
  content: "R/";
  position: absolute;
  right: -30px;
  bottom: -105px;
  color: rgba(243, 240, 232, 0.035);
  font-family: Georgia, serif;
  font-size: 20rem;
  letter-spacing: -0.12em;
}

.cta-panel h2 {
  position: relative;
  z-index: 2;
  max-width: 890px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: var(--h2);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.cta-panel p {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--paper-soft);
}

.cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.messenger-links {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.messenger-link {
  display: inline-flex;
  min-width: 190px;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--paper);
  background: rgba(255,255,255,0.035);
}

.messenger-link:hover { border-color: var(--lime); }
.messenger-link.is-preparing { opacity: 0.55; cursor: default; }
.messenger-link strong, .messenger-link small { display: block; }
.messenger-link strong { font-size: 0.84rem; }
.messenger-link small { margin-top: 2px; color: var(--muted); font-size: 0.7rem; }
.messenger-icon { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 12px; background: #7557ff; color: #fff; font: 700 0.62rem/1 Arial, sans-serif; }
.messenger-icon img { display: block; width: 40px; height: 40px; border-radius: 12px; }
.messenger-icon.telegram { background: #229ed9; font-size: 1.1rem; }
.messenger-icon.telegram svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; }
.messenger-icon.max-official img { width: 24px; height: 24px; filter: invert(1); }
.footer-pending { display: block; margin: 9px 0; color: #687177; font-size: 0.8rem; }

.public-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  color: var(--paper-soft);
}

.public-contacts a {
  color: var(--signal);
}

.legal-main {
  padding: 150px 0 90px;
}

.legal-hero {
  max-width: 920px;
  margin-bottom: 44px;
}

.legal-hero h1 {
  margin: 12px 0 18px;
  font: 500 clamp(2.5rem, 6vw, 5.5rem)/0.98 Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
}

.legal-hero p,
.legal-updated {
  color: var(--paper-soft);
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 28px;
  align-items: start;
}

.legal-document,
.legal-aside {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--glass);
  box-shadow: var(--shadow);
}

.legal-document {
  padding: clamp(24px, 5vw, 58px);
}

.legal-document section + section {
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.legal-document h3 {
  margin: 26px 0 10px;
  font-size: 1.05rem;
}

.legal-document p,
.legal-document li {
  color: var(--paper-soft);
}

.legal-document li + li {
  margin-top: 8px;
}

.legal-aside {
  position: sticky;
  top: 110px;
  padding: 28px;
}

.legal-aside h2 {
  margin-top: 0;
  font-size: 1.1rem;
}

.legal-nav {
  display: grid;
  gap: 11px;
}

.legal-nav a {
  color: var(--paper-soft);
}

.legal-nav a:hover,
.legal-document a {
  color: var(--signal);
}

.requisites-list {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) 1fr;
  gap: 0;
  margin: 0;
}

.requisites-list div {
  display: contents;
}

.requisites-list dt,
.requisites-list dd {
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.requisites-list dt {
  color: var(--muted);
}

.requisites-list dd {
  color: var(--paper);
  overflow-wrap: anywhere;
}

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

.price-table th,
.price-table td {
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.price-table th {
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 900px) {
  .legal-grid { grid-template-columns: 1fr; }
  .legal-aside { position: static; order: -1; }
}

@media (max-width: 620px) {
  .legal-main { padding-top: 112px; }
  .requisites-list { grid-template-columns: 1fr; }
  .requisites-list div { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .requisites-list dt, .requisites-list dd { padding: 2px 0; border: 0; }
  .price-table { font-size: 0.9rem; }
}

.site-footer {
  padding: 40px 0 28px;
  border-top: 1px solid var(--line);
}

.error-page {
  display: flex;
  width: min(760px, calc(100% - 40px));
  min-height: 100vh;
  margin: auto;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.error-logo {
  width: min(300px, 80vw);
  height: auto;
  margin-bottom: 64px;
}

.error-page h1 {
  margin: 0;
  font: 400 clamp(3.5rem, 9vw, 7rem)/0.95 Georgia, serif;
  letter-spacing: -0.06em;
}

.error-page > p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 32px;
  color: var(--paper-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.65fr);
  gap: 48px;
  padding: 28px 0 55px;
}

.footer-brand p {
  max-width: 360px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-col h3 {
  margin: 0 0 15px;
  color: var(--paper);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #687177;
  font-size: 0.72rem;
}

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

.motion-ready .reveal {
  opacity: 1;
  transform: translateY(24px);
  transition: transform 0.68s cubic-bezier(.22, 1, .36, 1);
}

.motion-ready .reveal.visible {
  opacity: 1;
  transform: none;
}

/* Public motion layer: signal → node → confirmation. */
.motion-ready .hero-copy > .eyebrow,
.motion-ready .hero-copy > h1 .line,
.motion-ready .hero-copy > .hero-lead,
.motion-ready .hero-copy > .hero-actions,
.motion-ready .hero-copy > .hero-network-proof,
.motion-ready .hero-copy > .hero-proof,
.motion-ready .hero .configurator {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.62s ease,
    transform 0.62s cubic-bezier(.22, 1, .36, 1);
}

.motion-ready .hero.motion-intro .hero-copy > .eyebrow,
.motion-ready .hero.motion-intro .hero-copy > h1 .line,
.motion-ready .hero.motion-intro .hero-copy > .hero-lead,
.motion-ready .hero.motion-intro .hero-copy > .hero-actions,
.motion-ready .hero.motion-intro .hero-copy > .hero-network-proof,
.motion-ready .hero.motion-intro .hero-copy > .hero-proof,
.motion-ready .hero.motion-intro .configurator {
  opacity: 1;
  transform: none;
}

.motion-ready .hero.motion-intro .hero-copy > h1 .line:first-child { transition-delay: 70ms; }
.motion-ready .hero.motion-intro .hero-copy > h1 .line:nth-child(2) { transition-delay: 140ms; }
.motion-ready .hero.motion-intro .hero-copy > .hero-lead { transition-delay: 210ms; }
.motion-ready .hero.motion-intro .hero-copy > .hero-actions { transition-delay: 280ms; }
.motion-ready .hero.motion-intro .hero-copy > .hero-network-proof,
.motion-ready .hero.motion-intro .hero-copy > .hero-proof { transition-delay: 340ms; }
.motion-ready .hero.motion-intro .configurator { transition-delay: 180ms; }
.motion-ready .hero.motion-intro-complete .configurator {
  transition: none;
  transition-delay: 0s;
}

.motion-ready .motion-sequence .benefit-card,
.motion-ready .motion-sequence .advantage,
.motion-ready .motion-sequence .workflow-step,
.motion-ready .motion-sequence .doc-stage,
.motion-ready .motion-sequence .tariff-card {
  opacity: 1;
  transform: translateY(14px);
  transition:
    transform 0.52s cubic-bezier(.22, 1, .36, 1),
    border-color 0.3s ease,
    background 0.3s ease;
}

.motion-ready .motion-sequence.motion-in .benefit-card,
.motion-ready .motion-sequence.motion-in .advantage,
.motion-ready .motion-sequence.motion-in .workflow-step,
.motion-ready .motion-sequence.motion-in .doc-stage,
.motion-ready .motion-sequence.motion-in .tariff-card {
  opacity: 1;
  transform: none;
}

.motion-sequence > :nth-child(1),
.motion-sequence .tariff-card:nth-child(1) { transition-delay: 0ms; }
.motion-sequence > :nth-child(2),
.motion-sequence .tariff-card:nth-child(2) { transition-delay: 65ms; }
.motion-sequence > :nth-child(3),
.motion-sequence .tariff-card:nth-child(3) { transition-delay: 130ms; }
.motion-sequence > :nth-child(4) { transition-delay: 195ms; }
.motion-sequence > :nth-child(5) { transition-delay: 260ms; }
.motion-sequence > :nth-child(6) { transition-delay: 325ms; }
.motion-sequence > :nth-child(7) { transition-delay: 390ms; }
.motion-sequence > :nth-child(8) { transition-delay: 455ms; }

.motion-ready .motion-sequence.motion-in .benefit-card > img,
.motion-ready .motion-sequence.motion-in .advantage-icon {
  animation: node-confirm 0.52s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes node-confirm {
  0% { opacity: 0.45; transform: scale(0.88); }
  58% { opacity: 1; transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}

.ai-operations-banner {
  position: relative;
}

.ai-operations-banner::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: -24%;
  width: 18%;
  pointer-events: none;
  opacity: 0;
  transform: skewX(-12deg);
  background: linear-gradient(90deg, transparent, rgba(216, 255, 104, 0.12), transparent);
}

.motion-ready .ai-operations-banner.visible::after {
  animation: ai-scan-once 1.15s 0.24s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes ai-scan-once {
  0% { opacity: 0; transform: translateX(0) skewX(-12deg); }
  24% { opacity: 1; }
  100% { opacity: 0; transform: translateX(690%) skewX(-12deg); }
}

.workflow-list {
  --workflow-progress: 0;
  position: relative;
}

.workflow-list::before,
.workflow-list::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 34px;
  bottom: 34px;
  left: 23px;
  width: 1px;
  pointer-events: none;
}

.workflow-list::before {
  background: var(--line);
}

.workflow-list::after {
  transform: scaleY(var(--workflow-progress));
  transform-origin: top;
  background: linear-gradient(var(--signal), var(--signal-2));
  transition: transform 0.12s linear;
}

.workflow-step {
  position: relative;
  z-index: 1;
}

.workflow-step .step-no {
  background: var(--ink-950);
  transition: color 0.32s ease, border-color 0.32s ease, background 0.32s ease, box-shadow 0.32s ease;
}

.workflow-step.is-active .step-no {
  border-color: rgba(216, 255, 104, 0.48);
  color: var(--ink-950);
  background: var(--signal);
  box-shadow: 0 0 0 6px rgba(216, 255, 104, 0.07);
}

.document-flow::before {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.05s 0.18s cubic-bezier(.22, 1, .36, 1);
}

.document-flow.motion-in::before {
  transform: scaleX(1);
}

.status-pill.status-operational::before {
  animation: status-live-pulse 3.8s ease-in-out infinite;
}

@keyframes status-live-pulse {
  0%, 72%, 100% { transform: scale(1); }
  82% { transform: scale(1.55); }
}

.datacenter-controls button:disabled {
  cursor: wait;
  opacity: 0.42;
}

.site-section-progress {
  position: fixed;
  z-index: 850;
  top: 50%;
  right: 18px;
  display: grid;
  justify-items: center;
  gap: 10px;
  translate: 0 -50%;
  color: var(--muted);
  font: 700 0.64rem/1 ui-monospace, monospace;
  letter-spacing: 0.08em;
}

.site-section-progress i {
  position: relative;
  display: block;
  width: 1px;
  height: 128px;
  overflow: hidden;
  background: var(--line-strong);
}

.site-section-progress b {
  position: absolute;
  inset: 0;
  transform: scaleY(0);
  transform-origin: top;
  background: linear-gradient(var(--signal), var(--signal-2));
}

.page-hidden *,
.page-hidden *::before,
.page-hidden *::after {
  animation-play-state: paused !important;
}

@media (min-width: 1101px) {
  .site-header,
  .header-shell,
  .brand-logo {
    transition:
      top 0.32s cubic-bezier(.22, 1, .36, 1),
      padding 0.32s cubic-bezier(.22, 1, .36, 1),
      width 0.32s cubic-bezier(.22, 1, .36, 1),
      background 0.32s ease;
  }

  .site-scrolled .site-header { top: 8px; }
  .site-scrolled .header-shell {
    padding-block: 8px;
    background: rgba(7, 10, 12, 0.93);
  }
  .site-scrolled .header-shell > .brand .brand-logo { width: 164px; }
}

@media (max-width: 1180px) {
  .site-section-progress { display: none; }
}

@media (max-width: 580px) {
  .motion-ready .hero-copy > .eyebrow,
  .motion-ready .hero-copy > h1 .line,
  .motion-ready .hero-copy > .hero-lead,
  .motion-ready .hero-copy > .hero-actions,
  .motion-ready .hero-copy > .hero-network-proof,
  .motion-ready .hero-copy > .hero-proof,
  .motion-ready .hero .configurator,
  .motion-ready .motion-sequence .benefit-card,
  .motion-ready .motion-sequence .advantage,
  .motion-ready .motion-sequence .workflow-step,
  .motion-ready .motion-sequence .doc-stage,
  .motion-ready .motion-sequence .tariff-card {
    transform: translateY(8px);
  }

  .motion-ready .hero.motion-intro .hero-copy > .eyebrow,
  .motion-ready .hero.motion-intro .hero-copy > h1 .line,
  .motion-ready .hero.motion-intro .hero-copy > .hero-lead,
  .motion-ready .hero.motion-intro .hero-copy > .hero-actions,
  .motion-ready .hero.motion-intro .hero-copy > .hero-network-proof,
  .motion-ready .hero.motion-intro .hero-copy > .hero-proof,
  .motion-ready .hero.motion-intro .configurator,
  .motion-ready .motion-sequence.motion-in .benefit-card,
  .motion-ready .motion-sequence.motion-in .advantage,
  .motion-ready .motion-sequence.motion-in .workflow-step,
  .motion-ready .motion-sequence.motion-in .doc-stage,
  .motion-ready .motion-sequence.motion-in .tariff-card {
    transform: none;
  }
}

/* App shell */
.app-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 255, 104, 0.055), transparent 26rem),
    #06090b;
}

.app-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 248px 1fr;
}

.app-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  background: rgba(7, 10, 12, 0.92);
  backdrop-filter: blur(20px);
}

.app-sidebar .brand {
  padding: 2px 9px 26px;
}

.app-sidebar .brand-logo {
  width: 174px;
}

.sidebar-section {
  margin-top: 24px;
}

.sidebar-label {
  margin: 0 10px 8px;
  color: #59646a;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 3px 0;
  padding: 11px 12px;
  border-radius: 11px;
  color: #889398;
  font-size: 0.82rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.app-nav-link > span:first-child {
  display: flex;
  align-items: center;
  gap: 11px;
}

.app-nav-link:hover,
.app-nav-link.active {
  color: var(--paper);
  background: rgba(243, 240, 232, 0.055);
}

.app-nav-link.active .nav-glyph {
  color: var(--signal);
  background: var(--signal);
  box-shadow: 0 0 14px rgba(216, 255, 104, 0.3);
}

.nav-count {
  min-width: 22px;
  padding: 3px 6px;
  border-radius: 999px;
  color: var(--paper-soft);
  background: rgba(243, 240, 232, 0.06);
  font-size: 0.62rem;
  text-align: center;
}

.sidebar-profile {
  position: absolute;
  right: 18px;
  bottom: 20px;
  left: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(243, 240, 232, 0.025);
}

.sidebar-profile-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-profile strong,
.sidebar-profile small {
  display: block;
}

.sidebar-profile strong {
  font-size: 0.78rem;
}

.sidebar-profile small {
  color: var(--muted);
  font-size: 0.65rem;
}

.app-main {
  min-width: 0;
}

.app-topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 9, 11, 0.78);
  backdrop-filter: blur(20px);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.75rem;
}

.breadcrumbs strong {
  color: var(--paper);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.search-field {
  display: flex;
  min-width: 230px;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(243, 240, 232, 0.025);
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--paper);
  background: transparent;
  font-size: 0.76rem;
}

.search-field input::placeholder {
  color: #5d686d;
}

.app-content {
  padding: 30px 32px 60px;
}

.app-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.app-heading h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.35rem);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.app-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.app-grid {
  display: grid;
  gap: 14px;
}

.app-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.app-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.stat-card,
.app-card {
  border: 1px solid var(--line);
  border-radius: 17px;
  background:
    linear-gradient(145deg, rgba(243, 240, 232, 0.035), rgba(243, 240, 232, 0.012)),
    rgba(8, 12, 14, 0.78);
}

.stat-card {
  min-height: 150px;
  padding: 20px;
}

.stat-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.7rem;
}

.stat-card strong {
  display: block;
  margin-top: 22px;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.stat-card small {
  display: block;
  margin-top: 5px;
  color: var(--signal-2);
  font-size: 0.65rem;
}

.app-card {
  overflow: hidden;
}

.app-card-header {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

.app-card-header h2,
.app-card-header h3 {
  margin: 0;
  font-size: 0.92rem;
}

.app-card-header p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.66rem;
}

.app-card-body {
  padding: 18px;
}

.app-table-wrap {
  overflow-x: auto;
}

.app-table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}

.app-table th,
.app-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.app-table th {
  color: #667176;
  background: rgba(243, 240, 232, 0.015);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.app-table td {
  color: var(--paper-soft);
  font-size: 0.75rem;
}

.app-table tr:last-child td {
  border-bottom: 0;
}

.app-table tbody tr {
  transition: background 0.2s ease;
}

.app-table tbody tr:hover {
  background: rgba(243, 240, 232, 0.02);
}

.table-main {
  color: var(--paper);
  font-weight: 720;
}

.table-sub {
  display: block;
  margin-top: 4px;
  color: #667176;
  font-size: 0.64rem;
}

.table-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-action {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
  color: var(--paper-soft);
  background: rgba(243, 240, 232, 0.025);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.icon-action:hover {
  border-color: rgba(216, 255, 104, 0.25);
  color: var(--signal);
  background: rgba(216, 255, 104, 0.05);
}

.icon-action[disabled] {
  cursor: not-allowed;
  opacity: 0.35;
}

.utilization {
  display: grid;
  gap: 14px;
}

.util-row {
  display: grid;
  grid-template-columns: 100px 1fr 48px;
  gap: 12px;
  align-items: center;
  color: var(--paper-soft);
  font-size: 0.72rem;
}

.progress {
  position: relative;
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(243, 240, 232, 0.08);
}

.progress > span {
  display: block;
  width: var(--value, 50%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--signal-2), var(--signal));
  box-shadow: 0 0 14px rgba(216, 255, 104, 0.2);
}

.billing-summary {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  margin-top: 14px;
}

.balance-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(216, 255, 104, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 255, 104, 0.12), transparent 18rem),
    #0b1113;
}

.balance-card::after {
  content: "₽";
  position: absolute;
  right: -18px;
  bottom: -100px;
  color: rgba(243, 240, 232, 0.04);
  font-family: Georgia, serif;
  font-size: 19rem;
}

.balance-card > * {
  position: relative;
  z-index: 2;
}

.balance-card small {
  color: var(--muted);
}

.balance-card strong {
  display: block;
  margin: 18px 0 6px;
  font-family: Georgia, serif;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.balance-card p {
  max-width: 420px;
  margin: 0;
  color: var(--paper-soft);
  font-size: 0.78rem;
}

.timeline-list {
  display: grid;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal-2);
  box-shadow: 0 0 12px rgba(143, 248, 222, 0.35);
}

.timeline-item strong,
.timeline-item small {
  display: block;
}

.timeline-item strong {
  font-size: 0.74rem;
}

.timeline-item small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.62rem;
}

.timeline-item time {
  color: #677277;
  font-size: 0.62rem;
}

.notice {
  padding: 13px 15px;
  border: 1px solid rgba(143, 248, 222, 0.15);
  border-radius: 12px;
  color: #b7dbd2;
  background: rgba(143, 248, 222, 0.045);
  font-size: 0.72rem;
}

.notice.warning {
  border-color: rgba(255, 209, 102, 0.16);
  color: #e7d398;
  background: rgba(255, 209, 102, 0.045);
}

.node-card {
  padding: 20px;
}

.node-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.node-title {
  display: flex;
  align-items: center;
  gap: 11px;
}

.node-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--signal);
  background: rgba(216, 255, 104, 0.035);
  font-size: 0.72rem;
  font-weight: 800;
}

.node-title strong,
.node-title small {
  display: block;
}

.node-title strong {
  font-size: 0.82rem;
}

.node-title small {
  color: var(--muted);
  font-size: 0.64rem;
}

.node-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.node-metric {
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(243, 240, 232, 0.02);
}

.node-metric span,
.node-metric strong {
  display: block;
}

.node-metric span {
  color: var(--muted);
  font-size: 0.6rem;
}

.node-metric strong {
  margin-top: 5px;
  font-size: 0.8rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.filter-tabs {
  display: flex;
  gap: 5px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(243, 240, 232, 0.018);
}

.filter-tab {
  padding: 7px 11px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  color: var(--muted);
  background: transparent;
  font-size: 0.68rem;
}

.filter-tab.active {
  color: var(--paper);
  background: rgba(243, 240, 232, 0.07);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(2, 4, 5, 0.76);
  backdrop-filter: blur(8px);
}

.modal-backdrop.open {
  display: grid;
}

.modal {
  width: min(590px, 100%);
  max-height: min(820px, calc(100vh - 40px));
  overflow-y: auto;
  border: 1px solid var(--line-strong);
  border-radius: 21px;
  background: var(--glass-strong);
  box-shadow: var(--shadow);
}

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

.modal-header h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.modal-body {
  padding: 20px;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
}

body.modal-open { overflow: hidden; }
.config-modal { width: min(760px, 100%); }
.config-modal .modal-header { align-items: flex-start; }
.config-modal .modal-header h2 { margin-top: 6px; font-size: clamp(1.8rem, 5vw, 2.8rem); }
.modal-close { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; color: var(--paper); background: transparent; cursor: pointer; font-size: 1.5rem; line-height: 1; }
.modal-close:hover, .modal-close:focus-visible { border-color: var(--signal); color: var(--signal); outline: none; }
.config-modal-lead { margin: 0 0 24px; color: var(--muted); line-height: 1.6; }
.config-modal-result { margin-top: 24px; padding: 20px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; border: 1px solid var(--line); border-radius: 16px; background: rgba(243, 240, 232, 0.025); }
.config-modal-result small, .config-modal-result > div > strong { display: block; }
.config-modal-result > div > strong { margin-top: 7px; color: var(--paper); font-size: 0.82rem; }
.config-modal .modal-footer { flex-wrap: wrap; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--paper-soft);
  font-size: 0.7rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 43px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  color: var(--paper);
  background: rgba(243, 240, 232, 0.035);
  font-size: 0.75rem;
}

.form-field textarea {
  min-height: 90px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(216, 255, 104, 0.36);
  box-shadow: 0 0 0 3px rgba(216, 255, 104, 0.05);
}

.toast-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1900;
  display: grid;
  width: min(360px, calc(100vw - 36px));
  gap: 9px;
}

.toast {
  padding: 14px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  color: var(--paper-soft);
  background: rgba(10, 15, 18, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  font-size: 0.75rem;
  animation: toast-in 0.25s ease;
}

.toast strong {
  display: block;
  margin-bottom: 3px;
  color: var(--paper);
}

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

.app-mobile-toggle {
  display: none;
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    grid-template-rows: repeat(2, minmax(300px, auto)) auto;
  }
  .service-card.large { grid-column: 1; grid-row: 1 / 3; }
  .service-card.hosting { grid-column: 2; grid-row: 1; }
  .service-card.care { grid-column: 2; grid-row: 2; }
  .service-card.sites { grid-column: 1 / 3; grid-row: 3; }
  .decision-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .decision-card { min-height: 280px; }
  .proof-shell { grid-template-columns: 1fr; }
  .network-operations-grid { grid-template-columns: 1fr; }
  .network-operations-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.72fr);
    gap: 28px 44px;
    align-items: end;
  }
  .network-operations-copy .section-kicker,
  .network-operations-copy h2 { grid-column: 1; }
  .network-operations-copy > p,
  .network-operations-facts { grid-column: 2; }
  .network-operations-copy > p { grid-row: 1 / span 2; align-self: end; }
  .network-operations-facts { margin-top: 0; }
  .benefit-band-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-band article,
  .benefit-band article:nth-child(n) { grid-column: span 1; }
  .main-nav,
  .status-pill {
    display: none;
  }

  .mobile-toggle {
    display: grid;
  }

  .header-icon.social { display: none; }

  .main-nav.open {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #070a0c;
    box-shadow: var(--shadow);
  }

  .main-nav.open a {
    padding: 12px;
  }

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

  .hero {
    min-height: auto;
  }

  .configurator {
    width: min(640px, 100%);
  }

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

  .document-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .document-flow::before {
    display: none;
  }

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

  .app-shell {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    position: fixed;
    z-index: 1200;
    width: 248px;
    transform: translateX(-110%);
    transition: transform 0.25s ease;
  }

  .app-sidebar.open {
    transform: translateX(0);
    box-shadow: 24px 0 60px rgba(0, 0, 0, 0.5);
  }

  .app-mobile-toggle {
    display: grid;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 28px, 1240px);
  }

  .section {
    padding: 84px 0;
  }

  .network-operations-copy { display: block; }
  .network-operations-copy > p { margin-top: 24px; }
  .network-operations-facts { margin-top: 30px; }
  .network-map { min-height: 500px; }

  .section-heading,
  .workflow,
  .faq {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .service-card.large,
  .service-card.hosting,
  .service-card.care,
  .service-card.sites {
    grid-column: auto;
    grid-row: auto;
  }

  .decision-grid { grid-template-columns: 1fr 1fr; }
  .conversion-steps { grid-template-columns: 1fr; }
  .conversion-steps article { border-right: 0; border-bottom: 1px solid var(--line); }
  .conversion-steps article:last-child { border-bottom: 0; }
  .panel-demo-intro { align-items: flex-start; flex-direction: column; gap: 8px; }
  .proof-shell { padding: 34px; }

  .ai-operations-banner { grid-template-columns: 1fr; }

  .service-card.large {
    grid-row: auto;
    min-height: 630px;
  }

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

  .panel-sidebar {
    display: none;
  }

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

  .tariff-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tariff-card:last-child {
    border-bottom: 0;
  }

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

  .app-topbar {
    padding-inline: 16px;
  }

  .search-field {
    display: none;
  }

  .app-content {
    padding: 24px 16px 50px;
  }

  .app-grid.cols-3,
  .app-grid.cols-2,
  .billing-summary {
    grid-template-columns: 1fr;
  }

  .app-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 580px) {
  .hero-network-proof { gap: 9px 13px; font-size: 0.66rem; }
  .hero-network-proof span:not(:last-child)::after { margin-left: 5px; }
  .network-operations { overflow: hidden; }
  .network-operations-copy h2 { font-size: clamp(2.45rem, 12vw, 3.55rem); }
  .network-map {
    min-height: 0;
    padding: 70px 14px 14px;
    display: grid;
    gap: 10px;
    border-radius: 22px;
  }
  .network-map-routes { display: none; }
  .network-node,
  .network-node-edge,
  .network-node-boundary,
  .network-node-kvm,
  .network-node-vps,
  .network-node-backup {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }
  .network-map.is-running .network-node {
    animation: network-node-tour 9s ease-in-out infinite;
    animation-delay: calc(var(--network-step, 0) * 720ms);
  }
  .network-node-edge { --network-step: 0; }
  .network-node-boundary { --network-step: 1; }
  .network-node-kvm { --network-step: 2; }
  .network-node-vps { --network-step: 3; }
  .network-node-backup { --network-step: 4; }
  .network-map-status {
    position: relative;
    inset: auto;
    margin-top: 2px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .network-map-status b { width: 100%; margin-left: 16px; }
  .benefit-band-grid {
    grid-template-columns: none;
    grid-auto-columns: minmax(230px, 78vw);
    grid-auto-flow: column;
    gap: 10px;
    padding-block: 28px 34px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }
  .benefit-band article {
    min-height: 152px;
    padding: 18px;
    border-radius: 18px;
    scroll-snap-align: start;
  }
  .benefit-band article > span { top: 18px; right: 18px; }
  .benefit-band article > img { width: 42px; height: 42px; padding: 7px; border-radius: 13px; }
  .benefit-band strong { padding-top: 24px; }
  .config-modal-result { align-items: flex-start; flex-direction: column; }
  .config-modal .modal-footer .btn { width: 100%; }
  .site-header {
    top: 9px;
    width: calc(100vw - 16px);
  }

  .header-actions .btn-secondary {
    display: none;
  }

  .header-actions > .btn-primary {
    display: none;
  }

  .header-shell > .brand .brand-logo {
    width: 138px;
  }

  .hero {
    padding-top: 126px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 11.8vw, 3.15rem);
    letter-spacing: -0.055em;
  }

  .eyebrow {
    display: flex;
    max-width: 100%;
    font-size: 0.68rem;
    line-height: 1.45;
    letter-spacing: 0.12em;
  }

  .eyebrow::before {
    flex: 0 0 24px;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .configurator {
    width: 100%;
    padding: 21px;
  }

  .range-row {
    min-width: 0;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
  }

  .range-row input[type="range"] {
    min-width: 0;
  }

  .range-value {
    grid-column: 2;
    justify-self: start;
  }

  .config-total {
    align-items: stretch;
    flex-direction: column;
  }

  .config-total .btn {
    width: 100%;
  }

  .config-options,
  .panel-metrics,
  .advantage-grid,
  .document-flow,
  .footer-grid,
  .app-grid.cols-4,
  .form-grid,
  .node-metrics {
    grid-template-columns: 1fr;
  }

  .option-chip {
    min-width: 0;
  }

  .option-chip b {
    min-width: 0;
    overflow-wrap: anywhere;
    text-align: right;
  }

  .service-card {
    padding: 20px;
  }

  .service-card.large {
    min-height: 0;
  }

  .service-illustration {
    width: calc(100% + 12px);
    max-width: none;
    margin: 28px -6px 20px;
    border-radius: 16px;
  }

  .ai-operations-banner {
    padding: 20px;
  }

  .ai-operations-banner img {
    width: calc(100% + 12px);
    max-width: none;
    margin-inline: -6px;
    border-radius: 16px;
  }

  .advantage {
    flex: 0 0 min(78vw, 300px);
    min-height: 0;
    padding: 23px;
    scroll-snap-align: start;
  }

  .advantage-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .advantage h3 {
    margin-top: 28px;
  }

  .decision-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .decision-card {
    flex: 0 0 min(84vw, 320px);
    min-height: 300px;
    scroll-snap-align: start;
  }

  .proof-shell {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .proof-facts article {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 16px;
  }

  .proof-facts span {
    width: 34px;
    height: 34px;
  }

  .faq-question {
    gap: 12px;
  }

  .panel-showcase {
    margin-inline: -7px;
    padding: 8px;
    border-radius: 19px;
  }

  .panel-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .panel-content {
    padding: 16px;
  }

  .mini-row {
    grid-template-columns: 1.2fr 0.7fr;
  }

  .mini-row > *:nth-child(3),
  .mini-row > *:nth-child(4) {
    display: none;
  }

  .workflow-sticky {
    position: static;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .app-table th,
  .app-table td {
    padding-inline: 12px;
  }
}

:root[data-theme="light"] {
  color-scheme: light;
  --ink-950: #f2f0e8;
  --ink-900: #eae7dd;
  --ink-850: #f8f6f0;
  --ink-800: #e2ded3;
  --ink-700: #d5d0c4;
  --ink-600: #c8c2b5;
  --paper: #111619;
  --paper-soft: #46504d;
  --muted: #656f6b;
  --signal: #8fbd19;
  --signal-2: #157966;
  --copper: #9a633b;
  --danger: #b84239;
  --warning: #946600;
  --success: #137348;
  --line: rgba(17, 22, 25, 0.13);
  --line-strong: rgba(17, 22, 25, 0.24);
  --glass: rgba(255, 255, 255, 0.68);
  --glass-strong: rgba(248, 246, 240, 0.94);
  --shadow: 0 28px 90px rgba(54, 48, 38, 0.14);
}

:root[data-theme="light"] html,
:root[data-theme="light"] body {
  background-color: var(--ink-950);
}

:root[data-theme="light"] .benefit-band article > span {
  color: #4f6f00;
}

:root[data-theme="light"] .benefit-band article {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.2)),
    var(--ink-900);
  box-shadow: 0 18px 44px rgba(54, 48, 38, 0.08);
}

:root[data-theme="light"] .benefit-band article:hover {
  border-color: rgba(143, 189, 25, 0.34);
  background:
    linear-gradient(145deg, rgba(143, 189, 25, 0.1), rgba(255, 255, 255, 0.36)),
    var(--ink-900);
}

:root[data-theme="light"] body {
  background:
    radial-gradient(circle at 16% -8%, rgba(21, 121, 102, 0.12), transparent 34rem),
    radial-gradient(circle at 100% 20%, rgba(143, 189, 25, 0.13), transparent 30rem),
    var(--ink-950);
}

:root[data-theme="light"] .brand-logo-dark {
  display: none;
}

:root[data-theme="light"] .brand-logo-light {
  display: block;
}

:root[data-theme="light"] .header-shell .brand-logo-light.brand-logo-static {
  display: none;
}

:root[data-theme="light"] .header-shell .brand-logo-light.brand-logo-motion {
  display: block;
}

:root[data-theme="light"] .header-shell {
  border-color: rgba(17, 22, 25, 0.12);
  background: rgba(248, 246, 240, 0.82);
  box-shadow: 0 18px 60px rgba(54, 48, 38, 0.12);
}

:root[data-theme="light"] .main-nav a:hover,
:root[data-theme="light"] .main-nav a:focus-visible,
:root[data-theme="light"] .btn-secondary,
:root[data-theme="light"] .mobile-toggle,
:root[data-theme="light"] .theme-toggle {
  background: rgba(17, 22, 25, 0.045);
}

:root[data-theme="light"] .btn-secondary:hover,
:root[data-theme="light"] .btn-ghost:hover {
  border-color: rgba(17, 22, 25, 0.3);
  background: rgba(17, 22, 25, 0.075);
}

:root[data-theme="light"] .btn-primary,
:root[data-theme="light"] .doc-node,
:root[data-theme="light"] .panel-tab.active,
:root[data-theme="light"] .skip-link {
  color: #0a0e0b;
}

:root[data-theme="light"] .grid-line {
  background-image:
    linear-gradient(rgba(17, 22, 25, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 22, 25, 0.055) 1px, transparent 1px);
}

:root[data-theme="light"] .configurator {
  border-color: rgba(17, 22, 25, 0.16);
  background:
    linear-gradient(135deg, rgba(143, 189, 25, 0.1), transparent 45%),
    rgba(255, 255, 255, 0.72);
}

:root[data-theme="light"] .configurator::before {
  border-color: rgba(17, 22, 25, 0.06);
}

:root[data-theme="light"] .network-operations-facts div,
:root[data-theme="light"] .network-node,
:root[data-theme="light"] .network-map-status {
  background: rgba(255, 255, 255, 0.74);
}

:root[data-theme="light"] .network-map {
  background:
    radial-gradient(circle at 51% 46%, rgba(143, 189, 25, 0.13), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(234, 231, 221, 0.96));
  box-shadow: 0 32px 100px rgba(54, 48, 38, 0.13);
}

:root[data-theme="light"] .network-node::before {
  border-color: #f8f6f0;
}

:root[data-theme="light"] .range-value,
:root[data-theme="light"] .option-chip,
:root[data-theme="light"] .tag,
:root[data-theme="light"] .metric,
:root[data-theme="light"] .badge,
:root[data-theme="light"] .messenger-link {
  background: rgba(17, 22, 25, 0.035);
}

:root[data-theme="light"] input[type="range"] {
  background: linear-gradient(90deg, var(--signal) var(--fill, 50%), rgba(17, 22, 25, 0.14) var(--fill, 50%));
}

:root[data-theme="light"] .config-note {
  color: #626c68;
}

:root[data-theme="light"] .marquee-shell,
:root[data-theme="light"] .tariff-shell,
:root[data-theme="light"] .advantage {
  background: rgba(255, 255, 255, 0.28);
}

:root[data-theme="light"] .service-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2)),
    var(--ink-900);
}

:root[data-theme="light"] .service-card.large {
  background:
    radial-gradient(circle at 78% 25%, rgba(143, 189, 25, 0.14), transparent 15rem),
    linear-gradient(155deg, rgba(21, 121, 102, 0.06), transparent 50%),
    var(--ink-900);
}

:root[data-theme="light"] .service-card.sites {
  background:
    radial-gradient(circle at 86% 18%, rgba(143, 189, 25, 0.13), transparent 13rem),
    linear-gradient(125deg, rgba(21, 121, 102, 0.06), transparent 46%),
    var(--ink-900);
}

:root[data-theme="light"] .decision-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(143, 189, 25, 0.1), transparent 25rem),
    linear-gradient(145deg, rgba(21, 121, 102, 0.04), transparent 48%),
    var(--ink-900);
}

:root[data-theme="light"] .decision-card,
:root[data-theme="light"] .conversion-steps,
:root[data-theme="light"] .conversion-steps article {
  background: rgba(255, 255, 255, 0.48);
}

:root[data-theme="light"] .doc-stage {
  background: rgba(255, 255, 255, 0.58);
}

:root[data-theme="light"] .status-pill.status-operational {
  color: #176940;
}

:root[data-theme="light"] .status-pill.status-partial {
  color: #805800;
}

:root[data-theme="light"] .status-pill.status-degraded {
  color: #9f3029;
}

:root[data-theme="light"] .workflow-step.is-active .step-no {
  color: #0a0e0b;
}

:root[data-theme="light"] .panel-showcase,
:root[data-theme="light"] .cta-panel,
:root[data-theme="light"] .proof-shell {
  --ink-950: #050708;
  --ink-900: #080b0e;
  --paper: #f3f0e8;
  --paper-soft: #c9c7c0;
  --muted: #8e969a;
  --signal: #d8ff68;
  --signal-2: #8ff8de;
  --line: rgba(243, 240, 232, 0.12);
  --line-strong: rgba(243, 240, 232, 0.22);
  color: var(--paper);
}

:root[data-theme="light"] .main-nav.open {
  background: rgba(248, 246, 240, 0.98);
}

@media (max-width: 820px) {
  .datacenter-slide { grid-template-columns: 1fr; min-height: 0; }
  .datacenter-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .datacenter-media img { min-height: 0; }
  .datacenter-slide > div { min-height: 300px; }
  .datacenter-slide h3 { margin-top: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .reveal,
  .motion-ready .hero-copy > .eyebrow,
  .motion-ready .hero-copy > h1 .line,
  .motion-ready .hero-copy > .hero-lead,
  .motion-ready .hero-copy > .hero-actions,
  .motion-ready .hero-copy > .hero-network-proof,
  .motion-ready .hero-copy > .hero-proof,
  .motion-ready .hero .configurator,
  .motion-ready .motion-sequence .benefit-card,
  .motion-ready .motion-sequence .advantage,
  .motion-ready .motion-sequence .workflow-step,
  .motion-ready .motion-sequence .doc-stage,
  .motion-ready .motion-sequence .tariff-card {
    opacity: 1;
    transform: none;
  }

  .document-flow::before {
    transform: scaleX(1);
  }

  .header-shell .brand-logo-motion {
    display: none;
  }

  .header-shell .brand-logo-static.brand-logo-dark {
    display: block;
  }

  :root[data-theme="light"] .header-shell .brand-logo-static.brand-logo-dark {
    display: none;
  }

  :root[data-theme="light"] .header-shell .brand-logo-static.brand-logo-light {
    display: block;
  }

  :root[data-theme="light"] .header-shell .brand-logo-light.brand-logo-motion {
    display: none;
  }

  .network-map-packet { display: none; }
  .network-map-route-main,
  .network-map-route-return,
  .network-node {
    animation: none !important;
  }
}
