/* ============================================================
   Carbon Footprint Calculator — Style
   Art direction: nature/earth → clean, grounded, hopeful
   Palette: deep forest green accent on warm neutrals
   Typography: Satoshi (body) + Instrument Serif (display)
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

/* ── Tokens ── */
#ccarb-root {
    all: revert;
  --font-body:    'Satoshi', 'Helvetica Neue', sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;

  --text-xs:   clamp(0.75rem,  0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem + 2.5vw, 3.5rem);

  --space-1:  0.25rem; --space-2: 0.5rem;  --space-3: 0.75rem;
  --space-4:  1rem;    --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8:  2rem;    --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;

  --radius-sm: 0.375rem; --radius-md: 0.5rem;
  --radius-lg: 0.875rem; --radius-xl: 1.25rem; --radius-full: 9999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition: 200ms var(--ease-out);

  /* Light mode */
  --bg:        #f5f4f0;
  --surface:   #fafaf7;
  --surface-2: #ffffff;
  --surface-offset: #eeecea;
  --border:    oklch(0.35 0.01 80 / 0.13);
  --divider:   oklch(0.35 0.01 80 / 0.09);

  --text:      #1e1d18;
  --text-muted: #6b6a65;
  --text-faint: #b0afaa;
  --text-inv:  #f8f7f3;

  --primary:        #1a6b42;
  --primary-hover:  #155535;
  --primary-active: #0f3d26;
  --primary-hl:     #c5ddd1;
  --primary-pale:   #eaf3ed;

  --warn:  #c25b1a;
  --warn-hl: #f5e4d6;
  --danger: #b02a2a;
  --danger-hl: #f5dada;

  --shadow-sm: 0 1px 3px oklch(0.2 0.02 130 / 0.08);
  --shadow-md: 0 4px 16px oklch(0.2 0.02 130 / 0.10);
  --shadow-lg: 0 12px 40px oklch(0.2 0.02 130 / 0.14);
  --shadow-xl: 0 24px 60px oklch(0.2 0.02 130 / 0.18);
}

/* Dark mode */
#ccarb-root[data-theme="dark"],
@media (prefers-color-scheme: dark) {
  #ccarb-root:not([data-theme="light"]) {
    --bg:          #141513;
    --surface:     #1a1b18;
    --surface-2:   #1f201c;
    --surface-offset: #252620;
    --border:      oklch(0.9 0 0 / 0.10);
    --divider:     oklch(0.9 0 0 / 0.07);
    --text:        #e6e5e0;
    --text-muted:  #8a8983;
    --text-faint:  #4a4945;
    --text-inv:    #1a1b18;
    --primary:     #4aab77;
    --primary-hover: #3d9566;
    --primary-active:#317e55;
    --primary-hl:  #2a3d33;
    --primary-pale: #1e2d24;
    --warn:        #e8854a;
    --warn-hl:     #3a2418;
    --danger:      #e05555;
    --danger-hl:   #3a1818;
    --shadow-sm: 0 1px 3px #000 / 0.25;
    --shadow-md: 0 4px 16px oklch(0 0 0 / 0.35);
    --shadow-lg: 0 12px 40px oklch(0 0 0 / 0.45);
    --shadow-xl: 0 24px 60px oklch(0 0 0 / 0.55);
  }
}
#ccarb-root[data-theme="dark"] {
  --bg:          #141513;
  --surface:     #1a1b18;
  --surface-2:   #1f201c;
  --surface-offset: #252620;
  --border:      oklch(0.9 0 0 / 0.10);
  --divider:     oklch(0.9 0 0 / 0.07);
  --text:        #e6e5e0;
  --text-muted:  #8a8983;
  --text-faint:  #4a4945;
  --text-inv:    #1a1b18;
  --primary:     #4aab77;
  --primary-hover: #3d9566;
  --primary-active:#317e55;
  --primary-hl:  #2a3d33;
  --primary-pale: #1e2d24;
  --warn:        #e8854a;
  --warn-hl:     #3a2418;
  --danger:      #e05555;
  --danger-hl:   #3a1818;
  --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.25);
  --shadow-md: 0 4px 16px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 12px 40px oklch(0 0 0 / 0.45);
  --shadow-xl: 0 24px 60px oklch(0 0 0 / 0.55);
}

/* ── Base reset ── */
#ccarb-root *, #ccarb-root *::before, #ccarb-root *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
#ccarb-root {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  container-type: inline-size;
}
#ccarb-root input, #ccarb-root button, #ccarb-root select {
  font: inherit; color: inherit;
}
#ccarb-root button { cursor: pointer; border: none; background: none; }
#ccarb-root img, #ccarb-root svg { display: block; max-width: 100%; }

/* ── Card shell ── */
.ccarb-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 780px;
  margin: var(--space-8) auto;
  overflow: hidden;
}

/* ── Header ── */
.ccarb-header {
  background: linear-gradient(135deg in oklab,
    oklch(0.28 0.10 148) 0%,
    oklch(0.38 0.12 155) 55%,
    oklch(0.32 0.09 162) 100%);
  padding: var(--space-10) var(--space-8) var(--space-8);
  position: relative;
  overflow: hidden;
}
.ccarb-header::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3Ccircle cx='0' cy='0' r='20'/%3E%3Ccircle cx='60' cy='60' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.ccarb-header-inner { position: relative; z-index: 1; }
.ccarb-logo {
  display: flex; align-items: center; gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.ccarb-logo svg { color: #86efac; flex-shrink: 0; }
.ccarb-logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #d1fae5;
  font-style: italic;
  letter-spacing: -0.01em;
}
.ccarb-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}
.ccarb-subtitle {
  font-size: var(--text-sm);
  color: oklch(0.9 0.02 155 / 0.85);
  max-width: 52ch;
}

/* ── Progress bar ── */
.ccarb-progress {
  padding: var(--space-6) var(--space-8) 0;
  background: var(--surface);
}
.ccarb-progress-track {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.ccarb-step-dot {
  display: flex; align-items: center; gap: var(--space-2);
  flex: 1;
}
.ccarb-step-dot:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--divider);
  border-radius: var(--radius-full);
  transition: background 0.5s var(--ease-out);
}
.ccarb-step-dot.done:not(:last-child)::after { background: var(--primary); }
.ccarb-dot-circle {
  width: 32px; height: 32px;
  border-radius: var(--radius-full);
  background: var(--surface-offset);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s var(--ease-out);
  flex-shrink: 0;
  position: relative;
}
.ccarb-step-dot.active .ccarb-dot-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--primary) 20%, transparent);
}
.ccarb-step-dot.done .ccarb-dot-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.ccarb-step-label {
  display: none;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-muted);
}
.ccarb-step-dot.active .ccarb-step-label { color: var(--primary); }

@container (min-width: 520px) {
  .ccarb-step-label { display: block; }
}

/* ── Body ── */
.ccarb-body { padding: var(--space-8); }

/* ── Steps ── */
.ccarb-step {
  display: none;
  animation: stepIn 0.38s var(--ease-out) both;
}
.ccarb-step.active { display: block; }

@keyframes stepIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
.ccarb-step.leaving {
  animation: stepOut 0.25s var(--ease-in-out) both;
  display: block;
}
@keyframes stepOut {
  to { opacity: 0; transform: translateX(-24px); }
}

.ccarb-step-heading {
  display: flex; align-items: center; gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.ccarb-step-icon {
  width: 44px; height: 44px;
  background: var(--primary-pale);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.ccarb-step-h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.ccarb-step-sub {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ── Fields ── */
.ccarb-fields { display: grid; gap: var(--space-5); }
.ccarb-field { display: flex; flex-direction: column; gap: var(--space-2); }
.ccarb-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
  display: flex; align-items: center; gap: var(--space-2);
}
.ccarb-label-hint {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--text-muted);
}
.ccarb-select, .ccarb-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.ccarb-select-wrap {
  position: relative;
}
.ccarb-select-wrap::after {
  content: '';
  position: absolute;
  right: var(--space-4); top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--text-muted);
  pointer-events: none;
}
.ccarb-select:focus, .ccarb-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--primary) 18%, transparent);
}
.ccarb-input[type="range"] {
  padding: 0; border: none; background: transparent; box-shadow: none;
  accent-color: var(--primary);
  height: 6px;
  cursor: pointer;
}
.ccarb-range-row {
  display: flex; align-items: center; gap: var(--space-4);
}
.ccarb-range-val {
  min-width: 64px;
  padding: var(--space-2) var(--space-3);
  background: var(--primary-pale);
  border: 1.5px solid var(--primary-hl);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  white-space: nowrap;
  transition: background var(--transition);
}

/* ── Card choices ── */
.ccarb-choices {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(160px, 100%), 1fr));
  gap: var(--space-3);
}
.ccarb-choice {
  padding: var(--space-4) var(--space-3);
  background: var(--surface-2);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
  user-select: none;
}
.ccarb-choice:hover {
  border-color: var(--primary-hl);
  background: var(--primary-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.ccarb-choice.selected {
  border-color: var(--primary);
  background: var(--primary-pale);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--primary) 15%, transparent);
}
.ccarb-choice-emoji { font-size: 1.75rem; line-height: 1; }
.ccarb-choice-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.ccarb-choice-sub {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.3;
}

/* ── Two-col grid ── */
.ccarb-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
@container (max-width: 500px) {
  .ccarb-grid-2 { grid-template-columns: 1fr; }
}

/* ── Navigation buttons ── */
.ccarb-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--divider);
  gap: var(--space-4);
}
.ccarb-btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 44px;
  text-decoration: none;
}
.ccarb-btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.ccarb-btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.ccarb-btn-primary:active {
  background: var(--primary-active);
  transform: translateY(0);
}
.ccarb-btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}
.ccarb-btn-ghost:hover {
  background: var(--surface-offset);
  color: var(--text);
  border-color: color-mix(in oklab, var(--text) 30%, transparent);
}
.ccarb-btn svg { flex-shrink: 0; }
.ccarb-btn-calculate {
  background: linear-gradient(135deg in oklab, var(--primary) 0%, oklch(0.42 0.14 162) 100%);
  color: #fff;
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.ccarb-btn-calculate::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg in oklab, transparent, oklch(1 0 0 / 0.08));
}
.ccarb-btn-calculate:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ── Results ── */
.ccarb-results { display: none; }
.ccarb-results.active {
  display: block;
  animation: stepIn 0.5s var(--ease-out) both;
}

.ccarb-gauge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-8);
}
.ccarb-gauge {
  width: 240px; height: 140px;
  position: relative;
  margin-bottom: var(--space-4);
}
.ccarb-gauge svg { width: 100%; height: 100%; overflow: visible; }
.ccarb-gauge-val {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.ccarb-gauge-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
}
.ccarb-gauge-unit {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-1);
}
.ccarb-rating {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.ccarb-rating.excellent { background: #d1fae5; color: #065f46; }
.ccarb-rating.good      { background: #dcfce7; color: #166534; }
.ccarb-rating.average   { background: #fef9c3; color: #854d0e; }
.ccarb-rating.poor      { background: #fee2e2; color: #991b1b; }
.ccarb-rating.critical  { background: #ffe4e6; color: #9f1239; }

/* dark mode ratings */
#ccarb-root[data-theme="dark"] .ccarb-rating.excellent { background: #064e3b; color: #6ee7b7; }
#ccarb-root[data-theme="dark"] .ccarb-rating.good      { background: #14532d; color: #86efac; }
#ccarb-root[data-theme="dark"] .ccarb-rating.average   { background: #713f12; color: #fde68a; }
#ccarb-root[data-theme="dark"] .ccarb-rating.poor      { background: #7f1d1d; color: #fca5a5; }
#ccarb-root[data-theme="dark"] .ccarb-rating.critical  { background: #881337; color: #fda4af; }

/* ── Breakdown bars ── */
.ccarb-breakdown {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}
.ccarb-breakdown-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
}
.ccarb-bar-row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.ccarb-bar-label {
  font-size: var(--text-sm);
  font-weight: 500;
  display: flex; align-items: center; gap: var(--space-2);
}
.ccarb-bar-track {
  background: var(--surface-offset);
  border-radius: var(--radius-full);
  height: 8px;
  overflow: hidden;
}
.ccarb-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--primary);
  width: 0;
  transition: width 1.2s var(--ease-out);
}
.ccarb-bar-fill.transport { background: #3b82f6; }
.ccarb-bar-fill.home      { background: var(--warn); }
.ccarb-bar-fill.food      { background: #22c55e; }
.ccarb-bar-fill.shopping  { background: #a855f7; }
.ccarb-bar-val {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text-muted);
  min-width: 52px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* ── Comparison ── */
.ccarb-compare {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}
.ccarb-compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(130px, 100%), 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
}
.ccarb-compare-item {
  text-align: center;
  padding: var(--space-4) var(--space-3);
  background: var(--surface-offset);
  border-radius: var(--radius-lg);
}
.ccarb-compare-emoji { font-size: 1.5rem; margin-bottom: var(--space-2); }
.ccarb-compare-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-1);
}
.ccarb-compare-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.3;
}

/* ── Tips ── */
.ccarb-tips {
  background: var(--primary-pale);
  border: 1px solid var(--primary-hl);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}
.ccarb-tips-title {
  display: flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--primary);
  margin-bottom: var(--space-4);
  font-style: italic;
}
.ccarb-tip {
  display: flex; gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--primary-hl);
}
.ccarb-tip:last-child { border-bottom: none; }
.ccarb-tip-icon {
  width: 32px; height: 32px;
  background: color-mix(in oklab, var(--primary) 15%, transparent);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1rem;
}
.ccarb-tip-text {
  font-size: var(--text-sm);
  color: var(--text);
  line-height: 1.5;
}
.ccarb-tip-save {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--primary);
  margin-top: var(--space-1);
}

/* ── Theme toggle ── */
.ccarb-theme-toggle {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  z-index: 10;
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: oklch(1 0 0 / 0.15);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background var(--transition);
  border: 1px solid oklch(1 0 0 / 0.2);
}
.ccarb-theme-toggle:hover { background: oklch(1 0 0 / 0.25); }

/* ── Reset button ── */
.ccarb-reset-wrap { text-align: center; padding: var(--space-4) 0; }
.ccarb-btn-reset {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none; border: none; cursor: pointer;
  transition: color var(--transition);
}
.ccarb-btn-reset:hover { color: var(--text); }

/* ── Animated leaf particles ── */
.ccarb-leaves {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.ccarb-leaf {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0;
  animation: leafFall linear infinite;
}
@keyframes leafFall {
  0%   { transform: translateY(-20px) rotate(0deg);   opacity: 0.6; }
  100% { transform: translateY(120px) rotate(180deg); opacity: 0; }
}

/* ── Responsive adjustments ── */
@container (max-width: 460px) {
  .ccarb-header { padding: var(--space-8) var(--space-5) var(--space-6); }
  .ccarb-body   { padding: var(--space-6) var(--space-5); }
  .ccarb-progress { padding: var(--space-4) var(--space-5) 0; }
  .ccarb-title  { font-size: var(--text-xl); }
  .ccarb-bar-row { grid-template-columns: 90px 1fr auto; }
  .ccarb-nav { flex-wrap: wrap; }
  .ccarb-btn { width: 100%; justify-content: center; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  #ccarb-root *, #ccarb-root *::before, #ccarb-root *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}