/* ── Shared layout for standalone content pages (privacy, 404, etc.) ──
   Lighter than landing.css on purpose: no video backdrop, no marketing
   animation — these are utility pages people land on once and leave. */

.content-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(2rem, 6vh, 4rem) 1.5rem;
  gap: 2rem;
}

.content-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.content-header img {
  width: 56px;
  height: 56px;
}
.content-header a {
  color: var(--text);
}
.content-header a:hover {
  color: var(--gold);
}

.content-card {
  width: 100%;
  max-width: 680px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.content-card h1 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: var(--text-2xl);
  margin-bottom: 0.5rem;
}
.content-card h2 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: var(--text-lg);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
.content-card p {
  margin-bottom: 0.9rem;
}
.content-card ul {
  margin: 0 0 0.9rem 1.25rem;
}
.content-card li {
  margin-bottom: 0.4rem;
}
.content-card .content-updated {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-bottom: 1.5rem;
}

/* 404 */
.notfound-card {
  text-align: center;
}
.notfound-code {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: clamp(3rem, 10vw, 5rem);
  line-height: 1;
  text-shadow: 0 0 40px var(--gold-soft);
}
.notfound-card h1 {
  margin-top: 0.75rem;
}
.notfound-card p {
  color: var(--text-muted);
}
.notfound-card .btn-primary {
  margin-top: 1.25rem;
}
