:root {
  --color-bg: #07060E;
  --color-bg-mid: #0D0B1A;
  --color-bg-night: #0F0D20;
  --color-bg-elev: rgba(19, 17, 43, 0.55);
  --color-text: #E8E4F0;
  --color-text-muted: #9B95A8;
  --color-text-dim: #6B6580;
  --color-link: #C4B8E0;
  --color-warm: #E8DCBF;
  --color-border: rgba(155, 143, 199, 0.12);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 35%, rgba(91, 78, 140, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 30% 70%, rgba(100, 80, 150, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 60%, rgba(140, 120, 170, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-mid) 50%, var(--color-bg-night) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  color: var(--color-text);
  font-family: 'Outfit', 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--color-link); text-decoration: none; }
a:hover { text-decoration: underline; }

.static-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 1rem;
}

.static-header .brand {
  font-family: 'Cormorant Garamond', 'Lora', Georgia, serif;
  font-size: 1.6rem;
  color: var(--color-warm);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  text-indent: 0.35em;
}

.static-header nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.static-header nav a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.static-header nav a[aria-current="page"] {
  color: var(--color-link);
}

.static-main {
  max-width: 720px;
  margin: 3rem auto;
  padding: 0 1.5rem 4rem;
}

.static-main h1 {
  font-family: 'Cormorant Garamond', 'Lora', serif;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-warm);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.static-main h2 {
  font-family: 'Cormorant Garamond', 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-text);
  margin: 2.5rem 0 0.75rem;
}

.static-main .lede {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.static-main p,
.static-main li {
  color: var(--color-text);
  font-size: 1rem;
}

.static-main ul,
.static-main ol {
  padding-left: 1.4rem;
}

.static-main li {
  margin-bottom: 0.5rem;
}

.static-main .back {
  margin-top: 3rem;
  font-size: 0.95rem;
}

.static-footer {
  border-top: 1px solid var(--color-border);
  padding: 2rem;
  text-align: center;
  color: var(--color-text-dim);
  font-size: 0.9rem;
}

.static-footer nav {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.static-footer nav a {
  color: var(--color-text-muted);
}

@media (max-width: 600px) {
  .static-header { padding: 1rem 1.25rem; }
  .static-main { margin: 2rem auto; padding: 0 1.25rem 3rem; }
  .static-main h1 { font-size: 1.75rem; }
  .static-main h2 { font-size: 1.2rem; }
}
