/* ══════════════════════════════
   PRODUCTS PAGE (Flake)
══════════════════════════════ */
#page-products .hero-section {
  padding: 80px 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.product-featured {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pf-content {
  padding: 56px 48px;
}
.pf-visual {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--surface2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pf-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(124, 58, 237, 0.2),
    transparent 60%
  );
}
.pf-icon {
  width: 100px;
  height: 100px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--purple), #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  position: relative;
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.4);
}
.pf-title {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin: 16px 0 10px;
}
.pf-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.pf-features {
  list-style: none;
  margin-bottom: 32px;
}
.pf-features li {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pf-features li::before {
  content: "✦";
  color: var(--purple-light);
  font-size: 0.6rem;
}

.products-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.prod-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 32px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.prod-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.prod-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(124, 58, 237, 0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.prod-card:hover::before {
  opacity: 1;
}
.prod-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.prod-name {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.prod-sub {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.7;
}
.prod-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  color: var(--muted2);
  font-size: 1rem;
  transition:
    color 0.3s,
    transform 0.3s;
}
.prod-card:hover .prod-arrow {
  color: var(--purple-light);
  transform: translate(3px, -3px);
}

/* Products responsive */
@media (max-width: 768px) {
  .product-featured,
  .products-secondary {
    grid-template-columns: 1fr;
  }
}
