/* Shared marketing chrome — tokens match src/shared/theme.css (Home). */
:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface2: #1e1e1e;
  --text: #ffffff;
  --muted: #a0a0a0;
  --accent: #e50914;
  --accent2: #ff3b3b;
  --border: rgba(255, 255, 255, 0.10);
  --radius: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 10px 24px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
}
.site-brand {
  display: flex;
  align-items: center;
  flex: none;
  text-decoration: none;
  line-height: 0;
}
.site-brand-img {
  display: block;
  height: 24px;
  width: auto;
  max-width: 160px;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}
.site-nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.site-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.site-nav-link.active {
  color: #fff;
}
.site-header-actions {
  flex: none;
}
.site-header .btn-primary,
a.btn-primary,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  border: none;
  transition: background 0.15s;
}
.site-header .btn-primary:hover,
a.btn-primary:hover,
.btn-primary:hover {
  background: var(--accent2);
  opacity: 1;
}
.site-footer {
  border-top: 1px solid var(--border);
  background: #050505;
  padding: 48px 20px;
  margin-top: 60px;
}
.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
.site-footer-brand {
  max-width: 380px;
}
.site-footer-logo {
  display: block;
  height: 24px;
  width: auto;
  max-width: 160px;
}
.site-footer-tagline {
  font-size: 14px;
  color: var(--muted);
  margin: 12px 0 6px;
}
.site-footer-compliance {
  font-size: 12px;
  color: #666;
  margin: 0;
}
.site-footer-links {
  display: flex;
  gap: 48px;
}
.site-footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}
.site-footer-col strong {
  color: #fff;
  margin-bottom: 6px;
}
.site-footer-col a {
  color: var(--muted);
  text-decoration: none;
}
.site-footer-col a:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .site-nav {
    display: none;
  }
  .site-header-inner {
    padding: 10px 16px;
  }
}
