/* =========================================================================
   Novemcore Website — PULSE product page
   Product-led, darker than the homepage. Dark PULSE panels carry product
   logic; light editorial surfaces carry readability, comparison and the
   Novemcore bridge. Copper/amber = PULSE active. Cobalt/teal = use-case,
   decision, evidence, Novemcore. Green = status only.
   ========================================================================= */
@import url("homepage.css");

/* The PULSE page opens on a dark product surface, so the document base is
   dark; light editorial sections paint their own paper background. */
body.pulse-page { background: var(--pulse-void); }

/* ============ Generic dark-section helpers reused across the page ======== */
.psec { padding: 104px 0; position: relative; }
.psec--tight { padding: 80px 0; }
.psec__head { max-width: 760px; margin-bottom: 56px; }
.psec__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.psec__h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(34px, 3.2vw, 50px); line-height: 1.06;
  margin: 18px 0 0; letter-spacing: -0.002em; text-wrap: balance;
}
.psec__lead {
  font-size: 19px; line-height: 1.55; margin: 20px 0 0; max-width: 640px;
}
.psec__head--center .psec__lead { margin-left: auto; margin-right: auto; }

/* Accent text fragments */
.acc-pulse {
  background: linear-gradient(92deg, #B85730 0%, #D97757 55%, #E89968 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.acc-cool {
  background: linear-gradient(100deg, #1E3A8A 0%, #0B6E8C 50%, #0E7C7B 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Surfaces */
.psec--pulse  { background: linear-gradient(180deg, #1E1009 0%, #160C07 100%); color: #F7F3EA; }
.psec--navy   { background: var(--nc-deep-navy); color: var(--d-fg-1); }
.psec--paper  { background: var(--nc-paper); color: var(--nc-ink); }
.psec--mist   { background: var(--nc-mist); color: var(--nc-ink); }

.psec--pulse  .psec__lead,
.psec--navy   .psec__lead { color: rgba(247,243,234,0.74); }
.psec--paper  .psec__lead,
.psec--mist   .psec__lead { color: var(--fg-2); }

/* =========================================================================
   HERO — dark PULSE, Human Knowledge Intelligence radar
   ========================================================================= */
.phero {
  position: relative;
  background:
    radial-gradient(46% 40% at 76% 30%, rgba(217,119,87,0.16) 0%, transparent 64%),
    radial-gradient(40% 50% at 14% 88%, rgba(30,58,138,0.20) 0%, transparent 66%),
    linear-gradient(168deg, #1E1009 0%, #150B07 58%, #100A06 100%);
  color: #F7F3EA;
  overflow: hidden;
  border-bottom: 1px solid rgba(217,119,87,0.16);
}
.phero__inner {
  display: grid; grid-template-columns: minmax(0,0.92fr) minmax(0,1.08fr);
  gap: 56px; align-items: center;
  padding: 72px 0 84px;
  min-height: 860px;
}
.phero__eyebrow { color: var(--pulse-amber); }
.phero__h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(40px, 4vw, 60px); line-height: 1.04;
  margin: 22px 0 0; letter-spacing: -0.004em; text-wrap: balance;
  color: #FFF5EA;
}
.phero__h1 .acc-pulse { display: inline; }
.phero__body {
  font-size: 18.5px; line-height: 1.6; color: rgba(247,243,234,0.78);
  max-width: 540px; margin: 26px 0 34px;
}
.phero__ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: stretch; }
.phero__ctas .btn--hero-cta {
  height: 54px; padding: 0 24px; font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center;
}
.phero__ctas .btn--pulse.btn--hero-cta { font-size: 16px; padding: 0 28px; }
.phero__ctas .btn--secondary-dark { border-color: rgba(255,245,234,0.34); }

/* =========================================================================
   HKI RADAR
   ========================================================================= */
.radar {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  container-type: inline-size;
}
.radar__field { position: relative; width: 100%; aspect-ratio: 1 / 1; }

/* When the radar itself is small (mobile), render it as a pure dot + ring
   emblem: hide every node label (the 3 layers and 8 use cases are both fully
   labelled in the Platform and Use Cases sections right below). Keeps the
   center identity + caption legible with zero crowding. */
@container (max-width: 480px) {
  .radar__lbl { display: none; }
  .radar__layer .radar__dot { width: 46px; height: 46px; }
  .radar__layer .radar__dot svg { width: 19px; height: 19px; }
  .radar__center { width: 33%; }
  .radar__centerLbl { font-size: 10px; }
  .radar__centerSub { font-size: 8px; }
  .radar__centerMark { width: 24px; height: 24px; }
}
.radar__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }

/* Nodes are absolutely positioned over the svg via inline left/top % */
.radar__node {
  position: absolute; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center; cursor: default; z-index: 3;
  transition: opacity 460ms var(--ease-emphasized), transform 460ms var(--ease-emphasized);
}
.radar__node.is-hidden { opacity: 0; transform: translate(-50%, calc(-50% + 8px)) scale(0.94); pointer-events: none; }

/* Center PULSE module */
.radar__center {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 4; width: 27%; aspect-ratio: 1 / 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 7px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(217,119,87,0.30) 0%, rgba(184,87,48,0.10) 60%, rgba(20,10,6,0.0) 100%),
    rgba(20,10,6,0.78);
  border: 1px solid rgba(217,119,87,0.55);
  box-shadow:
    0 0 0 1px rgba(217,119,87,0.18),
    0 0 60px -10px rgba(184,87,48,0.55),
    inset 0 0 32px -10px rgba(217,119,87,0.30);
  transition: opacity 540ms var(--ease-emphasized), transform 540ms var(--ease-emphasized), box-shadow 540ms var(--ease-standard);
  padding: 10px;
}
.radar__center.is-hidden { opacity: 0; transform: translate(-50%, -50%) scale(0.82); }
.radar--final .radar__center {
  box-shadow:
    0 0 0 1px rgba(217,119,87,0.26),
    0 0 80px -8px rgba(184,87,48,0.68),
    inset 0 0 40px -10px rgba(217,119,87,0.38);
}
.radar__centerMark { width: 30px; height: 30px; object-fit: contain; }
.radar__centerLbl {
  font: 600 12.5px var(--font-body); color: #FFF5EA; line-height: 1.18; max-width: 84%;
}
.radar__centerSub {
  font: 500 8.5px var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pulse-amber);
}

/* Inner platform-layer nodes (copper / amber, strongest) */
.radar__dot {
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; flex-shrink: 0;
  transition: border-color 240ms ease, background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}
.radar__layer .radar__dot {
  width: 56px; height: 56px;
  background: radial-gradient(circle at 50% 35%, rgba(217,119,87,0.28), rgba(20,10,6,0.85));
  border: 1.5px solid rgba(217,119,87,0.62);
  color: var(--pulse-amber);
  box-shadow: 0 0 26px -8px rgba(184,87,48,0.5), inset 0 0 16px -8px rgba(217,119,87,0.4);
}
.radar__layer:hover .radar__dot { transform: scale(1.07); border-color: rgba(232,153,104,0.9); }
.radar__layer .radar__lbl { color: #FFF5EA; }
.radar__layerLbl--copper { color: var(--pulse-amber); }

/* Outer use-case nodes (cobalt / teal / cyan) */
.radar__uc .radar__dot {
  width: 36px; height: 36px;
  background: rgba(11,15,23,0.6);
  border: 1.5px solid rgba(120,170,255,0.42);
  color: rgba(120,170,255,0.92);
  box-shadow: 0 0 16px -8px rgba(30,58,138,0.5);
}
.radar__uc--strong .radar__dot {
  width: 46px; height: 46px;
  border-color: rgba(0,194,209,0.66);
  color: var(--nc-signal-cyan);
  background: radial-gradient(circle at 50% 35%, rgba(14,124,123,0.26), rgba(11,15,23,0.78));
  box-shadow: 0 0 24px -8px rgba(0,194,209,0.45), inset 0 0 14px -8px rgba(0,194,209,0.3);
}
.radar__uc:hover .radar__dot { transform: scale(1.08); border-color: rgba(0,194,209,0.85); }
.radar__uc .radar__dot svg { width: 17px; height: 17px; }
.radar__uc--strong .radar__dot svg { width: 21px; height: 21px; }
.radar__layer .radar__dot svg { width: 24px; height: 24px; }

.radar__lbl {
  position: absolute; top: calc(100% + 5px); left: 50%; transform: translateX(-50%);
  width: max-content; max-width: 116px;
  font: 600 11px var(--font-body); line-height: 1.2;
  color: rgba(247,243,234,0.82);
  text-wrap: balance;
}
.radar__uc--strong .radar__lbl { color: #F7F3EA; font-size: 11.5px; }
.radar__node.is-faint .radar__lbl { color: rgba(247,243,234,0.6); }

/* Caption strip below the radar */
.radar__caption {
  position: relative; margin-top: 14px;
  display: flex; align-items: stretch; gap: 12px;
  padding: 13px 16px; min-height: 66px;
  border-radius: 12px;
  background: rgba(11,15,23,0.5);
  border: 1px solid rgba(255,245,234,0.12);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  z-index: 5;
  transition: border-color 280ms ease, background 280ms ease;
}
.radar__capRule {
  flex-shrink: 0; width: 3px; border-radius: 3px;
  background: var(--pulse-orange);
  transition: background 280ms ease;
}
.radar__caption--cool .radar__capRule { background: var(--nc-signal-cyan); }
.radar__capBody { display: flex; flex-direction: column; gap: 4px; min-width: 0; animation: radarCapIn 240ms var(--ease-standard); }
.radar__capHead { font: 600 13.5px var(--font-body); color: #FFF5EA; line-height: 1.22; }
.radar__capText { font: 500 12px var(--font-body); color: rgba(247,243,234,0.78); line-height: 1.45; text-wrap: pretty; }
@keyframes radarCapIn { from { opacity: 0; transform: translateY(3px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .radar__node, .radar__center { transition: none !important; }
  .radar__capBody { animation: none !important; }
}

/* ---- Mobile compact radar: center module + tappable chip lists ---- */
.radarc { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.radarc__center {
  width: 150px; height: 150px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 6px; padding: 14px;
  background:
    radial-gradient(circle at 50% 38%, rgba(217,119,87,0.30) 0%, rgba(184,87,48,0.10) 60%, rgba(20,10,6,0) 100%),
    rgba(20,10,6,0.78);
  border: 1px solid rgba(217,119,87,0.55);
  box-shadow: 0 0 0 1px rgba(217,119,87,0.18), 0 0 60px -10px rgba(184,87,48,0.55), inset 0 0 32px -10px rgba(217,119,87,0.30);
  opacity: 0; transform: scale(0.85);
  transition: opacity 420ms var(--ease-emphasized), transform 420ms var(--ease-emphasized);
}
.radarc__center.is-on { opacity: 1; transform: none; }
.radarc__center img { width: 28px; height: 28px; }
.radarc__centerLbl { font: 600 12px var(--font-body); color: #FFF5EA; line-height: 1.15; }
.radarc__centerSub { font: 500 8.5px var(--font-mono); letter-spacing: 0.14em; color: var(--pulse-amber); }
.radarc .radar__caption { width: 100%; margin-top: 0; }
.radarc__group { width: 100%; }
.radarc__groupLbl { font: 500 9px var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; color: rgba(247,243,234,0.45); margin-bottom: 10px; }
.radarc__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.radarc__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 13px; border-radius: var(--r-pill); border: 1px solid;
  font: 600 12.5px var(--font-body); cursor: pointer; line-height: 1.1;
  transition: opacity 320ms ease, transform 320ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.radarc__chip.is-hidden { opacity: 0; transform: translateY(6px); pointer-events: none; }
.radarc__chipIco { display: inline-flex; }
.radarc__chipIco svg { width: 16px; height: 16px; }
.radarc__chip--layer { background: rgba(184,87,48,0.14); border-color: rgba(217,119,87,0.5); color: #FFF5EA; }
.radarc__chip--layer .radarc__chipIco { color: var(--pulse-amber); }
.radarc__chip--layer.is-sel { background: rgba(217,119,87,0.26); border-color: rgba(232,153,104,0.9); box-shadow: 0 0 18px -4px rgba(184,87,48,0.55); }
.radarc__chip--uc { background: rgba(11,15,23,0.6); border-color: rgba(120,170,255,0.4); color: rgba(247,243,234,0.82); font-size: 12px; }
.radarc__chip--uc .radarc__chipIco { color: rgba(120,170,255,0.9); }
.radarc__chip--uc.is-strong { border-color: rgba(0,194,209,0.6); color: #F7F3EA; background: rgba(14,124,123,0.12); }
.radarc__chip--uc.is-strong .radarc__chipIco { color: var(--nc-signal-cyan); }
.radarc__chip--uc.is-sel { border-color: rgba(0,194,209,0.85); box-shadow: 0 0 16px -4px rgba(0,194,209,0.5); }
@media (prefers-reduced-motion: reduce) {
  .radarc__center, .radarc__chip { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* Header current nav item */
.nc-header__navlink.is-current { color: var(--pulse-copper); position: relative; }
.nc-header__navlink.is-current::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--pulse-copper); border-radius: 2px;
}

/* =========================================================================
   PROBLEM — Section 02 · navy → warm dark transition
   ========================================================================= */
.pulse-problem {
  background: linear-gradient(to bottom,
    var(--nc-deep-navy) 0,
    var(--nc-deep-navy) calc(100% - 220px),
    #1A0D07 100%);
  color: var(--d-fg-1);
}
.pulse-problem .psec__h2 { color: #F7F3EA; }
.pulse-problem .psec__lead { color: rgba(199,204,214,0.86); }

/* ---- top row: copy + layered visual ---- */
.pp-top {
  display: grid;
  grid-template-columns: minmax(0,0.92fr) minmax(0,1.08fr);
  gap: 56px; align-items: center; margin-bottom: 56px;
}
.pp-copy { max-width: 540px; }
.pp-copy .eyebrow { margin-bottom: 4px; }
.pp-complement {
  margin: 24px 0 0; padding-left: 16px;
  border-left: 2px solid rgba(0,194,209,0.45);
  font: 400 15px var(--font-body); line-height: 1.55;
  color: rgba(199,204,214,0.66);
}

/* =========================================================================
   HUMAN KNOWLEDGE BELOW THE SURFACE — layered evidence-extraction visual
   ========================================================================= */
.hkv {
  position: relative; border-radius: var(--r-xl); padding: 22px;
  background:
    radial-gradient(120% 55% at 50% -6%, rgba(30,58,138,0.24) 0%, transparent 58%),
    linear-gradient(180deg, #101826 0%, #0c0f17 46%, #150b07 100%);
  border: 1px solid rgba(255,245,234,0.10);
  box-shadow: inset 0 1px 0 rgba(255,245,234,0.05), 0 50px 100px -50px rgba(0,0,0,0.75);
  overflow: hidden;
}
.hkv::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,245,234,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,245,234,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 72%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 72%);
}
.hkv__cap {
  position: relative; display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(247,243,234,0.52); margin-bottom: 16px;
}
.hkv__cap::before { content: ""; width: 18px; height: 1px; background: currentColor; opacity: 0.6; }
.hkv__body {
  position: relative;
  display: grid; grid-template-columns: 1fr 56px 0.84fr; align-items: stretch;
}

/* layers (left) */
.hkv__layers { display: flex; flex-direction: column; gap: 12px; padding-right: 4px; }
.hkv__layer {
  border-radius: var(--r-md); padding: 12px 14px;
  border: 1px solid rgba(255,245,234,0.08); background: rgba(255,245,234,0.03);
  cursor: default;
  opacity: 0; transform: translateY(10px);
  transition: opacity 440ms var(--ease-emphasized), transform 440ms var(--ease-emphasized),
              border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.hkv__layer.is-on { opacity: 1; transform: none; }
.hkv__layer--doc  { background: rgba(120,170,255,0.06); border-color: rgba(120,170,255,0.16); }
.hkv__layer--real { background: rgba(255,245,234,0.035); }
.hkv__layer--exp  { background: rgba(40,22,14,0.42); border-color: rgba(184,87,48,0.18); }
.hkv__layerHead { display: flex; align-items: baseline; gap: 10px; margin-bottom: 9px; flex-wrap: wrap; }
.hkv__depth { font-size: 9.5px; letter-spacing: 0.14em; color: rgba(247,243,234,0.42); }
.hkv__layer--doc .hkv__depth { color: rgba(120,170,255,0.72); }
.hkv__layer--exp .hkv__depth { color: rgba(217,119,87,0.72); }
.hkv__layerName { font: 500 15px var(--font-display); color: #FFF5EA; }
.hkv__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.hkv__chip {
  font: 500 11.5px var(--font-mono); color: rgba(247,243,234,0.72);
  padding: 4px 9px; border-radius: var(--r-pill);
  border: 1px solid rgba(255,245,234,0.12); background: rgba(255,245,234,0.04);
  white-space: nowrap; transition: opacity 220ms ease;
}
.hkv__layer--exp .hkv__chip { opacity: 0.64; }
.hkv__layer.is-hot {
  border-color: rgba(217,119,87,0.52); background: rgba(217,119,87,0.09);
  box-shadow: 0 0 0 1px rgba(217,119,87,0.18), 0 14px 40px -24px rgba(217,119,87,0.55);
}
.hkv__layer.is-hot .hkv__chip { opacity: 1; }

/* extraction beam (center) */
.hkv__beam { position: relative; display: flex; align-items: center; justify-content: center; }
.hkv__beamLine {
  position: absolute; top: 10px; bottom: 10px; left: 50%; width: 2px;
  transform: translateX(-50%) scaleY(0); transform-origin: top;
  background: linear-gradient(180deg,
    rgba(184,87,48,0) 0%, rgba(217,119,87,0.7) 18%,
    rgba(232,153,104,0.9) 50%, rgba(217,119,87,0.7) 82%, rgba(184,87,48,0) 100%);
  transition: transform 540ms var(--ease-emphasized);
}
.hkv__beam.is-on .hkv__beamLine { transform: translateX(-50%) scaleY(1); }
.hkv__beamNode {
  position: relative; z-index: 2; width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(42,22,14,0.96), rgba(18,11,7,0.96));
  border: 1px solid rgba(217,119,87,0.5);
  box-shadow: 0 0 0 6px rgba(217,119,87,0.08), 0 0 26px rgba(217,119,87,0.34);
  opacity: 0; transform: scale(0.6);
  transition: opacity 360ms ease 220ms, transform 420ms var(--ease-emphasized) 220ms, box-shadow 240ms ease, border-color 240ms ease;
}
.hkv__beam.is-on .hkv__beamNode { opacity: 1; transform: scale(1); }
.hkv__beamNode img { width: 26px; height: 26px; display: block; }
.hkv__beam.is-hot .hkv__beamNode {
  border-color: rgba(232,153,104,0.85);
  box-shadow: 0 0 0 7px rgba(217,119,87,0.15), 0 0 36px rgba(217,119,87,0.55);
}

/* structured evidence (right) */
.hkv__evidence { display: flex; flex-direction: column; gap: 10px; padding-left: 4px; justify-content: center; }
.hkv__evHead {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(0,194,209,0.85); margin-bottom: 2px;
  opacity: 0; transition: opacity 360ms ease;
}
.hkv__evHead.is-on { opacity: 1; }
.hkv__ev {
  display: flex; align-items: center; gap: 10px; padding: 11px 12px;
  border-radius: var(--r-md); border: 1px solid rgba(0,194,209,0.22);
  background: rgba(0,194,209,0.05);
  opacity: 0; transform: translateX(-16px);
  transition: opacity 460ms var(--ease-emphasized), transform 460ms var(--ease-emphasized),
              border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.hkv__ev.is-on { opacity: 1; transform: none; transition-delay: calc(var(--ei) * 130ms); }
.hkv__ev.is-hot {
  border-color: rgba(0,194,209,0.55); background: rgba(0,194,209,0.1);
  box-shadow: 0 0 0 1px rgba(0,194,209,0.18), 0 14px 40px -24px rgba(0,194,209,0.6);
}
.hkv__evIco {
  display: inline-flex; flex: none; width: 30px; height: 30px; border-radius: 8px;
  align-items: center; justify-content: center;
  border: 1px solid rgba(0,194,209,0.3); background: rgba(0,194,209,0.08);
  color: var(--nc-signal-cyan);
}
.hkv__evIco svg { width: 16px; height: 16px; }
.hkv__evText { flex: 1 1 auto; font: 500 13.5px var(--font-display); color: #FFF5EA; }
.hkv__evTag {
  flex: none; font-size: 9px; letter-spacing: 0.12em; color: rgba(0,194,209,0.85);
  border: 1px solid rgba(0,194,209,0.3); border-radius: var(--r-pill); padding: 2px 7px;
}

/* mobile-only PULSE marker (hidden on larger screens) */
.hkv__mark { display: none; }

/* =========================================================================
   PAIN CARDS — copper accent (pain points)
   ========================================================================= */
.pp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.pp-card {
  background: rgba(21,27,38,0.5);
  border: 1px solid rgba(255,245,234,0.10);
  border-radius: var(--r-lg);
  padding: 26px 24px 24px;
  position: relative; overflow: hidden;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  opacity: 0; transform: translateY(14px);
}
.pp-grid.is-shown .pp-card {
  opacity: 1; transform: none;
  transition:
    opacity 460ms var(--ease-emphasized), transform 460ms var(--ease-emphasized),
    border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
  transition-delay: calc(var(--i) * 70ms);
}
.pp-card::after {
  content: ""; position: absolute; left: 24px; bottom: 0; width: 24px; height: 2px;
  background: var(--pulse-orange); opacity: 0; transition: opacity 220ms ease, width 220ms ease;
}
.pp-card:hover,
.pp-card.is-hot {
  border-color: rgba(217,119,87,0.46);
  background: rgba(217,119,87,0.06);
  box-shadow: 0 18px 44px -24px rgba(217,119,87,0.5);
}
.pp-card:hover::after,
.pp-card.is-hot::after { opacity: 1; width: 40px; }
.pp-card__ico {
  display: inline-flex; width: 46px; height: 46px; border-radius: 10px;
  align-items: center; justify-content: center; margin-bottom: 18px;
  border: 1px solid rgba(217,119,87,0.3); background: rgba(217,119,87,0.08);
  color: var(--pulse-orange);
  transition: border-color 220ms ease, background 220ms ease;
}
.pp-card:hover .pp-card__ico,
.pp-card.is-hot .pp-card__ico { border-color: rgba(217,119,87,0.55); background: rgba(217,119,87,0.15); }
.pp-card__ico svg { width: 22px; height: 22px; }
.pp-card__title { font: 600 18px var(--font-display); color: #FFF5EA; margin: 0 0 9px; line-height: 1.18; }
.pp-card__body { font: 400 14.5px var(--font-body); color: rgba(199,204,214,0.82); line-height: 1.55; margin: 0; }

@media (prefers-reduced-motion: reduce) {
  .pp-card,
  .hkv__layer, .hkv__ev { opacity: 1 !important; transform: none !important; }
  .hkv__beamLine { transform: translateX(-50%) scaleY(1) !important; }
  .hkv__beamNode { opacity: 1 !important; transform: none !important; }
  .hkv__evHead { opacity: 1 !important; }
}
