/* =========================================
   panels.css — Glass Panel System
   OWNS:    Base glass surface definition for .feature-card and .hero-home__panel
            (backdrop-filter, background, border, shadow, radius, overflow),
            panel typography (.feature-card__kicker, .hero-home__panel-kicker),
            system list component (.system-list, .system-list__row).
   MAY OVERRIDE: Nothing — panels.css is a base component file.
   MUST NOT DEFINE: Hero-specific panel enhancements (owned by hero-enhanced.css),
                    homepage panel spacing overrides (owned by home.css),
                    or button styles of any kind.
   ========================================= */

.feature-card,
.hero-home__panel {
  position: relative;
  border-radius: var(--radius-l);
  background:
    linear-gradient(180deg, rgba(10, 17, 38, 0.78), rgba(6, 12, 30, 0.74)),
    linear-gradient(90deg, rgba(99, 102, 241, 0.04), rgba(34, 211, 238, 0.03));
  border: 1px solid rgba(148, 190, 255, 0.12);
  box-shadow:
    0 18px 48px rgba(3, 8, 24, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.055);
  backdrop-filter: blur(var(--blur-panel)) saturate(var(--sat-panel));
  -webkit-backdrop-filter: blur(var(--blur-panel)) saturate(var(--sat-panel));
  overflow: hidden;
  transition: backdrop-filter 380ms ease, -webkit-backdrop-filter 380ms ease;
}

.feature-card:hover,
.hero-home__panel:hover {
  backdrop-filter: blur(var(--blur-panel-hover)) saturate(var(--sat-nav));
  -webkit-backdrop-filter: blur(var(--blur-panel-hover)) saturate(var(--sat-nav));
}

/* subtle top glow sweep */
.feature-card::before,
.hero-home__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.08), transparent 80%),
    linear-gradient(180deg, rgba(255,255,255,0.05), transparent 45%);
  pointer-events: none;
}

.feature-card {
  padding: 1.55rem 1.5rem;
}

.hero-home__panel {
  padding: 1.7rem 1.5rem;
  max-width: 360px;
}

/* 🧠 PANEL TYPOGRAPHY */
.feature-card__kicker,
.hero-home__panel-kicker {
  margin-bottom: 0.9rem;
  color: rgba(125, 211, 252, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ⚙️ SYSTEM LIST */
.system-list {
  display: grid;
  gap: 0.9rem;
}

.system-list__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.system-list__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.system-list__row span {
  color: rgba(232, 238, 255, 0.7);
}

.system-list__row strong {
  color: #ffffff;
  font-weight: 700;
}

/* Status indicator is the animated <i class="status-dot"> injected in hero.php HTML.
   No ::after pseudo-element here — that would create a second dot alongside the real one. */
