/* Shared public site chrome — Silverjan */

:root {
  --sj-bg: #0a0e1a;
  --sj-bg-2: #121a2e;
  --sj-ink: #e8eef7;
  --sj-muted: rgba(232, 238, 247, 0.72);
  --sj-accent: #8dd2f9;
  --sj-accent-strong: #6bc4f5;
  --sj-line: rgba(141, 210, 249, 0.28);
  --sj-glass: rgba(255, 255, 255, 0.07);
  --sj-font: signika, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sj-font);
  color: var(--sj-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(141, 210, 249, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(40, 90, 140, 0.25), transparent 50%),
    linear-gradient(160deg, #070b14 0%, #0f1628 45%, #0a101c 100%);
  background-attachment: fixed;
}

.pdf {
  display: none;
  height: 100vh;
}

.site-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 11, 18, 0.92) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.55rem 1rem;
}

.site-nav .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
}

.site-logo {
  max-height: 22px;
  display: block;
}

.site-nav .nav-link {
  color: rgba(232, 238, 247, 0.86) !important;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.45rem 0.75rem !important;
  margin: 0 0.1rem;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-nav .nav-link:hover {
  color: #fff !important;
  border-color: rgba(141, 210, 249, 0.45);
  background: rgba(141, 210, 249, 0.08);
  text-decoration: none;
}

.site-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 0.35rem 0.65rem;
  color: #fff;
  text-decoration: none;
}

.site-cart-btn:hover {
  border-color: var(--sj-accent);
  color: var(--sj-accent);
  text-decoration: none;
}

.site-cart-btn img {
  height: 22px;
}

.site-nav-cart-mobile {
  margin-left: auto;
  margin-right: 0.25rem;
}

#content.base-container {
  margin-top: 58px;
  min-height: calc(100vh - 58px - 180px);
  position: relative;
  z-index: 1;
}

.site-footer {
  background: #07090f;
  color: var(--sj-ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 1.25rem;
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}

.site-footer-brand img {
  max-height: 36px;
  display: block;
  margin-bottom: 1rem;
}

.site-footer-brand p,
.site-footer-links a {
  color: var(--sj-muted);
  margin: 0;
  line-height: 1.6;
}

.site-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.site-footer-links h5 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.site-footer-links a {
  text-decoration: none;
}

.site-footer-links a:hover {
  color: var(--sj-accent);
}

/* Shared marketing page shell */
.sj-page {
  position: relative;
  z-index: 1;
  padding: 3rem 1.25rem 4rem;
}

.sj-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.75rem;
  background: var(--sj-glass);
  border: 1px solid var(--sj-line);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  animation: sjFadeUp 0.55s ease both;
}

.sj-panel h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  color: #f4f8ff;
}

.sj-panel p,
.sj-panel li {
  color: var(--sj-muted);
  line-height: 1.65;
  font-size: 1.05rem;
}

.sj-panel ul {
  margin: 0;
  padding-left: 1.15rem;
}

.sj-panel li + li {
  margin-top: 0.65rem;
}

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

@media (max-width: 768px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .sj-panel {
    padding: 1.5rem 1.2rem;
  }
}
