/* [v1.9.13 / 2026-06-02] GenVex /partners — cinematic pitch deck + admin mocks */
:root {
  --pd-bg: #050508;
  --pd-text: #f8fafc;
  --pd-muted: #94a3b8;
  --pd-violet: #a78bfa;
  --pd-violet-hot: #c4b5fd;
  --pd-cyan: #22d3ee;
  --pd-magenta: #f472b6;
  --pd-orange: #fb923c;
  --pd-emerald: #34d399;
  --pd-glass: rgba(12, 14, 24, 0.55);
  --pd-line: rgba(255, 255, 255, 0.08);
  --pd-font: "Inter", system-ui, sans-serif;
  --pd-display: "Syne", "Outfit", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body.pd-body {
  margin: 0;
  font-family: var(--pd-font);
  color: var(--pd-text);
  background: var(--pd-bg);
  overflow: hidden;
}

#pd-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.pd-vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, rgba(5, 5, 8, 0.4) 55%, rgba(5, 5, 8, 0.92) 100%),
    linear-gradient(180deg, rgba(5, 5, 8, 0.3) 0%, transparent 25%, transparent 75%, rgba(5, 5, 8, 0.85) 100%);
}

.pd-noise {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.035;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.pd-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 14px 72px;
  background: linear-gradient(180deg, rgba(5, 5, 8, 0.85) 0%, transparent 100%);
  backdrop-filter: blur(8px);
}

.pd-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pd-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

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

.pd-switch-v2 {
  font-size: 0.78rem;
  color: var(--pd-cyan);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(6, 182, 212, 0.25);
  background: rgba(6, 182, 212, 0.06);
}
.pd-switch-v2:hover { background: rgba(6, 182, 212, 0.12); }

.pd-progress-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
}
.pd-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pd-violet), var(--pd-magenta), var(--pd-cyan));
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.5);
}

.pd-counter {
  font-variant-numeric: tabular-nums;
  font-size: 0.78rem;
  color: var(--pd-muted);
  min-width: 56px;
  text-align: center;
}

.pd-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--pd-line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--pd-text);
  cursor: pointer;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.pd-icon-btn:hover {
  border-color: var(--pd-violet);
  background: rgba(167, 139, 250, 0.12);
  transform: scale(1.05);
}

.pd-rail {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 35;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pd-rail-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.pd-rail-dot::after {
  content: attr(data-label);
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  opacity: 0;
  font-size: 0.68rem;
  white-space: nowrap;
  color: var(--pd-muted);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.pd-rail:hover .pd-rail-dot::after { opacity: 0.85; transform: translateY(-50%) translateX(0); }
.pd-rail-dot.is-active {
  background: var(--pd-violet);
  border-color: var(--pd-violet-hot);
  box-shadow: 0 0 18px rgba(167, 139, 250, 0.65);
  transform: scale(1.35);
}

.pd-deck {
  position: relative;
  z-index: 10;
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.pd-chapter {
  min-height: 100vh;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 24px 96px;
  position: relative;
}

.pd-inner {
  width: 100%;
  max-width: 1080px;
  position: relative;
}

.pd-inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pd-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pd-cyan);
}
.pd-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--pd-cyan), transparent);
}

.pd-display {
  font-family: var(--pd-display);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 20px;
}

h1.pd-display { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; }
h2.pd-display { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; }

.pd-gradient-text {
  background: linear-gradient(120deg, #fff 0%, var(--pd-violet-hot) 40%, var(--pd-cyan) 80%, var(--pd-magenta) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: pd-shimmer 8s ease-in-out infinite;
}

@keyframes pd-shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.pd-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
  color: var(--pd-muted);
  margin: 0 0 24px;
  max-width: 52ch;
}

.pd-glass {
  background: var(--pd-glass);
  border: 1px solid var(--pd-line);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 24px 80px -24px rgba(0, 0, 0, 0.55);
}

.pd-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.pd-bento-item {
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--pd-line);
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.pd-bento-item:hover {
  transform: translateY(-3px);
  border-color: rgba(167, 139, 250, 0.35);
  box-shadow: 0 16px 40px -20px rgba(167, 139, 250, 0.35);
}
.pd-bento-item span {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pd-cyan);
  margin-bottom: 8px;
}
.pd-bento-item strong { display: block; font-size: 1rem; margin-bottom: 6px; }
.pd-bento-item p { margin: 0; font-size: 0.88rem; color: var(--pd-muted); line-height: 1.45; }

.pd-span-6 { grid-column: span 6; }
.pd-span-4 { grid-column: span 4; }
.pd-span-8 { grid-column: span 8; }
.pd-span-12 { grid-column: span 12; }

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

/* ── Слайд «боли агентства» — сравнение без/с продуктом ── */
.pd-inner--pain {
  max-width: 980px;
}
.pd-pain-intro {
  margin-bottom: 28px;
}
.pd-pain-lead {
  max-width: 36rem;
  margin-top: 12px;
}
.pd-pain-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.pd-pain-card {
  display: flex;
  gap: 12px;
  padding: 18px 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(155deg, rgba(18, 22, 36, 0.94) 0%, rgba(10, 12, 20, 0.97) 100%);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow:
    0 12px 32px -12px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
.pd-pain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pd-magenta), var(--pd-cyan));
  opacity: 0.85;
}
.pd-pain-n {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--pd-cyan);
  opacity: 0.75;
  padding-top: 2px;
  font-variant-numeric: tabular-nums;
}
.pd-pain-card-body {
  flex: 1;
  min-width: 0;
}
.pd-pain-card h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pd-pain-ico {
  font-size: 1rem;
  line-height: 1;
}
.pd-pain-scene {
  margin: 0 0 10px;
  font-size: 0.78rem;
  color: var(--pd-muted);
  line-height: 1.4;
}
.pd-pain-scene strong {
  color: var(--pd-text);
  font-weight: 650;
}
.pd-pain-compare {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pd-pain-bad,
.pd-pain-good {
  display: block;
  padding: 6px 9px;
  border-radius: 8px;
  font-size: 0.68rem;
  line-height: 1.35;
}
.pd-pain-bad {
  color: #fca5a5;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.22);
}
.pd-pain-bad::before {
  content: "✕ ";
  font-weight: 700;
  opacity: 0.85;
}
.pd-pain-good {
  color: #6ee7b7;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.22);
}
.pd-pain-good::before {
  content: "✓ ";
  font-weight: 700;
  opacity: 0.85;
}

.pd-pain-grid .pd-pain {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--pd-line);
  background: linear-gradient(145deg, rgba(244, 114, 182, 0.08) 0%, rgba(5, 5, 8, 0.6) 100%);
  position: relative;
  overflow: hidden;
}
.pd-pain-grid .pd-pain::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pd-magenta), var(--pd-orange));
}
.pd-pain-grid .pd-pain h3 { margin: 0 0 8px; font-size: 1rem; }
.pd-pain-grid .pd-pain p { margin: 0; font-size: 0.88rem; color: var(--pd-muted); line-height: 1.5; }

.pd-inner--split-handoff {
  grid-template-columns: minmax(300px, 1.12fr) minmax(280px, 0.88fr);
  gap: 48px;
  align-items: center;
}

.pd-flow {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0 20px;
  min-height: min(440px, 54vh);
  justify-content: center;
}
.pd-flow-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0 20px;
  padding: 18px 0;
  border-left: 2px solid rgba(167, 139, 250, 0.25);
  margin-left: 22px;
  padding-left: 28px;
  position: relative;
  opacity: 0.35;
  transform: translateX(-12px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s;
}
.pd-flow-step.is-lit {
  opacity: 1;
  transform: translateX(0);
  border-left-color: rgba(167, 139, 250, 0.65);
}
.pd-flow-step::before {
  content: attr(data-step);
  position: absolute;
  left: -22px;
  top: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pd-violet), #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.5);
}
.pd-flow-copy {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.4;
  min-width: 0;
  max-width: 36ch;
}
.pd-flow-step strong {
  display: block;
  margin: 0;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.25;
}
.pd-flow-step span {
  font-size: 0.92rem;
  color: var(--pd-muted);
  line-height: 1.45;
}

.pd-price-spotlight {
  text-align: center;
  padding: 40px 32px;
}
.pd-price-num {
  font-family: var(--pd-display);
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 800;
  margin: 12px 0;
  background: linear-gradient(180deg, #fff, var(--pd-violet-hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pd-cards-3d {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  perspective: 900px;
}
.pd-card-3d {
  padding: 24px 20px;
  border-radius: 18px;
  border: 1px solid var(--pd-line);
  background: linear-gradient(160deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.02) 100%);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
  will-change: transform;
}
.pd-card-3d:hover {
  box-shadow: 0 30px 60px -30px rgba(34, 211, 238, 0.25);
}
.pd-card-3d em {
  display: block;
  font-style: normal;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pd-orange);
  margin-bottom: 10px;
}
.pd-card-3d strong { display: block; font-size: 1.1rem; margin-bottom: 8px; }
.pd-card-3d p { margin: 0; font-size: 0.86rem; color: var(--pd-muted); line-height: 1.45; }

.pd-compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--pd-line);
}
.pd-compare th, .pd-compare td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--pd-line);
}
.pd-compare th { background: rgba(255,255,255,.04); color: var(--pd-muted); font-weight: 600; }
.pd-compare tr:last-child td { border-bottom: none; }
.pd-compare .pd-win {
  background: rgba(167, 139, 250, 0.1);
  color: var(--pd-violet-hot);
  font-weight: 600;
}

.pd-phone {
  width: min(280px, 100%);
  margin: 0 auto;
  aspect-ratio: 9/19;
  border-radius: 36px;
  padding: 12px;
  background: linear-gradient(160deg, #2a2a35 0%, #0f0f14 100%);
  box-shadow:
    0 0 0 2px rgba(255,255,255,.08),
    0 40px 80px -20px rgba(167, 139, 250, 0.35),
    0 0 120px -40px rgba(34, 211, 238, 0.2);
  transform: rotateY(-8deg) rotateX(4deg);
  transform-style: preserve-3d;
  animation: pd-float 6s ease-in-out infinite;
}
.pd-phone--tg {
  width: min(300px, 100%);
  aspect-ratio: auto;
  padding: 10px 9px 12px;
  border-radius: 32px;
  background: linear-gradient(165deg, #1e2230 0%, #0c0e14 100%);
}
.pd-tg-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 900px;
}
.pd-tg-island {
  width: 64px;
  height: 7px;
  margin: 0 auto 8px;
  border-radius: 99px;
  background: #06080e;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.pd-tg-screen {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  min-height: 420px;
  font-size: 0.72rem;
  background:
    radial-gradient(ellipse 100% 55% at 50% 0%, rgba(124, 92, 255, 0.16), transparent 70%),
    linear-gradient(180deg, #172033 0%, #0e121c 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.pd-tg-head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 10, 18, 0.82);
  backdrop-filter: blur(8px);
}
.pd-tg-back {
  font-size: 1.1rem;
  line-height: 1;
  color: #6ea8fe;
  opacity: 0.85;
  margin-right: -2px;
}
.pd-tg-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6, #22d3ee);
  flex-shrink: 0;
}
.pd-tg-head-meta b {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}
.pd-tg-head-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.58rem;
  color: #67e8f9;
  margin-top: 1px;
}
.pd-tg-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  flex-shrink: 0;
}
.pd-tg-body {
  flex: 1;
  padding: 10px 9px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.pd-tg-day {
  align-self: center;
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.28);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 2px;
}
.pd-tg-msg {
  max-width: 92%;
  padding: 7px 9px;
  border-radius: 12px;
  line-height: 1.38;
  word-break: break-word;
  opacity: 0;
  transform: translateY(8px) scale(0.97);
}
.pd-tg-msg.is-lit {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.pd-tg-msg-in {
  align-self: flex-start;
  background: rgba(139, 92, 246, 0.32);
  border: 1px solid rgba(167, 139, 250, 0.22);
  border-bottom-left-radius: 4px;
}
.pd-tg-msg-out {
  align-self: flex-end;
  background: rgba(34, 211, 238, 0.14);
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-bottom-right-radius: 4px;
}
.pd-tg-msg-mgr {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.22), rgba(16, 185, 129, 0.18));
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-bottom-right-radius: 4px;
  font-weight: 600;
}
.pd-tg-msg-sys {
  align-self: center;
  max-width: 100%;
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  border: none;
  padding: 2px 6px;
  text-align: center;
}
.pd-tg-text {
  display: block;
  margin-bottom: 6px;
}
.pd-tg-meta {
  display: block;
  margin-top: 3px;
  font-size: 0.52rem;
  opacity: 0.55;
  text-align: right;
}
.pd-tg-product {
  display: flex;
  gap: 8px;
  padding: 7px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2px;
}
.pd-tg-product-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  background:
    linear-gradient(145deg, rgba(110, 168, 254, 0.35), rgba(139, 92, 246, 0.25)),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 55%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.pd-tg-product-img::after {
  content: "🧴";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.pd-tg-product-info strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1.25;
}
.pd-tg-product-info span {
  display: block;
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 3px;
}
.pd-tg-product-info em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
  color: #67e8f9;
}
.pd-tg-kbd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  align-self: flex-end;
  width: 92%;
  opacity: 0;
  transform: translateY(6px);
}
.pd-tg-kbd--single {
  grid-template-columns: 1fr;
}
.pd-tg-kbd.is-lit {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.pd-tg-kbd span {
  text-align: center;
  padding: 6px 4px;
  border-radius: 8px;
  font-size: 0.58rem;
  font-weight: 650;
  color: #6ea8fe;
  background: rgba(110, 168, 254, 0.12);
  border: 1px solid rgba(110, 168, 254, 0.22);
}
.pd-tg-input {
  flex-shrink: 0;
  margin: 0 8px 8px;
  padding: 8px 8px 8px 11px;
  border-radius: 12px;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.38);
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.pd-tg-send {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  box-shadow: 0 4px 10px -3px rgba(99, 102, 241, 0.5);
}
@keyframes pd-float {
  0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-5deg) rotateX(2deg) translateY(-12px); }
}
.pd-phone-screen {
  height: 100%;
  border-radius: 28px;
  background: linear-gradient(180deg, #12141f 0%, #0a0c14 100%);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.pd-bubble {
  max-width: 85%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.72rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
}
.pd-bubble.is-lit {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.pd-bubble-human {
  border: 1px solid rgba(251, 191, 36, 0.35);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(167, 139, 250, 0.2)) !important;
}
.pd-bubble-in { align-self: flex-start; background: rgba(255,255,255,.08); }
.pd-bubble-out {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(167,139,250,.35), rgba(99,102,241,.35));
  border: 1px solid rgba(167,139,250,.25);
}

.pd-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.92rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.pd-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.pd-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #a78bfa 0%, #6366f1 50%, #22d3ee 100%);
  background-size: 200% auto;
  box-shadow: 0 8px 32px -8px rgba(167, 139, 250, 0.55);
  animation: pd-shimmer 6s ease-in-out infinite;
}
.pd-btn-ghost {
  color: var(--pd-text);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--pd-line);
}

.pd-timeline { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.pd-tl-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--pd-line);
}
.pd-tl-item:last-child { border-bottom: none; }
.pd-tl-day {
  font-family: var(--pd-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--pd-cyan);
}
.pd-tl-item p { margin: 0; color: var(--pd-muted); line-height: 1.5; }

.pd-reveal {
  opacity: 0;
  transform: translateY(36px);
}
.pd-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.pd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.25);
  background: rgba(34, 211, 238, 0.06);
  font-size: 0.78rem;
  color: var(--pd-cyan);
  margin-bottom: 20px;
}
.pd-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pd-emerald);
  box-shadow: 0 0 12px var(--pd-emerald);
  animation: pd-pulse 2s ease-in-out infinite;
}
@keyframes pd-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.pd-stat-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.pd-stat strong {
  display: block;
  font-family: var(--pd-display);
  font-size: 1.6rem;
  color: var(--pd-violet-hot);
}
.pd-stat span { font-size: 0.78rem; color: var(--pd-muted); }

/* ── Слайд 1 · hero (как на референс-скрине) ── */
.pd-chapter--hero {
  overflow: hidden;
}
.pd-chapter--hero .pd-inner--hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.95fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  max-width: 1180px;
}
.pd-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 34rem;
}
.pd-hero-visual-slot {
  position: relative;
  min-height: min(52vh, 480px);
  pointer-events: none;
}
.pd-hero-aurora {
  position: absolute;
  inset: -20% -10% -30% 35%;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 72% 42%, rgba(99, 102, 241, 0.22) 0%, transparent 62%),
    radial-gradient(ellipse 40% 35% at 58% 68%, rgba(34, 211, 238, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 30% 28% at 80% 22%, rgba(244, 114, 182, 0.12) 0%, transparent 50%);
  animation: pd-aurora-drift 18s ease-in-out infinite alternate;
  filter: blur(2px);
}
@keyframes pd-aurora-drift {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.85; }
  50% { transform: translate3d(-2%, 3%, 0) scale(1.04); opacity: 1; }
  100% { transform: translate3d(3%, -2%, 0) scale(0.98); opacity: 0.9; }
}
.pd-hero-stars-css {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,.9) 50%, transparent 51%),
    radial-gradient(1px 1px at 78% 24%, rgba(255,255,255,.75) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 64% 72%, rgba(196,181,253,.85) 50%, transparent 51%),
    radial-gradient(1px 1px at 88% 58%, rgba(255,255,255,.65) 50%, transparent 51%),
    radial-gradient(1px 1px at 42% 82%, rgba(34,211,238,.7) 50%, transparent 51%),
    radial-gradient(1px 1px at 22% 44%, rgba(255,255,255,.55) 50%, transparent 51%);
  background-size: 100% 100%;
  animation: pd-css-stars-twinkle 6s ease-in-out infinite alternate;
}
@keyframes pd-css-stars-twinkle {
  0% { opacity: 0.35; filter: brightness(0.9); }
  100% { opacity: 0.55; filter: brightness(1.15); }
}
.pd-hero-orbit {
  position: absolute;
  right: 8%;
  top: 50%;
  width: min(42vw, 380px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, 0.12);
  box-shadow:
    0 0 80px -20px rgba(167, 139, 250, 0.35),
    inset 0 0 40px -10px rgba(34, 211, 238, 0.15);
  animation: pd-orbit-spin 24s linear infinite;
}
.pd-hero-orbit::before,
.pd-hero-orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(34, 211, 238, 0.18);
}
.pd-hero-orbit::after {
  inset: 28%;
  border-color: rgba(244, 114, 182, 0.2);
  animation: pd-orbit-spin 16s linear infinite reverse;
}
@keyframes pd-orbit-spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}
.pd-hero-title {
  text-shadow: 0 0 60px rgba(167, 139, 250, 0.25);
}
.pd-hero-lead strong {
  color: #fff;
  font-weight: 650;
}
.pd-stat-card {
  flex: 1 1 120px;
  min-width: 108px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255,255,255,.06) 0%, rgba(12,14,24,.55) 100%);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px -16px rgba(0,0,0,.55);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s, box-shadow 0.35s;
}
.pd-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.35);
  box-shadow: 0 18px 40px -14px rgba(167, 139, 250, 0.35);
}
.pd-stat-card strong {
  display: block;
  font-family: var(--pd-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--pd-violet-hot);
  line-height: 1.1;
}
.pd-stat-card strong.pd-stat-phrase {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.pd-stat-card span {
  display: block;
  margin-top: 4px;
  font-size: 0.74rem;
  color: var(--pd-muted);
  line-height: 1.35;
}
.pd-chapter--hero .pd-stat-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.pd-chapter--hero .pd-hero-btns {
  margin-top: 28px;
}
.pd-btn-glow {
  position: relative;
  overflow: hidden;
}
.pd-btn-glow::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.35) 50%, transparent 60%);
  transform: translateX(-120%) rotate(12deg);
  animation: pd-btn-sheen 4.5s ease-in-out infinite;
}
@keyframes pd-btn-sheen {
  0%, 70%, 100% { transform: translateX(-120%) rotate(12deg); }
  85% { transform: translateX(120%) rotate(12deg); }
}
.pd-chapter--hero .pd-reveal.is-in.pd-anim-stat,
.pd-chapter--hero .pd-stat-card.is-float {
  animation: pd-stat-float 5s ease-in-out infinite;
}
.pd-chapter--hero [data-hero-stat="1"].is-float { animation-delay: 0.6s; }
.pd-chapter--hero [data-hero-stat="2"].is-float { animation-delay: 1.2s; }
@keyframes pd-stat-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ── HTML-макеты админки (как реальная панель) ── */
.pd-mock {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(37, 43, 63, 0.9);
  box-shadow:
    0 32px 80px -24px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 60px -20px rgba(110, 168, 254, 0.2);
  transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
  animation: pd-mock-float 7s ease-in-out infinite;
  position: relative;
}
.pd-mock::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(110, 168, 254, 0.06) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: pd-mock-shine 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pd-mock-float {
  0%, 100% { transform: perspective(900px) rotateY(-4deg) rotateX(2deg) translateY(0); }
  50% { transform: perspective(900px) rotateY(-2deg) rotateX(1deg) translateY(-8px); }
}
@keyframes pd-mock-shine {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}

.pd-mock-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #0d1119;
  border-bottom: 1px solid #252b3f;
  font-size: 0.68rem;
  color: #8a94ad;
}
.pd-mock-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.pd-mock-dot-r { background: #f87171; }
.pd-mock-dot-y { background: #fbbf24; }
.pd-mock-dot-g { background: #34d399; }
.pd-mock-url {
  flex: 1;
  margin-left: 8px;
  padding: 4px 12px;
  border-radius: 6px;
  background: #161b2c;
  border: 1px solid #252b3f;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pd-mock-title { opacity: 0.6; white-space: nowrap; }

.pd-adm { background: #0a0e17; font-size: 0.72rem; color: #e8eaf0; }
.pd-adm-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-bottom: 1px solid #252b3f;
  background: rgba(10, 14, 23, 0.95);
  flex-wrap: wrap;
}
.pd-adm-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.62rem;
  color: #fff;
  background: linear-gradient(135deg, #6ea8fe, #7c3aed);
  box-shadow: 0 4px 12px -4px rgba(124, 58, 237, 0.6);
}
.pd-adm-bar-name { font-weight: 750; font-size: 0.78rem; letter-spacing: -0.02em; }
.pd-adm-bar-name span { color: #67e8f9; }
.pd-adm-tabs {
  display: flex;
  gap: 4px;
  margin-left: auto;
  padding: 3px;
  background: #161b2c;
  border: 1px solid #252b3f;
  border-radius: 10px;
  flex-wrap: wrap;
}
.pd-adm-tabs span {
  padding: 4px 10px;
  border-radius: 7px;
  color: #8a94ad;
  font-weight: 600;
  font-size: 0.68rem;
  white-space: nowrap;
}
.pd-adm-tabs span.is-on {
  background: linear-gradient(135deg, #6ea8fe, #4d8df5);
  color: #fff;
  box-shadow: 0 2px 8px rgba(110, 168, 254, 0.35);
}
.pd-adm-badge {
  display: inline-flex;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  margin-left: 4px;
  border-radius: 999px;
  font-style: normal;
  font-size: 0.6rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.22);
  animation: pd-pulse 2s ease-in-out infinite;
}

.pd-adm-main { display: grid; grid-template-columns: 1fr 1.2fr; min-height: 220px; }
.pd-adm-side { padding: 10px; border-right: 1px solid #252b3f; }
.pd-adm-side-h {
  margin: 0 0 8px;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a94ad;
  font-weight: 700;
}
.pd-adm-conv {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 8px;
  align-items: start;
  padding: 8px;
  border-radius: 10px;
  margin-bottom: 6px;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateX(-8px);
}
.pd-adm-conv.is-lit {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.pd-adm-conv--hot {
  border-color: rgba(248, 113, 113, 0.35);
  background: rgba(248, 113, 113, 0.08);
  animation: pd-hot-glow 2.5s ease-in-out infinite;
}
@keyframes pd-hot-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(248, 113, 113, 0); }
  50% { box-shadow: 0 0 16px -4px rgba(248, 113, 113, 0.4); }
}
.pd-adm-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6ea8fe, #5f4dff);
  color: #fff;
}
.pd-adm-conv strong { display: block; font-size: 0.72rem; margin-bottom: 2px; }
.pd-adm-conv-msg { display: block; color: #8a94ad; font-size: 0.65rem; line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 140px; }
.pd-adm-conv em { font-style: normal; font-size: 0.6rem; color: #8a94ad; white-space: nowrap; }

.pd-adm-chat { display: flex; flex-direction: column; padding: 10px; }
.pd-adm-chat-head { font-size: 0.72rem; font-weight: 700; margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid #252b3f; }
.pd-adm-chat-msgs { flex: 1; display: flex; flex-direction: column; gap: 6px; min-height: 120px; }
.pd-adm-msg {
  max-width: 88%;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 0.65rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
}
.pd-adm-msg.is-lit {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pd-adm-msg-in { align-self: flex-start; background: #161b2c; border: 1px solid #252b3f; }
.pd-adm-msg-out { align-self: flex-end; background: rgba(110, 168, 254, 0.15); border: 1px solid rgba(110, 168, 254, 0.25); }
.pd-adm-msg-human { border-color: rgba(251, 191, 36, 0.35); background: rgba(251, 191, 36, 0.1); }
.pd-adm-msg-sys { align-self: center; font-size: 0.58rem; color: #8a94ad; background: transparent; border: 1px dashed #343b54; max-width: 100%; text-align: center; }
.pd-adm-chat-input {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #252b3f;
  background: #161b2c;
  color: #8a94ad;
  font-size: 0.65rem;
  opacity: 0;
}
.pd-adm-chat-input.is-lit { opacity: 1; transition: opacity 0.5s ease 0.8s; }

.pd-adm-dash, .pd-adm-shops { padding: 14px; }
.pd-adm-dash-h, .pd-adm-shops-h { margin: 0 0 12px; font-size: 0.82rem; font-weight: 750; letter-spacing: -0.02em; }
.pd-adm-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.pd-adm-kpi {
  padding: 10px 12px;
  border-radius: 10px;
  background: #161b2c;
  border: 1px solid #252b3f;
}
.pd-adm-kpi span { display: block; font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.06em; color: #8a94ad; margin-bottom: 4px; font-weight: 700; }
.pd-adm-kpi strong { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }

.pd-adm-orders-h { margin: 0 0 8px; font-size: 0.72rem; font-weight: 700; color: #8a94ad; }
.pd-adm-order {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #252b3f;
  margin-bottom: 6px;
  background: linear-gradient(180deg, #161b2c, #111524);
  opacity: 0;
  transform: translateY(8px);
}
.pd-adm-order.is-lit { opacity: 1; transform: translateY(0); transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.pd-adm-order span:first-child { font-weight: 800; color: #6ea8fe; font-variant-numeric: tabular-nums; }
.pd-adm-order span:nth-child(2) { font-size: 0.68rem; color: #e8eaf0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pd-adm-pill {
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(110, 168, 254, 0.14);
  color: #6ea8fe;
  white-space: nowrap;
}
.pd-adm-pill-new { background: rgba(52, 211, 153, 0.14); color: #34d399; }
.pd-adm-pill-done { background: rgba(139, 92, 246, 0.14); color: #a78bfa; }

.pd-adm-shop-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #252b3f;
  margin-bottom: 8px;
  background: #161b2c;
  opacity: 0;
  transform: translateX(12px);
}
.pd-adm-shop-row.is-lit { opacity: 1; transform: translateX(0); transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.pd-adm-shop-ico { font-size: 1.1rem; text-align: center; }
.pd-adm-shop-row strong { display: block; font-size: 0.78rem; margin-bottom: 2px; }
.pd-adm-shop-row span { display: block; font-size: 0.62rem; color: #8a94ad; }

/* ── Handoff combo mock (как /conversations/id) ── */
.pd-ho {
  background: #0a0e17;
  padding: 12px;
  color: #e8eaf0;
  font-size: 0.72rem;
}
.pd-ho-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid #252b3f;
  background: rgba(22, 27, 44, 0.75);
  backdrop-filter: blur(8px);
}
.pd-ho-banner--ai { color: #8a94ad; }
.pd-ho-banner-text {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 0.68rem;
  line-height: 1.45;
}
.pd-ho-banner-text b { color: #e8eaf0; font-weight: 700; }
.pd-ho-btn-take {
  flex-shrink: 0;
  padding: 7px 11px;
  border-radius: 9px;
  font-size: 0.68rem;
  font-weight: 650;
  color: #06291f;
  background: linear-gradient(135deg, #34d399, #0e9b6e);
  box-shadow: 0 4px 12px -4px rgba(52, 211, 153, 0.45);
  white-space: nowrap;
}
.pd-ho-grid {
  display: grid;
  grid-template-columns: 1fr 148px;
  gap: 10px;
  align-items: start;
}
.pd-ho-device {
  background: linear-gradient(180deg, #0a0e17 0%, #000 100%);
  border-radius: 18px;
  padding: 10px 8px;
  box-shadow:
    0 16px 40px -14px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.pd-ho-device::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.pd-ho-screen {
  background: #0f1320;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.pd-ho-screen-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: linear-gradient(180deg, #1a2033 0%, #151a2a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pd-ho-av,
.pd-ho-profile-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #34d399, #059669);
  box-shadow: 0 4px 10px -3px rgba(0, 0, 0, 0.45);
  flex-shrink: 0;
}
.pd-ho-screen-id b {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}
.pd-ho-screen-id span {
  display: block;
  margin-top: 2px;
  font-size: 0.58rem;
  color: #8a94ad;
}
.pd-ho-msgs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 10px;
  min-height: 168px;
}
.pd-ho-bubble {
  max-width: 88%;
  padding: 7px 10px;
  border-radius: 14px;
  font-size: 0.66rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(6px);
}
.pd-ho-bubble.is-lit {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.pd-ho-bubble-in {
  align-self: flex-start;
  background: #1f2538;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom-left-radius: 5px;
}
.pd-ho-bubble-out {
  align-self: flex-end;
  background: linear-gradient(135deg, #5a8df0 0%, #3b6dd8 100%);
  color: #fff;
  border-bottom-right-radius: 5px;
  box-shadow: 0 4px 12px -4px rgba(58, 109, 216, 0.45);
}
.pd-ho-bubble-mgr {
  align-self: flex-end;
  background: linear-gradient(135deg, #34d399 0%, #0e9b6e 100%);
  color: #06291f;
  font-weight: 600;
  border-bottom-right-radius: 5px;
}
.pd-ho-bubble-sys {
  align-self: center;
  max-width: 100%;
  font-size: 0.56rem;
  color: #8a94ad;
  text-align: center;
  background: transparent;
  border: 1px dashed #343b54;
  border-radius: 10px;
  padding: 5px 8px;
}
.pd-ho-info,
.pd-ho-compose-hint {
  padding: 7px 10px;
  font-size: 0.56rem;
  color: #8a94ad;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #151a2a;
  line-height: 1.35;
}
.pd-ho-info::before { content: "🔒 "; }
.pd-ho-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-ho-profile,
.pd-ho-orders {
  background: rgba(22, 27, 44, 0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 10px;
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.55);
}
.pd-ho-profile { text-align: center; }
.pd-ho-profile-av {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
  font-size: 0.78rem;
}
.pd-ho-profile-name {
  margin: 0 0 2px;
  font-size: 0.82rem;
  font-weight: 700;
}
.pd-ho-profile-handle {
  margin: 0 0 8px;
  font-size: 0.62rem;
  color: #8a94ad;
}
.pd-ho-shop {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 600;
  color: #a5c4ff;
  background: rgba(110, 168, 254, 0.14);
  border: 1px solid rgba(110, 168, 254, 0.22);
  margin-bottom: 10px;
}
.pd-ho-shop::before { content: "🏪"; font-size: 0.62rem; }
.pd-ho-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}
.pd-ho-stat span {
  display: block;
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8a94ad;
  margin-bottom: 2px;
}
.pd-ho-stat strong {
  font-size: 0.68rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.pd-ho-orders-h {
  margin: 0 0 8px;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a94ad;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pd-ho-orders-h em {
  font-style: normal;
  background: #6ea8fe;
  color: #0a0e17;
  font-size: 0.58rem;
  padding: 1px 6px;
  border-radius: 999px;
}
.pd-ho-order-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pd-ho-order-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6ea8fe;
  flex-shrink: 0;
}
.pd-ho-order-row strong {
  display: block;
  font-size: 0.68rem;
  margin-bottom: 1px;
}
.pd-ho-order-row span {
  display: block;
  font-size: 0.56rem;
  color: #8a94ad;
}
.pd-anim-line {
  opacity: 0;
  transform: translateY(8px);
}
.pd-anim-line.is-lit {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pd-mock--handoff {
  max-width: min(560px, 100%);
  margin: 0 auto;
  width: 100%;
}
.pd-mock--conv { max-width: 420px; margin: 0 auto; }
.pd-mock--dash, .pd-mock--shops { max-width: 440px; margin: 0 auto; width: 100%; }

.pd-demo-stack { display: flex; justify-content: center; align-items: center; }

/* ── Тарифы для конечного клиента (слайд 8) ── */
.pd-inner--pricing { max-width: 1080px; }
.pd-pricing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.pd-price-kicker { margin: 0 0 8px; font-size: 0.78rem; color: var(--pd-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.pd-price-note { margin: 0 0 16px; color: var(--pd-violet-hot); font-weight: 600; }
.pd-price-list { margin: 0 0 20px; padding-left: 18px; color: var(--pd-muted); font-size: 0.88rem; line-height: 1.5; }
.pd-price-list li { margin-bottom: 6px; }
.pd-price-hint { padding: 24px; font-size: 0.92rem; line-height: 1.55; }
.pd-price-hint .pd-muted { color: var(--pd-muted); font-size: 0.85rem; margin-top: 12px; }
.pd-price-hint a { color: var(--pd-cyan); }
.pd-lead a { color: var(--pd-cyan); text-decoration: none; }
.pd-lead a:hover { text-decoration: underline; }

.pd-tariff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.pd-tariff-card {
  position: relative;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid var(--pd-line);
  background: rgba(255, 255, 255, 0.03);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s;
}
.pd-tariff-card.is-lit {
  opacity: 1;
  transform: translateY(0);
}
.pd-tariff-card.is-rec { border-color: rgba(110, 168, 254, 0.45); box-shadow: 0 12px 40px -16px rgba(110, 168, 254, 0.35); }
.pd-tariff-promo {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.2);
  color: #6ee7b7;
}
.pd-tariff-rec {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pd-cyan);
}
.pd-tariff-name { margin: 28px 0 6px; font-size: 1.2rem; }
.pd-tariff-aud { margin: 0 0 10px; font-size: 0.8rem; color: var(--pd-muted); line-height: 1.4; min-height: 2.8em; }
.pd-tariff-old { display: block; font-size: 0.85rem; color: var(--pd-muted); text-decoration: line-through; }
.pd-tariff-price { margin: 4px 0 4px; font-family: var(--pd-display); font-size: 1.5rem; font-weight: 800; color: #fff; }
.pd-tariff-limit { margin: 0 0 12px; font-size: 0.78rem; line-height: 1.35; color: var(--pd-muted); }
.pd-tariff-feats { list-style: none; margin: 0 0 14px; padding: 0; font-size: 0.82rem; color: var(--pd-muted); }
.pd-tariff-feats li { position: relative; padding-left: 16px; margin-bottom: 6px; line-height: 1.35; }
.pd-tariff-feats li::before { content: "✓"; position: absolute; left: 0; color: var(--pd-cyan); font-size: 0.75rem; }
.pd-tariff-link { font-size: 0.82rem; color: var(--pd-cyan); text-decoration: none; }
.pd-tariff-link:hover { text-decoration: underline; }

/* ── Роли и возражения (слайд 9) ── */
.pd-role-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
.pd-role-card { padding: 20px 22px; }
.pd-role-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pd-cyan);
}
.pd-role-card ul { margin: 0; padding-left: 18px; color: var(--pd-muted); font-size: 0.9rem; line-height: 1.5; }
.pd-role-card li { margin-bottom: 6px; }
.pd-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.pd-faq-card {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--pd-line);
  background: rgba(255, 255, 255, 0.025);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.pd-faq-card.is-lit { opacity: 1; transform: translateY(0); }
.pd-faq-card strong { display: block; margin-bottom: 6px; font-size: 0.92rem; color: var(--pd-violet-hot); }
.pd-faq-card p { margin: 0; font-size: 0.82rem; color: var(--pd-muted); line-height: 1.45; }

/* ── Сценарий демо (слайд 12) ── */
.pd-demo-steps {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pd-demo-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--pd-line);
  background: rgba(255, 255, 255, 0.03);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.pd-demo-step.is-lit { opacity: 1; transform: translateX(0); }
.pd-demo-n {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--pd-cyan);
  font-variant-numeric: tabular-nums;
}
.pd-demo-step div strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.pd-demo-step div span { display: block; font-size: 0.78rem; color: var(--pd-muted); line-height: 1.35; }

.pd-compare tbody tr {
  opacity: 0;
  transform: translateX(-8px);
}
.pd-compare tbody tr.is-lit {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.pd-pain {
  opacity: 0;
  transform: translateY(16px);
}
.pd-pain.is-lit {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 900px) {
  .pd-mock { transform: none; animation: none; }
  .pd-mock::after { display: none; }
  .pd-adm-main { grid-template-columns: 1fr; }
  .pd-adm-side { border-right: none; border-bottom: 1px solid #252b3f; }
  .pd-adm-tabs { margin-left: 0; width: 100%; overflow-x: auto; }
  .pd-inner--split, .pd-inner--split-handoff, .pd-inner--hero,
  .pd-pricing-split, .pd-role-split, .pd-tariff-grid, .pd-faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .pd-tariff-grid { grid-template-columns: 1fr; }
  .pd-faq-grid { grid-template-columns: 1fr; }
  .pd-hero-visual-slot { display: none; }
  .pd-hero-copy { max-width: none; }
  .pd-flow { min-height: 0; justify-content: flex-start; padding: 8px 0 12px; }
  .pd-ho-grid { grid-template-columns: 1fr; }
  .pd-bento { grid-template-columns: 1fr; }
  .pd-span-6, .pd-span-4, .pd-span-8, .pd-span-12 { grid-column: span 1; }
  .pd-pain-grid, .pd-pain-board, .pd-cards-3d { grid-template-columns: 1fr; }
  .pd-rail { display: none; }
  .pd-topbar { padding-left: 20px; }
  .pd-phone { transform: none; animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  #pd-canvas { display: none; }
  .pd-reveal, .pd-bubble, .pd-flow-step, .pd-adm-conv, .pd-adm-msg,
  .pd-ho-bubble, .pd-tg-msg, .pd-tg-kbd, .pd-anim-line,
  .pd-adm-order, .pd-adm-shop-row, .pd-pain, .pd-compare tbody tr {
    opacity: 1 !important;
    transform: none !important;
  }
  .pd-mock { transform: none; animation: none; }
}

@media print {
  #pd-canvas, .pd-vignette, .pd-noise, .pd-topbar, .pd-rail { display: none !important; }
  body.pd-body { overflow: visible; }
  .pd-deck { height: auto; overflow: visible; }
  .pd-chapter { min-height: auto; page-break-after: always; padding: 24px; }
  .pd-reveal { opacity: 1 !important; transform: none !important; }
}
