:root {
  --bg: #050309;
  --bg-2: #0d0808;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.88);
  --muted: rgba(255, 255, 255, 0.55);
  --dim: rgba(255, 255, 255, 0.30);
  --accent: #ffd966;
  --accent-warm: #ffb84d;
  --glow: rgba(255, 184, 64, 0.45);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "SF Pro Display", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255, 184, 64, 0.20), transparent 70%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  background-attachment: fixed;
  min-height: 100vh;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

header {
  text-align: center;
  margin-bottom: 56px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.glyph {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #2c1f0d, #0a0807);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 0 32px var(--glow);
}

.glyph svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text {
  font-weight: 600;
  letter-spacing: 8px;
  font-size: 14px;
}

h1 {
  margin: 32px 0 8px;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 4px;
}

.effective {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
}

.summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  margin: 32px 0;
}

.summary strong { color: var(--accent); }

h2 {
  margin: 48px 0 12px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  margin: 24px 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

p, li { color: var(--text); }
.muted { color: var(--muted); }

ul, ol {
  padding-left: 22px;
  margin: 12px 0;
}

li { margin: 6px 0; }

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 217, 102, 0.30);
  transition: border-color 120ms ease;
}

a:hover { border-color: var(--accent); }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
}

footer {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--dim);
  font-size: 13px;
}

footer a {
  color: var(--muted);
  border: none;
}

.nav {
  margin: 16px 0 32px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.nav a { margin: 0 12px; }

@media (max-width: 540px) {
  .wrap { padding: 32px 18px 64px; }
  h1 { font-size: 28px; }
  h2 { font-size: 19px; }
}
