/* ============================================================
   HERO — главный экран. Текст + CTA + платформы.
   Live-демо переехало в отдельную секцию .demo.
   ============================================================ */

.hero {
  position: relative;
  padding: clamp(56px, 9vw, 128px) 0 clamp(48px, 7vw, 96px);
  overflow: hidden;
}

/* фирменный «удар» света на hero */
.hero::before {
  content: "";
  position: absolute;
  inset: -200px -200px auto auto;
  width: 900px; height: 900px;
  background: radial-gradient(closest-side, rgba(251,26,38,0.30), transparent 70%);
  pointer-events: none;
  filter: blur(8px);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 1080px;
}

.hero-head .eyebrow { margin-bottom: 28px; }

.hero h1 {
  font-size: var(--t-display);
  line-height: 1.0;
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: 16ch;
}
.hero h1 em {
  font-style: italic;
  font-family: var(--ff-serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--red-0);
  text-shadow: 0 0 60px rgba(251, 26, 38, 0.35);
}
.hero h1 em::after {
  content: "_";
  display: inline-block;
  margin-left: 4px;
  color: var(--red-0);
  font-family: var(--ff-sans);
  animation: caret 0.8s steps(2) infinite;
}
@keyframes caret { 50% { opacity: 0; } }

.hero-sub {
  margin-top: 28px;
  max-width: 640px;
  font-size: var(--t-body-lg);
  color: var(--ink-1);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-disclaimer {
  margin-top: 16px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
}
.hero-disclaimer .red { color: var(--red-0); }

.hero-platforms {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-platforms .label {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-platforms .plats {
  display: flex; align-items: center; gap: 14px;
  color: var(--ink-1); font-size: 14px;
}
.hero-platforms .plats .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--ink-4);
  display: inline-block; vertical-align: middle;
}
.hero-platforms .plats .soon { color: var(--ink-3); }

/* ─── floating particles (минимум, по вкусу) ─────── */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
