/* === RESET VISUAL HIERARCHY === */

body.theme-edgy {
  background: #0a0e13;
  color: #e8edf2;
}

/* === HERO === */

.hero {
  background: linear-gradient(135deg, #121922, #0d131a);
  border: 1px solid rgba(0,255,150,0.25);
  border-radius: 12px;
  padding: 2rem;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.8),
    0 0 30px rgba(0,255,150,0.12);
}

/* text hierarchy */
h1 {
  font-size: 2.2rem;
  color: #ffffff;
}

.lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
}

/* === BUTTONS (FIXED) === */

.actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.actions .button {
  width: auto;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
}

/* primary = actual focal element */
.button-primary {
  background: linear-gradient(135deg, #00ff99, #00cc66);
  color: #000;
  border: none;
}

.button-primary:hover {
  box-shadow: 0 0 25px rgba(0,255,150,0.6);
}

/* secondary toned down */
.button-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #ddd;
}

.button-secondary:hover {
  border-color: rgba(0,255,150,0.6);
}

/* === MINI CARD (RIGHT SIDE) === */

.mini-card {
  background: #0f151c;
  border: 1px solid rgba(0,255,150,0.35);
  border-radius: 10px;
  padding: 1.5rem;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.7),
    0 0 25px rgba(0,255,150,0.1);
}

/* === LOWER PANELS === */

.panel,
.detail-card {
  background: #0e141b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;

  box-shadow:
    0 10px 40px rgba(0,0,0,0.7);
}

/* === FEATURE PILLS (FIXED FROM "PLACEHOLDER LOOK") === */

.feature-strip {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.feature-pill {
  flex: 1;
  padding: 0.9rem;
  background: #111821;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;

  transition: all 0.15s ease;
}

.feature-pill strong {
  display: block;
  color: #ffffff;
}

.feature-pill span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.feature-pill:hover {
  border-color: rgba(0,255,150,0.6);
  box-shadow: 0 0 20px rgba(0,255,150,0.2);
}

/* === QUICK LINKS (RIGHT LOWER) === */

.link-list .button {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
  text-align: left;
}

/* === EYEBROW LABELS === */

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #00ff99;
}

/* === SPACING FIX === */

.section {
  margin-top: 2rem;
}