:root {
  --c1: #06a9c4;
  --c2: #0a4d59;
  --grad: linear-gradient(135deg, #06a9c4, #0a4d59);
  --bg: #f2f8fa;
  --surface: #ffffff;
  --surface-alt: #f0f7f9;
  --border: #d4edf3;
  --text: #1a2e35;
  --muted: #6b8a94;
}
html.dark {
  --bg: #081a20;
  --surface: #0d2630;
  --surface-alt: #0a1f28;
  --border: #1a3d4a;
  --text: #e2edf0;
  --muted: #7aa5b0;
}

/* ── BASE ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { transition: background-color .3s, color .3s; }
body {
  font-family: 'Play', sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background-color .3s, color .3s;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ───────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--c1); border-radius: 2px; }

/* ── GLASS EFFECTS (exact provided) ─────────────────────────────── */
.glass-light {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.22);
}
.dark .glass-dark {
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.10);
}

/* ── TOGGLE (exact provided) ─────────────────────────────────────── */
.toggle-track { width: 44px; height: 24px; border-radius: 999px; position: relative; cursor: pointer; }
.toggle-thumb { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: white; transition: transform 0.3s; }
html.dark .toggle-thumb { transform: translateX(20px); }

/* ── HAMBURGER (exact provided) ──────────────────────────────────── */
.ham-line { display: block; width: 22px; height: 2px; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.ham-open .ham-top { transform: translateY(7px) rotate(45deg); }
.ham-open .ham-mid { opacity: 0; }
.ham-open .ham-bot { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU (exact provided) ────────────────────────────────── */
.mobile-menu { opacity: 0; transform: translateY(-12px); pointer-events: none; transition: 0.3s ease; }
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.menu-overlay { opacity: 0; pointer-events: none; transition: 0.3s ease; }
.menu-overlay.open { opacity: 1; pointer-events: auto; }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn-gradient {
  background: linear-gradient(135deg, #06a9c4, #0a4d59);
  color: white; text-decoration: none;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-gradient:hover { opacity: .88; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(6,169,196,.28); }

/* ── HERO ────────────────────────────────────────────────────────── */
.hero-gradient {
  background: linear-gradient(to bottom right, #06a9c4, #0a4d59);
  position: relative; overflow: hidden;
}
.hero-gradient::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(255,255,255,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* ── CONTENT CARDS ───────────────────────────────────────────────── */
.policy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 44px;
  transition: border-color .25s, box-shadow .25s;
}
.policy-card:hover {
  border-color: rgba(6,169,196,.30);
  box-shadow: 0 6px 36px rgba(6,169,196,.07);
}
@media (max-width: 640px) { .policy-card { padding: 26px 20px; } }

/* ── SECTION BADGE ───────────────────────────────────────────────── */
.section-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--c1);
  background: rgba(6,169,196,.08);
  border: 1px solid rgba(6,169,196,.18);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 14px;
}

/* ── GRAD LINE ───────────────────────────────────────────────────── */
.grad-line {
  height: 2px;
  background: linear-gradient(to right, #06a9c4, #0a4d59);
  border-radius: 2px; width: 48px; margin-bottom: 20px;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────────────── */
.section-h2 {
  font-family: 'Play', sans-serif;
  font-weight: 700; font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--text); letter-spacing: -.02em; margin-bottom: 20px;
}
.section-h3 {
  font-family: 'Play', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--text); margin: 22px 0 8px;
}
.prose-body {
  font-family: 'Literata', Georgia, serif;
  font-size: 15px; line-height: 1.75; color: var(--muted);
}
.prose-body + .prose-body { margin-top: 14px; }

/* ── POLICY LIST ─────────────────────────────────────────────────── */
.policy-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.policy-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-family: 'Literata', Georgia, serif;
  font-size: 15px; line-height: 1.65; color: var(--muted);
}
.policy-list li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, #06a9c4, #0a4d59);
  flex-shrink: 0; margin-top: 9px;
}

/* ── TABLE OF CONTENTS ───────────────────────────────────────────── */
.toc-link {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; padding: 10px 14px; border-radius: 10px;
  font-family: 'Play', sans-serif; font-size: 13px; color: var(--muted);
  transition: background .2s, color .2s; border: 1px solid transparent;
}
.toc-link:hover {
  background: rgba(6,169,196,.07);
  border-color: rgba(6,169,196,.15); color: var(--c1);
}
.toc-num {
  font-size: 10px; font-weight: 700;
  background: linear-gradient(135deg, #06a9c4, #0a4d59);
  color: white; width: 20px; height: 20px; border-radius: 5px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── REVEAL ──────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer-link {
  color: var(--muted); text-decoration: none; font-size: 13px;
  display: block; margin-bottom: 8px; transition: color .2s;
}
.footer-link:hover { color: var(--c1); }

/* ── HIGHLIGHT BOX ───────────────────────────────────────────────── */
.highlight-box {
  background: rgba(6,169,196,.06);
  border: 1px solid rgba(6,169,196,.18);
  border-left: 3px solid var(--c1);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 18px;
}
.highlight-box p {
  font-family: 'Play', sans-serif;
  font-size: 13px; color: var(--text); line-height: 1.6;
}
