/* ====================================================================
 *  Plugr — plugr.co
 *  Marketing site styles. Mobile-first, semantic, theme-aware.
 *
 *  Design language matches the app:
 *    - Dark default, light optional via prefers-color-scheme
 *    - Brand gradient: purple → indigo → blue
 *    - Generous whitespace, large type, modern indie-Mac-app aesthetic
 *    - Minimal animation (respects prefers-reduced-motion)
 *
 *  Section order:
 *    1.  CSS reset + variables
 *    2.  Base typography + layout primitives
 *    3.  Buttons + form controls
 *    4.  Nav + footer
 *    5.  Hero + section helpers
 *    6.  Feature cards + grids
 *    7.  Pricing cards
 *    8.  FAQ accordion
 *    9.  Long-form content (legal / support articles)
 *    10. Utilities
 *    11. Media queries
 * ================================================================== */


/* 1. RESET + VARIABLES ------------------------------------------------ */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html, body { height: 100%; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

:root {
  /* Brand palette */
  --brand-purple: #a85cff;
  --brand-indigo: #6a6aff;
  --brand-blue:   #3aa6ff;
  --brand-gradient: linear-gradient(135deg, #a85cff 0%, #6a6aff 55%, #3aa6ff 100%);

  /* Dark theme — the default, matches the app default */
  --bg-0: #0b0d12;          /* deepest — page bg */
  --bg-1: #14171f;          /* card / panel */
  --bg-2: #1c2029;          /* hover / raised */
  --bg-3: #262b36;          /* pressed / strong */
  --line: #2a2f3d;
  --line-2: #3a4154;
  --text: #e6e8ef;
  --text-2: #c2c5d2;        /* slightly muted body */
  --muted: #8a90a3;
  --muted-2: #5d6478;
  --accent: var(--brand-indigo);
  --accent-strong: #7c8cff;
  --good: #4ad29a;
  --warn: #ffb454;
  --bad:  #ff6b6b;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 6px 24px rgba(0,0,0,.35);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.45);
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display",
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Layout */
  --maxw-narrow: 720px;
  --maxw:        1080px;
  --maxw-wide:   1280px;
  --pad-x:       24px;
}

/* Light theme variables, swapped in when the OS prefers it.
   Marketing sites usually look better in light mode for SEO snippets
   and screenshots; we still default dark to match the app brand. */
@media (prefers-color-scheme: light) {
  :root.respect-os {
    --bg-0: #ffffff;
    --bg-1: #f7f8fa;
    --bg-2: #eef1f6;
    --bg-3: #e3e7ef;
    --line: #e2e5ed;
    --line-2: #cdd2dd;
    --text: #0d1220;
    --text-2: #2c3140;
    --muted: #6a7080;
    --muted-2: #9097a8;
    --accent: #4f5fd3;
    --accent-strong: #3d4cb8;
    --shadow-sm: 0 1px 2px rgba(20,30,60,.06);
    --shadow-md: 0 6px 18px rgba(20,30,60,.08);
    --shadow-lg: 0 20px 50px rgba(20,30,60,.12);
  }
}

/* 2. TYPOGRAPHY + LAYOUT PRIMITIVES ---------------------------------- */

body {
  font-family: var(--font-sans);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { color: var(--text-2); }
p + p { margin-top: 1em; }

a.text-link {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent-strong) 35%, transparent);
  text-underline-offset: 3px;
  transition: text-decoration-color .12s ease;
}
a.text-link:hover { text-decoration-color: var(--accent-strong); }

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.container-narrow { max-width: var(--maxw-narrow); margin-inline: auto; padding-inline: var(--pad-x); }
.container-wide   { max-width: var(--maxw-wide);   margin-inline: auto; padding-inline: var(--pad-x); }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-strong);
  margin-bottom: 16px;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-2);
  max-width: 60ch;
  line-height: 1.55;
}

.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* 3. BUTTONS + FORM CONTROLS ----------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  background: var(--bg-2);
  color: var(--text);
  transition: transform .08s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.btn:hover { background: var(--bg-3); }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--brand-gradient);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 32px rgba(106, 106, 255, 0.35);
}
.btn-primary:hover {
  background: var(--brand-gradient);   /* gradient can't darken; nudge via shadow */
  filter: brightness(1.08);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--text);
}
.btn-ghost:hover { background: var(--bg-1); border-color: var(--accent-strong); }

.btn-lg { padding: 16px 28px; font-size: 16px; border-radius: 12px; }
.btn-sm { padding: 8px 14px; font-size: 13.5px; }

.btn .arrow { transition: transform .14s ease; }
.btn:hover .arrow { transform: translateX(2px); }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.input, .textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-1);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color .14s ease, box-shadow .14s ease;
}
.input:focus, .textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-strong) 25%, transparent);
}

/* 4. NAV + FOOTER ---------------------------------------------------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg-0) 85%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
}
.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: var(--maxw-wide);
  margin-inline: auto;
}
.site-nav .brand img {
  height: 28px;
  width: auto;
  display: block;
}
.site-nav .brand {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14.5px;
  color: var(--text-2);
  font-weight: 500;
  transition: background .12s ease, color .12s ease;
}
.nav-links a:hover { color: var(--text); background: var(--bg-2); }
.nav-links a.cta {
  background: var(--brand-gradient);
  color: #fff;
  margin-left: 6px;
  padding: 9px 16px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(106, 106, 255, 0.3);
}
.nav-links a.cta:hover { color: #fff; filter: brightness(1.08); }

/* Mobile nav (hamburger). Default state: links hidden, menu toggle shown. */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--text);
  padding: 6px;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: var(--bg-1);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .nav-links a.cta { margin-left: 0; margin-top: 4px; }
}

.site-footer {
  margin-top: 80px;
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-1) 50%, var(--bg-0));
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 36px;
}
@media (max-width: 760px) {
  .site-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .site-footer-grid > :first-child { grid-column: 1 / -1; }
}
.site-footer h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { color: var(--text-2); font-size: 14px; transition: color .12s ease; }
.site-footer ul a:hover { color: var(--accent-strong); }
.site-footer .brand img { height: 28px; margin-bottom: 14px; }
.site-footer .footer-tag { color: var(--muted); font-size: 14px; max-width: 32ch; }

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer-bottom a { color: var(--muted); }
.site-footer-bottom a:hover { color: var(--text-2); }

/* 5. HERO + SECTION HELPERS ------------------------------------------ */

.hero {
  position: relative;
  padding: clamp(72px, 12vw, 140px) 0 clamp(56px, 8vw, 96px);
  overflow: hidden;
}
.hero::before {
  /* radial glow behind the hero — adds depth without busy patterns */
  content: '';
  position: absolute;
  inset: -10% 0 auto -10%;
  height: 120%;
  background:
    radial-gradient(60% 70% at 30% 20%, rgba(168, 92, 255, 0.18), transparent 60%),
    radial-gradient(50% 50% at 70% 30%, rgba(58, 166, 255, 0.15), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .hero-inner { grid-template-columns: 1.05fr 1fr; gap: 48px; }
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead { margin-bottom: 32px; }
.hero-cta { margin-bottom: 24px; }
.hero-meta {
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.hero-meta .dot { color: var(--muted-2); }

.hero-screenshot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-1);
  box-shadow: var(--shadow-lg);
  transform: rotate(0.6deg);
  transition: transform .3s ease;
}
.hero-screenshot:hover { transform: rotate(0deg) scale(1.005); }
.hero-screenshot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 92, 255, 0.08), rgba(58, 166, 255, 0.08));
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Section header — used at the top of feature sections */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header .lead { margin-inline: auto; }

/* 6. FEATURE CARDS + GRIDS ------------------------------------------- */

.feature-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.feature-card {
  padding: 28px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color .14s ease, transform .14s ease;
}
.feature-card:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
}
.feature-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-strong) 18%, var(--bg-2));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--accent-strong);
}
.feature-card .icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; line-height: 1.55; color: var(--text-2); }

/* Alternating prose+image rows */
.split-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin: 80px 0;
}
@media (min-width: 880px) {
  .split-row { grid-template-columns: 1fr 1fr; gap: 64px; }
  .split-row.flip > :first-child { order: 2; }
}
.split-row h2 { margin-bottom: 16px; }
.split-row .lead { margin-bottom: 16px; }
.split-row .checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}
.split-row .checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-2);
}
.split-row .checks li::before {
  content: '✓';
  color: var(--good);
  font-weight: 700;
  flex: 0 0 auto;
  margin-top: 1px;
}
.split-row img,
.split-row .visual {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-1);
  box-shadow: var(--shadow-md);
}

/* DAW logo row — used on the projects feature section */
.daw-row {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--bg-1) 70%, var(--bg-0));
  border: 1px solid var(--line);
}
.daw-row img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.92;
  transition: transform .2s ease;
}
.daw-row img:hover { transform: scale(1.06); }
.daw-row figcaption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  text-align: center;
}
.daw-row figure { display: flex; flex-direction: column; align-items: center; }

/* 7. PRICING CARDS --------------------------------------------------- */

.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1080px;
  margin-inline: auto;
}
.pricing-card {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-strong) 8%, var(--bg-1)) 0%, var(--bg-1) 100%);
  border-color: color-mix(in srgb, var(--accent-strong) 50%, var(--line));
  box-shadow: 0 12px 40px rgba(106, 106, 255, 0.18);
}
.pricing-card .tier-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-strong);
  margin-bottom: 8px;
}
.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card .price .currency { font-size: 1.25rem; vertical-align: top; margin-right: 2px; opacity: 0.6; }
.pricing-card .price-period { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.pricing-card .price-note { color: var(--muted-2); font-size: 12.5px; margin-bottom: 24px; }
.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(106, 106, 255, 0.4);
}
.pricing-card .features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 24px;
  flex: 1;
}
.pricing-card .features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}
.pricing-card .features li::before {
  content: '✓';
  color: var(--good);
  font-weight: 700;
  flex: 0 0 auto;
}
.pricing-card .features li.muted { color: var(--muted); }
.pricing-card .features li.muted::before { content: '–'; color: var(--muted-2); }
.pricing-card .btn { width: 100%; }

/* Compare-tier table for the pricing page */
.compare-table {
  margin: 64px auto 0;
  max-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  font-size: 14.5px;
}
.compare-table th, .compare-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  color: var(--text-2);
}
.compare-table th { font-weight: 600; color: var(--text); }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; color: var(--text); }
.compare-table thead th { padding-top: 18px; padding-bottom: 18px; }
.compare-table tbody tr:hover td { background: color-mix(in srgb, var(--bg-1) 50%, transparent); }
.compare-table .yes { color: var(--good); font-weight: 700; }
.compare-table .no  { color: var(--muted-2); }
.compare-table .partial { color: var(--warn); font-weight: 600; }

/* 8. FAQ ACCORDION --------------------------------------------------- */

.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq details {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .14s ease;
}
.faq details[open] { border-color: var(--line-2); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  flex: 0 0 auto;
  font-size: 22px;
  line-height: 1;
  color: var(--muted);
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: '−'; transform: rotate(0deg); }
.faq .answer {
  padding: 0 22px 18px;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.65;
}
.faq .answer p + p { margin-top: 0.75em; }
.faq .answer code {
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 1px 6px;
  border-radius: 4px;
  background: var(--bg-2);
  color: var(--accent-strong);
}

/* 9. LONG-FORM CONTENT (legal / support articles) ------------------ */

.prose {
  max-width: 720px;
  margin-inline: auto;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.7;
}
.prose h1 { font-size: 2.25rem; margin-bottom: 16px; color: var(--text); }
.prose h2 { font-size: 1.45rem; margin: 40px 0 12px; color: var(--text); }
.prose h3 { font-size: 1.15rem; margin: 28px 0 10px; color: var(--text); }
.prose p { margin-bottom: 1em; }
.prose ul, .prose ol { margin: 0 0 1.2em 1.6em; }
.prose li { margin-bottom: 0.4em; }
.prose strong { color: var(--text); }
.prose code {
  font-family: var(--font-mono);
  font-size: 14px;
  padding: 1px 6px;
  border-radius: 4px;
  background: var(--bg-2);
  color: var(--accent-strong);
}
.prose pre {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  overflow-x: auto;
  margin: 1em 0;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.55;
}
.prose blockquote {
  border-left: 3px solid var(--accent-strong);
  padding: 4px 14px;
  margin: 1em 0;
  color: var(--text-2);
  background: color-mix(in srgb, var(--accent-strong) 6%, transparent);
  border-radius: 0 6px 6px 0;
}
.prose .meta {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.prose .toc {
  margin: 24px 0 40px;
  padding: 18px 22px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.prose .toc h4 {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 10px;
}
.prose .toc ul { margin: 0; padding: 0; list-style: none; }
.prose .toc li { margin-bottom: 4px; }
.prose .toc a { color: var(--accent-strong); text-decoration: none; font-size: 14.5px; }
.prose .toc a:hover { text-decoration: underline; }

/* Support index — quick-links grid */
.help-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.help-card {
  padding: 24px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color .14s ease, transform .14s ease;
  display: block;
}
.help-card:hover { border-color: var(--accent-strong); transform: translateY(-2px); }
.help-card h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--text); }
.help-card p { font-size: 14px; color: var(--muted); }

/* 10. UTILITIES ------------------------------------------------------ */

.text-muted   { color: var(--muted); }
.text-center  { text-align: center; }
.mt-0  { margin-top: 0 !important; }
.mt-2  { margin-top: 8px; }
.mt-3  { margin-top: 16px; }
.mt-4  { margin-top: 24px; }
.mt-6  { margin-top: 40px; }
.mb-0  { margin-bottom: 0 !important; }
.mb-2  { margin-bottom: 8px; }
.mb-3  { margin-bottom: 16px; }
.mb-4  { margin-bottom: 24px; }
.mb-6  { margin-bottom: 40px; }
.mb-8  { margin-bottom: 64px; }

.divider {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 56px 0;
}

/* 11. MEDIA QUERIES + MOTION ------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Print — for legal pages */
@media print {
  .site-nav, .site-footer, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  .prose { max-width: 100%; }
}
