/* ============================================================
EXECUTIVE HUNTER — PRODUCT SHOWCASE
Path: assets/css/product-showcase.css
============================================================ */

.product-showcase {
  background: radial-gradient(circle at 70% 40%, #10253f 0%, #0b1320 60%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Top gold shimmer line (matches testimonials/faq) */
.product-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,.35), transparent);
}

/* Soft ambient gold glow bottom-left */
.product-showcase::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(201,168,76,.10), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}


/* ============================================================
GRID
============================================================ */

.ps-grid {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}


/* ============================================================
LEFT — TEXT
============================================================ */

.ps-eyebrow {
  display: inline-block;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 10px;
  color: #c9a84c;
  margin-bottom: 22px;
  font-weight: 500;
}

.ps-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4.2vw, 48px);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 22px;
  color: #ffffff;
  letter-spacing: .005em;
}

.ps-text h2 em {
  font-style: italic;
  color: #c9a84c;
  font-weight: 500;
}

.ps-text > p {
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .72);
  margin: 0 0 36px;
  max-width: 480px;
}

.ps-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.ps-cta-row .btn-primary {
  /* inherits global .btn-primary */
  height: 52px;
  padding: 0 28px;
}

.ps-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 52px;
  padding: 0 24px;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(201, 168, 76, .45);
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: background .25s, border-color .25s;
}

.ps-btn-ghost:hover {
  background: rgba(201, 168, 76, .08);
  border-color: #c9a84c;
}

.ps-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(201, 168, 76, .15);
  color: #c9a84c;
  font-size: 10px;
  padding-left: 2px;
  flex-shrink: 0;
}


/* ============================================================
RIGHT — VISUAL (device + floating cards)
============================================================ */

.ps-visual {
  position: relative;
  min-height: 480px;
}


/* ============================================================
DEVICE MOCKUP
============================================================ */

.ps-device {
  background: linear-gradient(180deg, #151f35 0%, #0c1425 100%);
  border: 1px solid rgba(201, 168, 76, .22);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, .5);
  position: relative;
  z-index: 1;
}

/* Chrome (browser-like top bar) */
.ps-device-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, .28);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.ps-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ps-dot-red    { background: #ff5f57; }
.ps-dot-yellow { background: #febc2e; }
.ps-dot-green  { background: #28c840; }

.ps-url {
  margin-left: 14px;
  flex: 1;
  background: rgba(255, 255, 255, .05);
  border-radius: 5px;
  padding: 5px 12px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .45);
  font-family: "DM Sans", sans-serif;
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Body */
.ps-device-body {
  display: grid;
  grid-template-columns: 60px 1fr;
  min-height: 340px;
}

.ps-sidebar {
  background: rgba(0, 0, 0, .3);
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, .04);
}

.ps-sidebar-item {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .12);
}

.ps-sidebar-item.active {
  background: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .2);
}

.ps-dashboard {
  padding: 24px;
}


/* Metrics row */
.ps-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.ps-metric {
  padding: 14px 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
}

.ps-metric-active {
  background: rgba(201, 168, 76, .08);
  border-color: rgba(201, 168, 76, .28);
}

.ps-metric-label {
  font-size: 10px;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .11em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 500;
}

.ps-metric-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}

.ps-metric-active .ps-metric-value {
  color: #c9a84c;
}


/* Kanban */
.ps-kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ps-kanban-col {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 6px;
  padding: 11px 10px;
}

.ps-kanban-title {
  font-size: 9px;
  color: #c9a84c;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 9px;
  font-weight: 500;
}

.ps-kanban-card {
  height: 22px;
  background: rgba(255, 255, 255, .08);
  border-radius: 3px;
  margin-bottom: 5px;
}

.ps-kanban-card:last-child {
  margin-bottom: 0;
}

.ps-kanban-card-active {
  background: rgba(201, 168, 76, .3);
  animation: psPulse 2.6s ease-in-out infinite;
}

.ps-kanban-card-hired {
  background: rgba(201, 168, 76, .55);
}

@keyframes psPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .6; }
}


/* ============================================================
FLOATING CARDS
============================================================ */

.ps-float {
  position: absolute;
  z-index: 3;
  background: rgba(15, 28, 46, .96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 76, .3);
  border-radius: 11px;
  padding: 12px 18px 12px 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .45);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: psFloat 4.2s ease-in-out infinite;
}

.ps-float-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(201, 168, 76, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ps-float-icon .material-symbols-outlined {
  font-size: 18px !important;
  color: #c9a84c;
}

.ps-float-label {
  font-size: 9.5px;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 3px;
  line-height: 1;
}

.ps-float-value {
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.1;
}

.ps-float-value span {
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
  font-weight: 400;
  margin-left: 3px;
}


/* Positions (desktop) */
.ps-float-tr {
  top: -22px;
  right: -18px;
  animation-delay: 0s;
}

.ps-float-ml {
  top: 40%;
  left: -32px;
  animation-delay: 1.4s;
}

.ps-float-br {
  bottom: -22px;
  right: 40px;
  animation-delay: 2.8s;
}

@keyframes psFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}


/* ============================================================
RESPONSIVE
============================================================ */

@media (max-width: 1024px) {
  .ps-grid {
    gap: 40px;
  }

  .ps-float-tr { right: -10px; top: -16px; }
  .ps-float-ml { left: -18px; }
  .ps-float-br { right: 20px; bottom: -16px; }
}

@media (max-width: 900px) {
  .ps-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: left;
  }

  .ps-visual {
    min-height: auto;
    max-width: 580px;
  }

  .ps-text > p {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .product-showcase {
    padding: 80px 0;
  }

  .ps-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .ps-cta-row .btn-primary,
  .ps-btn-ghost {
    justify-content: center;
    width: 100%;
  }

  .ps-device-body {
    grid-template-columns: 44px 1fr;
    min-height: 280px;
  }

  .ps-dashboard {
    padding: 16px;
  }

  .ps-metric {
    padding: 10px 12px;
  }

  .ps-metric-value {
    font-size: 20px;
  }

  .ps-kanban-card {
    height: 18px;
  }

  /* Hide floating cards — too crowded on mobile */
  .ps-float {
    display: none;
  }
}


@media (prefers-reduced-motion: reduce) {
  .ps-float,
  .ps-kanban-card-active {
    animation: none;
  }
}