/* ==========================================================
   KnowledgeGainzz — styles
   Plain CSS, mobile-first. Brand colours live in :root.
   ========================================================== */

:root {
  --bg: #0f110d;
  --surface: #17150f;
  --surface-2: #211c12;
  --border: #332c1c;
  --text: #f2f4ec;
  --muted: #a8a190;
  --accent: #e0a72e;
  --accent-hover: #f2ba4a;
  --accent-ink: #14110a;
  --warn: #ffb547;
  --error: #ff6b5b;

  /* pricing tier accents */
  --tier-payg: #8fa3ad;
  --tier-bronze: #cd7f32;
  --tier-silver: #c7cdd6;
  --tier-gold: #e6b422;
  --tier-platinum: #4fb0e8;
  --tier-diamond: #4fd8e8;
  --tier-strength: #ef5a4a;
  --tier-physique: #b262e8;
  --tier-athlete: #4fd87a;
  --tier-group: #e85ba8;

  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --max: 1120px;
  --gutter: 16px;
  --shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.6);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--accent); text-underline-offset: 3px; }
a:hover { color: var(--accent-hover); }

h1, h2, h3 { line-height: 1.1; margin: 0 0 0.6em; }
h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h2 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -999px; top: 8px;
  background: var(--accent); color: var(--accent-ink);
  padding: 8px 14px; border-radius: var(--radius-sm); z-index: 100;
}
.skip-link:focus { left: 8px; }

/* ---------- layout ---------- */

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.container.narrow { max-width: 760px; }

.section { padding: 72px 0; }
.section-alt { background: var(--surface); border-block: 1px solid var(--border); }
.section-head { max-width: 640px; margin-bottom: 40px; }

.split { display: grid; gap: 40px; align-items: center; }

.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 0.875rem; }

.eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.8em;
}

@media (min-width: 820px) {
  .section { padding: 104px 0; }
  .split { grid-template-columns: 1fr 1fr; gap: 64px; }
  :root { --gutter: 24px; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  background: var(--accent); color: var(--accent-ink);
  font: 700 0.95rem/1 var(--font-body);
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid var(--accent);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--accent-ink); transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(200, 245, 66, 0.55); }
.btn:disabled { opacity: 0.6; cursor: progress; transform: none; }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { background: var(--surface-2); color: var(--text); border-color: var(--muted); box-shadow: none; }

.link-btn {
  background: none; border: 0; padding: 0; margin-left: auto;
  color: var(--accent); font: 600 0.85rem var(--font-body); cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
}

/* ---------- header / nav ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 17, 13, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--border); }

.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase;
  color: var(--text); text-decoration: none; letter-spacing: 0.02em; margin: 0;
}
.logo span { color: var(--accent); }
.logo:hover { color: var(--text); }
.logo-img {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.footer-logo-img { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 6px; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 10px; cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  position: absolute; top: 68px; left: 0; right: 0;
  display: none; flex-direction: column; gap: 4px;
  padding: 12px var(--gutter) 20px;
  background: var(--bg); border-bottom: 1px solid var(--border);
}
.site-nav.is-open { display: flex; }
.site-nav a:not(.btn) { color: var(--text); text-decoration: none; font-weight: 500; padding: 10px 0; }
.site-nav a:not(.btn):hover { color: var(--accent); }
.site-nav .btn { margin-top: 8px; }

.site-nav-static { position: static; display: flex; flex-direction: row; padding: 0; border: 0; background: none; }

@media (min-width: 820px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static; display: flex; flex-direction: row; align-items: center; gap: 28px;
    padding: 0; background: none; border: 0;
  }
  .site-nav .btn { margin-top: 0; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 88px 0 96px;
  background:
    radial-gradient(ellipse 70% 60% at 85% 10%, rgba(200, 245, 66, 0.16), transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(200, 245, 66, 0.07), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero::after {
  /* faint grid texture */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 30%, transparent 90%);
  -webkit-mask-image: linear-gradient(to bottom, #000 30%, transparent 90%);
}
.hero-inner { position: relative; z-index: 1; }

.hero-title {
  font-size: clamp(3rem, 12vw, 7.5rem);
  line-height: 0.95;
  margin-bottom: 0.35em;
}
.hero-title span { color: var(--accent); }

.hero-sub { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: var(--muted); max-width: 580px; margin-bottom: 2em; }
.hero-sub em { color: var(--text); font-style: normal; font-weight: 600; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.hero-points { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.hero-points li { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; color: var(--muted); }
.hero-points li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}

@media (min-width: 820px) {
  .hero { padding: 140px 0 150px; }
}

/* ---------- about ---------- */

.about-card {
  position: relative;
  aspect-ratio: 4 / 5; max-width: 420px; width: 100%;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(200, 245, 66, 0.22), transparent 55%),
    var(--surface-2);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
}
.about-initial { font-family: var(--font-display); font-size: 11rem; color: var(--accent); line-height: 1; opacity: 0.9; }
.about-photo { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.badge {
  position: absolute; bottom: 18px; left: 18px;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em;
  padding: 6px 12px; border-radius: 999px;
}

.ticks { list-style: none; padding: 0; margin: 1.2em 0 0; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 28px; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 0.45em;
  width: 16px; height: 9px;
  border-left: 3px solid var(--accent); border-bottom: 3px solid var(--accent);
  transform: rotate(-45deg) translateY(-3px);
}

/* ---------- steps ---------- */

.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; counter-reset: none; }
.step {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px;
}
.step-num { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--accent); line-height: 1; margin-bottom: 14px; }
.step p { color: var(--muted); margin: 0; }

@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }

/* ---------- service cards ---------- */

.cards { display: grid; gap: 20px; margin-bottom: 36px; }
.card {
  position: relative;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 26px;
}
.card p { color: var(--muted); }
.card-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow); }
.card-tag {
  position: absolute; top: -12px; left: 24px;
  background: var(--accent); color: var(--accent-ink);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}

@media (min-width: 900px) { .cards { grid-template-columns: repeat(3, 1fr); } }

/* ---------- pricing ---------- */

.pricing-note {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224, 167, 46, 0.1); border: 1px solid rgba(224, 167, 46, 0.4);
  color: var(--accent); font-weight: 700; font-size: 0.9rem;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 32px;
}

.pricing-grid { display: grid; gap: 18px; }
@media (min-width: 680px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  --tier: var(--accent);
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--tier);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex; flex-direction: column;
}
.price-card.tier-payg { --tier: var(--tier-payg); }
.price-card.tier-bronze { --tier: var(--tier-bronze); }
.price-card.tier-silver { --tier: var(--tier-silver); }
.price-card.tier-gold { --tier: var(--tier-gold); }
.price-card.tier-platinum { --tier: var(--tier-platinum); }
.price-card.tier-diamond { --tier: var(--tier-diamond); }
.price-card.tier-strength { --tier: var(--tier-strength); }
.price-card.tier-physique { --tier: var(--tier-physique); }
.price-card.tier-athlete { --tier: var(--tier-athlete); }
.price-card.tier-group { --tier: var(--tier-group); }

.price-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.price-name {
  font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase;
  color: var(--tier); margin: 0;
}
.price-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  display: grid; place-items: center;
  color: var(--tier); font-size: 1.2rem;
}
.price-card p.price-tagline { color: var(--muted); font-size: 0.9rem; margin-bottom: 16px; }

.price-features { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 8px; flex-grow: 1; }
.price-features li { position: relative; padding-left: 24px; font-size: 0.92rem; }
.price-features li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 13px; height: 7px;
  border-left: 2px solid var(--tier); border-bottom: 2px solid var(--tier);
  transform: rotate(-45deg) translateY(-2px);
}

.price-tag {
  background: var(--bg); border: 1px solid var(--border); border-top: 2px solid var(--tier);
  border-radius: var(--radius-sm); padding: 14px 16px; text-align: center;
}
.price-amount { font-family: var(--font-display); font-size: 2.1rem; color: var(--text); line-height: 1; }
.price-per { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 6px; }

.pricing-perks {
  display: grid; gap: 14px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border);
  text-align: center;
}
.pricing-perks div { color: var(--muted); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em; }
@media (min-width: 720px) { .pricing-perks { grid-template-columns: repeat(4, 1fr); } }

/* ---------- socials ---------- */

.social-box {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 26px;
}
.social-box p { color: var(--muted); }
.social-links { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0; }
.center-row { justify-content: center; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  background: var(--surface-2); color: var(--text); text-decoration: none; font-weight: 600;
  border: 1px solid var(--border); border-radius: 999px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.social-btn svg { width: 20px; height: 20px; fill: currentColor; }
.social-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- CTA band ---------- */

.cta-band {
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(200, 245, 66, 0.14), transparent 70%),
    var(--bg);
}
.cta-band p { color: var(--muted); margin-bottom: 1.8em; }

/* ---------- footer ---------- */

.site-footer { border-top: 1px solid var(--border); padding: 36px 0; }
.footer-inner { display: grid; gap: 6px; text-align: center; }
.footer-inner p { margin: 0; }
.footer-inner a { color: var(--muted); }
.footer-inner a:hover { color: var(--accent); }

/* ---------- reveal animation ---------- */

.js-reveal .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js-reveal .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}

/* ==========================================================
   Enquiry form
   ========================================================== */

.page-enquire main { padding-top: 48px; }
.form-intro h1 { font-size: clamp(2.2rem, 7vw, 3.6rem); }
.form-intro p:last-child { color: var(--muted); }

.progress { margin: 28px 0 20px; }
.progress-bar { height: 6px; background: var(--surface-2); border-radius: 999px; overflow: hidden; }
.progress-bar span { display: block; height: 100%; width: 0; background: var(--accent); border-radius: 999px; transition: width 0.35s ease; }
.progress p { margin: 8px 0 0; }

.enquiry-form {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 20px;
}
@media (min-width: 640px) { .enquiry-form { padding: 36px; } }

.form-step { display: none; border: 0; padding: 0; margin: 0; min-width: 0; }
.form-step.is-active { display: block; animation: stepIn 0.3s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: none; } }

legend {
  font-family: var(--font-display); font-size: 1.7rem; text-transform: uppercase;
  padding: 0; margin-bottom: 18px;
}

.grid-2 { display: grid; gap: 0 20px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.field { margin-bottom: 20px; }
.field label, .label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 8px; }
.hint { font-size: 0.8rem; color: var(--muted); margin: 6px 0 0; }

input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font: 1rem/1.4 var(--font-body);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input::placeholder, textarea::placeholder { color: #6b7263; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200, 245, 66, 0.2); }
textarea { resize: vertical; }
select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a3ab97' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px;
}

input[type="radio"], input[type="checkbox"] { accent-color: var(--accent); width: 18px; height: 18px; margin: 0; flex-shrink: 0; }

.choice-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex !important; align-items: center; gap: 8px;
  padding: 10px 14px; margin: 0 !important;
  background: var(--bg); border: 1px solid var(--border); border-radius: 999px;
  font-weight: 500 !important; cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.chip:has(input:checked) { border-color: var(--accent); background: rgba(200, 245, 66, 0.08); }

.choice-stack { display: grid; gap: 10px; }
.option {
  display: flex !important; align-items: flex-start; gap: 12px;
  padding: 14px 16px; margin: 0 !important;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  cursor: pointer; font-weight: 400 !important;
}
.option input { margin-top: 3px; }
.option small { display: block; color: var(--muted); font-size: 0.85rem; }
.option:has(input:checked) { border-color: var(--accent); background: rgba(200, 245, 66, 0.06); }

/* PAR-Q */
.parq { display: grid; gap: 12px; margin: 20px 0; }
.parq-q {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.parq-q p { margin: 0 0 10px; font-size: 0.95rem; }
.yn { display: flex; gap: 20px; }
.yn label { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-weight: 600; }

/* Consent */
.consent { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; cursor: pointer; font-size: 0.92rem; }
.consent input { margin-top: 3px; }

/* Errors & notices */
.has-error input, .has-error select, .has-error textarea { border-color: var(--error); }
.parq-q.has-error, .consent.has-error { outline: 1px solid var(--error); outline-offset: 4px; border-radius: var(--radius-sm); }
.field.has-error .chip { border-color: var(--error); }
.field.has-error .option { border-color: var(--error); }
.error-msg { color: var(--error); font-size: 0.85rem; margin: 8px 0 0; }

.notice { padding: 14px 16px; border-radius: var(--radius-sm); font-size: 0.92rem; margin: 0 0 20px; }
.notice-warn { background: rgba(255, 181, 71, 0.1); border: 1px solid rgba(255, 181, 71, 0.45); color: #ffd79a; }
.notice-error { background: rgba(255, 107, 91, 0.1); border: 1px solid rgba(255, 107, 91, 0.45); color: #ffb3aa; margin-top: 16px; }
.notice-error a { color: #ffd0ca; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.form-nav .btn:not(.btn-ghost) { margin-left: auto; }

/* Review */
.review { display: grid; gap: 10px; margin-bottom: 24px; }
.review-section { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.review-section summary {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; cursor: pointer; font-weight: 700; list-style: none;
}
.review-section summary::-webkit-details-marker { display: none; }
.review-section summary::before { content: "+"; color: var(--accent); font-weight: 700; width: 12px; }
.review-section[open] summary::before { content: "–"; }
.review-section dl { margin: 0; padding: 0 16px 14px; display: grid; gap: 8px; }
.review-section dl div { display: grid; gap: 2px; }
.review-section dt { font-size: 0.8rem; color: var(--muted); }
.review-section dd { margin: 0; font-size: 0.92rem; white-space: pre-line; word-break: break-word; }

/* Success */
.success { text-align: center; padding: 20px 0; }
.success:focus { outline: none; }
.success-icon {
  width: 72px; height: 72px; margin: 0 auto 20px;
  display: grid; place-items: center;
  background: var(--accent); color: var(--accent-ink);
  font-size: 2.2rem; font-weight: 700; border-radius: 50%;
}
.success h2 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
.checklist-card {
  text-align: left;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; margin: 28px 0;
}
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 34px; font-size: 0.95rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px; border: 2px solid var(--border); border-radius: 5px;
}
.checklist li.is-done { color: var(--muted); }
.checklist li.is-done::before { background: var(--accent); border-color: var(--accent); }
.checklist li.is-done::after {
  content: ""; position: absolute; left: 7px; top: 5px;
  width: 6px; height: 11px; border: solid var(--accent-ink); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.checklist li.is-important { color: #ffd79a; }
.checklist li.is-important::before { border-color: var(--warn); }

/* ==========================================================
   Privacy page
   ========================================================== */

.prose h1 { font-size: clamp(2.2rem, 7vw, 3.4rem); }
.prose h2 { font-size: 1.6rem; margin-top: 1.8em; }
.prose p, .prose li { color: #d6dbcc; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 0.4em; }
