/* ============================================
   PRODUCTS PAGE — products.css
   ============================================ */

.red { color: var(--red); }

.product-section { border-bottom: 1px solid var(--border); }
.product-section--alt { background: var(--surface); }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.product-detail-grid--reverse .product-detail-copy { order: 2; }
.product-detail-grid--reverse .product-detail-aside { order: 1; }

.product-lead {
  font-size: 1.05rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.product-body {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 300;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 2rem;
}
.spec {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.spec:nth-child(even) { border-right: none; }
.spec:nth-last-child(-n+2) { border-bottom: none; }
.spec-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
  font-weight: 600;
}
.spec-val { font-size: 0.82rem; color: var(--white); font-weight: 400; }

/* Variant cards */
.variant-card {
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: #0d0d0d;
}
.variant-card--active { border-color: var(--red); }
.variant-card-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--grey-dim);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.variant-card--active .variant-card-label { color: var(--red); }
.variant-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.variant-card-features { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.variant-card-features li {
  font-size: 0.8rem;
  color: var(--grey);
  padding-left: 1rem;
  position: relative;
}
.variant-card-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.7rem;
}
.aside-note {
  padding: 1rem;
  border-left: 2px solid var(--border);
  margin-top: 1rem;
}
.aside-note p { font-size: 0.8rem; color: var(--grey); line-height: 1.65; font-weight: 300; }

/* Dashboard preview */
.dashboard-preview {
  border: 1px solid var(--border);
  background: #0a0a0a;
  overflow: hidden;
}
.dp-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: #0d0d0d;
}
.dp-dot { width: 10px; height: 10px; border-radius: 50%; }
.dp-dot--red { background: #E10600; }
.dp-dot--amber { background: #d97706; }
.dp-dot--green { background: #16a34a; }
.dp-title {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  margin-left: 6px;
  text-transform: uppercase;
  font-weight: 600;
}
.dp-map { position: relative; background: #080808; }
.dp-map svg { width: 100%; height: auto; display: block; }
.dp-map-label {
  position: absolute;
  top: 8px;
  left: 10px;
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  font-weight: 600;
}
.dp-footer {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
}
.dp-stat {
  flex: 1;
  padding: 0.75rem 1rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dp-stat:last-child { border-right: none; }
.dp-stat--warn .dp-stat-n { color: #ff6b00; }
.dp-stat-n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1;
}
.dp-stat-l { font-size: 0.65rem; color: var(--grey-dim); letter-spacing: 0.06em; }

/* Coming banner */
.coming-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(225,6,0,0.2);
  background: rgba(225,6,0,0.04);
  margin-bottom: 3rem;
}
.coming-text { font-size: 0.85rem; color: var(--grey); }
.coming-text a { color: var(--red); text-decoration: underline; }

/* Nova roles */
.nova-statement { padding: 2rem; border: 1px solid var(--border); background: #0d0d0d; }
.nova-quote {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.nova-roles { display: flex; flex-direction: column; gap: 0.75rem; }
.role-row { display: flex; align-items: center; gap: 0.75rem; font-size: 0.82rem; color: var(--grey); }
.role-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.role-dot--active { background: var(--red); }
.role-dot--move { background: #ff6b00; }

/* Celestial */
.celestial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.celestial-card { background: var(--surface); padding: 2.5rem; }
.celestial-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--white);
  margin: 1rem 0 1rem;
  letter-spacing: -0.01em;
}
.celestial-body { font-size: 0.875rem; color: var(--grey); line-height: 1.8; margin-bottom: 1.5rem; font-weight: 300; }
.celestial-features { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.celestial-features li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  padding-left: 1rem;
  position: relative;
}
.celestial-features li::before { content: '—'; position: absolute; left: 0; color: var(--red); font-size: 0.7rem; }
.celestial-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--red);
}
.celestial-note p { font-size: 0.875rem; color: var(--grey); }
.celestial-note a { color: var(--red); }

/* Responsive */
@media (max-width: 900px) {
  .product-detail-grid,
  .product-detail-grid--reverse { grid-template-columns: 1fr; gap: 3rem; }
  .product-detail-grid--reverse .product-detail-copy { order: 1; }
  .product-detail-grid--reverse .product-detail-aside { order: 2; }
  .celestial-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .spec:nth-child(even) { border-right: 1px solid var(--border); }
  .spec:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .spec:last-child { border-bottom: none; }
}
