/* ============================================================
   ediprocessing.org — light, wide, elegant theme
   ============================================================ */

:root {
  --c-ink:       #0f172a;
  --c-ink-soft:  #334155;
  --c-muted:     #64748b;
  --c-line:      #e2e8f0;
  --c-line-soft: #eef2f7;
  --c-paper:     #f7fafc;
  --c-card:      #ffffff;

  --c-brand:     #0f766e;
  --c-brand-2:   #0ea5e9;
  --c-accent:    #6366f1;
  --c-accent-2:  #14b8a6;

  --c-ok:        #16a34a;
  --c-warn:      #d97706;
  --c-err:       #dc2626;

  --c-code-bg:   #f1f5f9;
  --c-inline-bg: #eef2f7;

  --grad-brand:  linear-gradient(135deg, #0f766e 0%, #0ea5e9 55%, #6366f1 100%);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 1px rgba(15, 23, 42, .04);
  --shadow-md: 0 6px 18px rgba(15, 23, 42, .07), 0 2px 4px rgba(15, 23, 42, .04);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, .10);

  --content-max:   1400px;
  --content-wide:  1600px;
  --gutter:        clamp(1rem, 3vw, 2.5rem);
  --header-h:      72px;

  --ff-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --ff-mono: ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  scroll-behavior: smooth;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

html {
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--ff-sans);
  color: var(--c-ink);
  background:
    radial-gradient(1200px 600px at 100% -100px, rgba(99,102,241,.07), transparent 60%),
    radial-gradient(1000px 500px at -10% 10%, rgba(14,165,233,.07), transparent 55%),
    var(--c-paper);
  line-height: 1.65;
  font-size: clamp(15px, 0.95rem + 0.2vw, 17.5px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main.site-main {
  flex: 1 0 auto;
  padding: clamp(1.25rem, 2vw, 2.5rem) 0 clamp(3rem, 6vw, 5rem);
}

img, svg { max-width: 100%; height: auto; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c-ink);
  color: #fff;
  padding: .5rem .75rem;
  border-radius: var(--r-sm);
  z-index: 1000;
}
.skip-link:focus { left: .75rem; top: .75rem; }

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--c-line);
}

.site-header__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 2vw, 1.75rem);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--c-ink);
  font-weight: 600;
  transition: transform .2s ease;
}
.site-brand:hover { transform: translateY(-1px); }
.site-brand__logo { display: block; }
.site-brand__name {
  font-size: 1.05rem;
  line-height: 1.1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.site-brand__name .dot { color: var(--c-accent); -webkit-text-fill-color: currentColor; }
.site-brand__tag {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 600;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-wrap: wrap;
}
.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .8rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--c-ink-soft);
  font-weight: 500;
  font-size: .92rem;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.site-nav__link:hover {
  background: var(--c-line-soft);
  color: var(--c-ink);
  transform: translateY(-1px);
}
.site-nav__link.is-active {
  background: linear-gradient(135deg, rgba(15,118,110,.10), rgba(99,102,241,.10));
  color: var(--c-brand);
  border-color: rgba(15,118,110,.20);
}
.site-nav__icon {
  width: 18px;
  height: 18px;
  color: var(--c-brand-2);
}
.site-nav__link.is-active .site-nav__icon { color: var(--c-brand); }

@media (max-width: 720px) {
  .site-header__inner { height: auto; padding: .65rem var(--gutter); flex-wrap: wrap; }
  .site-brand__tag { display: none; }
  .site-nav { width: 100%; overflow-x: auto; padding-bottom: .25rem; }
  .site-nav__link span { font-size: .85rem; }
}

/* ============================================================
   Layout shells
   ============================================================ */

.page-shell,
.home-shell {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

@media (min-width: 1600px) {
  .page-shell { max-width: var(--content-wide); }
}

/* ============================================================
   Breadcrumbs
   ============================================================ */

.breadcrumbs {
  margin: 1rem 0 1.5rem;
  font-size: .88rem;
  color: var(--c-muted);
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .5rem;
  padding: 0;
  margin: 0;
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.breadcrumbs li + li::before {
  content: "›";
  color: var(--c-line);
  font-weight: 600;
}
.breadcrumbs a {
  color: var(--c-ink-soft);
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: border-color .2s ease, color .2s ease;
}
.breadcrumbs a:hover {
  color: var(--c-brand);
  border-bottom-color: var(--c-brand);
}
.breadcrumbs [aria-current="page"] {
  color: var(--c-ink);
  font-weight: 600;
}

/* ============================================================
   Prose / Article
   ============================================================ */

.prose {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: clamp(1.25rem, 3vw, 2.75rem) clamp(1.25rem, 3vw, 3rem);
}

.prose > * + * { margin-top: 1.05em; }

.prose h1 {
  font-size: clamp(1.85rem, 1.4rem + 1.4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-top: 0;
  margin-bottom: .5em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.prose h2 {
  font-size: clamp(1.35rem, 1.05rem + 0.9vw, 1.85rem);
  margin-top: 2em;
  margin-bottom: .4em;
  font-weight: 700;
  color: var(--c-ink);
  position: relative;
  padding-left: .9rem;
}
.prose h2::before {
  content: "";
  position: absolute;
  left: 0; top: .25em; bottom: .25em;
  width: 4px;
  border-radius: 2px;
  background: var(--grad-brand);
}

.prose h3 {
  font-size: clamp(1.15rem, 0.95rem + 0.5vw, 1.4rem);
  margin-top: 1.6em;
  font-weight: 700;
  color: var(--c-brand);
}

.prose h4 { font-size: 1.05rem; color: var(--c-ink); margin-top: 1.3em; }
.prose h2, .prose h3, .prose h4 { scroll-margin-top: calc(var(--header-h) + 16px); }

.prose p {
  color: var(--c-ink-soft);
}

.prose ul, .prose ol {
  color: var(--c-ink-soft);
  padding-left: 0;
  list-style: none;
}

.prose li {
  position: relative;
  padding-left: 1.85rem;
  line-height: 1.7;
}
.prose li + li { margin-top: .5em; }

/* Custom bullet for unordered lists */
.prose ul > li::before {
  content: "";
  position: absolute;
  left: .35rem;
  top: .65em;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--grad-brand);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, .12);
  transition: transform .15s ease, box-shadow .15s ease;
}
.prose ul > li:hover::before {
  transform: scale(1.15);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, .18);
}

/* Custom numeric counter for ordered lists */
.prose ol { counter-reset: prose-counter; }
.prose ol > li {
  padding-left: 2.4rem;
  counter-increment: prose-counter;
}
.prose ol > li::before {
  content: counter(prose-counter);
  position: absolute;
  left: 0;
  top: .15em;
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  font-size: .8rem;
  font-weight: 700;
  font-family: var(--ff-mono);
  color: var(--c-brand);
  background: linear-gradient(135deg, rgba(15,118,110,.10), rgba(99,102,241,.10));
  border: 1px solid rgba(15,118,110,.20);
  border-radius: 999px;
  line-height: 1;
  transition: color .15s ease, background-color .15s ease, transform .15s ease;
}
.prose ol > li:hover::before {
  color: #fff;
  background: var(--grad-brand);
  border-color: transparent;
  transform: scale(1.05);
}

/* Nested lists */
.prose li > ul,
.prose li > ol {
  margin-top: .5em;
  margin-bottom: .15em;
}
.prose ul ul > li::before {
  background: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, .10);
  width: .45rem;
  height: .45rem;
  top: .72em;
}
.prose ul ul ul > li::before {
  background: transparent;
  border: 1.5px solid var(--c-accent);
  box-shadow: none;
}

/* Suppress custom markers for task lists & FAQ items */
.prose li.task-list-item::before,
.prose li:has(> input.task-list-item-checkbox)::before { content: none; }
.prose li.task-list-item,
.prose li:has(> input.task-list-item-checkbox) {
  padding-left: 0;
}

.prose strong { color: var(--c-ink); }

.prose blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--c-brand-2);
  background: linear-gradient(135deg, rgba(14,165,233,.06), rgba(99,102,241,.04));
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--c-ink-soft);
}

/* Links */
.prose a {
  color: var(--c-brand);
  text-decoration: none;
  border-bottom: 1px solid rgba(15,118,110,.30);
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}
.prose a:hover {
  color: var(--c-accent);
  border-bottom-color: var(--c-accent);
  background-color: rgba(99,102,241,.06);
}

/* Header anchor links (markdown-it-anchor headerLink) */
.prose h2 > a, .prose h3 > a, .prose h4 > a {
  color: inherit;
  border-bottom: none;
}
.prose h3 > a:hover { color: var(--c-accent); }

/* Inline code */
.prose :not(pre) > code {
  font-family: var(--ff-mono);
  font-size: .9em;
  background: var(--c-inline-bg);
  color: var(--c-ink);
  padding: .12em .42em;
  border-radius: 5px;
  border: 0;
}

/* Code blocks */
.prose pre {
  position: relative;
  margin: 1.5rem 0;
  padding: 1.1rem 1.2rem;
  background: var(--c-code-bg);
  color: var(--c-ink);
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
  overflow-x: auto;
  font-family: var(--ff-mono);
  font-size: .88rem;
  line-height: 1.55;
  box-shadow: inset 0 1px 0 #fff;
}
.prose pre code {
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

/* Copy button */
.copy-btn {
  position: absolute;
  top: .55rem;
  right: .55rem;
  border: 1px solid var(--c-line);
  background: #fff;
  color: var(--c-ink-soft);
  font-size: .72rem;
  letter-spacing: .04em;
  padding: .25rem .55rem;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0;
  transition: opacity .15s ease, background-color .15s ease, color .15s ease, transform .15s ease;
}
.prose pre:hover .copy-btn, .copy-btn:focus { opacity: 1; }
.copy-btn:hover { background: var(--c-brand); color: #fff; border-color: var(--c-brand); transform: translateY(-1px); }
.copy-btn.is-copied { background: var(--c-ok); color: #fff; border-color: var(--c-ok); opacity: 1; }

/* Tables */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: #fff;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-sm);
}
.table-scroll table {
  border-collapse: collapse;
  width: 100%;
  min-width: 480px;
}
.table-scroll th, .table-scroll td {
  text-align: left;
  padding: .65rem .9rem;
  border-bottom: 1px solid var(--c-line-soft);
  font-size: .92rem;
}
.table-scroll thead th {
  background: linear-gradient(135deg, rgba(15,118,110,.07), rgba(99,102,241,.06));
  color: var(--c-ink);
  font-weight: 700;
  border-bottom: 1px solid var(--c-line);
}
.table-scroll tbody tr:nth-child(even) td { background: #fafbfd; }

/* Task lists */
.prose ul.contains-task-list,
.prose ul:has(> li > input.task-list-item-checkbox) {
  list-style: none;
  padding-left: 0;
}
.prose li.task-list-item,
.prose li:has(> input.task-list-item-checkbox) {
  list-style: none;
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: .55rem;
}
.prose li.task-list-item::marker,
.prose li:has(> input.task-list-item-checkbox)::marker { content: ""; }
.prose input.task-list-item-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--c-brand);
  border-radius: 4px;
  margin-top: .25rem;
  flex: none;
  cursor: pointer;
  transition: background-color .15s ease, transform .1s ease;
  background: #fff;
}
.prose input.task-list-item-checkbox:hover { transform: scale(1.05); }
.prose input.task-list-item-checkbox:checked {
  background: var(--c-brand);
  border-color: var(--c-brand);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23fff' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.prose li.is-checked,
.prose li:has(> input.task-list-item-checkbox:checked) {
  color: var(--c-muted);
  text-decoration: line-through;
}

/* Accordion (FAQ) */
.faq-accordion details {
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: #fff;
  margin: .75rem 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-accordion summary {
  cursor: pointer;
  padding: .9rem 1.1rem;
  list-style: none;
  font-weight: 600;
  color: var(--c-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background-color .15s ease;
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--c-brand);
  transition: transform .2s ease;
}
.faq-accordion details[open] summary::after { content: "−"; }
.faq-accordion summary:hover { background: var(--c-line-soft); }
.faq-accordion .faq-body {
  padding: 0 1.1rem 1rem;
  color: var(--c-ink-soft);
}
.faq-accordion .faq-body > * + * { margin-top: .75em; }

/* Mermaid container */
.prose .mermaid {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}

/* KaTeX adjustments */
.prose .katex-display {
  overflow-x: auto;
  overflow-y: hidden;
  padding: .25rem 0;
}

/* Footnotes */
.prose .footnotes {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--c-line);
  font-size: .9rem;
  color: var(--c-muted);
}

/* HR */
.prose hr {
  border: 0;
  height: 1px;
  background: var(--c-line);
  margin: 2.5rem 0;
}

/* ============================================================
   Front page
   ============================================================ */

.home-hero {
  text-align: center;
  padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(1rem, 3vw, 2rem);
}
.home-hero__logo {
  display: block;
  margin: 0 auto clamp(1rem, 2.5vw, 1.75rem);
  width: clamp(180px, 22vw, 280px);
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(15,118,110,.18));
  transition: transform .3s ease;
}
.home-hero__logo:hover { transform: translateY(-3px) rotate(-1deg); }
.home-hero__title {
  font-size: clamp(2rem, 1.4rem + 2.2vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 auto .65rem;
  max-width: 18ch;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-hero__lede {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.2rem);
  color: var(--c-ink-soft);
  max-width: 64ch;
  margin: 0 auto 1.5rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem auto;
  max-width: 1120px;
}
.cta {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1.05rem 1.2rem;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--c-ink);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(99,102,241,.35);
}
.cta__icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  color: #fff;
}
.cta__icon svg { width: 22px; height: 22px; }
.cta__icon--teal   { background: linear-gradient(135deg,#0f766e,#14b8a6); }
.cta__icon--sky    { background: linear-gradient(135deg,#0ea5e9,#06b6d4); }
.cta__icon--indigo { background: linear-gradient(135deg,#6366f1,#8b5cf6); }
.cta__icon--rose   { background: linear-gradient(135deg,#f43f5e,#fb7185); }
.cta__icon--amber  { background: linear-gradient(135deg,#d97706,#f59e0b); }
.cta__icon--emerald{ background: linear-gradient(135deg,#059669,#34d399); }
.cta__body { display: flex; flex-direction: column; gap: .15rem; }
.cta__title { font-weight: 700; line-height: 1.2; }
.cta__sub { font-size: .85rem; color: var(--c-muted); }

.home-section {
  margin: clamp(2rem, 4vw, 3.5rem) 0;
}
.home-section__title {
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  margin: 0 0 .5rem;
  color: var(--c-ink);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.home-section__intro {
  color: var(--c-ink-soft);
  max-width: 72ch;
  margin: 0 0 1.5rem;
}

.cluster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
}
.cluster-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.4rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.cluster-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14,165,233,.30);
}
.cluster-card h3 {
  margin: 0;
  font-size: 1.15rem;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cluster-card p { margin: 0; color: var(--c-ink-soft); font-size: .94rem; }
.cluster-card ul {
  list-style: none;
  padding: 0;
  margin: .25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-size: .92rem;
}
.cluster-card ul a {
  color: var(--c-brand);
  text-decoration: none;
  border-bottom: 1px dashed rgba(15,118,110,.35);
  transition: color .2s ease, border-color .2s ease;
}
.cluster-card ul a:hover { color: var(--c-accent); border-bottom-color: var(--c-accent); }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  flex: 0 0 auto;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  border-top: 1px solid var(--c-line);
  margin-top: 2rem;
}
.site-footer__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 1.75rem var(--gutter) 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 760px) {
  .site-footer__inner { grid-template-columns: 1fr; text-align: center; }
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.site-footer__name { font-weight: 700; color: var(--c-ink); }
.site-footer__desc { color: var(--c-muted); font-size: .9rem; }
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.2rem;
  justify-content: center;
}
.site-footer__nav a {
  color: var(--c-ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: .92rem;
  border-bottom: 1px dashed transparent;
  transition: color .2s ease, border-color .2s ease;
}
.site-footer__nav a:hover { color: var(--c-brand); border-bottom-color: var(--c-brand); }
.site-footer__meta {
  font-size: .85rem;
  color: var(--c-muted);
  text-align: right;
  display: flex;
  align-items: center;
  gap: .5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 760px) { .site-footer__meta { justify-content: center; } }
.site-footer__sep { color: var(--c-line); }

/* ============================================================
   Syntax highlight (PrismJS – light theme overrides)
   ============================================================ */

.token.comment, .token.prolog, .token.doctype, .token.cdata { color: #64748b; font-style: italic; }
.token.punctuation { color: #475569; }
.token.property, .token.tag, .token.boolean, .token.number, .token.constant, .token.symbol { color: #0f766e; }
.token.selector, .token.attr-name, .token.string, .token.char, .token.builtin, .token.inserted { color: #0ea5e9; }
.token.operator, .token.entity, .token.url, .language-css .token.string, .style .token.string { color: #6366f1; }
.token.atrule, .token.attr-value, .token.keyword { color: #7c3aed; font-weight: 600; }
.token.function, .token.class-name { color: #0f766e; font-weight: 600; }
.token.regex, .token.important, .token.variable { color: #d97706; }
.token.important, .token.bold { font-weight: 700; }
.token.italic { font-style: italic; }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
