:root {
  --teal: #0B3D3A;
  --teal-deep: #061A19;
  --mint: #2DD4A8;
  --sand: #F7F4EF;
  --muted: #A8C0BA;
  --ink: #E8F2EF;
  --body: #C5D5D1;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { min-height: 100%; }
body {
  font-family: "Figtree", system-ui, sans-serif;
  color: var(--body);
  background:
    radial-gradient(ellipse 70% 50% at 80% 0%, rgba(45, 212, 168, 0.12), transparent 55%),
    linear-gradient(160deg, var(--teal-deep), var(--teal) 55%, #0A2E2B);
  background-attachment: fixed;
  line-height: 1.6;
}
a { color: var(--mint); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 24px 64px;
}
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(247, 244, 239, 0.12);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sand);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  text-decoration: none;
}
.brand:hover { text-decoration: none; color: var(--mint); }
.brand img { width: 32px; height: 32px; }
.nav-links { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.92rem; font-weight: 600; }
.nav-links a { color: var(--muted); text-decoration: none; }
.nav-links a:hover { color: var(--mint); }
h1 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--sand);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 8px;
}
.meta { color: var(--muted); font-size: 0.92rem; margin-bottom: 32px; }
h2 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--sand);
  font-size: 1.25rem;
  margin: 28px 0 10px;
}
p, li { margin-bottom: 10px; }
ul { padding-left: 1.2rem; margin-bottom: 12px; }
.note {
  margin-top: 36px;
  padding: 16px 18px;
  border-radius: 10px;
  background: rgba(45, 212, 168, 0.08);
  border: 1px solid rgba(45, 212, 168, 0.22);
  color: var(--ink);
  font-size: 0.95rem;
}
.foot {
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid rgba(247, 244, 239, 0.12);
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: space-between;
}
