/* ============================================================
   WLCRS — page-specific layer on top of the main design system.
   Everything else (tokens, buttons, bands, cards, motion) comes
   from main.css so the product page matches wlc.rs exactly.
   ============================================================ */

/* ---------- Parent strip above the header ---------- */
.parent-strip {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
}
.parent-strip .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 11px; padding-bottom: 11px; flex-wrap: wrap;
}
.parent-strip a { color: rgba(255, 255, 255, 0.75); text-decoration: none; font-weight: 600; }
.parent-strip a:hover { color: var(--cyan); }
.parent-strip strong { color: #fff; font-weight: 700; }

/* the sticky header sits below the strip, not at the very top */
header.site { top: 0; }

/* ---------- Product wordmark in the header ---------- */
.brand .product-name {
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ---------- Hero: dashboard screenshot ---------- */
.hero-shot {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.85),
              0 0 70px -30px rgba(3, 251, 228, 0.35);
  transform: perspective(1800px) rotateY(-4deg) rotateX(1.5deg);
  transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
}
.hero-shot:hover { transform: perspective(1800px) rotateY(0deg) rotateX(0deg); }
.hero-shot img { width: 100%; height: auto; display: block; }
.hero-shot::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, rgba(3,251,228,0.10), transparent 42%);
}
.hero .hero-art { display: block; margin: 0; }

/* ---------- Metric strip ---------- */
.metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.metrics div { padding: 26px 22px; border-left: 1px solid rgba(255,255,255,0.12); }
.metrics div:first-child { border-left: none; }
.metrics strong {
  display: block; font-family: var(--display); font-weight: 800;
  font-size: 1.9rem; color: var(--cyan); line-height: 1.1; margin-bottom: 4px;
}
.metrics span { font-size: 0.86rem; color: rgba(255,255,255,0.6); }

/* ---------- Inline screenshot figure ---------- */
figure.shot-figure { margin: 40px 0 0; }
figure.shot-figure img {
  width: 100%; border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
figure.shot-figure figcaption {
  margin-top: 12px; font-size: 0.86rem; color: var(--ink-soft);
}

@media (max-width: 860px) {
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metrics div:nth-child(3) { border-left: none; }
  .hero-shot { transform: none; }
  .parent-strip .wrap { font-size: 0.78rem; }
}
