/* ==========================================================================
   TeethCare PMS — design system
   Tokens → base → components → layout primitives. Dashboard/booking/calendar
   have their own sheets (dash.css, booking.css) that build on these tokens.
   ========================================================================== */

:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* brand (platform) */
  --brand-900: #0B3B38;
  --brand-800: #0F5A55;
  --brand-700: #0F766E;
  --brand-600: #0D9488;
  --brand-500: #14B8A6;
  --brand-400: #2DD4BF;
  --brand-100: #CCFBF1;
  --brand-50:  #F0FDFA;

  /* neutrals */
  --n-950: #0A0F14;
  --n-900: #111827;
  --n-800: #1F2937;
  --n-700: #374151;
  --n-600: #4B5563;
  --n-500: #6B7280;
  --n-400: #9CA3AF;
  --n-300: #D1D5DB;
  --n-200: #E5E7EB;
  --n-100: #F3F4F6;
  --n-50:  #F9FAFB;
  --white: #FFFFFF;

  /* semantic */
  --bg: var(--n-50);
  --surface: var(--white);
  --surface-2: var(--n-100);
  --text: var(--n-900);
  --text-2: var(--n-600);
  --text-3: var(--n-500);
  --border: var(--n-200);
  --border-2: var(--n-300);
  --primary: var(--brand-700);
  --primary-hover: var(--brand-800);
  --primary-soft: var(--brand-50);
  --primary-text: var(--white);
  --accent: var(--brand-500);
  --focus: 0 0 0 3px rgba(20, 184, 166, .35);

  --success: #15803D; --success-soft: #DCFCE7;
  --warning: #B45309; --warning-soft: #FEF3C7;
  --danger:  #B91C1C; --danger-soft:  #FEE2E2;
  --info:    #1D4ED8; --info-soft:    #DBEAFE;

  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 20px; --r-full: 999px;
  --sh-sm: 0 1px 2px rgba(16, 24, 40, .06);
  --sh-md: 0 4px 12px -2px rgba(16, 24, 40, .08), 0 2px 4px -2px rgba(16, 24, 40, .04);
  --sh-lg: 0 20px 40px -12px rgba(16, 24, 40, .18);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --dur: 160ms;
  --container: 1180px;
}

:root[data-theme="dark"] {
  --bg: #0B1015; --surface: #111820; --surface-2: #171F29;
  --text: #E5E7EB; --text-2: #9CA3AF; --text-3: #6B7280;
  --border: #1F2A37; --border-2: #2B3644;
  --primary: var(--brand-500); --primary-hover: var(--brand-400); --primary-soft: rgba(20,184,166,.12); --primary-text: #062B28;
  --success-soft: rgba(21,128,61,.18); --warning-soft: rgba(180,83,9,.18); --danger-soft: rgba(185,28,28,.18); --info-soft: rgba(29,78,216,.18);
  --sh-sm: none; --sh-md: 0 6px 16px rgba(0,0,0,.35); --sh-lg: 0 24px 48px rgba(0,0,0,.5);
}

/* ---- base --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font-sans); font-size: 15px; line-height: 1.55; color: var(--text);
  background: var(--bg); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 2px; }
h1, h2, h3, h4 { margin: 0 0 .5rem; line-height: 1.2; letter-spacing: -0.015em; font-weight: 650; color: var(--text); }
h1 { font-size: clamp(1.75rem, 2.5vw + 1rem, 2.75rem); }
h2 { font-size: clamp(1.4rem, 1.5vw + .9rem, 2rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }
p { margin: 0 0 1rem; }
small, .text-sm { font-size: .875rem; }
.text-xs { font-size: .78rem; }
.muted { color: var(--text-2); }
.muted-2 { color: var(--text-3); }
.mono { font-family: var(--font-mono); font-size: .9em; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
:focus-visible { outline: none; box-shadow: var(--focus); border-radius: var(--r-sm); }
::selection { background: var(--brand-100); color: var(--brand-900); }
hr { border: 0; border-top: 1px solid var(--border); margin: 1.5rem 0; }
code { font-family: var(--font-mono); font-size: .875em; background: var(--surface-2); padding: .1em .4em; border-radius: 4px; }
pre { font-family: var(--font-mono); font-size: .82rem; background: var(--n-900); color: #E5E7EB; padding: 1rem; border-radius: var(--r-md); overflow: auto; }

/* ---- layout primitives -------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 720px; }
.stack > * + * { margin-top: var(--gap, 1rem); }
.row { display: flex; align-items: center; gap: var(--gap, .75rem); }
.row-wrap { flex-wrap: wrap; }
.between { justify-content: space-between; }
.center { justify-content: center; }
.grid { display: grid; gap: var(--gap, 1rem); }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.g-auto { grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); }
.grow { flex: 1 1 auto; min-width: 0; }
.mt-0{margin-top:0!important}.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}.mt-6{margin-top:3rem}
.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}
.p-0{padding:0!important}
.w-full { width: 100%; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.hide { display: none !important; }
@media (max-width: 900px) { .g-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } .g-3 { grid-template-columns: repeat(2, minmax(0,1fr)); } .md-hide { display: none !important; } }
@media (max-width: 600px) { .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } .sm-hide { display: none !important; } .sm-stack { flex-direction: column; align-items: stretch; } }

/* ---- buttons ------------------------------------------------------------ */
.btn {
  --btn-bg: var(--surface); --btn-fg: var(--text); --btn-bd: var(--border-2);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 42px; padding: 0 1.1rem; border-radius: var(--r-md); border: 1px solid var(--btn-bd);
  background: var(--btn-bg); color: var(--btn-fg); font: inherit; font-weight: 560; font-size: .925rem; line-height: 1;
  cursor: pointer; text-decoration: none !important; white-space: nowrap; user-select: none;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn:hover { filter: brightness(.98); }
.btn:active { transform: translateY(1px); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; pointer-events: none; }
.btn-primary { --btn-bg: var(--primary); --btn-fg: var(--primary-text); --btn-bd: var(--primary); box-shadow: var(--sh-sm); }
.btn-primary:hover { --btn-bg: var(--primary-hover); --btn-bd: var(--primary-hover); filter: none; }
.btn-secondary { --btn-bg: var(--primary-soft); --btn-fg: var(--primary); --btn-bd: transparent; }
.btn-ghost { --btn-bg: transparent; --btn-bd: transparent; --btn-fg: var(--text-2); }
.btn-ghost:hover { --btn-bg: var(--surface-2); --btn-fg: var(--text); }
.btn-danger { --btn-bg: var(--danger); --btn-fg: #fff; --btn-bd: var(--danger); }
.btn-danger-soft { --btn-bg: var(--danger-soft); --btn-fg: var(--danger); --btn-bd: transparent; }
.btn-sm { min-height: 34px; padding: 0 .8rem; font-size: .85rem; border-radius: var(--r-sm); }
.btn-lg { min-height: 50px; padding: 0 1.5rem; font-size: 1rem; border-radius: var(--r-lg); }
.btn-block { width: 100%; }
.btn-icon { padding: 0; width: 38px; min-height: 38px; }
.btn .spinner { display: none; }
.btn.is-loading { pointer-events: none; opacity: .8; }
.btn.is-loading .spinner { display: inline-block; }
.btn.is-loading .btn-label { opacity: .6; }
.spinner { width: 16px; height: 16px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- forms -------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label, .label { font-size: .875rem; font-weight: 560; color: var(--text); }
.field .hint { font-size: .8rem; color: var(--text-3); }
.field .error { font-size: .8rem; color: var(--danger); }
.field.has-error .input, .field.has-error .select { border-color: var(--danger); }
.input, .select, .textarea {
  width: 100%; min-height: 42px; padding: .55rem .8rem; font: inherit; color: var(--text);
  background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--r-md);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--primary); box-shadow: var(--focus); }
.input::placeholder { color: var(--text-3); }
.textarea { min-height: 96px; resize: vertical; line-height: 1.5; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .7rem center; padding-right: 2.2rem; }
.input-sm { min-height: 36px; padding: .35rem .65rem; font-size: .9rem; }
.input-group { display: flex; }
.input-group .input { border-radius: var(--r-md) 0 0 var(--r-md); }
.input-group .btn { border-radius: 0 var(--r-md) var(--r-md) 0; margin-left: -1px; }
.check { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; cursor: pointer; }
.check input { width: 18px; height: 18px; margin: .1rem 0 0; accent-color: var(--primary); flex: none; }
.switch { position: relative; display: inline-flex; align-items: center; gap: .6rem; cursor: pointer; font-size: .9rem; }
.switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.switch .track { width: 40px; height: 22px; border-radius: var(--r-full); background: var(--n-300); transition: background var(--dur); position: relative; flex: none; }
.switch .track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: transform var(--dur) var(--ease); box-shadow: var(--sh-sm); }
.switch input:checked + .track { background: var(--primary); }
.switch input:checked + .track::after { transform: translateX(18px); }
.switch input:focus-visible + .track { box-shadow: var(--focus); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form-grid .span-2 { grid-column: span 2; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-grid .span-2 { grid-column: auto; } }
.form-actions { display: flex; gap: .75rem; justify-content: flex-end; align-items: center; padding-top: 1rem; border-top: 1px solid var(--border); margin-top: 1.5rem; }
.color-input { display: flex; align-items: center; gap: .6rem; }
.color-input input[type="color"] { width: 42px; height: 42px; padding: 3px; border: 1px solid var(--border-2); border-radius: var(--r-md); background: var(--surface); cursor: pointer; }

/* ---- cards / surfaces ---------------------------------------------------- */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-sm); }
.card-body { padding: 1.25rem; }
.card-header { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.card-header h3 { margin: 0; font-size: 1rem; }
.card-footer { padding: 1rem 1.25rem; border-top: 1px solid var(--border); background: var(--surface-2); border-radius: 0 0 var(--r-lg) var(--r-lg); }
.card-hover { transition: box-shadow var(--dur), transform var(--dur), border-color var(--dur); }
.card-hover:hover { box-shadow: var(--sh-md); transform: translateY(-1px); border-color: var(--border-2); }
.panel { background: var(--surface-2); border-radius: var(--r-md); padding: 1rem; }

/* ---- badges / pills ------------------------------------------------------ */
.badge { display: inline-flex; align-items: center; gap: .35rem; padding: .18rem .6rem; border-radius: var(--r-full); font-size: .75rem; font-weight: 600; letter-spacing: .01em; background: var(--surface-2); color: var(--text-2); white-space: nowrap; }
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .8; }
.badge-success { background: var(--success-soft); color: var(--success); }
.badge-warning { background: var(--warning-soft); color: var(--warning); }
.badge-danger  { background: var(--danger-soft);  color: var(--danger); }
.badge-info    { background: var(--info-soft);    color: var(--info); }
.badge-primary { background: var(--primary-soft); color: var(--primary); }
.badge-plain::before { display: none; }
/* appointment statuses */
.st-requested   { background: var(--warning-soft); color: var(--warning); }
.st-confirmed   { background: var(--info-soft); color: var(--info); }
.st-checked_in  { background: #EDE9FE; color: #6D28D9; }
.st-in_treatment{ background: #FCE7F3; color: #BE185D; }
.st-completed   { background: var(--success-soft); color: var(--success); }
.st-cancelled   { background: var(--n-100); color: var(--n-500); }
.st-no_show     { background: var(--danger-soft); color: var(--danger); }
.st-rescheduled { background: var(--n-100); color: var(--n-600); }

/* ---- alerts / toasts ------------------------------------------------------ */
.alert { display: flex; gap: .75rem; align-items: flex-start; padding: .85rem 1rem; border-radius: var(--r-md); border: 1px solid transparent; font-size: .9rem; }
.alert-info { background: var(--info-soft); color: var(--info); }
.alert-success { background: var(--success-soft); color: var(--success); }
.alert-warning { background: var(--warning-soft); color: var(--warning); }
.alert-danger { background: var(--danger-soft); color: var(--danger); }
.toasts { position: fixed; right: 16px; bottom: 16px; z-index: 1000; display: flex; flex-direction: column; gap: .5rem; max-width: min(380px, calc(100vw - 32px)); }
.toast { background: var(--n-900); color: #fff; padding: .8rem 1rem; border-radius: var(--r-md); box-shadow: var(--sh-lg); font-size: .9rem; display: flex; gap: .6rem; align-items: center; animation: toast-in .25s var(--ease); }
.toast-success { background: #14532D; } .toast-danger { background: #7F1D1D; } .toast-warning { background: #78350F; }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---- tables --------------------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); }
.table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.table th, .table td { padding: .75rem 1rem; text-align: left; border-bottom: 1px solid var(--border); vertical-align: middle; }
.table th { font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-3); font-weight: 600; background: var(--surface-2); white-space: nowrap; }
.table tbody tr:last-child td { border-bottom: 0; }
.table tbody tr:hover { background: var(--surface-2); }
.table .actions { text-align: right; white-space: nowrap; }
.table a.row-link { color: inherit; font-weight: 560; }

/* ---- avatar ---------------------------------------------------------------- */
.avatar { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--primary-soft); color: var(--primary); font-weight: 650; font-size: .8rem; flex: none; overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-lg { width: 56px; height: 56px; font-size: 1.1rem; }
.avatar-xl { width: 88px; height: 88px; font-size: 1.6rem; }

/* ---- modal ------------------------------------------------------------------ */
.modal { position: fixed; inset: 0; z-index: 900; display: none; align-items: center; justify-content: center; padding: 16px; background: rgba(10, 15, 20, .55); backdrop-filter: blur(2px); }
.modal.is-open { display: flex; }
.modal-box { width: 100%; max-width: 560px; max-height: calc(100vh - 32px); overflow: auto; background: var(--surface); border-radius: var(--r-xl); box-shadow: var(--sh-lg); animation: modal-in .2s var(--ease); }
.modal-lg { max-width: 820px; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--border); }
.modal-header h3 { margin: 0; }
.modal-body { padding: 1.4rem; }
.modal-footer { padding: 1rem 1.4rem; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: .75rem; }
@keyframes modal-in { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }

/* ---- tabs / nav pills -------------------------------------------------------- */
.tabs { display: flex; gap: .25rem; border-bottom: 1px solid var(--border); overflow-x: auto; }
.tabs a { padding: .7rem .9rem; color: var(--text-2); font-weight: 560; font-size: .9rem; border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; }
.tabs a:hover { color: var(--text); text-decoration: none; }
.tabs a.is-active { color: var(--primary); border-color: var(--primary); }
.seg { display: inline-flex; background: var(--surface-2); border-radius: var(--r-md); padding: 3px; gap: 2px; }
.seg a, .seg button { padding: .4rem .8rem; border-radius: 7px; font-size: .85rem; font-weight: 560; color: var(--text-2); border: 0; background: transparent; cursor: pointer; font-family: inherit; }
.seg .is-active { background: var(--surface); color: var(--text); box-shadow: var(--sh-sm); }

/* ---- empty state -------------------------------------------------------------- */
.empty { text-align: center; padding: 3rem 1.5rem; color: var(--text-2); }
.empty .ico { width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 16px; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.empty h3 { color: var(--text); margin-bottom: .25rem; }

/* ---- skeleton -------------------------------------------------------------------- */
.skel { background: linear-gradient(90deg, var(--surface-2) 25%, var(--border) 37%, var(--surface-2) 63%); background-size: 400% 100%; animation: skel 1.3s ease infinite; border-radius: var(--r-sm); min-height: 1em; }
@keyframes skel { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

/* ---- pagination ------------------------------------------------------------------- */
.pager { display: flex; gap: .35rem; align-items: center; justify-content: flex-end; padding: .75rem 0; font-size: .875rem; }
.pager a, .pager span { padding: .35rem .7rem; border-radius: var(--r-sm); border: 1px solid var(--border); color: var(--text-2); }
.pager .is-active { background: var(--primary); color: var(--primary-text); border-color: var(--primary); }

/* ---- error page --------------------------------------------------------------------- */
.tc-error-body { display: grid; place-items: center; min-height: 100vh; background: var(--bg); }
.tc-error { padding: 2rem 1rem; width: 100%; }
.tc-error__card { max-width: 520px; margin: 0 auto; text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 3rem 2rem; box-shadow: var(--sh-md); }
.tc-error__code { font-size: 4rem; font-weight: 800; letter-spacing: -.04em; color: var(--primary); line-height: 1; margin-bottom: .75rem; }
.tc-error__title { margin-bottom: .5rem; }
.tc-error__msg { color: var(--text-2); margin-bottom: 1.5rem; }
.tc-error__actions { display: flex; gap: .75rem; justify-content: center; }
.tc-error__debug { text-align: left; margin-top: 2rem; font-size: .75rem; }

/* ---- auth pages ------------------------------------------------------------------------ */
.auth { min-height: 100vh; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.auth-side { background: linear-gradient(160deg, var(--brand-900), var(--brand-700) 60%, var(--brand-600)); color: #fff; padding: 3rem; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.auth-side::after { content: ""; position: absolute; width: 520px; height: 520px; right: -180px; bottom: -220px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.14), transparent 65%); }
.auth-side h2 { color: #fff; font-size: 2rem; max-width: 20ch; }
.auth-side p { color: rgba(255,255,255,.8); max-width: 44ch; }
.auth-side ul { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .6rem; color: rgba(255,255,255,.9); }
.auth-side li { display: flex; gap: .6rem; align-items: center; }
.auth-side li::before { content: "✓"; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.18); display: inline-grid; place-items: center; font-size: .75rem; }
.auth-main { display: grid; place-items: center; padding: 2rem 1.25rem; }
.auth-box { width: 100%; max-width: 420px; }
.auth-box .brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; margin-bottom: 2rem; color: var(--text); text-decoration: none; }
.auth-box h1 { font-size: 1.65rem; margin-bottom: .35rem; }
.auth-box form { display: grid; gap: 1rem; margin-top: 1.5rem; }
.auth-foot { margin-top: 1.5rem; font-size: .9rem; color: var(--text-2); text-align: center; }
@media (max-width: 900px) { .auth { grid-template-columns: 1fr; } .auth-side { display: none; } }

/* ---- brand mark ---------------------------------------------------------------------------- */
.logo-mark { width: 34px; height: 34px; border-radius: 10px; background: var(--primary); color: #fff; display: inline-grid; place-items: center; font-weight: 800; letter-spacing: -.05em; }
.logo-word { font-weight: 720; letter-spacing: -.02em; }
.logo-word span { color: var(--primary); }

/* ---- utilities ------------------------------------------------------------------------------- */
.divider { display: flex; align-items: center; gap: 1rem; color: var(--text-3); font-size: .8rem; }
.divider::before, .divider::after { content: ""; flex: 1; border-top: 1px solid var(--border); }
.kbd { font-family: var(--font-mono); font-size: .75rem; padding: .1rem .4rem; border: 1px solid var(--border-2); border-bottom-width: 2px; border-radius: 5px; background: var(--surface); color: var(--text-2); }
.copy-field { display: flex; gap: .5rem; }
.copy-field .input { font-family: var(--font-mono); font-size: .85rem; }
.reveal { opacity: 0; transform: translateY(10px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }
