/* ============================================================
   My Recipe Book — modern, clean visual system (tzatziki palette)
   ============================================================ */

:root {
  --bg: #f0f4e8;          /* airy green-cream */
  --surface: #ffffff;     /* clean white cards */
  --surface-2: #f6f9ef;   /* subtly raised */
  --ink: #212a1b;         /* deep green-black */
  --ink-soft: #616d57;    /* muted olive */
  --ink-faint: #97a288;   /* hints */
  --line: #e6ebd8;        /* hairline */
  --brand: #4c7a3e;       /* cucumber green */
  --brand-strong: #3c6431;
  --brand-ink: #35592b;   /* green text on tint */
  --brand-soft: #e7f0da;  /* green tint surface */
  --accent: #cf9a41;      /* honey */
  --accent-soft: #f6ebd4;
  --danger: #bf5942;
  --ok: #4c7a3e;
  --on-brand: #fbfdf6;
  --shadow-sm: 0 1px 2px rgba(38, 52, 28, 0.06);
  --shadow: 0 6px 22px rgba(38, 52, 28, 0.08);
  --shadow-lg: 0 16px 40px rgba(38, 52, 28, 0.16);
  --r-lg: 22px; --r: 15px; --r-sm: 11px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}
:root[data-theme="dark"] {
  --bg: #12160f; --surface: #1c2118; --surface-2: #232a1e;
  --ink: #edf1e2; --ink-soft: #a4ac93; --ink-faint: #79826a;
  --line: #2e3626; --brand: #86b56c; --brand-strong: #6f9a57; --brand-ink: #b6d3a0;
  --brand-soft: #26301d; --accent: #e0b45f; --accent-soft: #33301e;
  --danger: #d9836a; --ok: #86b56c; --on-brand: #10160c;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.3); --shadow: 0 6px 22px rgba(0,0,0,.4); --shadow-lg: 0 16px 40px rgba(0,0,0,.55);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --bg: #12160f; --surface: #1c2118; --surface-2: #232a1e;
    --ink: #edf1e2; --ink-soft: #a4ac93; --ink-faint: #79826a;
    --line: #2e3626; --brand: #86b56c; --brand-strong: #6f9a57; --brand-ink: #b6d3a0;
    --brand-soft: #26301d; --accent: #e0b45f; --accent-soft: #33301e;
    --danger: #d9836a; --ok: #86b56c; --on-brand: #10160c;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.3); --shadow: 0 6px 22px rgba(0,0,0,.4); --shadow-lg: 0 16px 40px rgba(0,0,0,.55);
  }
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 16px; line-height: 1.55;
  padding-bottom: calc(78px + env(safe-area-inset-bottom));
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
svg { display: block; }
.svg-ic { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Header ---------- */
.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 6px;
  padding: max(env(safe-area-inset-top), 12px) 12px 12px;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}
.topbar h1 {
  flex: 1; margin: 0 4px; font-size: 20px; font-weight: 700;
  letter-spacing: -0.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.icon-btn {
  border: none; background: transparent; color: var(--ink);
  width: 42px; height: 42px; border-radius: 50%;
  cursor: pointer; display: grid; place-items: center; transition: background .15s, transform .1s;
}
.icon-btn:active { background: var(--line); transform: scale(0.92); }

main { max-width: 640px; margin: 0 auto; padding: 8px 16px 24px; }

.muted { color: var(--ink-soft); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
button { font-family: inherit; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 14px; padding: 15px 18px;
  font-size: 16px; font-weight: 600; cursor: pointer; width: 100%;
  background: var(--surface); color: var(--ink); transition: transform .1s, background .15s, box-shadow .15s;
}
.btn:active { transform: scale(0.985); }
.btn.primary { background: var(--brand); color: var(--on-brand); border-color: transparent; box-shadow: 0 6px 16px color-mix(in srgb, var(--brand) 38%, transparent); }
.btn.primary:active { background: var(--brand-strong); }
.btn.ghost { background: transparent; border-color: transparent; color: var(--ink-soft); box-shadow: none; }
.btn.ghost:active { background: var(--line); }
.btn.danger { color: var(--danger); border-color: color-mix(in srgb, var(--danger) 32%, var(--line)); background: transparent; }
.btn.small { width: auto; padding: 11px 16px; font-size: 15px; border-radius: 12px; }
.btn-row { display: flex; gap: 10px; }
.btn-row .btn { flex: 1; }
.stack > * + * { margin-top: 10px; }

/* ---------- FAB ---------- */
.fab {
  position: fixed; right: 18px; bottom: calc(84px + env(safe-area-inset-bottom));
  width: 60px; height: 60px; border-radius: 20px;
  background: var(--brand); color: var(--on-brand); border: none;
  display: grid; place-items: center; cursor: pointer; z-index: 30;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--brand) 45%, transparent);
  transition: transform .12s;
}
.fab .svg-ic { width: 28px; height: 28px; stroke-width: 2.4; }
.fab:active { transform: scale(0.9) rotate(90deg); }

/* ---------- Bottom tab bar ---------- */
.tabbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 25;
  display: flex; justify-content: center; gap: 6px;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-top: 1px solid var(--line);
}
.tab {
  flex: 1; max-width: 160px; border: none; background: transparent; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 7px 4px 5px; border-radius: 14px; color: var(--ink-faint);
  font-size: 11px; font-weight: 600; transition: color .15s;
}
.tab .svg-ic { width: 25px; height: 25px; stroke-width: 1.9; transition: transform .15s; }
.tab.active { color: var(--brand); }
.tab.active .svg-ic { transform: translateY(-1px) scale(1.05); }
body.typing .tabbar { display: none; }
body.typing { padding-bottom: 20px; }

/* ---------- Recipe list ---------- */
.recipe-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border-radius: var(--r); padding: 11px;
  margin-bottom: 11px; box-shadow: var(--shadow-sm); cursor: pointer;
  transition: transform .12s, box-shadow .2s; border: 1px solid var(--line);
}
.recipe-card:active { transform: scale(0.99); box-shadow: var(--shadow); }
.thumb {
  width: 66px; height: 66px; border-radius: 12px; flex: none;
  object-fit: cover; background: var(--brand-soft);
  display: grid; place-items: center; font-size: 30px; color: var(--brand);
}
.recipe-card .meta { min-width: 0; flex: 1; }
.recipe-card .meta h3 { margin: 0 0 3px; font-size: 17px; font-weight: 700; letter-spacing: -0.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.recipe-card .meta p { margin: 0; font-size: 13.5px; color: var(--ink-faint); }
.recipe-card .chev { color: var(--ink-faint); flex: none; }

.list-title { font-family: var(--serif); font-size: 27px; font-weight: 600; letter-spacing: -0.01em; margin: 6px 4px 16px; }

/* ---------- Empty state ---------- */
.empty { text-align: center; padding: 48px 24px; color: var(--ink-soft); }
.empty .emoji { font-size: 60px; margin-bottom: 10px; }
.empty h2 { color: var(--ink); margin: 8px 0; font-family: var(--serif); font-weight: 600; font-size: 24px; }
.empty p { margin: 6px 0; }

/* ---------- Forms ---------- */
label.field { display: block; margin: 0 0 15px; }
label.field > span { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin: 0 0 7px 2px; }
input[type=text], textarea {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line); border-radius: 13px;
  padding: 13px 15px; resize: vertical; transition: border-color .15s, box-shadow .15s;
}
input[type=text]:focus, textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 15%, transparent);
}
textarea { min-height: 56px; line-height: 1.55; }
.hint { font-size: 13.5px; color: var(--ink-soft); margin: 8px 2px 14px; line-height: 1.5; }

/* ---------- Capture ---------- */
.capture-box { position: relative; }
#rawText, #discQ, #eChange { font-size: 17px; }
#rawText { min-height: 170px; }
.mic-btn {
  position: absolute; right: 12px; bottom: 12px;
  width: 52px; height: 52px; border-radius: 50%; border: none;
  background: var(--brand); color: var(--on-brand); font-size: 22px; cursor: pointer;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--brand) 40%, transparent);
  display: grid; place-items: center; transition: transform .1s;
}
.mic-btn:active { transform: scale(0.92); }
.mic-btn.listening { background: var(--danger); animation: pulse 1.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(191,89,66,.5)} 70%{box-shadow:0 0 0 15px rgba(191,89,66,0)} 100%{box-shadow:0 0 0 0 rgba(191,89,66,0)} }

/* ---------- Detail ---------- */
.detail h2 { font-family: var(--serif); font-size: 31px; line-height: 1.15; font-weight: 600; letter-spacing: -0.02em; margin: 6px 0 12px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.meta-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-soft); color: color-mix(in srgb, var(--accent) 70%, var(--ink));
  font-size: 13.5px; font-weight: 600; padding: 6px 13px; border-radius: 999px;
}
.meta-pill.est { background: var(--surface-2); color: var(--ink-soft); }
.est-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--ink-faint); border: 1px solid var(--line); border-radius: 5px; padding: 1px 5px; }

.section { margin: 26px 0; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.section-head h3 { margin: 0; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--brand); }
.speak-btn { border: 1px solid var(--line); background: var(--surface); color: var(--brand);
  border-radius: 999px; padding: 7px 14px; font-size: 13.5px; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; transition: transform .1s; }
.speak-btn:active { transform: scale(0.95); }
.speak-btn.speaking { background: var(--brand); color: var(--on-brand); border-color: transparent; }

ul.ingredients { list-style: none; margin: 0; padding: 0; }
ul.ingredients li {
  display: flex; align-items: flex-start; gap: 13px; padding: 12px 4px;
  border-bottom: 1px solid var(--line); cursor: pointer; font-size: 16px;
  transition: color .15s; user-select: none;
}
ul.ingredients li::before {
  content: ""; flex: none; width: 20px; height: 20px; margin-top: 1px; border-radius: 7px;
  border: 2px solid color-mix(in srgb, var(--brand) 45%, var(--line));
  background: transparent; transition: background .15s, border-color .15s;
}
ul.ingredients li.checked { color: var(--ink-faint); text-decoration: line-through; text-decoration-color: color-mix(in srgb, var(--ink-faint) 60%, transparent); }
ul.ingredients li.checked::before {
  background: var(--brand); border-color: var(--brand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 15px; background-repeat: no-repeat; background-position: center;
}
ul.ingredients li.on { color: var(--brand); font-weight: 600; }

ol.steps { margin: 0; padding: 0; list-style: none; counter-reset: step; }
ol.steps li { position: relative; padding: 2px 0 22px 46px; counter-increment: step; font-size: 16px; line-height: 1.6; }
ol.steps li::before {
  content: counter(step); position: absolute; left: 0; top: -2px;
  width: 32px; height: 32px; border-radius: 11px;
  background: var(--brand-soft); color: var(--brand-ink); font-weight: 700; font-size: 15px;
  display: grid; place-items: center;
}
ol.steps li:not(:last-child)::after {
  content: ""; position: absolute; left: 15.5px; top: 34px; bottom: 6px; width: 2px;
  background: var(--line);
}

.notes-card { background: var(--accent-soft); border-radius: var(--r); padding: 14px 16px; color: color-mix(in srgb, var(--accent) 55%, var(--ink)); font-size: 15px; }

/* ---------- Photos ---------- */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 9px; }
.photo-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 13px; }
.photo-cell { position: relative; }
.photo-del { position: absolute; top: 5px; right: 5px; width: 27px; height: 27px; border-radius: 50%;
  border: none; background: rgba(0,0,0,.5); color: #fff; font-size: 15px; cursor: pointer; backdrop-filter: blur(4px); }
.ai-badge { position: absolute; top: 6px; left: 6px; background: color-mix(in srgb, var(--brand) 90%, black);
  color: #fff; font-size: 10.5px; font-weight: 700; padding: 3px 8px; border-radius: 999px; letter-spacing: .02em; }
.add-photo {
  border: 1.5px dashed color-mix(in srgb, var(--brand) 30%, var(--line)); border-radius: 13px; aspect-ratio: 1;
  display: grid; place-items: center; text-align: center; color: var(--ink-soft);
  font-size: 12.5px; font-weight: 600; cursor: pointer; background: var(--surface-2); transition: background .15s, transform .1s;
}
.add-photo:active { transform: scale(0.96); background: var(--brand-soft); }
.add-photo .big { font-size: 24px; }
.add-photo.gen { color: var(--brand); border-color: color-mix(in srgb, var(--brand) 45%, var(--line)); }
.spinner.small { width: 22px; height: 22px; border-width: 3px; margin: 0 auto 4px; }

/* ---------- Chips ---------- */
.chip { border: 1px solid var(--line); background: var(--surface); color: var(--ink);
  border-radius: 999px; padding: 9px 15px; font-size: 14px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: transform .1s; }
.chip:active { transform: scale(0.95); }
.chip.add { background: var(--brand); color: var(--on-brand); border-color: transparent; }
.chip.ignore { color: var(--ink-soft); background: transparent; }
.chips-row { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------- "You might have missed" + flourish ---------- */
.suggest { border: 1px solid var(--line); background: var(--surface); border-radius: var(--r); padding: 15px; margin: 6px 0 18px; box-shadow: var(--shadow-sm); }
.suggest-head { font-weight: 700; margin-bottom: 12px; font-size: 15px; }
.suggest-item { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-top: 1px solid var(--line); }
.suggest-item:first-of-type { border-top: none; padding-top: 2px; }
.suggest-text { flex: 1; min-width: 0; }
.suggest-text strong { font-weight: 600; }
.suggest-text small { display: block; color: var(--ink-soft); font-size: 13px; margin-top: 2px; }
.kind-tag { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--brand-ink); background: var(--brand-soft); padding: 1px 7px; border-radius: 6px; margin-left: 6px; vertical-align: middle; }
.suggest-actions { display: flex; flex-direction: column; gap: 6px; flex: none; }
.suggest-actions .chip { padding: 7px 13px; font-size: 13px; text-align: center; }

.flourish { border: 1px solid color-mix(in srgb, var(--brand) 25%, var(--line)); background: var(--brand-soft);
  border-radius: var(--r); padding: 15px; margin: 4px 0 16px; }
.flourish-head { font-weight: 700; margin-bottom: 4px; font-size: 15px; }

/* ---------- Discover ---------- */
.disc-search #discQ { min-height: 0; }
.mini-chip { display: inline-block; background: var(--surface-2); color: var(--ink-soft); font-size: 13px; padding: 5px 11px; border-radius: 999px; }

.deck { position: relative; margin: 20px 0 8px; min-height: 244px; }
.deck::before, .deck::after { content: ""; position: absolute; inset: 12px 14px auto; height: 220px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-sm); z-index: 0; }
.deck::before { transform: translateY(16px) scale(0.93); opacity: .55; }
.deck::after { transform: translateY(8px) scale(0.965); opacity: .8; }
.swipe-card { position: relative; z-index: 2; background: var(--surface); border: 1px solid var(--line);
  border-radius: 22px; box-shadow: var(--shadow); padding: 26px 24px; min-height: 220px; cursor: grab;
  touch-action: pan-y; user-select: none; -webkit-user-select: none; display: flex; flex-direction: column; justify-content: center; }
.swipe-card:active { cursor: grabbing; }
.swipe-card h3 { font-family: var(--serif); margin: 0 0 10px; font-size: 26px; font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
.swipe-card .blurb { margin: 0 0 16px; color: var(--ink-soft); font-size: 16px; line-height: 1.5; }
.swipe-card .tap-hint { font-size: 13px; color: var(--ink-faint); margin: 16px 0 0; }
.swipe-badge { position: absolute; top: 20px; font-size: 19px; font-weight: 800; letter-spacing: .08em;
  padding: 5px 13px; border-radius: 11px; border: 3px solid; opacity: 0; pointer-events: none; }
.swipe-badge.like { right: 20px; color: var(--ok); border-color: var(--ok); transform: rotate(11deg); }
.swipe-badge.nope { left: 20px; color: var(--danger); border-color: var(--danger); transform: rotate(-11deg); }

.deck-controls { display: flex; justify-content: center; gap: 20px; margin: 10px 0 4px; }
.round-btn { width: 60px; height: 60px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface);
  box-shadow: var(--shadow-sm); cursor: pointer; font-size: 25px; display: grid; place-items: center; transition: transform .12s; }
.round-btn:active { transform: scale(0.9); }
.round-btn.skip { color: var(--danger); }
.round-btn.save { color: var(--brand); }
.deck-count { text-align: center; font-size: 13px; color: var(--ink-faint); margin-bottom: 6px; }
.deck-empty { text-align: center; padding: 44px 16px; color: var(--ink-soft); }
.deck-empty p { margin: 0 0 12px; }

.list-head { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-faint); margin: 22px 0 12px; }
.idea-row { display: flex; align-items: center; gap: 12px; cursor: pointer; background: var(--surface);
  border: 1px solid var(--line); border-radius: 14px; padding: 14px 15px; margin-bottom: 9px; box-shadow: var(--shadow-sm); transition: transform .1s; }
.idea-row:active { transform: scale(0.99); }
.idea-row-main { flex: 1; min-width: 0; }
.idea-row-main strong { display: block; font-weight: 600; }
.idea-row-main small { color: var(--ink-soft); font-size: 13.5px; }
.idea-row-go { color: var(--ink-faint); flex: none; }

/* ---------- Settings ---------- */
.settings-label { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-faint); margin: 4px 2px 10px; }
.seg { display: flex; gap: 4px; padding: 5px; margin-bottom: 6px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 15px; }
.seg button { flex: 1; border: none; background: transparent; cursor: pointer; padding: 11px 6px; border-radius: 11px;
  font-size: 15px; font-weight: 600; color: var(--ink-soft); display: flex; align-items: center; justify-content: center; gap: 6px; transition: background .15s, color .15s, box-shadow .15s; }
.seg button.active { background: var(--surface); color: var(--brand); box-shadow: var(--shadow-sm); }
:root[data-theme="dark"] .seg button.active, :root:not([data-theme]) .seg button.active { color: var(--brand); }

.provider { display: flex; align-items: center; gap: 13px; border: 1px solid var(--line); background: var(--surface);
  border-radius: var(--r); padding: 15px; margin-bottom: 10px; cursor: pointer; box-shadow: var(--shadow-sm); transition: box-shadow .2s, border-color .2s; }
.provider.active { border-color: var(--brand); box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand) 30%, transparent); }
.provider.disabled { opacity: .5; box-shadow: none; }
.provider .dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line); flex: none; transition: .15s; }
.provider.active .dot { border-color: var(--brand); background: var(--brand); box-shadow: inset 0 0 0 4px var(--surface); }
.provider .info { flex: 1; }
.provider .info strong { display: block; font-weight: 600; }
.provider .info small { color: var(--ink-soft); font-size: 13.5px; }

.time-src { display: block; margin-top: 7px; font-size: 13px; }
.time-src.est { color: var(--ink-soft); }
.time-src.own { color: var(--ok); font-weight: 600; }

/* ---------- Loading / spinner ---------- */
.loading { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 56px 0; color: var(--ink-soft); }
.spinner { width: 38px; height: 38px; border: 3.5px solid var(--line); border-top-color: var(--brand); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: calc(96px + env(safe-area-inset-bottom)); transform: translateX(-50%);
  background: var(--ink); color: var(--bg); padding: 13px 20px; border-radius: 14px; font-size: 15px; font-weight: 600;
  z-index: 60; box-shadow: var(--shadow-lg); max-width: 90%; text-align: center; animation: toastIn .25s ease; }
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 12px); } to { opacity: 1; transform: translate(-50%, 0); } }

hr.soft { border: none; border-top: 1px solid var(--line); margin: 22px 0; }

/* ---------- Screen transition ---------- */
@keyframes viewIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
#app.anim { animation: viewIn .28s cubic-bezier(.22,.61,.36,1); }
@media (prefers-reduced-motion: reduce) { #app.anim { animation: none; } }
