/* ═══════════════════════════════════════════════════════════════════════════
   VERUM — theme.css v2
   Drop-in replacement. Design System 12: The Curated Diagnostic · Warm Teal
   Tokens sourced from DS12 colors_and_type.css. Components match existing
   call sites — no markup changes required for non-home pages.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Web fonts ──────────────────────────────────────────────────────────── */
/* Noto Serif + Manrope load via <link> per page.
   Material Symbols imported here so every page gets icons automatically. */
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

/* ── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  /* ── Color: primary (Warm Teal) ─────────────────────────────────── */
  --v-primary:                #00585e;
  --v-primary-container:      #00727a;
  --v-on-primary:             #ffffff;
  --v-on-primary-container:   #9ff4fc;
  --v-primary-fixed:          #9cf0f9;
  --v-primary-fixed-dim:      #7fd4dc;
  --v-on-primary-fixed:       #002022;
  --v-on-primary-fixed-var:   #004f55;
  --v-inverse-primary:        #7fd4dc;

  /* ── Color: secondary (Silver Ash) ──────────────────────────────── */
  --v-secondary:              #515f74;
  --v-secondary-container:    #d5e3fd;
  --v-on-secondary:           #ffffff;
  --v-on-secondary-container: #57657b;

  /* ── Color: tertiary ────────────────────────────────────────────── */
  --v-tertiary:               #415062;
  --v-tertiary-container:     #59687b;
  --v-on-tertiary:            #ffffff;
  --v-on-tertiary-container:  #d8e7fe;

  /* ── Color: surface tiers ───────────────────────────────────────── */
  --v-surface:                #f6fafe;
  --v-surface-low:            #f0f4f8;
  --v-surface-mid:            #eaeef2;
  --v-surface-high:           #e4e9ed;
  --v-surface-highest:        #dfe3e7;
  --v-surface-white:          #ffffff;
  --v-surface-dim:            #d6dade;
  --v-inverse-surface:        #2c3134;
  --v-inverse-on-surface:     #edf1f5;

  /* ── Color: foreground ──────────────────────────────────────────── */
  --v-on-surface:             #171c1f;
  --v-on-surface-variant:     #3e494a;
  --v-muted:                  #6e797a;

  /* ── Color: structural ──────────────────────────────────────────── */
  --v-outline-variant:        #bec9ca;
  --v-outline:                rgba(190, 201, 202, 0.15);
  --v-outline-focus:          #00585e;

  /* ── Color: status ──────────────────────────────────────────────── */
  --v-error:                  #ba1a1a;
  --v-error-container:        #ffdad6;
  --v-on-error:               #ffffff;
  --v-on-error-container:     #93000a;

  /* ── Shadows ────────────────────────────────────────────────────── */
  --v-shadow-card:       0 0 32px 0 rgba(23, 28, 31, 0.06);
  --v-shadow-card-soft:  0 4px 30px    rgba(0, 0, 0, 0.03);
  --v-shadow-modal:      0 0 48px 0 rgba(23, 28, 31, 0.06);
  --v-shadow-fab:        0 4px 16px rgba(0, 88, 94, 0.32);
  --v-shadow-nav-top:    0 8px 32px rgba(23, 28, 31, 0.06);
  --v-shadow-nav-bottom: 0 -8px 32px rgba(23, 28, 31, 0.06);
  --v-shadow-floating:   0 12px 40px -8px rgba(23, 28, 31, 0.18);

  /* ── Typography ─────────────────────────────────────────────────── */
  --v-font-serif: 'Noto Serif', Georgia, 'Times New Roman', serif;
  --v-font-sans:  'Manrope', 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --v-font-mono:  'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  --v-type-wordmark-size:     1.5rem;
  --v-type-wordmark-tracking: 0.15em;

  --v-type-display-lg-size:   clamp(2.5rem, 8vw, 6rem);
  --v-type-display-md-size:   clamp(2rem,   6vw, 3.5rem);
  --v-type-display-sm-size:   clamp(1.5rem, 4vw, 2.5rem);

  --v-type-serif-head-size:   1.5rem;
  --v-type-serif-sub-size:    1.0625rem;

  --v-type-title-lg-size:     1.25rem;
  --v-type-title-md-size:     1.125rem;
  --v-type-title-sm-size:     1rem;

  --v-type-body-lg-size:      1rem;
  --v-type-body-md-size:      0.9375rem;
  --v-type-body-sm-size:      0.875rem;
  --v-type-body-xs-size:      0.75rem;

  --v-type-label-size:        0.6875rem;
  --v-type-label-tracking:    0.08em;
  --v-type-label-xl-tracking: 0.2em;
  --v-type-label-size-micro:  0.625rem;

  --v-type-metric-lg-size:    3rem;
  --v-type-metric-md-size:    1.5rem;

  --v-lh-tight:   1.15;
  --v-lh-snug:    1.3;
  --v-lh-normal:  1.55;
  --v-lh-relaxed: 1.65;

  /* ── Spacing (4px base) ─────────────────────────────────────────── */
  --v-space-1:  0.25rem;
  --v-space-2:  0.5rem;
  --v-space-3:  0.75rem;
  --v-space-4:  1rem;
  --v-space-5:  1.25rem;
  --v-space-6:  1.5rem;
  --v-space-8:  2rem;
  --v-space-10: 2.5rem;
  --v-space-12: 3rem;
  --v-space-16: 4rem;
  --v-space-24: 6rem;

  /* ── Radius — minimum 16px, NEVER square edges ──────────────────── */
  --v-radius-sm:   1rem;
  --v-radius:      1.125rem;
  --v-radius-md:   1.25rem;
  --v-radius-lg:   1.5rem;
  --v-radius-xl:   1.75rem;
  --v-radius-2xl:  2rem;
  --v-radius-full: 9999px;

  /* ── Motion ─────────────────────────────────────────────────────── */
  --v-ease:         0.15s ease;
  --v-ease-slow:    0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --v-ease-long:    0.7s cubic-bezier(0.22, 1, 0.36, 1);

  /* ── Gradients ──────────────────────────────────────────────────── */
  --v-grad-primary:        linear-gradient(135deg, var(--v-primary) 0%, var(--v-primary-container) 100%);
  --v-grad-insight:        linear-gradient(145deg, #00727a 0%, #00585e 100%);
  --v-grad-radial-accent:  radial-gradient(circle at top right, rgba(159, 244, 252, 0.10) 0%, transparent 60%);

  /* ── Glass ──────────────────────────────────────────────────────── */
  --v-glass-bg:   rgba(246, 250, 254, 0.80);
  --v-glass-blur: blur(20px);
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  height: 100%;
}
body {
  font-family: var(--v-font-sans);
  background: var(--v-surface);
  color: var(--v-on-surface);
  font-size: var(--v-type-body-md-size);
  line-height: var(--v-lh-relaxed);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ── Material Symbols base ──────────────────────────────────────────────── */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: 'liga';
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Typography utilities
   ═══════════════════════════════════════════════════════════════════════════ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--v-font-serif);
  color: var(--v-on-surface);
  font-weight: 600;
  line-height: var(--v-lh-tight);
}

.v-wordmark {
  font-family: var(--v-font-serif);
  font-weight: 700;
  font-size: var(--v-type-wordmark-size);
  letter-spacing: var(--v-type-wordmark-tracking);
  text-transform: uppercase;
  color: var(--v-primary);
  text-decoration: none;
}

.v-display    { font-family: var(--v-font-serif); font-weight: 600; line-height: var(--v-lh-tight); color: var(--v-on-surface); }
.v-display-lg { font-family: var(--v-font-serif); font-weight: 700; font-size: var(--v-type-display-lg-size); line-height: var(--v-lh-tight); }
.v-display-md { font-family: var(--v-font-serif); font-weight: 600; font-size: var(--v-type-display-md-size); line-height: var(--v-lh-tight); letter-spacing: -0.01em; }
.v-display-sm { font-family: var(--v-font-serif); font-weight: 600; font-size: var(--v-type-display-sm-size); line-height: var(--v-lh-tight); }
.v-display-italic { font-family: var(--v-font-serif); font-style: italic; font-weight: 400; }

.v-serif-head { font-family: var(--v-font-serif); font-weight: 600; font-size: var(--v-type-serif-head-size); line-height: var(--v-lh-snug); color: var(--v-primary); }
.v-serif-sub  { font-family: var(--v-font-serif); font-weight: 600; font-size: var(--v-type-serif-sub-size); line-height: var(--v-lh-snug); }
.v-serif      { font-family: var(--v-font-serif); }

.v-title-lg { font-size: var(--v-type-title-lg-size); font-weight: 700; line-height: var(--v-lh-snug); }
.v-title-md { font-size: var(--v-type-title-md-size); font-weight: 600; line-height: var(--v-lh-normal); }
.v-title-sm { font-size: var(--v-type-title-sm-size); font-weight: 600; line-height: var(--v-lh-normal); }

.v-body-lg  { font-size: var(--v-type-body-lg-size); font-weight: 400; line-height: var(--v-lh-relaxed); }
.v-body-md  { font-size: var(--v-type-body-md-size); font-weight: 400; line-height: var(--v-lh-relaxed); }
.v-body-sm  { font-size: var(--v-type-body-sm-size); font-weight: 400; line-height: var(--v-lh-normal); }
.v-body-xs  { font-size: var(--v-type-body-xs-size); font-weight: 400; line-height: var(--v-lh-normal); }

.v-label {
  font-family: var(--v-font-sans);
  font-size: var(--v-type-label-size);
  font-weight: 700;
  letter-spacing: var(--v-type-label-tracking);
  text-transform: uppercase;
  color: var(--v-primary);
}
.v-label-xl {
  font-family: var(--v-font-sans);
  font-size: var(--v-type-body-xs-size);
  font-weight: 700;
  letter-spacing: var(--v-type-label-xl-tracking);
  text-transform: uppercase;
  color: var(--v-primary);
}
.v-label-micro {
  font-family: var(--v-font-sans);
  font-size: var(--v-type-label-size-micro);
  font-weight: 700;
  letter-spacing: var(--v-type-label-tracking);
  text-transform: uppercase;
  color: var(--v-muted);
}

.v-metric-lg {
  font-family: var(--v-font-sans);
  font-weight: 800;
  font-size: var(--v-type-metric-lg-size);
  letter-spacing: -0.02em;
  color: var(--v-primary);
  line-height: 1;
}
.v-metric-md {
  font-family: var(--v-font-serif);
  font-weight: 600;
  font-size: var(--v-type-metric-md-size);
  color: var(--v-on-surface);
  line-height: 1.1;
}

.v-quote {
  font-family: var(--v-font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--v-on-surface-variant);
  line-height: var(--v-lh-relaxed);
}

.v-mono {
  font-family: var(--v-font-mono);
  font-size: var(--v-type-body-sm-size);
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Layout containers
   ═══════════════════════════════════════════════════════════════════════════ */

.v-container        { max-width: 1200px; margin: 0 auto; padding: 0 var(--v-space-6); }
.v-container-narrow { max-width: 720px;  margin: 0 auto; padding: 0 var(--v-space-6); }
@media (max-width: 640px) {
  .v-container, .v-container-narrow { padding: 0 var(--v-space-4); }
}

.v-surface       { background: var(--v-surface); }
.v-surface-low   { background: var(--v-surface-low); }
.v-surface-mid   { background: var(--v-surface-mid); }
.v-surface-white { background: var(--v-surface-white); }

/* ═══════════════════════════════════════════════════════════════════════════
   Cards
   ═══════════════════════════════════════════════════════════════════════════ */

.v-card {
  background: var(--v-surface-white);
  border-radius: var(--v-radius-lg);
  padding: var(--v-space-8);
  box-shadow: var(--v-shadow-card);
  position: relative;
  overflow: hidden;
}
.v-card-sm {
  background: var(--v-surface-white);
  border-radius: var(--v-radius-lg);
  padding: var(--v-space-6);
  box-shadow: var(--v-shadow-card);
  position: relative;
  overflow: hidden;
}
.v-card-accent::before {
  content: '';
  position: absolute;
  top: -2rem; right: -2rem;
  width: 8rem; height: 8rem;
  border-radius: 50% 0 0 50%;
  background: color-mix(in srgb, var(--v-primary) 5%, transparent);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   INSIGHT PANEL — dark editorial gradient (brand signature)
   ═══════════════════════════════════════════════════════════════════════════ */

.v-insight {
  background: var(--v-grad-insight);
  border-radius: var(--v-radius-lg);
  padding: var(--v-space-6);
  color: var(--v-on-primary);
  position: relative;
  overflow: hidden;
}
.v-insight::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--v-grad-radial-accent);
  pointer-events: none;
}
.v-insight > * { position: relative; z-index: 1; }

.v-insight .v-insight-glyph {
  position: absolute;
  right: -1rem; bottom: -1rem;
  font-size: 7rem;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.v-insight-label {
  display: inline-flex;
  align-items: center;
  gap: var(--v-space-2);
  font-family: var(--v-font-sans);
  font-size: var(--v-type-body-xs-size);
  font-weight: 700;
  letter-spacing: var(--v-type-label-xl-tracking);
  text-transform: uppercase;
  color: var(--v-on-primary-container);
  background: rgba(255, 255, 255, 0.08);
  padding: var(--v-space-1) var(--v-space-3);
  border-radius: var(--v-radius-sm);
  margin-bottom: var(--v-space-3);
}
.v-insight-title {
  font-family: var(--v-font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--v-on-primary);
  line-height: var(--v-lh-snug);
  margin-bottom: var(--v-space-2);
}
.v-insight .v-muted { color: rgba(159, 244, 252, 0.82); }
.v-insight .v-label { color: rgba(159, 244, 252, 0.70); }
.v-insight-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--v-space-2);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--v-on-primary);
  padding: var(--v-space-3) var(--v-space-4);
  border-radius: var(--v-radius);
  font-size: var(--v-type-label-size);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--v-ease);
  cursor: pointer;
  margin-top: var(--v-space-3);
}
.v-insight-cta:hover { background: rgba(255, 255, 255, 0.18); }

/* ═══════════════════════════════════════════════════════════════════════════
   Buttons
   ═══════════════════════════════════════════════════════════════════════════ */

.v-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--v-space-2);
  border: none;
  border-radius: var(--v-radius);
  font-family: var(--v-font-sans);
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--v-ease);
  white-space: nowrap;
}
.v-btn:hover    { opacity: 0.88; }
.v-btn:disabled { opacity: 0.4; cursor: default; }

.v-btn-primary {
  background: var(--v-grad-primary);
  color: var(--v-on-primary);
  padding: var(--v-space-3) var(--v-space-6);
  font-size: 0.9375rem;
}
.v-btn-primary-lg {
  padding: var(--v-space-4) var(--v-space-8);
  font-size: 1rem;
}
.v-btn-secondary {
  background: var(--v-surface-high);
  color: var(--v-primary);
  padding: var(--v-space-3) var(--v-space-6);
  font-size: 0.9375rem;
}
.v-btn-tertiary {
  background: none;
  color: var(--v-primary);
  padding: var(--v-space-2) var(--v-space-3);
  font-size: var(--v-type-body-sm-size);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  transition: border-color var(--v-ease);
}
.v-btn-tertiary:hover { border-bottom-color: var(--v-primary-container); }

/* ═══════════════════════════════════════════════════════════════════════════
   Inputs
   ═══════════════════════════════════════════════════════════════════════════ */

.v-input {
  width: 100%;
  background: var(--v-surface-low);
  border: none;
  border-bottom: 1px solid var(--v-outline);
  border-radius: var(--v-radius);
  padding: var(--v-space-3) var(--v-space-4);
  font-family: var(--v-font-sans);
  font-size: 1rem;
  color: var(--v-on-surface);
  outline: none;
  transition: border-color var(--v-ease);
}
.v-input:focus        { border-bottom: 2px solid var(--v-outline-focus); }
.v-input::placeholder { color: var(--v-muted); }

/* ═══════════════════════════════════════════════════════════════════════════
   Chips
   ═══════════════════════════════════════════════════════════════════════════ */

.v-chip {
  display: inline-flex;
  align-items: center;
  padding: var(--v-space-1) var(--v-space-3);
  background: var(--v-secondary-container);
  color: var(--v-on-secondary-container);
  border-radius: var(--v-radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  border: none;
  white-space: nowrap;
  cursor: default;
}
.v-chip-primary {
  background: var(--v-primary);
  color: var(--v-on-primary);
}
.v-chip-teal {
  background: color-mix(in srgb, var(--v-primary) 12%, white);
  color: var(--v-primary);
}
.v-chip-interactive {
  cursor: pointer;
  transition: opacity var(--v-ease);
}
.v-chip-interactive:hover { opacity: 0.8; }

/* ═══════════════════════════════════════════════════════════════════════════
   Glass
   ═══════════════════════════════════════════════════════════════════════════ */

.v-glass {
  background: var(--v-glass-bg);
  backdrop-filter: var(--v-glass-blur);
  -webkit-backdrop-filter: var(--v-glass-blur);
}

/* ═══════════════════════════════════════════════════════════════════════════
   Top nav
   ═══════════════════════════════════════════════════════════════════════════ */

#v-topnav {
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--v-shadow-nav-top);
}
.v-topnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
}
.v-topnav-links {
  display: flex;
  align-items: center;
  gap: var(--v-space-8);
}
.v-topnav-links a {
  font-size: var(--v-type-body-sm-size);
  font-weight: 500;
  color: var(--v-muted);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color var(--v-ease), border-color var(--v-ease);
}
.v-topnav-links a:hover { color: var(--v-primary); }
.v-topnav-links a.active {
  color: var(--v-primary);
  border-bottom-color: var(--v-primary);
}
@media (max-width: 768px) {
  .v-topnav-links, .v-topnav-cta { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BOTTOM TAB BAR — floating pill, mobile only (v2: inset, full radius)
   ═══════════════════════════════════════════════════════════════════════════ */

#v-bottomnav {
  position: fixed;
  bottom: calc(env(safe-area-inset-bottom) + var(--v-space-3));
  left: var(--v-space-4);
  right: var(--v-space-4);
  z-index: 200;
  display: none;
  justify-content: space-around;
  align-items: stretch;
  padding: var(--v-space-2);
  gap: var(--v-space-1);
  background: var(--v-glass-bg);
  backdrop-filter: var(--v-glass-blur);
  -webkit-backdrop-filter: var(--v-glass-blur);
  border-radius: var(--v-radius-2xl);
  box-shadow: var(--v-shadow-floating);
}
@media (max-width: 768px) { #v-bottomnav { display: flex; } }

.v-bottomnav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: var(--v-space-2) var(--v-space-1);
  color: var(--v-muted);
  text-decoration: none;
  font-size: var(--v-type-label-size-micro);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--v-radius-xl);
  border: none;
  background: none;
  transition: background var(--v-ease), color var(--v-ease), transform var(--v-ease);
}
.v-bottomnav-item:hover { color: var(--v-primary); }
.v-bottomnav-item:active { transform: scale(0.94); }
.v-bottomnav-item.active {
  color: var(--v-on-primary);
  background: var(--v-primary);
}
.v-bottomnav-item.active .material-symbols-outlined {
  font-variation-settings: 'FILL' 1, 'wght' 400;
}
.v-bottomnav-item .material-symbols-outlined { font-size: 22px; }

/* ═══════════════════════════════════════════════════════════════════════════
   FAB — Ask V trigger
   ═══════════════════════════════════════════════════════════════════════════ */

#v-fab {
  position: fixed;
  z-index: 300;
  bottom: calc(env(safe-area-inset-bottom) + 5.5rem);
  right: var(--v-space-6);
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--v-grad-primary);
  color: var(--v-on-primary);
  border: none;
  font-family: var(--v-font-serif);
  font-weight: 700;
  font-size: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--v-shadow-fab);
  transition: transform var(--v-ease), box-shadow var(--v-ease);
}
#v-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(0, 88, 94, 0.42);
}
@media (min-width: 769px) {
  #v-fab { bottom: var(--v-space-8); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Page body — clears the floating tab bar on mobile
   ═══════════════════════════════════════════════════════════════════════════ */

.v-page {
  padding-bottom: calc(6rem + env(safe-area-inset-bottom));
}
@media (min-width: 769px) {
  .v-page { padding-bottom: var(--v-space-16); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Utilities
   ═══════════════════════════════════════════════════════════════════════════ */

.v-fg1   { color: var(--v-on-surface); }
.v-fg2   { color: var(--v-on-surface-variant); }
.v-fg3   { color: var(--v-muted); }
.v-teal        { color: var(--v-primary); }
.v-teal-bright { color: var(--v-primary-container); }
.v-accent-bright { color: var(--v-primary-fixed-dim); }
.v-muted       { color: var(--v-muted); }
.v-stack       { display: flex; flex-direction: column; }
.v-row         { display: flex; align-items: center; }
.v-gap-2       { gap: var(--v-space-2); }
.v-gap-3       { gap: var(--v-space-3); }
.v-gap-4       { gap: var(--v-space-4); }
.v-gap-6       { gap: var(--v-space-6); }
.v-wrap        { flex-wrap: wrap; }
.sr-only       { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* DEPRECATED — kept so existing markup doesn't crash; remove <hr class="v-divider"> per VISUAL_DNA.md §6 */
.v-divider {
  border: none;
  border-top: 1px solid var(--v-outline);
  margin: var(--v-space-6) 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Motion — respect prefers-reduced-motion
   ═══════════════════════════════════════════════════════════════════════════ */

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