:root {
  color-scheme: light;
  --bg: #f8f8f5;
  --surface: #ffffff;
  --ink: #1f2937;
  --muted: #64748b;
  --line: #e2e8f0;
  --gold: #d4a00b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Public Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
}

.meta {
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  background: var(--surface);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.note {
  font-size: 0.85rem;
  color: var(--muted);
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
}

.list-item {
  display: grid;
  gap: 0.25rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.95rem;
  color: #334155;
}

.site-nav a:hover {
  color: #111827;
}

.site-nav .cta {
  background: #111827;
  color: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 9px;
  font-weight: 600;
}

.site-nav .manifesto {
  border: 1px solid #fcd34d;
  background: #fffbeb;
  color: #78350f;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
}

.site-nav .manifesto:hover {
  background: #fef3c7;
  color: #78350f;
}

main {
  min-height: calc(100vh - 170px);
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.875rem;
  background: var(--surface);
}

.site-footer-inner {
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: inline-flex;
  gap: 1rem;
}

.footer-links a:hover {
  color: #0f172a;
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }
}
