/**
 * ============================================================================
 * STILI SISTEMA SOLARE 3D & PUBBLICAZIONI AMAZON & ECOSISTEMA 20 NODI
 * Master Hub Luxury Architecture · mircopregnolato.it
 * ============================================================================
 */

:root {
  --solar-bg: #030712;
  --solar-gold: #d4af37;
  --solar-gold-glow: rgba(212, 175, 55, 0.4);
  --solar-cyan: #00d2ff;
  --solar-emerald: #00e676;
  --solar-card-bg: rgba(10, 16, 28, 0.75);
  --solar-card-border: rgba(212, 175, 55, 0.22);
}

/* ============================================================================
   1. SISTEMA SOLARE 3D VIEWPORT & HUD
   ============================================================================ */
.solar-system-master-container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto 40px;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05), rgba(3, 7, 18, 0.95) 75%), var(--solar-bg);
  border: 1px solid var(--solar-card-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8), 0 0 50px rgba(212, 175, 55, 0.08);
}

.solar-system-hud-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(8, 12, 22, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--solar-card-border);
  z-index: 10;
  position: relative;
}

.solar-hud-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--solar-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solar-hud-hint {
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 860px) {
  .solar-hud-hint { display: none; }
}

.solar-hud-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.solar-hud-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #f8fafc;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  font-family: 'JetBrains Mono', monospace;
}

.solar-hud-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--solar-gold);
  color: var(--solar-gold);
  transform: translateY(-1px);
}

.solar-system-viewport {
  position: relative;
  width: 100%;
  height: 650px;
  min-height: 500px;
  cursor: grab;
}

@media (max-width: 768px) {
  .solar-system-viewport { height: 480px; }
}

.solar-system-canvas {
  width: 100%;
  height: 100%;
  display: block;
  outline: none;
}

/* Floating Tooltip */
.solar-system-tooltip {
  position: absolute;
  pointer-events: none;
  background: rgba(10, 16, 28, 0.95);
  border: 1px solid var(--solar-gold);
  border-radius: 10px;
  padding: 12px 16px;
  color: #f8fafc;
  z-index: 50;
  max-width: 280px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75), 0 0 15px rgba(212, 175, 55, 0.2);
  display: none;
  backdrop-filter: blur(8px);
  transform: translate(0, 0);
  transition: opacity 0.15s ease;
}

.sst-badge {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--solar-gold);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.sst-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.sst-sub {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
}

.sst-domain {
  font-size: 12px;
  color: var(--solar-cyan);
  font-family: 'JetBrains Mono', monospace;
  margin-top: 6px;
  font-weight: 600;
}

.sst-hint {
  font-size: 10px;
  color: #64748b;
  margin-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 6px;
}

/* Modal Scheda Dettaglio Pianeta / Sole */
.solar-system-modal {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 420px;
  max-width: calc(100% - 40px);
  background: rgba(10, 16, 28, 0.96);
  border: 1px solid var(--solar-gold);
  border-radius: 16px;
  padding: 24px;
  color: #f8fafc;
  z-index: 40;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 30px rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(16px);
  display: none;
  animation: slideInUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.solar-system-modal.active {
  display: block;
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.ssm-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px;
  font-size: 18px;
  line-height: 1;
}

.ssm-close:hover { color: #fff; }

.ssm-header { margin-bottom: 12px; }

.ssm-title {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.02em;
}

.ssm-sub {
  font-size: 12px;
  color: var(--solar-gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 4px;
  text-transform: uppercase;
}

.ssm-claim {
  font-size: 13px;
  font-style: italic;
  color: #cbd5e1;
  border-left: 2px solid var(--solar-gold);
  padding-left: 10px;
  margin: 12px 0;
}

.ssm-pnl {
  font-size: 13px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 16px;
}

.ssm-satellites-box {
  margin: 14px 0 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.ssm-sat-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.ssm-satellites-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 100px;
  overflow-y: auto;
}

.ssm-sat-pill {
  display: inline-block;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  padding: 3px 8px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.15s;
}

.ssm-sat-pill:hover {
  background: rgba(0, 210, 255, 0.15);
  border-color: var(--solar-cyan);
  color: var(--solar-cyan);
}

.ssm-sat-pill.gold {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--solar-gold);
}

.ssm-domain-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, #d4af37, #f6d77a);
  color: #030712;
  font-weight: 800;
  font-size: 13px;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.ssm-domain-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.5);
}

/* Quick Navigator Strip (20 Pianeti sotto al 3D) */
.solar-pills-strip {
  display: flex;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(4, 8, 16, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow-x: auto;
  scrollbar-width: thin;
}

.solar-pill-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.solar-pill-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--solar-gold);
  color: #fff;
  transform: translateY(-1px);
}

.sp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

/* ============================================================================
   2. SEZIONE PUBBLICAZIONI (110 LIBRI AMAZON)
   ============================================================================ */
.pubblicazioni-section {
  padding: 90px 0;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.98), #070c18 50%, rgba(3, 7, 18, 0.98));
  border-top: 1px solid var(--solar-card-border);
  position: relative;
}

.pubblicazioni-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.pubblicazioni-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--solar-gold);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pubblicazioni-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.pubblicazioni-title span {
  background: linear-gradient(135deg, #d4af37 20%, #f6d77a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pubblicazioni-subtitle {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto;
}

/* Search and Filter Container */
.books-toolbar {
  max-width: 1280px;
  margin: 0 auto 36px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.books-search-wrapper {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}

.books-search-input {
  width: 100%;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 14px 20px 14px 44px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.books-search-input:focus {
  border-color: var(--solar-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.books-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--solar-gold);
  pointer-events: none;
}

.books-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.book-filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.book-filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.book-filter-btn.active {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--solar-gold);
  color: var(--solar-gold);
}

.count-pill {
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
}

.books-meta-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto 20px;
  padding: 0 24px;
  font-size: 12px;
  color: #64748b;
  font-family: 'JetBrains Mono', monospace;
}

/* Books Grid */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.book-card-item {
  background: rgba(14, 20, 32, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.book-card-item:hover {
  transform: translateY(-4px);
  border-color: var(--solar-gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.18);
}

.book-card-item.featured-delta {
  border-color: var(--solar-gold);
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), rgba(14, 20, 32, 0.95) 60%);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 320px 1fr;
}

/* ============================================================================
   ULTIMA USCITA IN PROMO - MAGNETIC CARD HIGHLIGHT & NEON AMBER GLOW
   ============================================================================ */
.book-card-item.ultima-uscita-promo {
  border: 2px solid #ff9900 !important;
  background: radial-gradient(ellipse at top left, rgba(255, 153, 0, 0.18), rgba(14, 20, 32, 0.97) 70%) !important;
  box-shadow: 0 0 35px rgba(255, 153, 0, 0.35), 0 15px 45px rgba(0, 0, 0, 0.85) !important;
  position: relative;
  overflow: visible;
  animation: promoPulseGlow 3.5s ease-in-out infinite alternate;
}

@keyframes promoPulseGlow {
  0% {
    box-shadow: 0 0 25px rgba(255, 153, 0, 0.25), 0 15px 45px rgba(0, 0, 0, 0.8);
    border-color: #ff9900;
  }
  100% {
    box-shadow: 0 0 50px rgba(255, 61, 0, 0.55), 0 18px 50px rgba(0, 0, 0, 0.9);
    border-color: #ffd700;
  }
}

.book-card-item.ultima-uscita-promo::before {
  content: '⚡ ULTIMA USCITA · IN PROMO SU AMAZON';
  position: absolute;
  top: -12px;
  right: 18px;
  background: linear-gradient(135deg, #ff9900, #ff3d00);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(255, 61, 0, 0.5);
  z-index: 10;
  text-transform: uppercase;
}

.book-badge.promo-glow {
  background: linear-gradient(135deg, #ff9900, #ff3d00) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  box-shadow: 0 0 16px rgba(255, 61, 0, 0.6) !important;
  animation: flameFlicker 1.8s infinite alternate ease-in-out;
}

@keyframes flameFlicker {
  0% { filter: drop-shadow(0 0 4px #ff9900); }
  100% { filter: drop-shadow(0 0 12px #ff3d00); }
}

.btn-amazon-buy.promo-btn {
  background: linear-gradient(135deg, #ff9900 0%, #ff3d00 100%) !important;
  color: #000000 !important;
  font-weight: 900 !important;
  box-shadow: 0 4px 20px rgba(255, 61, 0, 0.45) !important;
}

.btn-amazon-buy.promo-btn:hover {
  background: linear-gradient(135deg, #ffb300 0%, #ff5722 100%) !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 87, 34, 0.6) !important;
}

.book-promo-callout {
  background: rgba(255, 153, 0, 0.12);
  border: 1px dashed rgba(255, 153, 0, 0.45);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: #ffb74d;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 860px) {
  .book-card-item.featured-delta {
    grid-template-columns: 1fr;
  }
}

.book-cover-wrapper {
  position: relative;
  background: #090e18;
  height: 240px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.book-card-item.featured-delta .book-cover-wrapper {
  height: 100%;
  min-height: 280px;
  border-bottom: none;
  border-right: 1px solid rgba(212, 175, 55, 0.25);
}

.book-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.book-card-item:hover .book-cover-img {
  transform: scale(1.03);
}

.book-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: linear-gradient(135deg, #161c28, #0b0f17);
  border-left: 4px solid var(--solar-gold);
  text-align: left;
}

.bcp-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--solar-gold);
  letter-spacing: 0.1em;
}

.bcp-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  font-family: 'Cinzel', serif;
}

.bcp-author {
  font-size: 10px;
  color: #94a3b8;
  letter-spacing: 0.08em;
}

.bcp-logo {
  align-self: flex-end;
  font-size: 12px;
  font-weight: 900;
  color: var(--solar-gold);
  border: 1px solid var(--solar-gold);
  padding: 2px 6px;
  border-radius: 4px;
}

.book-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.book-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.book-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  letter-spacing: 0.05em;
}

.book-badge.gold {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--solar-gold);
}

.book-badge.best-seller {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(255, 153, 0, 0.25));
  border: 1px solid var(--solar-gold);
  color: #ffd700;
  font-weight: 900;
}

.book-year {
  font-size: 11px;
  color: #64748b;
  font-family: 'JetBrains Mono', monospace;
}

.book-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 6px;
}

.book-subtitle {
  font-size: 12px;
  color: var(--solar-gold);
  line-height: 1.4;
  margin-bottom: 12px;
  font-weight: 600;
}

.book-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.book-card-item.featured-delta .book-desc {
  -webkit-line-clamp: 6;
  font-size: 14px;
}

.book-lang-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  margin-bottom: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lang-label {
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}

.lang-chip {
  font-size: 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 3px 8px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.15s;
}

.lang-chip:hover {
  border-color: var(--solar-gold);
  color: var(--solar-gold);
  background: rgba(212, 175, 55, 0.1);
}

.lang-chip.single {
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--solar-gold);
}

.book-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.btn-amazon-buy {
  flex: 1;
  background: linear-gradient(135deg, #d4af37, #f6d77a);
  color: #030712;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
}

.btn-amazon-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.book-asin-label {
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  color: #64748b;
}

.books-load-more-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================================
   3. SEZIONE 20 NODI DELL'ECOSISTEMA (GRIGLIA ESECUTIVA)
   ============================================================================ */
.ecosystem-section {
  padding: 90px 0;
  background: var(--solar-bg);
  border-top: 1px solid var(--solar-card-border);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.eco-card-node {
  background: rgba(14, 20, 32, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.eco-card-node::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--node-color, var(--solar-gold));
}

.eco-card-node:hover {
  transform: translateY(-3px);
  border-color: var(--node-color, var(--solar-gold));
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.15);
}

.eco-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.eco-card-name {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  font-family: 'Cinzel', serif;
}

.eco-card-subname {
  font-size: 11px;
  color: var(--solar-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.eco-card-cat-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.eco-card-claim {
  font-size: 12px;
  font-style: italic;
  color: #e2e8f0;
  margin-bottom: 12px;
  line-height: 1.4;
}

.eco-card-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.eco-card-satellites {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 16px;
}

.eco-sat-title {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.eco-sat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.eco-sat-tag {
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
  padding: 2px 6px;
  border-radius: 4px;
}

.eco-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.eco-btn-open {
  background: transparent;
  border: 1px solid var(--solar-gold);
  color: var(--solar-gold);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.eco-btn-open:hover {
  background: var(--solar-gold);
  color: #030712;
}

.eco-card-kpi {
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  color: #64748b;
}
