/* products/shared.css — shared nav, footer, reset, font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0a;
  color: #ccc;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Nav ── */
.site-nav {
  padding: 14px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav .brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.site-nav .brand .nl {
  font-size: 0.72rem;
  color: #555;
}

.site-nav .brand .sep {
  color: #333;
  margin: 0 2px;
}

.site-nav .brand .product-name {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

.site-nav .nav-cta {
  padding: 5px 14px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  /* accent color set per-page via inline style or page CSS */
  background: #fff;
}

/* ── Footer ── */
.site-footer {
  padding: 20px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: #333;
}

.site-footer a {
  color: #333;
  text-decoration: none;
}

.site-footer a:hover {
  color: #666;
}

.site-footer .footer-links {
  display: flex;
  gap: 16px;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .site-nav {
    padding: 12px 16px;
  }

  .site-footer {
    padding: 16px;
    flex-direction: column;
    gap: 8px;
  }
}
