:root {
  --bg: #060608;
  --bg-elevated: #0c0c0f;
  --surface: #12121a;
  --border: rgba(255, 255, 255, 0.06);
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --muted-2: #71717a;
  --accent: #38bdf8;
  --accent-2: #a78bfa;
  --radius: 14px;
  --radius-lg: 22px;
  --font: "Onest", system-ui, -apple-system, sans-serif;
  --font-display: "Syne", var(--font);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --amber: #fbbf24;
  --green: #4ade80;
  --secure: #34d399;
  --secure-2: #2dd4bf;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center top;
  -webkit-font-smoothing: antialiased;
}

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

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

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(6, 6, 8, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.header--scrolled {
  background: rgba(6, 6, 8, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 40px -20px rgba(0, 0, 0, 0.75);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.1;
  flex-shrink: 1;
  min-width: 0;
}

@media (max-width: 520px) {
  .logo {
    max-width: calc(100% - 5.5rem);
  }
}

.logo__suffix {
  font-size: clamp(0.52rem, 1.65vw, 0.62rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--muted-2);
  line-height: 1.3;
  white-space: normal;
  hyphens: auto;
}

.logo--footer .logo__suffix {
  display: none;
}

.nav {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}

.nav a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}

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

.header__cta {
  flex-shrink: 0;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: var(--surface);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, border-color 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  color: #020617;
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4);
}

.btn--primary:hover {
  box-shadow: 0 8px 32px -8px rgba(56, 189, 248, 0.55);
}

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

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  padding: clamp(7rem, 12vw, 9rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(56, 189, 248, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.text-gradient {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient--secure {
  background: linear-gradient(90deg, var(--secure), var(--secure-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead strong {
  color: #e4e4e7;
  font-weight: 600;
}

.hero__lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34rem;
  margin: 0 0 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  list-style: none;
  margin: 0 0 2.25rem;
  padding: 0;
}

.hero__stack li {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5rem;
  margin: 0;
  padding: 0;
}

.hero__stats div {
  margin: 0;
}

.hero__stats dt {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  background: linear-gradient(180deg, #fff, #a1a1aa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__stats dd {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--muted-2);
}

.hero__visual {
  position: relative;
  z-index: 0;
  min-height: 320px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: stretch;
}

.orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.orb--1 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  top: 10%;
  right: 20%;
}

.orb--2 {
  width: 160px;
  height: 160px;
  background: var(--accent-2);
  bottom: 15%;
  right: 5%;
}

/* Hero terminal */
.hero-console {
  --console-bg: #0d1117;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  align-self: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(22, 27, 34, 0.97), rgba(13, 17, 23, 0.99));
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 28px 70px -24px rgba(0, 0, 0, 0.85),
    0 0 80px -40px rgba(56, 189, 248, 0.12);
  overflow: hidden;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  backdrop-filter: blur(12px);
}

.hero-console__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-console__led {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-console__led--r {
  background: #ff5f57;
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.25);
}

.hero-console__led--y {
  background: #febc2e;
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.hero-console__led--g {
  background: #28c840;
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.hero-console__chrome-title {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}

.hero-console__screen {
  position: relative;
  min-height: 236px;
  max-height: 260px;
  background: var(--console-bg);
}

.hero-console__scan {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.12) 2px,
    rgba(0, 0, 0, 0.12) 4px
  );
  opacity: 0.35;
}

.hero-console__lines {
  position: relative;
  z-index: 1;
  min-height: 236px;
  max-height: 236px;
  overflow: hidden;
  padding: 0.6rem 0.75rem 0.55rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.22rem;
  font-size: 0.7rem;
  line-height: 1.45;
}

.hero-console__line {
  flex-shrink: 0;
  opacity: 0;
  animation: hero-console-line 0.4s var(--ease) forwards;
  word-break: break-word;
}

@keyframes hero-console-line {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-console__line {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero-console__line--ok {
  color: #56d364;
}

.hero-console__line--cdn {
  color: #79c0ff;
}

.hero-console__line--api {
  color: #ffa657;
}

.hero-console__line--db {
  color: #d2a8ff;
}

.hero-console__line--ci {
  color: #a5d6ff;
}

.hero-console__line--sec {
  color: #56d364;
}

.hero-console__line--warn {
  color: #e3b341;
}

.hero-console__line--metric {
  color: #8b949e;
}

.hero-console__line--pay {
  color: #ff7b72;
}

.hero-console__bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 0.45rem 0.75rem;
  background: rgba(22, 27, 34, 0.98);
  border-top: 1px solid rgba(48, 54, 61, 0.9);
  font-size: 0.58rem;
}

.hero-console__bar-k {
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  white-space: nowrap;
}

.hero-console__integrations {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hero-console__integrations::-webkit-scrollbar {
  display: none;
}

.hero-console__pill {
  display: inline-block;
  padding: 0.22rem 0.5rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  animation: hero-pill-in 0.35s var(--ease);
}

@keyframes hero-pill-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-console__pill {
    animation: none;
  }
}

.hero-console__pill--cf {
  background: rgba(243, 128, 32, 0.2);
  color: #ffa657;
  border: 1px solid rgba(243, 128, 32, 0.35);
}

.hero-console__pill--stripe {
  background: rgba(99, 91, 255, 0.18);
  color: #a5b4fc;
  border: 1px solid rgba(129, 140, 248, 0.35);
}

.hero-console__pill--s3 {
  background: rgba(232, 168, 124, 0.15);
  color: #fdba74;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.hero-console__pill--yc {
  background: rgba(252, 213, 53, 0.12);
  color: #fde047;
  border: 1px solid rgba(253, 224, 71, 0.28);
}

.hero-console__pill--tg {
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.hero-console__pill--maps {
  color: #fb7185;
  background: rgba(251, 113, 133, 0.12);
  border: 1px solid rgba(251, 113, 133, 0.28);
}

.hero-console__pill--smtp {
  color: #c4b5fd;
  background: rgba(167, 139, 250, 0.14);
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.hero-console__pill--pg {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.hero-console__pill--redis {
  color: #f87171;
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.28);
}

.hero-console__bar-stat {
  color: #6e7681;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: right;
  justify-self: end;
}

.hero-console__input {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.35rem;
  padding: 0.5rem 0.75rem 0.6rem;
  background: #010409;
  border-top: 1px solid rgba(48, 54, 61, 0.85);
  font-size: 0.64rem;
}

.hero-console__host {
  color: #56d364;
  font-weight: 600;
}

.hero-console__cwd {
  color: #79c0ff;
}

.hero-console__dollar {
  color: #8b949e;
  margin-left: 0.15rem;
}

.hero-console__caret {
  display: inline-block;
  width: 7px;
  height: 1em;
  margin-left: 1px;
  background: #58a6ff;
  vertical-align: text-bottom;
  animation: hero-caret-blink 1s step-end infinite;
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-console__caret {
    animation: none;
    opacity: 0.75;
  }
}

@media (max-width: 900px) {
  .hero__visual {
    min-height: 0;
    margin-top: 1.25rem;
    justify-content: center;
  }

  .hero-console {
    max-width: min(100%, 520px);
    margin-inline: auto;
  }

  .orb--1,
  .orb--2 {
    opacity: 0.35;
  }
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 5.5rem) 0;
}

.section--alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section__head {
  max-width: 36rem;
  margin-bottom: 3rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.section__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section__subtitle--wide {
  max-width: 42rem;
}

.integrations-block {
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.integrations-block__title {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.integrations-block__chips {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.45rem;
}

.integrations-block__chips li {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(167, 139, 250, 0.08));
  color: #e4e4e7;
  letter-spacing: 0.02em;
}

.integrations-block__edge {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 46rem;
}

.integrations-block__edge strong {
  color: #fbbf24;
  font-weight: 700;
}

.section__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.section--interfaces .section__head {
  max-width: none;
}

.section__title--display {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section--interfaces {
  position: relative;
  border-block: 1px solid var(--border);
  background:
    radial-gradient(ellipse 90% 55% at 80% -15%, rgba(167, 139, 250, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 100%, rgba(56, 189, 248, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(251, 191, 36, 0.04), transparent),
    var(--bg);
}

.section--security {
  position: relative;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 45% at 70% 0%, rgba(52, 211, 153, 0.08), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(45, 212, 191, 0.06), transparent),
    var(--bg);
}

.security-hero {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 34%);
  gap: 0 clamp(1.75rem, 4vw, 3rem);
  align-items: stretch;
  margin-bottom: 2.5rem;
}

.security-hero .section__head {
  max-width: none;
  margin-bottom: 0;
}

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

/* Блок «Ущерб от атак» — три факта */
.security-stats {
  position: relative;
  padding: 0.15rem 0 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

@media (min-width: 961px) {
  .security-stats {
    padding: 0.35rem 0 0 clamp(1.25rem, 2.5vw, 2rem);
    border-left: 1px solid rgba(52, 211, 153, 0.14);
    background: linear-gradient(180deg, rgba(52, 211, 153, 0.04) 0%, transparent 42%);
  }

  .security-stats.security-stats--damage {
    border-left-color: rgba(255, 255, 255, 0.06);
    background: transparent;
  }
}

@media (max-width: 960px) {
  .security-stats {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(52, 211, 153, 0.05), transparent 55%);
  }

  .security-stats.security-stats--damage {
    border-top-color: rgba(255, 255, 255, 0.06);
    background: transparent;
  }
}

.security-stats__panel {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 12, 18, 0.55);
  box-shadow: 0 18px 48px -32px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
}

.security-stats__panel--facts {
  padding: 0.15rem 0 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.security-stats__title--facts-min {
  margin: 0 0 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a1a1aa;
}

.security-facts--min {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.security-facts--min .security-fact {
  margin: 0;
  padding: 0;
  border: none;
}

.security-fact__text {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  font-weight: 400;
  color: #a1a1aa;
}

.security-fact__lead {
  font-weight: 600;
  color: #f87171;
}

.security-fact__cite {
  display: inline;
  margin: 0;
  padding: 0;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 500;
  color: #71717a;
}

.security-fact__cite::before {
  content: " ";
}

.security-stats__note {
  margin: 1.15rem 0 0;
  padding: 0;
  border: none;
  font-size: 0.65rem;
  line-height: 1.5;
  color: #71717a;
  text-align: left;
  max-width: none;
}

.security-stats__note--facts {
  margin-top: 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 420px) {
  .security-fact__text {
    font-size: 0.76rem;
  }
}

.section__kicker--secure {
  color: var(--secure);
}

.security-pitch {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 1.65rem;
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(52, 211, 153, 0.2);
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.08), rgba(18, 18, 26, 0.9));
}

.security-pitch__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(52, 211, 153, 0.12);
  color: var(--secure);
}

.security-pitch__text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #d4d4d8;
}

.security-pitch__text strong {
  color: var(--text);
}

.security-foot {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted-2);
  max-width: 48rem;
}

.security-foot strong {
  color: var(--muted);
}

/* Bento + interface mocks */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.bento__cell {
  grid-column: span 12;
  padding: 1.35rem 1.35rem 1.15rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.bento__cell:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 20px 50px -28px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

/* без общей «подложки» — только два окна на фоне секции */
.bento__cell--1c {
  background: transparent;
  border: none;
  box-shadow: none;
}

.bento__cell--1c:hover {
  border-color: transparent;
  box-shadow: none;
}

@media (min-width: 960px) {
  .bento__cell--1c {
    grid-column: 1 / -1;
  }
}

.bento__label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.bento__hint {
  margin-left: auto;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted-2);
  font-size: 0.78rem;
}

.bento__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.45);
}

.bento__dot--violet {
  background: var(--accent-2);
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.45);
}

.bento__dot--amber {
  background: var(--amber);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.35);
}

.bento__dot--green {
  background: var(--green);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.35);
}

.bento__cap {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

/* 1C · два окна (витрина + учёт) */
.d1c {
  flex: 1;
  min-height: 0;
}

.d1c__pair {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 720px) {
  .d1c__pair {
    flex-direction: row;
    align-items: stretch;
    gap: 1.25rem;
  }
}

.d1c__win {
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--surface);
}

.d1c__win--shop {
  --shop-line: rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  border: 1px solid var(--shop-line);
  background:
    radial-gradient(120% 90% at 100% -15%, rgba(14, 165, 233, 0.14), transparent 42%),
    radial-gradient(90% 70% at 0% 100%, rgba(13, 148, 136, 0.1), transparent 48%),
    linear-gradient(165deg, #f4f7fb 0%, #ffffff 55%);
  box-shadow:
    0 26px 60px -34px rgba(15, 23, 42, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  overflow: hidden;
}

.d1c__shop-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  flex-wrap: wrap;
  padding: 0.65rem 0.85rem 0.72rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.55));
  backdrop-filter: blur(10px);
}

.d1c__shop-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.d1c__shop-logo {
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #0d9488);
  box-shadow:
    0 10px 24px -10px rgba(14, 165, 233, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.d1c__shop-logo-svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  filter: drop-shadow(0 1px 0 rgba(15, 23, 42, 0.12));
}

.d1c__shop-brandtext {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.d1c__shop-name {
  font-family: var(--font-display), system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.1;
}

.d1c__shop-tagline {
  font-size: 0.62rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.05em;
}

.d1c__shop-headmeta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.d1c__shop-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.85);
  color: #475569;
  letter-spacing: 0.02em;
}

.d1c__shop-pill--live {
  border-color: rgba(16, 185, 129, 0.35);
  background: linear-gradient(135deg, rgba(209, 250, 229, 0.95), rgba(240, 253, 250, 0.98));
  color: #047857;
}

.d1c__shop-pill--live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
  flex-shrink: 0;
}

.d1c__win--erp {
  --1c-form: #fffff0;
  --1c-title-a: #1f6fc4;
  --1c-title-b: #0d4a8c;
  --1c-menu: #ece9d8;
  --1c-edge: #8b8b7a;
  --1c-line: #a7a394;
  --1c-head: #e6e3d8;
  --1c-row-alt: #f7f6f0;
  background: var(--1c-form);
  border: 1px solid var(--1c-edge);
  border-radius: 3px;
  box-shadow: 2px 3px 16px rgba(0, 0, 0, 0.28);
  font-family: Tahoma, "Segoe UI", Roboto, sans-serif;
}

.d1c__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.65rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
}

.d1c__bar--erp {
  gap: 0.45rem;
  padding: 0.3rem 0.45rem 0.32rem;
  border-bottom: 1px solid #062a52;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, var(--1c-title-a) 0%, var(--1c-title-b) 100%);
  color: #fff;
  min-height: 1.75rem;
}

.d1c__erp-logo {
  flex-shrink: 0;
  width: 1.38rem;
  height: 1.38rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(145deg, #ffe082, #fbc02d);
  color: #b71c1c;
  font-size: 0.52rem;
  font-weight: 900;
  line-height: 1.36rem;
  text-align: center;
  letter-spacing: -0.06em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.d1c__erp-headtext {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.15;
}

.d1c__erp-headtitle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.d1c__erp-headsub {
  font-size: 0.52rem;
  font-weight: 600;
  opacity: 0.9;
}

.d1c__erp-winbtns {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
  align-items: center;
}

.d1c__erp-winbtn {
  width: 0.95rem;
  height: 0.88rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.d1c__erp-winbtn--max {
  width: 1.05rem;
}

.d1c__erp-winbtn--close {
  border-color: rgba(0, 0, 0, 0.25);
  background: linear-gradient(180deg, #ef9a9a, #c62828);
}

.d1c__erp-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.1rem 0.85rem;
  margin: 0;
  padding: 0.2rem 0.5rem 0.22rem;
  border-bottom: 1px solid #8a9099;
  background: var(--1c-menu);
  font-size: 0.58rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.02em;
}

.d1c__erp-menu span {
  cursor: default;
  user-select: none;
}

.d1c__dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.d1c__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e2e8f0;
}

.d1c__dots span:nth-child(1) {
  background: #fca5a5;
}
.d1c__dots span:nth-child(2) {
  background: #fde047;
}
.d1c__dots span:nth-child(3) {
  background: #86efac;
}

.d1c__bar-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}

.d1c__body {
  padding: 0.65rem 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.d1c__body--erp {
  padding: 0.45rem 0.5rem 0.5rem;
  gap: 0.38rem;
  background: var(--1c-form, #fffff0);
}

.d1c__url {
  margin: 0;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.64rem;
  color: #64748b;
}

.d1c__body--shop {
  padding: 0.65rem 0.85rem 0.9rem;
  gap: 0.65rem;
  font-family: var(--font);
}

.d1c__body--shop .d1c__url {
  margin: 0 0 0.15rem;
  display: inline-block;
  padding: 0.24rem 0.48rem;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.6rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.02em;
}

.d1c__storebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.45rem 0.55rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 4px 18px -12px rgba(15, 23, 42, 0.12);
}

.d1c__crumbs {
  font-size: 0.68rem;
  color: #64748b;
}

.d1c__crumb-sep {
  margin: 0 0.2em;
  opacity: 0.45;
}

.d1c__storebar-tools {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.d1c__fake-search,
.d1c__fake-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  line-height: 1;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.d1c__fake-search {
  flex: 1 1 7rem;
  min-width: 0;
  max-width: 9rem;
  padding: 0.3rem 0.48rem;
  font-size: 0.64rem;
  font-weight: 500;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.d1c__fake-cart {
  padding: 0.3rem 0.5rem 0.3rem 0.42rem;
  font-size: 0.68rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #0f172a;
}

.d1c__ico {
  flex-shrink: 0;
  opacity: 0.62;
}

.d1c__body--shop .d1c__ico {
  opacity: 0.72;
}

.d1c__store-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.65rem 0.85rem;
  margin: 0.05rem 0 0.1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 36px -24px rgba(15, 23, 42, 0.2);
}

.d1c__store-hero-copy {
  flex: 1 1 12rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.d1c__store-eyebrow {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d9488;
}

.d1c__store-cat {
  margin: 0;
  font-family: var(--font-display), system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0f172a;
}

.d1c__store-lead {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.55;
  color: #64748b;
  max-width: 32ch;
}

.d1c__pgrid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.52rem;
}

.d1c__pitem {
  display: flex;
  gap: 0.55rem;
  padding: 0.55rem 0.6rem 0.58rem 0.55rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: #fff;
  box-shadow: 0 8px 28px -18px rgba(15, 23, 42, 0.22);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.d1c__pitem:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 233, 0.22);
  box-shadow: 0 16px 40px -20px rgba(15, 23, 42, 0.24);
}

.d1c__pthumb {
  width: 3.45rem;
  height: 3.45rem;
  border-radius: 12px;
  flex-shrink: 0;
  border: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
  background: linear-gradient(145deg, #f8fafc, #fff);
  box-shadow: 0 2px 8px -4px rgba(15, 23, 42, 0.12);
}

.d1c__pimg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.d1c__pitem[data-sku="b1120"] .d1c__pimg {
  object-fit: contain;
  background: #fff;
}

.d1c__pitem-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.d1c__pname {
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.32;
  color: #0f172a;
  letter-spacing: -0.015em;
}

.d1c__pitem-row {
  display: grid;
  grid-template-columns: minmax(3.75rem, auto) 1fr auto;
  gap: 0.38rem 0.48rem;
  align-items: center;
}

.d1c__pprice {
  font-family: var(--font), system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  color: #0f172a;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.d1c__pstock {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 600;
  color: #475569;
  justify-self: end;
  text-align: right;
  line-height: 1.25;
  min-width: 0;
  padding: 0.16rem 0.42rem;
  border-radius: 999px;
  background: #f1f5f9;
}

.d1c__pstock--low {
  color: #c2410c;
  font-weight: 700;
  background: rgba(254, 243, 199, 0.55);
}

.d1c__pstock--few {
  padding: 0.16rem 0.46rem;
  border-radius: 999px;
  border: 1px solid rgba(234, 88, 12, 0.28);
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.95), rgba(254, 243, 199, 0.35));
  color: #c2410c;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 0.64rem;
}

.d1c__patc {
  appearance: none;
  border: none;
  margin: 0;
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  line-height: 1;
  box-shadow:
    0 6px 16px -8px rgba(14, 165, 233, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), filter 0.18s;
}

.d1c__patc:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 10px 22px -10px rgba(14, 165, 233, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.d1c__patc:focus-visible {
  outline: 2px solid #0ea5e9;
  outline-offset: 2px;
}

.d1c__win--erp .d1c__qtywrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
  padding-right: 0.05rem;
}

.d1c__win--erp .d1c__qtylbl {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5c5c5c;
}

.d1c__win--erp .d1c__qty {
  width: 3.15rem;
  height: 1.42rem;
  padding: 0.1rem 0.28rem;
  border-radius: 0;
  border: 1px solid #7a9ebe;
  background: #fff;
  color: #000;
  font: inherit;
  font-size: 0.6rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: right;
  outline: none;
  box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 rgba(0, 0, 0, 0.06);
}

.d1c__win--erp .d1c__qty:focus-visible {
  border-color: #0d47a1;
  box-shadow: inset 1px 1px 0 #fff, 0 0 0 2px rgba(13, 71, 161, 0.2);
}

.d1c__win--erp .d1c__qty::-webkit-outer-spin-button,
.d1c__win--erp .d1c__qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.d1c__win--erp .d1c__qty[type="number"] {
  -moz-appearance: textfield;
}

.d1c__win--erp .d1c__pricewrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
  min-width: 0;
}

.d1c__win--erp .d1c__pricelbl {
  font-size: 0.52rem;
  font-weight: 700;
  color: #5c5c5c;
}

.d1c__win--erp .d1c__price {
  width: 100%;
  max-width: 4.85rem;
  height: 1.42rem;
  padding: 0.1rem 0.26rem;
  border-radius: 0;
  border: 1px solid #7a9ebe;
  background: #fff;
  color: #000;
  font: inherit;
  font-size: 0.6rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: right;
  outline: none;
  box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 rgba(0, 0, 0, 0.06);
}

.d1c__win--erp .d1c__price:focus-visible {
  border-color: #0d47a1;
  box-shadow: inset 1px 1px 0 #fff, 0 0 0 2px rgba(13, 71, 161, 0.2);
}

.d1c__win--erp .d1c__price::-webkit-outer-spin-button,
.d1c__win--erp .d1c__price::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.d1c__win--erp .d1c__price[type="number"] {
  -moz-appearance: textfield;
}

.d1c__win--erp .d1c__sub {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: 0;
}

.d1c__win--erp .d1c__desc {
  margin: 0;
  font-size: 0.58rem;
  line-height: 1.45;
  color: #3a3a3a;
}

.d1c__win--erp .d1c__sheet {
  border-radius: 0;
  border: 1px solid var(--1c-edge, #8b8b7a);
  overflow: hidden;
  background: #fff;
}

.d1c__win--erp .d1c__sheet--scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.d1c__win--erp .d1c__sheet-inner {
  min-width: 19.5rem;
}

.d1c__win--erp .d1c__head {
  display: grid;
  grid-template-columns:
    minmax(5.5rem, 1.15fr)
    minmax(3.75rem, 4.35rem)
    minmax(3.95rem, 4.45rem)
    minmax(3.35rem, 3.85rem)
    minmax(2.15rem, 2.45rem)
    minmax(3.6rem, 4.15rem)
    minmax(4.15rem, 4.85rem);
  gap: 0.28rem 0.32rem;
  padding: 0.3rem 0.42rem;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  color: #000;
  border-bottom: 1px solid var(--1c-line, #a7a394);
  background: var(--1c-head, #e6e3d8);
}

.d1c__win--erp .d1c__head span:nth-child(4),
.d1c__win--erp .d1c__head span:nth-child(7) {
  text-align: right;
}

.d1c__win--erp .d1c__head span:nth-child(5) {
  text-align: center;
}

.d1c__win--erp .d1c__rows {
  list-style: none;
  margin: 0;
  padding: 0;
}

.d1c__win--erp .d1c__rows li {
  display: grid;
  grid-template-columns:
    minmax(5.5rem, 1.15fr)
    minmax(3.75rem, 4.35rem)
    minmax(3.95rem, 4.45rem)
    minmax(3.35rem, 3.85rem)
    minmax(2.15rem, 2.45rem)
    minmax(3.6rem, 4.15rem)
    minmax(4.15rem, 4.85rem);
  gap: 0.28rem 0.32rem;
  padding: 0.28rem 0.42rem;
  border-bottom: 1px solid #c8c4b8;
  font-size: 0.58rem;
  background: #fff;
  align-items: center;
}

.d1c__win--erp .d1c__rows li > .d1c__qtywrap,
.d1c__win--erp .d1c__rows li > .d1c__pricewrap {
  justify-self: end;
}

.d1c__win--erp .d1c__rows li:nth-child(even) {
  background: var(--1c-row-alt, #f7f6f0);
}

.d1c__win--erp .d1c__rows li:last-child {
  border-bottom: none;
}

.d1c__win--erp .d1c__cell {
  color: #000;
  min-width: 0;
  line-height: 1.35;
}

.d1c__win--erp .d1c__cell--num {
  font-family: Tahoma, "Segoe UI", sans-serif;
  font-size: 0.58rem;
  font-variant-numeric: tabular-nums;
  color: #000;
  text-align: right;
}

.d1c__win--erp .d1c__cell--internal {
  color: #5c4a3a;
  font-weight: 600;
}

.d1c__win--erp .d1c__cell--code {
  font-family: "JetBrains Mono", ui-monospace, Consolas, monospace;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1a237e;
}

.d1c__win--erp .d1c__cell--vat {
  text-align: center;
  font-size: 0.52rem;
  font-weight: 700;
  color: #37474f;
}

.d1c__win--erp .d1c__cell--ean {
  font-family: "JetBrains Mono", ui-monospace, Consolas, monospace;
  font-size: 0.48rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #424242;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.d1c__win--erp .d1c__foot {
  margin: 0.35rem 0 0;
  padding: 0.32rem 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.55rem;
  color: #2b2b2b;
  font-family: Tahoma, "Segoe UI", sans-serif;
  border: 1px solid var(--1c-edge, #8b8b7a);
  border-radius: 1px;
  background: var(--1c-menu, #ece9d8);
}

.d1c__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: d1c-pulse 2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .d1c__pulse {
    animation: none;
  }
}

@keyframes d1c-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

/* Growth / services (analytics & sales) */
.section--growth {
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.04) 0%, transparent 42%), var(--bg);
  border-block: 1px solid var(--border);
}

.growth-head {
  margin-bottom: 1.85rem;
}

.growth-head__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 56rem;
}

.growth-head__copy {
  min-width: 0;
}

.growth-head__3d-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: center;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  transition: opacity 0.35s ease, visibility 0.35s ease;
  max-width: 14rem;
  padding: 0 0.5rem;
}

.growth-head__3d--ready .growth-head__3d-overlay {
  opacity: 0;
  visibility: hidden;
}

.growth-head__3d--error .growth-head__3d-overlay {
  color: #fca5a5;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 0 0.75rem;
  text-align: center;
  line-height: 1.35;
}

.growth-3d {
  margin: 1.75rem auto 0;
  max-width: 52rem;
}

.growth-3d__stage {
  position: relative;
  width: min(100%, 700px);
  min-height: 360px;
  aspect-ratio: 16 / 10;
  margin: 0 auto;
  overflow: visible;
  border: none;
  background: transparent;
  box-shadow: none;
}

/* Панель подбора оси вращения (js: ?3d=debug или localhost) */
.growth-3d__tuner {
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  z-index: 4;
  max-width: min(100% - 0.9rem, 20rem);
  max-height: min(52vh, 26rem);
  overflow: auto;
  padding: 0.55rem 0.6rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 8, 12, 0.88);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  font-size: 0.7rem;
  line-height: 1.4;
  color: #d4d4d8;
  -webkit-tap-highlight-color: transparent;
}

.growth-3d__tuner-h {
  margin: 0 0 0.45rem;
  color: #e4e4e7;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.growth-3d__tuner-pre {
  margin: 0 0 0.5rem;
  padding: 0.45rem 0.5rem;
  max-height: 9.5rem;
  overflow: auto;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: 0.62rem;
  line-height: 1.45;
  color: #a5f3fc;
  white-space: pre-wrap;
  word-break: break-all;
}

.growth-3d__tuner-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.4rem;
}

.growth-3d__tuner-row label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem;
  color: #a1a1aa;
  font-size: 0.65rem;
}

.growth-3d__tuner-val {
  font-variant-numeric: tabular-nums;
  color: #e4e4e7;
}

.growth-3d__tuner-row input[type="range"] {
  width: 100%;
  height: 0.4rem;
  cursor: pointer;
  accent-color: #38bdf8;
}

.growth-3d__tuner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.2rem;
}

.growth-3d__tuner-btn {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.3rem 0.45rem;
  border-radius: 6px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.12);
  color: #e0f2fe;
  font-size: 0.64rem;
  font-weight: 600;
  cursor: pointer;
}

.growth-3d__tuner-btn:hover {
  background: rgba(56, 189, 248, 0.22);
}

.growth-3d__tuner-help {
  margin: 0.45rem 0 0;
  font-size: 0.6rem;
  line-height: 1.4;
  color: var(--muted-2, #71717a);
}

.growth-3d__stage::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(closest-side at 46% 44%, rgba(56, 189, 248, 0.14), transparent 62%),
    radial-gradient(closest-side at 62% 62%, rgba(74, 222, 128, 0.09), transparent 64%);
  filter: blur(10px);
  opacity: 0.95;
}

.growth-3d__cap {
  margin: 0.9rem auto 0;
  max-width: 52ch;
  text-align: center;
  color: var(--muted);
}

.growth-3d__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.05rem, 2.1vw, 1.25rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #f4f4f5;
}

.growth-3d__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
}

.growth-3d__tags {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  height: 1.8rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  background: rgba(56, 189, 248, 0.06);
  color: #e4e4e7;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.tag:nth-child(3n) {
  border-color: rgba(74, 222, 128, 0.18);
  background: rgba(74, 222, 128, 0.06);
}

.growth-3d__stage canvas {
  position: relative;
  z-index: 1;
  opacity: 0.9;
  transition: opacity 0.45s ease;
  touch-action: none;
  cursor: default;
}

.growth-head__3d--ready canvas,
.growth-3d__stage.growth-head__3d--ready canvas {
  opacity: 1;
}

.growth-3d__stage canvas:active {
  cursor: default;
}

.growth-3d__stage.growth-3d__stage--tune canvas {
  cursor: grab;
}

.growth-3d__stage.growth-3d__stage--tune canvas:active {
  cursor: grabbing;
}

@media (min-width: 900px) {
  .growth-head__layout {
    gap: clamp(1.5rem, 4vw, 2.75rem);
    max-width: none;
  }
}

.growth-head__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.growth-head__title {
  margin-bottom: 0.75rem;
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  line-height: 1.15;
}

.growth-head__title--sell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f4f4f5;
}

.growth-head__title-line {
  display: block;
  line-height: 1.12;
}

.growth-head__title-will {
  display: inline;
  background: linear-gradient(105deg, #4ade80 0%, #22d3ee 45%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.growth-head__title-tagline {
  display: block;
  max-width: 26ch;
  font-size: clamp(0.95rem, 2.1vw, 1.2rem);
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #a5b4fc;
}

.growth-head__lead {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #e4e4e7;
}

.growth-head__lead--solo {
  font-size: 1.05rem;
  line-height: 1.68;
}

.growth-head__lead strong {
  color: #f4f4f5;
  font-weight: 600;
}

.growth-head__note {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--muted);
  border-radius: var(--radius);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-left: 3px solid var(--accent);
  background: rgba(56, 189, 248, 0.06);
}

.growth-examples {
  margin-bottom: 2.25rem;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(24, 24, 32, 0.95), rgba(12, 12, 18, 0.98));
  box-shadow: 0 24px 48px -32px rgba(0, 0, 0, 0.65);
}

.growth-examples__head {
  margin-bottom: 1.15rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 40rem;
}

.growth-examples__title {
  margin: 0 0 0.55rem;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.25;
}

.growth-examples__usp {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.62;
  color: #a1a1aa;
  font-weight: 500;
}

.growth-examples__usp strong {
  color: #e4e4e7;
  font-weight: 600;
}

.growth-examples__usp em {
  font-style: normal;
  color: #7dd3fc;
  font-weight: 600;
}

.growth-examples__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .growth-examples__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

@media (min-width: 1100px) {
  .growth-examples__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.growth-sample {
  margin: 0;
  padding: 1rem 0.95rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 9, 12, 0.55);
  display: flex;
  flex-direction: column;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.growth-sample:hover {
  border-color: rgba(56, 189, 248, 0.22);
  box-shadow: 0 12px 36px -24px rgba(0, 0, 0, 0.55);
}

.growth-sample__kind {
  margin: 0 0 0.55rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #94a3b8;
}

/* Infographics inside growth samples */
.growth-viz {
  margin: 0 0 0.7rem;
  padding: 0.65rem 0.65rem 0.6rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.055);
}

/* 1 — доля заявок по каналам */
.growth-viz--channels {
  padding-bottom: 0.45rem;
}

.growth-viz__stack {
  display: flex;
  height: 10px;
  border-radius: 6px;
  overflow: hidden;
  gap: 2px;
  margin-bottom: 0.45rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.growth-viz__stack-seg {
  display: block;
  height: 100%;
  border-radius: 2px;
  min-width: 4px;
}

.growth-viz__stack-seg--cyan {
  background: linear-gradient(90deg, #0284c7, #38bdf8);
}

.growth-viz__stack-seg--violet {
  background: linear-gradient(90deg, #6d28d9, #a78bfa);
}

.growth-viz__stack-seg--green {
  background: linear-gradient(90deg, #15803d, #4ade80);
}

.growth-viz__stack-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  font-size: 0.62rem;
  font-weight: 500;
  color: #94a3b8;
  font-family: var(--font), system-ui, sans-serif;
  margin-bottom: 0.38rem;
}

.growth-viz__stack-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.growth-viz__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.growth-viz__dot--cyan {
  background: #38bdf8;
  box-shadow: 0 0 6px rgba(56, 189, 248, 0.35);
}

.growth-viz__dot--violet {
  background: #a78bfa;
  box-shadow: 0 0 6px rgba(167, 139, 250, 0.3);
}

.growth-viz__dot--green {
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.3);
}

.growth-viz__ch-legend {
  font-size: 0.58rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.02em;
}

/* 2 — воронка */
.growth-viz--funnel {
  padding: 0.5rem 0.45rem 0.4rem;
}

.growth-viz__fun-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem;
  align-items: center;
  margin-bottom: 0.28rem;
}

.growth-viz__fun-row--warn .growth-viz__fun-pct {
  color: #fb923c;
  font-weight: 700;
}

.growth-viz__fun-track {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.growth-viz__fun-fill {
  display: block;
  height: 100%;
  min-width: 6px;
  border-radius: 4px;
  background: linear-gradient(90deg, #0369a1, #38bdf8);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.35);
}

.growth-viz__fun-fill--2 {
  background: linear-gradient(90deg, #5b21b6, #a78bfa);
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.3);
}

.growth-viz__fun-fill--3 {
  background: linear-gradient(90deg, #a16207, #eab308);
  box-shadow: 0 0 12px rgba(234, 179, 8, 0.25);
}

.growth-viz__fun-fill--4 {
  background: linear-gradient(90deg, #c2410c, #fb923c);
  box-shadow: 0 0 12px rgba(251, 146, 60, 0.35);
}

.growth-viz__fun-pct {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  font-weight: 700;
  color: #e2e8f0;
  min-width: 2.5rem;
  text-align: right;
}

.growth-viz__fun-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.15rem;
  margin-top: 0.35rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.48rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted-2);
  text-align: center;
}

/* 3 — сравнение недель */
.growth-viz--compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  align-items: end;
  gap: 0.35rem 0.5rem;
  padding: 0.55rem 0.45rem 0.45rem;
}

.growth-viz__cmp-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.growth-viz__cmp-title {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.growth-viz__cmp-bar {
  width: 100%;
  max-width: 52px;
  height: 56px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 3px;
}

.growth-viz__cmp-bar span {
  display: block;
  width: calc(100% - 2px);
  border-radius: 4px;
  background: linear-gradient(180deg, #64748b, #475569);
  min-height: 18%;
}

.growth-viz__cmp-bar--accent span {
  background: linear-gradient(180deg, #38bdf8, #0284c7);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.35);
}

.growth-viz__cmp-n {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: #f1f5f9;
}

.growth-viz__cmp-col--now .growth-viz__cmp-n {
  color: #7dd3fc;
}

.growth-viz__cmp-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding-bottom: 0.5rem;
}

.growth-viz__cmp-arrow {
  font-size: 1.15rem;
  line-height: 1;
  color: #4ade80;
  text-shadow: 0 0 14px rgba(74, 222, 128, 0.45);
}

.growth-viz__cmp-badge {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #bbf7d0;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.35);
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
}

.growth-viz__cmp-foot {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.52rem;
  color: var(--muted-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* 4 — события */
.growth-viz--events {
  padding: 0.45rem 0.45rem 0.4rem;
}

.growth-viz__ev-row {
  display: grid;
  grid-template-columns: 52px 1fr 36px;
  gap: 0.35rem;
  align-items: center;
  margin-bottom: 0.32rem;
}

.growth-viz__ev-row:last-child {
  margin-bottom: 0;
}

.growth-viz__ev-name {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--muted-2);
}

.growth-viz__ev-track {
  display: block;
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.growth-viz__ev-track span {
  display: block;
  height: 100%;
  border-radius: 4px;
  min-width: 6px;
  background: linear-gradient(90deg, #7c3aed, #c4b5fd);
  box-shadow: 0 0 10px rgba(167, 139, 250, 0.35);
}

.growth-viz__ev-row:nth-child(2) .growth-viz__ev-track span {
  background: linear-gradient(90deg, #0369a1, #38bdf8);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

.growth-viz__ev-row:nth-child(3) .growth-viz__ev-track span {
  background: linear-gradient(90deg, #15803d, #86efac);
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.28);
}

.growth-viz__ev-n {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 700;
  color: #e2e8f0;
  text-align: right;
}

/* 5 — CRM */
.growth-viz--crm {
  padding: 0.55rem 0.5rem 0.5rem;
}

.growth-viz__crm-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.growth-viz__crm-node {
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #bae6fd;
}

.growth-viz__crm-node--crm {
  background: rgba(250, 204, 21, 0.12);
  border-color: rgba(250, 204, 21, 0.4);
  color: #fef08a;
}

.growth-viz__crm-line {
  flex: 1;
  max-width: 36px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.2), rgba(250, 204, 21, 0.9), rgba(250, 204, 21, 0.2));
}

.growth-viz__crm-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
}

.growth-viz__crm-pill {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.24rem 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

.growth-viz__crm-pill--ok {
  color: #bbf7d0;
  border-color: rgba(74, 222, 128, 0.35);
  background: rgba(74, 222, 128, 0.1);
}

.growth-viz__crm-pill--warn {
  color: #fed7aa;
  border-color: rgba(251, 146, 60, 0.45);
  background: rgba(251, 146, 60, 0.1);
}

/* 6 — sparkline */
.growth-viz--spark {
  padding: 0.35rem 0.35rem 0.3rem;
}

.growth-viz__svg {
  display: block;
  width: 100%;
  height: 44px;
  margin-bottom: 0.35rem;
}

.growth-viz__spark-line {
  filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.45));
}

.growth-viz__spark-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 600;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  color: #94a3b8;
}

.growth-viz__spark-tags span {
  padding: 0.12rem 0.38rem;
  border-radius: 4px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.18);
  color: #bae6fd;
}

@media (prefers-reduced-motion: reduce) {
  .growth-viz__spark-line {
    filter: none;
  }
}

.growth-sample__metric {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #d4d4d8;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.growth-sample__metric strong {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 600;
  color: #f8fafc;
  letter-spacing: -0.02em;
}

.growth-sample__meta {
  margin: 0;
  margin-top: auto;
  font-size: 0.76rem;
  line-height: 1.5;
  color: #71717a;
}

.growth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .growth-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
}

.growth-card {
  padding: 1.35rem 1.4rem 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
}

.growth-card:hover {
  border-color: rgba(56, 189, 248, 0.22);
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.75);
}

.growth-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.growth-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.22);
}

.growth-card:nth-child(2) .growth-card__icon {
  color: #c4b5fd;
  background: rgba(167, 139, 250, 0.12);
  border-color: rgba(167, 139, 250, 0.22);
}

.growth-card:nth-child(3) .growth-card__icon {
  color: #fde047;
  background: rgba(250, 204, 21, 0.1);
  border-color: rgba(250, 204, 21, 0.22);
}

.growth-card:nth-child(4) .growth-card__icon {
  color: #86efac;
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.22);
}

.growth-card__step {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.growth-card:nth-child(2) .growth-card__step {
  color: #c4b5fd;
}

.growth-card:nth-child(3) .growth-card__step {
  color: #fde047;
}

.growth-card:nth-child(4) .growth-card__step {
  color: var(--green);
}

.growth-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text);
}

.growth-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.growth-card__list li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.growth-card__list li:last-child {
  margin-bottom: 0;
}

.growth-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.9;
}

.growth-card:nth-child(2) .growth-card__list li::before {
  background: #a78bfa;
}

.growth-card:nth-child(3) .growth-card__list li::before {
  background: #eab308;
}

.growth-card:nth-child(4) .growth-card__list li::before {
  background: var(--green);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

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

.card {
  padding: 1.75rem 1.85rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.card:hover {
  border-color: rgba(56, 189, 248, 0.25);
  transform: translateY(-2px);
}

.card__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.card__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0.5rem 0 0.65rem;
  letter-spacing: -0.01em;
}

.card__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Process: интерактивный таймлайн */
.process-timeline {
  margin: 0 auto 0.5rem;
  max-width: 48rem;
}

.process-timeline__hint {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted-2);
}

.pt-rail {
  margin: 0 0 1.75rem;
}

.pt-rail__nodes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  padding: 0 0.1rem;
  gap: 0.35rem;
  position: relative;
  z-index: 1;
}

.pt-node {
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--muted-2);
  font-weight: 800;
  font-size: 0.88rem;
  font-family: var(--font-ui, system-ui, sans-serif);
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.25s,
    transform 0.2s;
}

.pt-node:hover {
  color: #f4f4f5;
  border-color: rgba(56, 189, 248, 0.45);
  transform: translateY(-1px);
}

.pt-node:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.pt-node--past {
  color: #7dd3fc;
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.08);
}

.pt-node--active {
  color: #f4f4f5;
  border-color: #38bdf8;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.2), rgba(12, 12, 18, 0.95));
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.35);
}

.pt-node--upcoming {
  opacity: 0.75;
}

.pt-rail__track {
  position: relative;
  height: 5px;
  border-radius: 99px;
  overflow: hidden;
  margin: 0 0.35rem 0 0.35rem;
}

.pt-rail__bg {
  position: absolute;
  inset: 0;
  background: var(--border);
  opacity: 0.9;
  border-radius: 99px;
}

.pt-rail__fill {
  position: absolute;
  inset: 0;
  transform: scaleX(var(--pt, 0));
  transform-origin: left center;
  background: linear-gradient(90deg, #22d3ee 0%, #4ade80 100%);
  border-radius: 99px;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.48, 1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .pt-rail__fill,
  .pt-node {
    transition: none;
  }
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.step--current {
  position: relative;
  border-radius: var(--radius);
  margin-inline: -0.35rem;
  padding-left: 1.15rem;
  border-left: 3px solid rgba(56, 189, 248, 0.9);
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.07), transparent 60%);
}

@media (min-width: 768px) {
  .step--current {
    margin-inline: 0;
    padding-left: 0;
    border-left: none;
    background: linear-gradient(165deg, rgba(56, 189, 248, 0.1), rgba(12, 12, 18, 0.3));
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 1.1rem 1rem 1.2rem;
  }
}

.step {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .step {
    flex-direction: column;
    padding: 0;
    border: none;
  }
}

.step__index {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.step__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.step__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* CTA */
.cta {
  padding-bottom: clamp(4rem, 10vw, 6rem);
}

.cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}

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

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

.cta__text {
  margin: 0;
  color: var(--muted);
  max-width: 28rem;
}

.cta__panel {
  min-width: min(100%, 280px);
}

.cta__hint {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--muted-2);
  text-align: center;
}

/* Footer */
.footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__tag {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--muted-2);
}

.footer__requisites {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted-2);
  max-width: 22rem;
}

.footer__legal {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted-2);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

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

.reveal--delay-1 {
  transition-delay: 0.08s;
}

.reveal--delay-2 {
  transition-delay: 0.16s;
}

.reveal--delay-3 {
  transition-delay: 0.24s;
}

.reveal--delay-4 {
  transition-delay: 0.32s;
}

/* Mobile nav */
@media (max-width: 880px) {
  .header__cta {
    display: none;
  }

  .burger {
    display: flex;
    margin-left: auto;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    margin: 0;
    padding: 5.5rem 1.5rem 2rem;
    flex-direction: column;
    gap: 0;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 99;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 98;
  }
}
