/* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
   PROMTUBE — landing v3
   IBM Plex · контейнер 1440 · бело-красное · «архитектурный»
   ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ */

:root {
  --paper:     #f4f1ec;
  --paper-2:   #ebe7df;
  --ink:       #0e0f12;
  --ink-2:     #2a2c32;
  --ink-mute:  #5a5e66;
  --ink-dim:   #9ea2a8;
  --line:      #d9d5ca;
  --line-2:    #c3bdae;
  --line-3:    rgba(14,15,18,.08);

  --red:       #d2473e;
  --red-dk:    #a8312a;
  --red-glow:  #ff6b5d;
  --red-soft:  rgba(210,71,62,.08);

  --display:   'IBM Plex Sans', system-ui, sans-serif;
  --body:      'IBM Plex Sans', system-ui, sans-serif;
  --mono:      'IBM Plex Mono', ui-monospace, monospace;

  --container: 1440px;
  --pad-x:     clamp(20px, 3vw, 48px);
  --ease:      cubic-bezier(.7, 0, .2, 1);
  --ease-out:  cubic-bezier(.2, .8, .25, 1);
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -.005em;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--red); color: #fff; }

/* фон — едва заметный шум, без warm-разливов */
body::before {
  content: '';
  position: fixed; inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .04;
  mix-blend-mode: multiply;
}

/* ──────── CONTAINER */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}

/* ──────── corner ticks — углы-плюсы у блоков */
.corners { position: relative; }
.corners::before,
.corners::after,
.corners > .corner--bl,
.corners > .corner--br {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  background:
    linear-gradient(to right,  var(--ink), var(--ink)) center/100% 1px no-repeat,
    linear-gradient(to bottom, var(--ink), var(--ink)) center/1px 100% no-repeat;
  opacity: .5;
}
.corners::before { left: -6px; top: -6px; }
.corners::after  { right: -6px; top: -6px; }

/* ──────── NAV — floating pill, КРУПНАЯ */
.nav {
  position: sticky;
  top: 18px;
  z-index: 100;
  padding: 0 var(--pad-x);
  margin-top: 18px;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px 10px 10px 26px;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border: 1px solid rgba(14,15,18,.08);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 12px 40px -25px rgba(14,15,18,.3);
}
.nav.is-scrolled .nav__inner {
  background: rgba(255,255,255,.95);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 16px 50px -25px rgba(14,15,18,.4);
}

.nav__logo {
  display: flex; align-items: center; gap: 10px;
  height: 38px;
}
.nav__logo img { height: 100%; width: auto; display: block; }

.nav__links {
  display: flex; gap: 4px;
  justify-self: center;
}
.nav__links a {
  display: inline-flex; align-items: center; gap: 9px;
  font: 500 14px/1 var(--body);
  letter-spacing: -.01em;
  color: var(--ink-2);
  padding: 13px 18px;
  border-radius: 999px;
  position: relative;
  transition: color .25s, background .25s;
}
.nav__links a:hover { color: var(--ink); background: rgba(14,15,18,.05); }
.nav__links a.is-active {
  color: var(--ink);
  background: rgba(14,15,18,.08);
}
.nav__links a.is-active::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  margin-right: -2px;
  box-shadow: 0 0 8px var(--red);
}
.nav__links svg { width: 18px; height: 18px; color: var(--red); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px 14px 24px;
  font: 500 14px/1 var(--body);
  letter-spacing: -.01em;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  transition: background .25s;
}
.nav__cta:hover { background: var(--red); }
.nav__cta svg { width: 14px; height: 14px; transition: transform .25s var(--ease-out); }
.nav__cta:hover svg { transform: translate(3px, -3px); }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__inner { padding: 8px 8px 8px 18px; }
  .nav__logo { height: 30px; }
}

/* ──────── HERO */
.hero {
  padding: 16px 0 60px;
}
.hero__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 600px;
  background: #0a0b0e;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 1px 0 rgba(0,0,0,.04),
    0 40px 80px -30px rgba(14,15,18,.45);
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(.7) brightness(.85) contrast(1.05);
  transform: scale(1.04);
}
.hero__stage::before {
  /* плавная градиентная засветка */
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,11,14,.62) 0%,
      rgba(10,11,14,.18) 22%,
      rgba(10,11,14,.05) 50%,
      rgba(10,11,14,.55) 88%,
      rgba(10,11,14,.85) 100%);
  z-index: 1;
}
.hero__stage::after {
  /* красно-белые блики */
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 12% 8%,  rgba(210,71,62,.45), transparent 55%),
    radial-gradient(ellipse 50% 60% at 92% 95%, rgba(255,255,255,.08), transparent 55%);
  mix-blend-mode: screen;
  z-index: 2;
  pointer-events: none;
}

/* анимированные чертёжные SVG-линии поверх видео */
.hero__blueprint {
  position: absolute; inset: 0;
  z-index: 3;
  pointer-events: none;
  width: 100%; height: 100%;
}
.hero__blueprint line, .hero__blueprint circle, .hero__blueprint path {
  stroke: rgba(255,255,255,.55);
  stroke-width: 1;
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: bpDraw 1.4s var(--ease-out) forwards;
}
.hero__blueprint circle {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  fill: var(--red);
  stroke: rgba(255,255,255,.85);
}
.hero__blueprint .bp-1 { animation-delay: .6s; }
.hero__blueprint .bp-2 { animation-delay: .9s; }
.hero__blueprint .bp-3 { animation-delay: 1.2s; }
.hero__blueprint .bp-4 { animation-delay: 1.5s; }
.hero__blueprint .bp-5 { animation-delay: 1.8s; }
.hero__blueprint .bp-d1 { animation-delay: .8s; }
.hero__blueprint .bp-d2 { animation-delay: 1.1s; }
.hero__blueprint .bp-d3 { animation-delay: 1.4s; }
@keyframes bpDraw { to { stroke-dashoffset: 0; } }

/* TOP BAR — верхняя метка слева и справа */
.hero__topbar {
  position: absolute; left: 28px; right: 28px; top: 24px;
  z-index: 5;
  display: flex; justify-content: space-between; align-items: center;
  font: 500 11px/1 var(--mono);
  letter-spacing: .04em;
  color: rgba(255,255,255,.78);
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: rgba(10,11,14,.55);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero__kicker i {
  width: 6px; height: 6px;
  background: #ff4f44;
  border-radius: 50%;
  box-shadow: 0 0 12px #ff4f44;
  animation: blink 1.6s steps(2) infinite;
}
@keyframes blink { 50% { opacity: .3; } }
.hero__doc {
  padding: 8px 12px;
  background: rgba(10,11,14,.55);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero__doc svg { width: 12px; height: 12px; opacity: .85; }

/* CONTENT — текстура гигант, фоном внизу */
.hero__giant {
  position: absolute;
  left: 0; right: 0; bottom: -.12em;
  z-index: 4;
  pointer-events: none;
  text-align: center;
  overflow: hidden;
  padding: 0 12px;
}
.hero__giant b {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(80px, 18vw, 280px);
  line-height: .82;
  letter-spacing: -.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.18);
  text-stroke: 1.5px rgba(255,255,255,.18);
  white-space: nowrap;
}
.hero__giant b em {
  font-style: normal;
  -webkit-text-stroke-color: rgba(210,71,62,.4);
  text-stroke-color: rgba(210,71,62,.4);
}

/* CONTENT — основной слой текста и stats */
.hero__content {
  position: absolute; left: 28px; right: 28px; top: 0; bottom: 0;
  z-index: 5;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 100px 0 32px;
  pointer-events: none;
}
.hero__content > * { pointer-events: auto; }

.hero__mid {
  align-self: center;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.0;
  letter-spacing: -.03em;
  color: #fff;
  max-width: 16ch;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero__title em {
  font-style: normal;
  font-weight: 400;
  color: rgba(255,255,255,.68);
}
.hero__lede {
  font: 400 15px/1.55 var(--body);
  color: rgba(255,255,255,.88);
  max-width: 38ch;
  padding-left: 18px;
  border-left: 2px solid var(--red);
  margin-top: 6px;
}

/* hero bottom row — кнопки + статы */
.hero__bottom {
  align-self: end;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 8px;
}
.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-self: end;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 14px 4px;
  background: rgba(10,11,14,.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  justify-self: end;
  min-width: 480px;
  position: relative;
}
.hero__stats::before {
  /* плюсики по углам */
  content: '+';
  position: absolute;
  font: 500 14px/1 var(--mono);
  color: rgba(255,255,255,.5);
  left: 10px; top: 6px;
}
.hero__stats::after {
  content: '+';
  position: absolute;
  font: 500 14px/1 var(--mono);
  color: rgba(255,255,255,.5);
  right: 10px; top: 6px;
}
.hero__stat {
  padding: 6px 20px;
  border-right: 1px solid rgba(255,255,255,.14);
  display: flex; flex-direction: column; gap: 4px;
}
.hero__stat:last-child { border-right: 0; }
.hero__stat-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: #fff;
  display: inline-flex; align-items: baseline; gap: 4px;
}
.hero__stat-num small {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 10px;
  color: rgba(255,255,255,.65);
  letter-spacing: 0;
}
.hero__stat-lbl {
  font: 500 10px/1.2 var(--mono);
  letter-spacing: .03em;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 4px;
}
.hero__stat-lbl svg { width: 11px; height: 11px; opacity: .8; }

/* мини meta-полоса под hero */
.hero__meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px 4px;
  margin-top: -8px;
  font: 500 11px/1 var(--mono);
  letter-spacing: .03em;
  color: var(--ink-mute);
  text-transform: uppercase;
  border-bottom: 1px dashed var(--line-2);
}
.hero__meta-mid {
  display: inline-flex; gap: 8px; align-items: center; justify-self: center;
}
.hero__meta-mid b { color: var(--ink); font-weight: 600; }
.hero__meta-mid span.dot { width: 4px; height: 4px; background: var(--red); border-radius: 50%; }
.hero__meta-end { text-align: right; }
.hero__meta svg { width: 12px; height: 12px; vertical-align: -2px; opacity: .65; margin-right: 6px; }

@media (max-width: 1100px) {
  .hero__giant b { font-size: clamp(70px, 16vw, 160px); }
  .hero__stats { min-width: 360px; }
}
@media (max-width: 900px) {
  .hero__stage { aspect-ratio: 4/5; }
  .hero__mid { grid-template-columns: 1fr; gap: 14px; }
  .hero__bottom { grid-template-columns: 1fr; }
  .hero__stats { min-width: 0; grid-template-columns: 1fr 1fr; justify-self: stretch; padding: 12px; }
  .hero__stat { padding: 8px 12px; }
  .hero__stat:nth-child(2) { border-right: 0; }
  .hero__giant b { font-size: clamp(54px, 18vw, 100px); }
}

/* ──────── BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px;
  font: 500 13px/1 var(--body);
  letter-spacing: -.005em;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease-out), background .25s, color .25s, border-color .25s;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dk); }
.btn--light {
  background: rgba(255,255,255,.95);
  color: var(--ink);
}
.btn--light:hover { background: #fff; }
.btn--ghost-light {
  background: rgba(255,255,255,.92);
  color: var(--ink);
  border: 1px solid #fff;
  backdrop-filter: blur(8px);
}
.btn--ghost-light:hover { background: #fff; }
.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn--ghost-dark:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--red); }
.btn svg { width: 14px; height: 14px; transition: transform .25s var(--ease-out); }
.btn:hover svg { transform: translate(3px, -3px); }

/* ──────── SECTIONS */
.section {
  padding: 90px 0;
  position: relative;
}
.section + .section { padding-top: 0; }
.section__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 24px;
  padding-bottom: 22px;
  margin-bottom: 40px;
  position: relative;
}
.section__head::after {
  /* dashed-разделитель */
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background-image: linear-gradient(90deg, var(--ink) 50%, transparent 0);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  opacity: .35;
}
.section__num {
  display: inline-flex; align-items: center; gap: 8px;
  font: 500 11px/1 var(--mono);
  color: var(--red);
}
.section__num::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--red);
}
.section__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.0;
  letter-spacing: -.03em;
  color: var(--ink);
  display: inline-flex; align-items: baseline; gap: 16px;
}
.section__title em {
  font-style: normal;
  font-family: var(--mono);
  font-weight: 400;
  font-size: .35em;
  color: var(--ink-dim);
  letter-spacing: 0;
}
.section__aside {
  font: 500 11px/1.4 var(--mono);
  color: var(--ink-mute);
  text-align: right;
  max-width: 30ch;
  display: inline-flex; align-items: center; gap: 8px;
  justify-self: end;
}
.section__aside svg { width: 14px; height: 14px; }

/* ──────── PRODUCTS */
.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.product {
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
  position: relative;
}
.product:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: 0 16px 36px -22px rgba(14,15,18,.4);
}
.product__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0a0b0e;
  overflow: hidden;
}
.product__media video, .product__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.85) brightness(.92);
  transition: transform .8s var(--ease-out);
}
.product:hover .product__media video { transform: scale(1.04); }
.product__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,11,14,.65) 100%);
}
.product__tag {
  position: absolute; left: 16px; top: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  font: 500 10px/1 var(--mono);
  color: #fff;
  text-transform: uppercase;
  padding: 8px 12px;
  background: var(--red);
  border-radius: 999px;
  z-index: 2;
}
.product__tag svg { width: 12px; height: 12px; }
.product__overline {
  position: absolute; right: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  font: 500 10px/1 var(--mono);
  color: rgba(255,255,255,.85);
  z-index: 2;
}
.product__overline span.dot {
  width: 5px; height: 5px;
  background: var(--red-glow);
  border-radius: 50%;
}
.product__body {
  padding: 26px 26px 28px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.product__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 10px;
}
.product__title svg { width: 18px; height: 18px; color: var(--red); }
.product__lede {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
}
.product__specs {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0;
  margin-top: 4px;
}
.product__specs > * {
  padding: 12px 0;
  font-size: 13px;
  border-bottom: 1px dashed var(--line-2);
}
.product__specs dt {
  font: 500 11px/1.3 var(--mono);
  color: var(--ink-mute);
  display: inline-flex; align-items: center; gap: 7px;
}
.product__specs dt svg { width: 13px; height: 13px; color: var(--red); opacity: .8; }
.product__specs dd {
  font-weight: 600;
  color: var(--ink);
  text-align: right;
  letter-spacing: -.01em;
  grid-column: 2 / -1;
  padding-right: 0;
}
.product__cta {
  margin-top: 14px;
  align-self: flex-start;
}

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

/* ──────── ITEMS */
.items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.item {
  display: flex; flex-direction: column;
  gap: 14px;
  padding: 26px 22px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  transition: border-color .25s, transform .25s var(--ease-out), background .25s;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.item::before {
  /* красная угловая полоска */
  content: '';
  position: absolute; left: 0; top: 0;
  width: 28px; height: 2px;
  background: var(--red);
}
.item:hover {
  border-color: var(--line-2);
  transform: translateY(-3px);
}
.item__head {
  display: flex; justify-content: space-between; align-items: center;
}
.item__num {
  font: 500 11px/1 var(--mono);
  color: var(--red);
}
.item__icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  transition: background .25s, color .25s, border-color .25s;
}
.item__icon svg { width: 18px; height: 18px; }
.item:hover .item__icon { background: var(--ink); color: #fff; border-color: var(--ink); }
.item h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
}
.item p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-mute);
}
.item__cta {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 6px;
  font: 500 12px/1 var(--body);
  color: var(--ink);
  padding-top: 14px;
  border-top: 1px dashed var(--line-2);
  transition: color .25s;
}
.item:hover .item__cta { color: var(--red); }
.item__cta svg { width: 14px; height: 14px; transition: transform .25s var(--ease-out); }
.item:hover .item__cta svg { transform: translate(3px, -3px); }

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

/* ──────── APPLY (отрасли) */
.apply {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.apply__cell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
  min-height: 150px;
  display: flex; flex-direction: column;
  gap: 10px;
  transition: border-color .25s, background .25s, color .25s, transform .25s var(--ease-out);
  position: relative;
}
.apply__cell:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateY(-3px);
}
.apply__cell:hover h4 { color: #fff; }
.apply__cell:hover .apply__num { color: #ff7e74; }
.apply__cell:hover .apply__icon { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.2); }
.apply__icon {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--red);
  transition: background .25s, color .25s, border-color .25s;
}
.apply__icon svg { width: 16px; height: 16px; }
.apply__num {
  font: 500 10px/1 var(--mono);
  color: var(--red);
  transition: color .25s;
}
.apply__cell h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-top: auto;
  transition: color .25s;
}
@media (max-width: 1100px) { .apply { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .apply { grid-template-columns: 1fr 1fr; } }

/* ──────── BIG CTA — с фото трубы на чёрном */
.bigcta {
  padding: 70px 60px 80px;
  background: #000;
  color: #fff;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 460px;
}
/* фоновое изображение (трубы из угла) */
.bigcta__bg {
  position: absolute;
  right: -4%; bottom: -8%;
  width: 70%;
  height: 130%;
  background: url('/img/cta_pipes.jpg') right bottom / contain no-repeat;
  mix-blend-mode: screen;
  opacity: .95;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-2deg);
}
.bigcta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 0% 100%, rgba(210,71,62,.4), transparent 55%),
    linear-gradient(90deg, #000 0%, rgba(0,0,0,.55) 45%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}
.bigcta::after {
  /* красная hairline */
  content: '';
  position: absolute;
  left: 60px; right: 60px;
  top: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--red) 0%, transparent 30%);
  pointer-events: none;
  z-index: 1;
}
.bigcta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
  max-width: 720px;
}
.bigcta__kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font: 500 11px/1 var(--mono);
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.bigcta__kicker i {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red);
}
.bigcta__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -.03em;
  color: #fff;
}
.bigcta__title em { font-style: normal; color: var(--red-glow); }
.bigcta__lede {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.7);
  margin-top: 18px;
  max-width: 50ch;
}
.bigcta__row {
  display: flex; flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
@media (max-width: 900px) {
  .bigcta { padding: 40px 28px; }
  .bigcta__inner { grid-template-columns: 1fr; gap: 24px; }
  .bigcta__row { align-items: flex-start; }
}

/* ──────── FOOTER */
.foot {
  border-top: 1px dashed var(--line-2);
  padding: 44px 0 32px;
  background: var(--paper);
}
.foot__row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font: 500 12px/1.4 var(--body);
  color: var(--ink-mute);
}
.foot__brand {
  display: flex; align-items: center; gap: 12px;
}
.foot__brand img { height: 22px; width: auto; }
.foot__brand b { color: var(--ink); font-weight: 600; letter-spacing: -.01em; }
.foot__legal { color: var(--ink-dim); font-size: 11px; font-family: var(--mono); }
.foot a { display: inline-flex; align-items: center; gap: 6px; }
.foot a:hover { color: var(--red); }
.foot a svg { width: 12px; height: 12px; }

/* ──────── reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
