/* Shared site header, footer, and legal page tokens */

:root {
  --ink: #07070a;
  --paper: #f4f3f8;
  --paper-card: #ffffff;
  --muted: #64647a;
  --line: rgba(255, 255, 255, 0.12);
  --line-light: #e6e4ef;
  --accent: #f5a623;
  --accent-2: #8b5cf6;
  --radius: 14px;
  --nav-h: 72px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

.shell {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4.5vw, 24px);
  box-sizing: border-box;
}

/* Header */
.site-chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}

.site-chrome--dark {
  background: rgba(7, 7, 10, 0.92);
  backdrop-filter: blur(12px);
  border-color: var(--line);
}

.site-chrome--light {
  background: rgba(244, 243, 248, 0.94);
  backdrop-filter: blur(12px);
  border-color: var(--line-light);
}

.chrome-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  position: relative;
}

.site-chrome .brand {
  display: flex;
  line-height: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.site-chrome .brand img {
  height: 34px;
  width: auto;
}

.chrome-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chrome-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.site-chrome--dark .chrome-nav a {
  color: rgba(255, 255, 255, 0.72);
}

.site-chrome--dark .chrome-nav a:hover,
.site-chrome--dark .chrome-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.site-chrome--light .chrome-nav a {
  color: var(--muted);
}

.site-chrome--light .chrome-nav a:hover,
.site-chrome--light .chrome-nav a.is-active {
  color: var(--ink);
  background: var(--paper-card);
}

/* Footer */
.site-footer-block {
  padding: 36px 0 52px;
  border-top: 1px solid var(--line-light);
  font-size: 0.8125rem;
  color: var(--muted);
}

.site-footer-block .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.site-footer-block nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer-block a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.site-footer-block a:hover {
  color: var(--ink);
}

