/* AuraFX Elite — luxury / deluxe visual layer (gold obsidian theme) */

.lux-body {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 175, 55, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(93, 173, 226, 0.06), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(212, 175, 55, 0.08), transparent);
}

.lux-hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 1.5rem 3.5rem;
}
.lux-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.04) 0%, transparent 45%);
  pointer-events: none;
}
.lux-aurora {
  position: absolute;
  inset: -50% -20%;
  background: conic-gradient(from 200deg at 50% 50%, transparent, rgba(212, 175, 55, 0.07), transparent, rgba(147, 112, 219, 0.05), transparent);
  animation: lux-aurora-spin 28s linear infinite;
  pointer-events: none;
  opacity: 0.7;
}
@keyframes lux-aurora-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .lux-aurora { animation: none; opacity: 0.4; }
}

.lux-glass {
  background: linear-gradient(145deg, rgba(18, 24, 42, 0.92), rgba(10, 12, 18, 0.88));
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 16px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}
.lux-glass:hover {
  border-color: rgba(212, 175, 55, 0.38);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.08);
}

.lux-shimmer {
  position: relative;
  overflow: hidden;
}
.lux-shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
  animation: lux-shimmer 4s ease-in-out infinite;
}
@keyframes lux-shimmer {
  0%, 100% { left: -100%; }
  50% { left: 140%; }
}
@media (prefers-reduced-motion: reduce) {
  .lux-shimmer::after { display: none; }
}

.lux-badge-elite {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0c12;
  background: linear-gradient(135deg, #f4e4a6, #d4af37, #b8962e);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.lux-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.lux-title em {
  font-style: normal;
  background: linear-gradient(135deg, #f4e4a6, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lux-grid-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.lux-feature {
  padding: 1.35rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lux-feature:hover { transform: translateY(-4px); }
.lux-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  margin-bottom: 0.85rem;
}
.lux-feature h3 { color: var(--gold); font-size: 1rem; margin-bottom: 0.4rem; }
.lux-feature p { color: var(--muted); font-size: 0.86rem; line-height: 1.55; }

/* Journey timeline */
.journey-track {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}
.journey-track::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(212, 175, 55, 0.2));
}
.journey-step {
  position: relative;
  margin-bottom: 1.75rem;
  padding: 1.25rem 1.35rem;
}
.journey-step::before {
  content: attr(data-step);
  position: absolute;
  left: -2rem;
  top: 1.25rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0c12;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}
.journey-step h3 { color: var(--gold); font-size: 1.05rem; margin-bottom: 0.5rem; }
.journey-step p, .journey-step ol { color: var(--muted); font-size: 0.88rem; line-height: 1.65; }
.journey-step ol { margin: 0.5rem 0 0 1.1rem; }

.trade-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
  font-size: 0.82rem;
  font-weight: 600;
}
.trade-flow span {
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
}
.trade-flow .arrow { color: var(--gold); background: none; border: none; padding: 0 0.25rem; }

.product-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; margin-top: 0.75rem; }
.product-table th, .product-table td {
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 0.65rem 0.75rem;
  text-align: left;
}
.product-table th { color: var(--gold); background: rgba(26, 32, 48, 0.8); }
.product-table code { font-size: 0.78rem; color: #f4e4a6; }

/* Dashboard luxury widgets */
.pulse-ring-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.pulse-ring {
  width: 120px;
  height: 120px;
  position: relative;
  flex-shrink: 0;
}
.pulse-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.pulse-ring-bg { fill: none; stroke: #1a2030; stroke-width: 8; }
.pulse-ring-fg {
  fill: none;
  stroke: url(#luxGoldGrad);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.8s ease;
}
.pulse-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pulse-ring-label strong { font-size: 1.1rem; color: var(--gold); letter-spacing: 0; text-transform: none; }

.welcome-rail {
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}
.welcome-rail p { font-size: 0.85rem; color: var(--muted); max-width: 520px; }
.welcome-rail.hidden { display: none; }

.session-orbs {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.session-orb {
  flex: 1;
  min-width: 72px;
  text-align: center;
  padding: 0.5rem 0.35rem;
  border-radius: 10px;
  font-size: 0.68rem;
  border: 1px solid #333;
  color: var(--muted);
  transition: all 0.3s ease;
}
.session-orb.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.15);
}
.session-orb .orb-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444;
  margin: 0.35rem auto 0;
}
.session-orb.active .orb-dot {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: blink 1.5s infinite;
}

.lux-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lux-reveal.visible {
  opacity: 1;
  transform: none;
}
