  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black: #0a0a0a;
    --dark: #141414;
    --card: #1c1c1c;
    --border: rgba(255,255,255,0.08);
    --white: #ffffff;
    --muted: rgba(255,255,255,0.45);
    --accent-mid: #97c459;
    --serif: 'Instrument Serif', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
  }

  body {
    font-family: var(--sans);
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .logo {
    font-family: var(--serif);
    font-size: 36px;
    letter-spacing: -0.5px;
    color: var(--white);
    text-decoration: none;
  }
  .logo span { color: var(--accent-mid); font-style: italic; }
  .nav-back {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }
  .nav-back:hover { color: var(--white); }

  main {
    max-width: 720px;
    margin: 0 auto;
    padding: 120px 24px 80px;
  }

  .page-header {
    margin-bottom: 56px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
  }
  .page-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
  }
  .page-title {
    font-family: var(--serif);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .page-meta {
    font-size: 13px;
    color: var(--muted);
  }

  .section {
    margin-bottom: 48px;
  }
  .section-num {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-mid);
    margin-bottom: 8px;
  }
  h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  h3 {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    margin-top: 24px;
    margin-bottom: 10px;
  }
  p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
    line-height: 1.75;
  }
  p:last-child { margin-bottom: 0; }

  ul {
    list-style: none;
    padding: 0;
    margin-bottom: 14px;
  }
  ul li {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    padding: 8px 0 8px 20px;
    position: relative;
    border-bottom: 1px solid var(--border);
    line-height: 1.6;
  }
  ul li:last-child { border-bottom: none; }
  ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-mid);
  }
  ul li strong {
    color: var(--white);
    font-weight: 500;
  }

  a {
    color: var(--accent-mid);
    text-decoration: none;
  }
  a:hover { text-decoration: underline; }

  .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 28px;
    margin-top: 16px;
  }
  .card p { margin-bottom: 8px; }
  .card p:last-child { margin-bottom: 0; }

  .divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 48px 0;
  }

  footer {
    border-top: 1px solid var(--border);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }
  footer p { font-size: 13px; color: var(--muted); margin: 0; }
  .footer-link {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-link:hover { opacity: 0.6; }

  @media (max-width: 600px) {
    nav { padding: 16px 20px; }
    section { padding: 72px 20px; }
    footer { padding: 24px 20px; flex-direction: column; text-align: center; }
  }