/*
 * style.css — Civics Prep Quiz
 * Aesthetic: Modern learning platform (Duolingo-clean, dashboard-confident)
 * Font: Plus Jakarta Sans — geometric, contemporary, warm
 * Palette: Brand blue #2563EB · clean whites · proper grays
 */

/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  /* Brand */
  --blue:         #2563EB;
  --blue-600:     #1D4ED8;
  --blue-700:     #1E40AF;
  --blue-50:      #EFF6FF;
  --blue-100:     #DBEAFE;
  --blue-200:     #BFDBFE;
  --blue-300:     #93C5FD;

  /* Neutrals — cool-white base, not generic gray */
  --bg:           #F5F7FA;
  --surface:      #FFFFFF;
  --border:       #E2E8F0;
  --border-hover: #CBD5E1;

  /* Text */
  --text-primary:   #0F172A;
  --text-secondary: #475569;
  --text-muted:     #94A3B8;
  --text-on-blue:   #FFFFFF;

  /* Feedback */
  --green:        #16A34A;
  --green-50:     #F0FDF4;
  --green-200:    #BBF7D0;
  --red:          #DC2626;
  --red-50:       #FFF5F5;
  --red-200:      #FECACA;
  --amber:        #D97706;
  --amber-50:     #FFFBEB;
  --amber-200:    #FDE68A;

  /* Shape */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Shadow */
  --shadow-xs:  0 1px 2px rgba(15,23,42,.05);
  --shadow-sm:  0 1px 4px rgba(15,23,42,.07), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md:  0 4px 16px rgba(15,23,42,.08), 0 1px 4px rgba(15,23,42,.04);
  --shadow-lg:  0 12px 32px rgba(15,23,42,.10), 0 2px 8px rgba(15,23,42,.05);
  --shadow-blue:0 4px 14px rgba(37,99,235,.30);

  /* Type */
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Motion */
  --t-fast:  140ms;
  --t-base:  220ms;
  --t-slow:  380ms;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img   { display: block; max-width: 100%; }
ul    { list-style: none; }
button, input, fieldset { font-family: var(--font); }
fieldset { border: none; }

/* ═══════════════════════════════════════════
   SCREENS
═══════════════════════════════════════════ */
.screen { display: none; min-height: 100vh; flex-direction: column; }
.screen.active {
  display: flex;
  animation: screenReveal var(--t-slow) var(--ease) both;
}
@keyframes screenReveal {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   ① START SCREEN
═══════════════════════════════════════════ */
.start-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Brand bar */
.start-brand {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}
.brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* Content area */
.start-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 60px;
  gap: 36px;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}

/* Hero copy */
.start-copy { text-align: left; width: 100%; }

.start-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: var(--r-full);
  padding: 3px 11px;
  margin-bottom: 14px;
}

.start-heading {
  font-size: clamp(1.75rem, 6vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.start-body {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 400;
  max-width: 400px;
}

/* Form card */
.start-form {
  width: 100%;
  background: var(--surface);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Field */
.field { display: flex; flex-direction: column; gap: 7px; }
.field-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}
.field-input {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  color: var(--text-primary);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field-input:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.13);
}
.field-input::placeholder { color: var(--text-muted); }
.field-error {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--red);
  min-height: 1em;
}

/* Mode selector */
.mode-set-legend {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  display: block;
}
.mode-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mode-card { display: flex; cursor: pointer; }
.mode-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.mode-card-inner {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  transition:
    border-color var(--t-fast),
    background var(--t-fast),
    box-shadow var(--t-fast);
}
.mode-card:hover .mode-card-inner {
  border-color: var(--blue-300);
  background: var(--surface);
}
.mode-radio:checked + .mode-card-inner {
  border-color: var(--blue);
  background: var(--blue-50);
  box-shadow: 0 0 0 3px rgba(37,99,235,.10);
}
.mode-icon {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
.mode-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mode-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.mode-desc {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.3;
}
/* Custom checkmark — only visible when selected */
.mode-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.mode-check::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--blue);
  transform: scale(0);
  transition: transform var(--t-fast) var(--ease);
}
.mode-radio:checked + .mode-card-inner .mode-check {
  border-color: var(--blue);
}
.mode-radio:checked + .mode-card-inner .mode-check::after {
  transform: scale(1);
}

/* Start button */
.btn-start {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 24px;
  background: var(--blue);
  color: var(--text-on-blue);
  border: none;
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  transition:
    background var(--t-fast) var(--ease-io),
    box-shadow var(--t-fast) var(--ease-io),
    transform var(--t-fast) var(--ease);
}
.btn-start:hover {
  background: var(--blue-600);
  box-shadow: 0 6px 20px rgba(37,99,235,.38);
  transform: translateY(-1px);
}
.btn-start:active { transform: translateY(1px); box-shadow: var(--shadow-blue); }
.btn-start:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(37,99,235,.35); }
.btn-start:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ═══════════════════════════════════════════
   ② QUIZ SCREEN
═══════════════════════════════════════════ */

/* Header */
.qheader {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: var(--shadow-sm);
}
.qheader-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.qheader-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Timer pill */
.timer-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 5px 12px;
  white-space: nowrap;
  transition: color var(--t-base), border-color var(--t-base), background var(--t-base);
}
.timer-pill.warn {
  color: var(--amber);
  border-color: var(--amber-200);
  background: var(--amber-50);
}
.timer-pill.danger {
  color: var(--red);
  border-color: var(--red-200);
  background: var(--red-50);
  animation: pulse 1s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.6} }

/* Score pill */
.score-pill {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--r-full);
  padding: 5px 12px;
  white-space: nowrap;
}
.score-sep { color: var(--blue-300); margin: 0 1px; font-weight: 400; }

/* Progress strip */
.qprogress {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 8px 20px 10px;
}
.qprogress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.qprogress-label {
  font-size: 0.775rem;
  font-weight: 500;
  color: var(--text-muted);
}
.mode-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-full);
  padding: 2px 9px;
}
.qprogress-track {
  height: 6px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
}
.qprogress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-300) 100%);
  border-radius: var(--r-full);
  width: 0%;
  transition: width 0.5s var(--ease);
}

/* Question area */
.qmain {
  flex: 1;
  padding: 28px 20px 20px;
  display: flex;
  justify-content: center;
}
.qcard {
  width: 100%;
  max-width: 640px;
  animation: cardIn var(--t-base) var(--ease) both;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.qnum {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.qtext {
  font-size: clamp(1.05rem, 3.5vw, 1.2rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
  letter-spacing: -0.018em;
  margin-bottom: 20px;
}

/* Options */
.opts {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 16px;
}

.opt {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition:
    border-color var(--t-fast),
    background var(--t-fast),
    box-shadow var(--t-fast),
    transform var(--t-fast) var(--ease);
}
.opt:hover:not(.locked) {
  border-color: var(--blue-300);
  background: var(--blue-50);
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}
.opt:focus-visible {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.18);
}

/* Letter badge — square-ish, not circle */
.opt-letter {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: var(--r-sm);
  background: var(--bg);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.opt-text { flex: 1; }

/* ── State: hover pre-select ── */
.opt:hover:not(.locked) .opt-letter {
  border-color: var(--blue-300);
  color: var(--blue);
}

/* ── State: correct ── */
.opt.correct {
  border-color: var(--green);
  background: var(--green-50);
  box-shadow: 0 0 0 3px rgba(22,163,74,.09);
  transform: none;
}
.opt.correct .opt-letter {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* ── State: wrong ── */
.opt.wrong {
  border-color: var(--red);
  background: var(--red-50);
  box-shadow: 0 0 0 3px rgba(220,38,38,.08);
  transform: none;
}
.opt.wrong .opt-letter {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ── State: selected (before answer revealed) ── */
.opt.selected:not(.correct):not(.wrong) {
  border-color: var(--blue);
  background: var(--blue-50);
}
.opt.selected:not(.correct):not(.wrong) .opt-letter {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.opt.locked { cursor: default; transform: none !important; }

/* Feedback banner */
.feedback {
  display: none;
  padding: 11px 14px 11px 16px;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
}
.feedback.correct-fb {
  display: block;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-left: 3px solid var(--green);
  color: #14532D;
}
.feedback.wrong-fb {
  display: block;
  background: var(--red-50);
  border: 1px solid var(--red-200);
  border-left: 3px solid var(--red);
  color: #7F1D1D;
}

/* Quiz footer */
.qfooter {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 12px 20px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: sticky;
  bottom: 0;
  box-shadow: 0 -2px 8px rgba(15,23,42,.05);
}
.qfooter-right { display: flex; gap: 8px; }

.btn-quit {
  padding: 9px 16px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.btn-quit:hover {
  border-color: var(--border-hover);
  background: var(--bg);
  color: var(--text-primary);
}
.btn-quit:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(37,99,235,.2); }

.btn-next {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--blue);
  color: var(--text-on-blue);
  border: none;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(37,99,235,.25), inset 0 1px 0 rgba(255,255,255,.1);
  transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast) var(--ease);
}
.btn-next:hover:not(:disabled) {
  background: var(--blue-600);
  box-shadow: 0 4px 12px rgba(37,99,235,.32);
  transform: translateY(-1px);
}
.btn-next:active:not(:disabled) { transform: translateY(1px); }
.btn-next:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.btn-next:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(37,99,235,.32); }

/* ═══════════════════════════════════════════
   ③ RESULTS SCREEN
═══════════════════════════════════════════ */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}
.brand-logo-sm {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.rmain {
  flex: 1;
  padding: 24px 20px 56px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.rcard {
  width: 100%;
  max-width: 500px;
  background: var(--surface);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-top: 8px;
}

/* Top band */
.rcard-top {
  background: var(--blue-50);
  border-bottom: 1px solid var(--blue-100);
  padding: 28px 28px 20px;
  text-align: center;
}
.rtag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.rtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.028em;
  margin-bottom: 4px;
}
.rstudent {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Card body */
.rscore-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 28px auto 0;
}
.rscore-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ring-track {
  fill: none;
  stroke: var(--border);
  stroke-width: 10;
}
.ring-bar {
  fill: none;
  stroke: var(--blue);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 326;
  stroke-dashoffset: 326;
  transition: stroke-dashoffset 1.2s var(--ease);
}
.rscore-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.rscore-num {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
}
.rscore-unit {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 2px;
}

/* Stats */
.rstats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 24px;
}
.rstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 16px 8px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.rstat:last-child { border-right: none; }
.rstat-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.025em;
}
.rstat-correct .rstat-val { color: var(--green); }
.rstat-wrong   .rstat-val { color: var(--red); }
.rstat-key {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Bottom section */
.rmeta {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  padding: 14px 28px 0;
}
.rmessage {
  margin: 14px 24px 0;
  padding: 12px 16px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-left: 3px solid var(--blue);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}
.ractions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px 24px;
}

/* Result action buttons */
.btn-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 20px;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast) var(--ease);
}
.btn-action:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(37,99,235,.28); }
.btn-action:not(:disabled):active { transform: translateY(1px); }

.btn-action-primary {
  background: var(--blue);
  color: var(--text-on-blue);
  box-shadow: var(--shadow-blue);
}
.btn-action-primary:hover {
  background: var(--blue-600);
  box-shadow: 0 6px 18px rgba(37,99,235,.36);
  transform: translateY(-1px);
}

.btn-action-outline {
  background: var(--surface);
  color: var(--blue);
  border-color: var(--blue-200);
}
.btn-action-outline:hover {
  background: var(--blue-50);
  border-color: var(--blue-300);
}

.btn-action-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border);
}
.btn-action-ghost:hover {
  background: var(--bg);
  border-color: var(--border-hover);
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — DESKTOP
═══════════════════════════════════════════ */
@media (min-width: 600px) {
  .start-content  { padding-top: 52px; }
  .start-form     { padding: 32px; gap: 24px; }

  .qheader        { padding: 10px 32px; }
  .qprogress      { padding: 8px 32px 10px; }
  .qmain          { padding: 36px 32px 24px; }
  .qfooter        { padding: 14px 32px 18px; }

  .qtext          { font-size: 1.2rem; }
  .opt            { padding: 14px 18px; }

  .rmain          { padding-top: 28px; }
  .rcard          { margin-top: 0; }
  .rcard-top      { padding: 32px 40px 24px; }
  .rscore-wrap    { width: 156px; height: 156px; }
  .rscore-num     { font-size: 2.4rem; }
  .ractions       { padding: 20px 32px 32px; flex-direction: row; flex-wrap: wrap; }
  .btn-action     { flex: 1 1 140px; width: auto; }
}

@media (min-width: 768px) {
  .start-heading { font-size: 2.25rem; }
}

/* ═══════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
