/* Unified app (WS7 redesign, wireframe: https://claude.ai/artifact/Qj9bKAmGw1MG54eUgFP5JT).
   Replaces ../desktop-v2/ and ../pwa/ with one responsive, installable page
   at root. Mobile-first (the wireframe's 390x844 boards), widening
   gracefully for a desktop browser rather than keeping a second layout.

   Tokens are copied verbatim from ../desktop-v2/styles.css, not reinvented -
   same palette, radii, shadow, font (the wireframe itself was intentionally
   grayscale for structure review; these are the already-approved Nocturne
   tokens applied now that the layout is settled). The confirm-gate rules
   (.banner/.readback/.voice-edit/.edit-fields/.date-picker/.btn) are also
   copied unchanged - this file only adds new layout around them (full-screen
   presentation, a Recording view, bottom nav, install sheet), never restyles
   what they mean. */
:root {
  color-scheme: light;

  --color-bg: #efeafb;
  --color-surface: #ffffff;
  --color-surface-2: #faf9fe;

  --color-text: #17151f;
  --color-neutral-200: #3a3650;
  --color-neutral-300: #4e4a66;
  --color-neutral-400: #716c8a;
  --color-neutral-500: #8b87a0;
  --color-neutral-600: #a6a2ba;
  --color-neutral-800: #edebf6;
  --color-divider: #17151f14;

  --color-accent: #6c4cf1;
  --color-accent-100: #efe9fe;
  --color-accent-200: #b9a6fb;
  --color-accent-300: #8c6df6;
  --color-accent-600: #4e32c9;

  --color-teal: #17b3a3;
  --color-teal-100: #dff6f2;

  --color-danger: #d6483d;
  --color-danger-bg: #fbe4e2;
  --color-warning: #b98420;
  --color-warning-bg: #fbf0d9;

  --color-on-accent: #ffffff;

  --radius-sm: 10px;
  --radius-md: 22px;

  --shadow-card: 0 20px 45px -28px rgba(76, 58, 150, 0.35), 0 2px 10px rgba(76, 58, 150, 0.06);

  --font-body: "Vazirmatn", -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, sans-serif;

  --safe-top: env(safe-area-inset-top);
  --safe-bottom: env(safe-area-inset-bottom);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(1100px 560px at 78% -8%, #f4e9ff 0%, transparent 60%),
    radial-gradient(900px 520px at 8% 6%, #ddeffb 0%, transparent 55%),
    linear-gradient(165deg, #f4f1fe 0%, #e9e1fc 42%, #e1eafb 78%, #e9f3f0 100%);
  background-attachment: fixed;
  padding-bottom: calc(64px + var(--safe-bottom));
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.field-box {
  background: var(--color-surface-2);
  border: 1.5px solid var(--color-divider);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.kicker {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 12.5px; font-weight: 700;
  color: var(--color-accent-600); background: var(--color-accent-100);
  padding: 6px 14px; border-radius: 999px;
}

/* --- topbar ----------------------------------------------------------- */

.topbar {
  position: sticky; top: 0; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  margin: calc(12px + var(--safe-top)) 16px 0;
  padding: 0 18px;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.wordmark { font-size: 16px; font-weight: 800; }
.logo {
  width: 34px; height: 34px; flex: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #7c5cfb, #17b3a3);
  display: flex; align-items: center; justify-content: center;
}
.logo svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.topbar-date { font-size: 12px; font-weight: 600; color: var(--color-neutral-400); }

.icon-btn {
  width: 34px; height: 34px; flex: none;
  border-radius: 50%; border: 1.5px solid var(--color-divider);
  background: var(--color-surface); color: var(--color-neutral-300);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.icon-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-btn:hover { background: var(--color-neutral-800); color: var(--color-text); }
.icon-btn-dark { background: #27272a; border-color: #27272a; color: #fff; }
.icon-btn-dark:hover { background: #3f3f46; color: #fff; }

/* --- mode notices ------------------------------------------------------- */

.notices { display: flex; flex-wrap: wrap; gap: 10px; padding: 14px 16px 0; }
.notices p {
  margin: 0; padding: 9px 16px;
  font-size: 12.5px; font-weight: 600;
  color: var(--color-accent-600); background: var(--color-accent-100);
  border: 1.5px solid color-mix(in srgb, var(--color-accent) 25%, transparent);
  border-radius: 999px;
}

/* --- home: mic hero -----------------------------------------------------
   A single tappable card (not a bare circular button) matching the
   wireframe's mic-hero artboard - the example phrase doubles as a hint of
   what a voice command can look like. */

.mic-hero-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
  margin: 10px 16px 0; padding: 24px 18px;
  text-decoration: none; color: inherit;
  cursor: pointer;
}
.mic-hero-card.disabled { opacity: .55; cursor: not-allowed; pointer-events: none; }
.mic-hero-icon {
  width: 64px; height: 64px; flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c5cfb, #5a3fe0);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 20px 40px -14px rgba(108, 76, 241, 0.55);
}
.mic-hero-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; }
.mic-hero-title { font-size: 13.5px; font-weight: 700; color: var(--color-neutral-300); }
.mic-hero-hint { font-size: 11.5px; color: var(--color-neutral-500); }

/* --- layout -------------------------------------------------------------- */

.page { max-width: 640px; margin: 0 auto; padding: 0 0 24px; }
.subtle { font-size: 13.5px; font-weight: 600; color: var(--color-neutral-400); margin: 0; }
.empty { font-size: 14px; color: var(--color-neutral-500); padding: 0 16px; }
.empty.unreachable { color: var(--color-danger); font-weight: 500; }
.empty.unreachable::before { content: "⚠ "; }

.section-block { margin-top: 22px; padding: 0 16px; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.section-head span:first-child { font-size: 15px; font-weight: 800; }
.section-count { font-size: 12px; color: var(--color-neutral-400); }

/* --- today's tasks ------------------------------------------------------- */

.task-list, .meeting-list { display: flex; flex-direction: column; gap: 10px; }
.task-card { padding: 12px 14px; }
.task-check {
  width: 20px; height: 20px; flex: none;
  border-radius: 6px; border: 1.5px solid var(--color-divider);
  background: var(--color-surface);
  display: flex; align-items: center; justify-content: center;
}
.task-card-done .task-check { background: #27272a; border-color: #27272a; }
.task-check svg { width: 12px; height: 12px; fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.task-card-done .meeting-title { text-decoration: line-through; opacity: .65; }
.task-status { flex: none; font-size: 10.5px; font-weight: 700; color: var(--color-neutral-400); background: var(--color-neutral-800); padding: 3px 10px; border-radius: 999px; align-self: flex-start; white-space: nowrap; }
.dept-task-overdue { color: var(--color-danger); background: var(--color-danger-bg); }

.meeting-card { display: flex; gap: 12px; align-items: center; padding: 12px 14px; }
.meeting-time { width: 64px; flex-shrink: 0; text-align: center; font-variant-numeric: tabular-nums; font-size: 13px; }
.meeting-main { flex: 1; min-width: 0; }
.meeting-title { font-weight: 800; font-size: 13.5px; margin-bottom: 2px; }
.meeting-with { font-size: 11.5px; font-weight: 600; color: var(--color-neutral-400); }
.meeting-empty {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 100px; padding: 16px;
  border-radius: var(--radius-sm); background: var(--color-surface-2);
  border: 1.5px dashed var(--color-divider);
  font-size: 13px; font-weight: 600; color: var(--color-neutral-500);
}

.status { color: var(--color-neutral-500); font-size: 12.5px; margin: 20px 16px 0; padding: 0; }
.status.error { color: var(--color-danger); }

/* --- bottom nav -----------------------------------------------------------
   خانه is the only functional tab today - the other three render as inert
   labels (aria-disabled), matching the wireframe's shape without pretending
   they lead anywhere yet. */

.bottom-nav {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 6;
  max-width: 640px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-around;
  padding: 8px 16px calc(8px + var(--safe-bottom));
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
}
.nav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--color-neutral-500); font-size: 10.5px; font-weight: 600; }
.nav-item svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.nav-item-active { color: var(--color-accent); font-weight: 800; }
.nav-item[aria-disabled="true"] { opacity: .5; }

/* --- full-screen overlays (Recording / Confirm / install sheet) --------- */

.view-overlay { position: fixed; inset: 0; z-index: 10; display: flex; flex-direction: column; }

/* --- Recording view ------------------------------------------------------- */

.view-recording {
  background: #18181b; color: #fff;
  padding-top: var(--safe-top);
}
.recording-topbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px 0; }
.recording-chip { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: #d4d4d8; background: #27272a; padding: 6px 12px; border-radius: 999px; }
.recording-dot { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; animation: breathe 1.2s ease-out infinite; }
.recording-center { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px; padding: 0 24px; }
.recording-mic-ring { position: relative; width: 168px; height: 168px; display: flex; align-items: center; justify-content: center; flex: none; }
.recording-mic-ring-outer, .recording-mic-ring-inner { position: absolute; border-radius: 50%; border: 1.5px solid color-mix(in srgb, var(--color-accent-200) 55%, transparent); }
.recording-mic-ring-outer { inset: 0; animation: recordingRing 2.4s ease-out infinite; }
.recording-mic-ring-inner { inset: 24px; animation: recordingRing 2.4s ease-out infinite 0.6s; }
@keyframes recordingRing {
  0% { transform: scale(0.9); opacity: .9; }
  100% { transform: scale(1.15); opacity: 0; }
}
.recording-mic-dot {
  width: 96px; height: 96px; border-radius: 50%;
  background: #fff; color: #18181b;
  display: flex; align-items: center; justify-content: center;
  animation: micPulse .85s ease-in-out infinite;
}
.recording-mic-dot svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.recording-waveform { display: flex; align-items: center; gap: 4px; height: 20px; }
.recording-waveform span { width: 3px; border-radius: 2px; background: #a1a1aa; animation: waveformBar 1.1s ease-in-out infinite; }
.recording-waveform span:nth-child(1) { height: 8px; animation-delay: 0s; }
.recording-waveform span:nth-child(2) { height: 16px; animation-delay: .1s; }
.recording-waveform span:nth-child(3) { height: 6px; animation-delay: .2s; }
.recording-waveform span:nth-child(4) { height: 14px; animation-delay: .3s; }
.recording-waveform span:nth-child(5) { height: 18px; animation-delay: .4s; }
.recording-waveform span:nth-child(6) { height: 10px; animation-delay: .5s; }
.recording-waveform span:nth-child(7) { height: 15px; animation-delay: .6s; }
.recording-waveform span:nth-child(8) { height: 7px; animation-delay: .7s; }
@keyframes waveformBar {
  0%, 100% { transform: scaleY(0.55); opacity: .7; }
  50% { transform: scaleY(1); opacity: 1; }
}
.recording-text { max-width: 300px; text-align: center; font-size: 14px; color: #d4d4d8; margin: 0; }
.recording-footer { flex: none; padding: 0 28px calc(24px + var(--safe-bottom)); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.recording-note { font-size: 11.5px; color: #71717a; margin: 0; }

@keyframes micPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--color-accent) 55%, transparent),
                0 0 14px 3px color-mix(in srgb, var(--color-accent) 45%, transparent);
  }
  50% {
    box-shadow: 0 0 0 13px color-mix(in srgb, var(--color-accent) 0%, transparent),
                0 0 26px 7px color-mix(in srgb, var(--color-accent) 55%, transparent);
  }
}
@keyframes breathe {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--color-danger) 45%, transparent); }
  50% { box-shadow: 0 0 0 6px color-mix(in srgb, var(--color-danger) 0%, transparent); }
}

/* --- Confirm view (the real confirm gate) ---------------------------------
   #banner is the exact element the previous builds used inline - only the
   wrapper/positioning is new. .readback/.voice-edit/.edit-fields/
   .date-picker/.btn below are copied unchanged: this is the one part of the
   page that isn't allowed to look or behave differently after a redesign. */

.view-confirm {
  background: var(--color-bg);
  padding-top: var(--safe-top);
}
.confirm-topbar { flex: none; display: flex; align-items: center; gap: 12px; padding: 16px 20px 4px; }
.confirm-title { font-size: 15px; font-weight: 700; }
.confirm-body { flex: 1; overflow-y: auto; padding: 10px 20px 16px; display: flex; flex-direction: column; gap: 14px; }
.confirm-body .dot { width: 10px; height: 10px; flex: none; border-radius: 50%; background: var(--color-accent); animation: breatheAccent 1.2s ease-out infinite; }
@keyframes breatheAccent {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--color-accent) 45%, transparent); }
  50% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--color-accent) 0%, transparent); }
}
.confirm-body .kicker { align-self: flex-start; }
.banner-text { font-weight: 600; font-size: 14.5px; }
.view-confirm.error .banner-text { color: var(--color-danger); }
.confirm-footer {
  flex: none; display: flex; flex-direction: column; gap: 10px;
  padding: 14px 20px calc(18px + var(--safe-bottom));
  background: var(--color-surface); border-top: 1px solid var(--color-divider);
}

.readback { display: grid; grid-template-columns: max-content minmax(0, 1fr); gap: 10px 20px; margin: 4px 0 0; background: var(--color-surface); border: 1px solid var(--color-divider); border-radius: var(--radius-md); padding: 16px 18px; }
.readback dt { font-size: 13px; font-weight: 600; color: var(--color-neutral-400); align-self: center; }
.readback dd { margin: 0; font-weight: 700; overflow-wrap: anywhere; align-self: center; }
.readback .warn { color: var(--color-warning); }
.readback dt.warn::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--color-warning); margin-inline-end: 6px;
}

.voice-edit { display: flex; flex-wrap: wrap; gap: 14px 18px; margin-top: 6px; }
.voice-edit label { display: flex; flex-direction: column; gap: 5px; font-size: 13px; color: var(--color-neutral-400); }
.voice-edit label.wide { flex: 1 1 100%; }
.voice-edit input {
  font: inherit; font-size: 15px; padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-divider);
  background: var(--color-surface-2); color: var(--color-text);
}
.voice-edit input:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 1px; }
.voice-edit input:disabled { opacity: .55; }
.voice-edit input::placeholder { color: var(--color-neutral-600); font-style: italic; }
.voice-edit label.low-confidence span { color: var(--color-warning); font-weight: 700; }
.voice-edit label.low-confidence input { border: 1.5px dashed var(--color-warning); background: var(--color-warning-bg); }
.edit-fields { flex: 1 1 100%; display: flex; flex-wrap: wrap; gap: 14px 18px; }
.edit-fields label { flex: 1 1 220px; }
.edit-fields label.wide { flex: 1 1 100%; }
.edit-error { flex: 1 1 100%; margin: 0; font-size: 13px; color: var(--color-danger); }

.banner-timing { font-size: 12.5px; color: var(--color-neutral-400); }

.edit-fields .field-with-picker { display: flex; gap: 6px; align-items: stretch; }
.edit-fields .field-with-picker input { flex: 1 1 auto; min-width: 0; }
.date-picker-toggle {
  flex: none; width: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-divider);
  background: var(--color-surface-2); color: var(--color-neutral-300);
  cursor: pointer;
}
.date-picker-toggle:hover { background: var(--color-neutral-800); color: var(--color-text); }
.date-picker-toggle svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }

.date-picker {
  position: absolute; z-index: 20;
  width: 280px; padding: 14px;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-divider);
}
.date-picker-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.date-picker-head span { font-size: 14px; font-weight: 700; }
.date-picker-nav {
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  border: none; border-radius: 999px; background: var(--color-surface-2); color: var(--color-text); cursor: pointer;
}
.date-picker-nav:hover { background: var(--color-neutral-800); }
.date-picker-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.date-picker-weekday { font-size: 11px; text-align: center; color: var(--color-neutral-500); padding-bottom: 4px; }
.date-picker-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border: none; border-radius: 8px; background: transparent; color: var(--color-text);
  font: inherit; font-size: 13px; cursor: pointer;
}
.date-picker-day:hover { background: var(--color-accent-100); }
.date-picker-day.today { font-weight: 800; color: var(--color-accent); }
.date-picker-day.selected { background: var(--color-accent); color: var(--color-on-accent); }

.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn { font: inherit; font-size: 14.5px; padding: 12px 26px; border-radius: 14px; cursor: pointer; border: none; transition: transform 140ms ease-out, box-shadow 150ms, background-color 150ms, color 150ms; }
.btn:active:not(:disabled) { transform: scale(0.97); }
.btn-block { width: 100%; justify-content: center; }
.btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(120deg, #7c5cfb, #5a3fe0);
  color: var(--color-on-accent); font-weight: 800;
  box-shadow: 0 16px 30px -12px rgba(108, 76, 241, 0.55);
}
.btn-primary:hover:not(:disabled) { box-shadow: 0 20px 34px -12px rgba(108, 76, 241, 0.65); }
.btn-ghost { background: var(--color-surface-2); color: var(--color-neutral-300); font-weight: 600; }
.btn-ghost:hover:not(:disabled) { background: var(--color-neutral-800); color: var(--color-text); }
.btn-dark { background: #27272a; color: #fff; font-weight: 700; }
.btn-dark:hover:not(:disabled) { background: #3f3f46; }

/* --- install sheet (iOS Add to Home Screen) -------------------------------
   Bottom-sheet instructions, wireframed as InstallSheet.dc.html - Android
   gets the native beforeinstallprompt dialog instead (see app.js), this only
   ever renders for iOS Safari. */

.install-sheet-backdrop {
  background: rgba(24, 24, 27, 0.4);
  justify-content: flex-end;
  animation: bannerIn 150ms ease-out;
}
@keyframes bannerIn {
  from { opacity: 0; } to { opacity: 1; }
}
.install-sheet {
  background: var(--color-surface);
  border-radius: 22px 22px 0 0;
  padding: 10px 22px calc(24px + var(--safe-bottom));
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 -12px 30px rgba(0,0,0,0.15);
}
.install-sheet-grip { width: 40px; height: 4px; border-radius: 999px; background: var(--color-divider); align-self: center; }
.install-sheet-head { display: flex; align-items: center; gap: 12px; }
.install-sheet-icon {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: var(--color-accent-100); color: var(--color-accent-600);
  display: flex; align-items: center; justify-content: center;
}
.install-sheet-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.install-sheet-title { font-size: 15px; font-weight: 800; }
.install-sheet-subtitle { font-size: 12px; color: var(--color-neutral-400); }
.install-sheet-steps { display: flex; flex-direction: column; gap: 14px; }
.install-sheet-step { display: flex; align-items: center; gap: 12px; font-size: 13.5px; }
.install-sheet-step-num {
  width: 28px; height: 28px; flex: none; border-radius: 50%;
  background: var(--color-neutral-800); color: var(--color-neutral-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 800;
}
.install-sheet-step-text { flex: 1; }

/* --- mascot / login (unchanged from ../desktop-v2/) ----------------------- */

.mascot {
  border-radius: 50%;
  background: linear-gradient(135deg, #7c5cfb, #17b3a3);
  display: flex; align-items: center; justify-content: center;
  flex: none;
  animation: mascotBob 3.2s ease-in-out infinite;
}
.mascot svg { fill: none; stroke: #fff; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.mascot-eye { animation: mascotBlink 4.6s ease-in-out infinite; transform-origin: center; }
@keyframes mascotBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes mascotBlink {
  0%, 92%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.15); }
}

.login-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
}
.login-card {
  width: 100%; max-width: 400px;
  display: flex; flex-direction: column; align-items: center; gap: 26px;
}
.login-card .mascot { width: 148px; height: 148px; box-shadow: var(--shadow-card); }
.login-card .mascot svg { width: 76px; height: 76px; }
.login-title { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.login-title h1 { font-size: 26px; font-weight: 800; margin: 0; }
.login-title p { font-size: 15px; color: var(--color-neutral-400); font-weight: 500; margin: 0; }
.login-terms { font-size: 12.5px; color: var(--color-neutral-500); margin-top: 6px; text-align: center; }

@media (prefers-reduced-motion: reduce) {
  .recording-mic-dot, .recording-dot, .recording-mic-ring-outer, .recording-mic-ring-inner,
  .recording-waveform span, .confirm-body .dot, .mascot, .mascot-eye {
    animation: none;
  }
}
