/* ==========================================================================
   GokSIrek — modern chat UI
   Light-first, with dark mode via [data-theme="dark"] or prefers-color-scheme.
   ========================================================================== */

:root {
  --accent: #2563eb;
  --accent-2: #7c3aed;
  --accent-soft: #e8efff;
  --bg: #ffffff;
  --bg-elev: #f7f8fa;
  --bg-hover: #eef0f4;
  --text: #14161a;
  --text-muted: #5b6370;
  --text-subtle: #8a919c;
  --border: #e5e7eb;
  --border-strong: #d1d5db;
  --bubble-user-bg: var(--accent);
  --bubble-user-text: #ffffff;
  --bubble-assistant-bg: transparent;
  --bubble-assistant-text: var(--text);
  --system-bg: #fff8e1;
  --system-text: #7a5c00;
  --system-border: #ffe082;
  --danger: #dc2626;
  --success: #16a34a;
  --shadow-sm: 0 1px 2px rgba(15, 17, 21, 0.04);
  --shadow-md: 0 4px 14px rgba(15, 17, 21, 0.06);
  --shadow-lg: 0 10px 30px rgba(15, 17, 21, 0.08);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-full: 999px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  --transition: 160ms cubic-bezier(0.2, 0, 0, 1);
  --header-h: 60px;
  --composer-max: 820px;
  --a11y-font-scale: 1;
  --focus-ring-width: 2px;
  --focus-ring-offset: 2px;
}

html[data-font-size="large"]  { --a11y-font-scale: 1.18; }
html[data-font-size="xlarge"] { --a11y-font-scale: 1.38; }

html[data-contrast="high"] {
  --accent: #0040c0;
  --accent-2: #5a00b3;
  --accent-soft: #ffffff;
  --bg: #ffffff;
  --bg-elev: #ffffff;
  --bg-hover: #e6e6e6;
  --text: #000000;
  --text-muted: #000000;
  --text-subtle: #1a1a1a;
  --border: #000000;
  --border-strong: #000000;
  --bubble-user-bg: #0040c0;
  --bubble-user-text: #ffffff;
  --bubble-assistant-bg: #ffffff;
  --bubble-assistant-text: #000000;
  --system-bg: #ffff00;
  --system-text: #000000;
  --system-border: #000000;
  --focus-ring-width: 3px;
  --focus-ring-offset: 3px;
}
html[data-contrast="high"][data-theme="dark"],
html[data-contrast="high"].dark-auto {
  --accent: #ffd000;
  --accent-2: #ffffff;
  --accent-soft: #000000;
  --bg: #000000;
  --bg-elev: #000000;
  --bg-hover: #1a1a1a;
  --text: #ffffff;
  --text-muted: #ffffff;
  --text-subtle: #e6e6e6;
  --border: #ffffff;
  --border-strong: #ffffff;
  --bubble-user-bg: #ffd000;
  --bubble-user-text: #000000;
  --bubble-assistant-bg: #000000;
  --bubble-assistant-text: #ffffff;
  --system-bg: #000000;
  --system-text: #ffd000;
  --system-border: #ffd000;
}
@media (prefers-color-scheme: dark) {
  html[data-contrast="high"]:not([data-theme="light"]) {
    --accent: #ffd000;
    --accent-2: #ffffff;
    --bg: #000000;
    --bg-elev: #000000;
    --bg-hover: #1a1a1a;
    --text: #ffffff;
    --text-muted: #ffffff;
    --text-subtle: #e6e6e6;
    --border: #ffffff;
    --border-strong: #ffffff;
    --bubble-user-bg: #ffd000;
    --bubble-user-text: #000000;
    --bubble-assistant-bg: #000000;
    --bubble-assistant-text: #ffffff;
    --system-bg: #000000;
    --system-text: #ffd000;
    --system-border: #ffd000;
  }
}

html[data-contrast="high"] .app-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--bg); }
html[data-contrast="high"] .icon-btn,
html[data-contrast="high"] .suggestion,
html[data-contrast="high"] .composer,
html[data-contrast="high"] .mic-btn,
html[data-contrast="high"] .msg-user .bubble {
  border: 2px solid var(--border) !important;
}
html[data-contrast="high"] .composer-hint,
html[data-contrast="high"] .brand-subtitle,
html[data-contrast="high"] .hero-sub { color: var(--text); }
html[data-contrast="high"] .stream-cursor { background: var(--text); }

html[data-readable="on"] {
  --font: "Atkinson Hyperlegible", Verdana, Tahoma, "Segoe UI", Arial, sans-serif;
}
html[data-readable="on"] body { letter-spacing: 0.01em; }

html[data-underline="on"] a,
html[data-underline="on"] .suggestion,
html[data-underline="on"] .msg-action {
  text-decoration: underline;
  text-underline-offset: 3px;
}
html[data-underline="on"] .icon-btn,
html[data-underline="on"] .suggestion,
html[data-underline="on"] .composer,
html[data-underline="on"] .mic-btn,
html[data-underline="on"] .send-btn,
html[data-underline="on"] .msg-action {
  border: 2px solid var(--border-strong);
}

html[data-motion="reduce"] *,
html[data-motion="reduce"] *::before,
html[data-motion="reduce"] *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}
html[data-motion="reduce"] .stream-cursor { animation: none; opacity: 0.6; }
html[data-motion="reduce"] .token-new { animation: none; }

[data-theme="dark"] {
  --accent: #60a5fa;
  --accent-2: #a78bfa;
  --accent-soft: #1e293b;
  --bg: #0f1115;
  --bg-elev: #171a21;
  --bg-hover: #1f232c;
  --text: #e7e9ee;
  --text-muted: #9ca3af;
  --text-subtle: #6b7280;
  --border: #242832;
  --border-strong: #323844;
  --bubble-user-bg: var(--accent);
  --bubble-user-text: #0f1115;
  --bubble-assistant-text: var(--text);
  --system-bg: #2a220a;
  --system-text: #fcd34d;
  --system-border: #5a4308;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --accent: #60a5fa;
    --accent-2: #a78bfa;
    --accent-soft: #1e293b;
    --bg: #0f1115;
    --bg-elev: #171a21;
    --bg-hover: #1f232c;
    --text: #e7e9ee;
    --text-muted: #9ca3af;
    --text-subtle: #6b7280;
    --border: #242832;
    --border-strong: #323844;
    --bubble-user-text: #0f1115;
    --system-bg: #2a220a;
    --system-text: #fcd34d;
    --system-border: #5a4308;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
}

* { box-sizing: border-box; }

html {
  font-size: calc(16px * var(--a11y-font-scale));
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body { font-size: 1rem; }

:focus-visible {
  outline: var(--focus-ring-width) solid var(--accent);
  outline-offset: var(--focus-ring-offset);
  border-radius: 4px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px; left: 12px;
  background: var(--accent);
  color: #fff;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  z-index: 1000;
  transition: top var(--transition);
}
.skip-link:focus { top: 12px; }

/* ---------- Header ---------- */
.app-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: var(--header-h);
  padding: 0 16px;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.brand-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-actions { display: flex; gap: 4px; align-items: center; }

.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.icon-btn:hover { background: var(--bg-hover); color: var(--text); }
.icon-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.icon-btn[aria-pressed="false"] { color: var(--text-subtle); text-decoration: line-through; }

.icon-sun { display: block; }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .icon-sun { display: none; }
  :root:not([data-theme="light"]) .icon-moon { display: block; }
}

/* ---------- Main chat area ---------- */
.chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px 16px 120px;
  scroll-behavior: smooth;
}

/* ---------- Hero (empty state) ---------- */
.hero {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 32px 12px;
}
.hero-inner {
  max-width: 640px;
  width: 100%;
  text-align: center;
  animation: fadeUp 420ms cubic-bezier(0.2, 0, 0, 1) both;
}
.hero-mark {
  display: inline-flex;
  margin-bottom: 20px;
  filter: drop-shadow(var(--shadow-md));
}
.hero-title {
  margin: 0 0 8px;
  font-size: clamp(1.625rem, 4vw + 1rem, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero-sub {
  margin: 0 0 28px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.suggestions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
}
.suggestion {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font: inherit;
  font-size: 0.875rem;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.suggestion:hover {
  background: var(--bg-hover);
  border-color: var(--border-strong);
  transform: translateY(-1px);
}
.suggestion:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.suggestion .s-ico { font-size: 1.25rem; flex-shrink: 0; }

/* ---------- Messages ---------- */
.messages {
  width: 100%;
  max-width: var(--composer-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.msg { display: flex; gap: 12px; animation: fadeUp 240ms ease both; }
.msg-user { justify-content: flex-end; }
.msg-user .bubble {
  background: var(--bubble-user-bg);
  color: var(--bubble-user-text);
  padding: 10px 14px;
  border-radius: var(--radius-lg) var(--radius-lg) 6px var(--radius-lg);
  max-width: 78%;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  font-size: 0.9375rem;
  box-shadow: var(--shadow-sm);
}

.msg-assistant { align-items: flex-start; }
.msg-assistant .avatar {
  width: 32px; height: 32px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.msg-assistant .msg-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.msg-assistant .bubble {
  background: var(--bubble-assistant-bg);
  color: var(--bubble-assistant-text);
  padding: 4px 2px;
  font-size: 0.9688rem;
  line-height: 1.65;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.msg-assistant.speaking .avatar {
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 50%, transparent);
  animation: avatarPulse 1.4s ease-in-out infinite;
}

/* Typewriter — nowe tokeny wchodzą z fade-in */
.token-new {
  animation: tokenIn 280ms ease forwards;
}
@keyframes tokenIn {
  from { opacity: 0; filter: blur(1px); }
  to   { opacity: 1; filter: blur(0); }
}

.stream-cursor {
  display: inline-block;
  width: 8px;
  height: 1.1em;
  background: var(--text-muted);
  vertical-align: -2px;
  margin-left: 2px;
  border-radius: 2px;
  animation: blink 1s steps(1) infinite;
}
/* Po zakończeniu — kursor znika płynnie */
.msg-assistant.done .stream-cursor {
  animation: cursorOut 300ms ease forwards;
}
@keyframes cursorOut {
  to { opacity: 0; width: 0; margin-left: 0; }
}

.msg-actions {
  display: flex;
  gap: 2px;
  margin-top: 2px;
  opacity: 0;
  transition: opacity var(--transition);
}
.msg-assistant.done .msg-actions { opacity: 1; }
.msg-assistant:hover .msg-actions { opacity: 1; }

.msg-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  font: inherit;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.msg-action:hover { background: var(--bg-hover); color: var(--text); }
.msg-action.is-active { color: var(--accent); }
.msg-action:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.msg-action .act-label { display: inline; }
@media (max-width: 480px) {
  .msg-action .act-label { display: none; }
}

/* System message (e.g. zapis confirmation) */
.msg-system { justify-content: center; }
.system-bubble {
  background: var(--system-bg);
  color: var(--system-text);
  border: 1px solid var(--system-border);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  max-width: 90%;
  text-align: center;
}

/* ---------- Composer ---------- */
.composer-wrap {
  position: sticky;
  bottom: 0;
  z-index: 40;
  padding: 12px 16px max(12px, env(safe-area-inset-bottom));
  background: linear-gradient(to top, var(--bg) 70%, transparent);
}
.composer {
  max-width: var(--composer-max);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 8px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.composer:focus-within {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}

.input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 6px;
  min-width: 0;
}
#textInput {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.9688rem;
  line-height: 1.5;
  resize: none;
  max-height: 200px;
  padding: 10px 0;
  width: 100%;
}
#textInput::placeholder { color: var(--text-subtle); }

.mic-btn, .send-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid; place-items: center;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.mic-btn {
  background: var(--bg-hover);
  color: var(--text);
}
.mic-btn:hover { background: var(--border); }
.mic-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.mic-btn .stop-icon { display: none; }
.mic-btn[data-state="recording"] {
  background: var(--danger);
  color: #fff;
}
.mic-btn[data-state="recording"] .mic-icon { display: none; }
.mic-btn[data-state="recording"] .stop-icon { display: block; }
.mic-btn[data-state="recording"] .mic-ring {
  position: absolute;
  inset: -6px;
  border-radius: var(--radius-full);
  border: 2px solid var(--danger);
  opacity: 0.6;
  animation: micRing 1.3s ease-out infinite;
}
.mic-btn[data-state="disabled"] { opacity: 0.5; cursor: not-allowed; }

.send-btn {
  background: var(--accent);
  color: #fff;
}
.send-btn:hover:not(:disabled) { filter: brightness(1.05); }
.send-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.send-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.send-btn.stop-gen { background: var(--text); color: var(--bg); }

.composer-hint {
  max-width: var(--composer-max);
  margin: 8px auto 0;
  text-align: center;
  color: var(--text-subtle);
  font-size: 0.7188rem;
}
.composer-hint strong { color: var(--text-muted); }

/* ---------- Toast ---------- */
.toast {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  background: var(--text);
  color: var(--bg);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  animation: toastIn 240ms ease;
  max-width: calc(100vw - 32px);
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Animations ---------- */
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
@keyframes micRing {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}
@keyframes avatarPulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 40%, transparent); }
  50% { box-shadow: 0 0 0 8px transparent; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, 6px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@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;
  }
  .stream-cursor { animation: none; opacity: 0.6; }
}

/* ---------- Accessibility panel ---------- */
.a11y-panel {
  position: fixed;
  top: calc(var(--header-h) + 6px);
  right: 12px;
  z-index: 60;
  width: min(320px, calc(100vw - 24px));
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: fadeUp 200ms ease both;
}
.a11y-panel[hidden] { display: none; }
.a11y-panel-inner { padding: 14px; display: flex; flex-direction: column; gap: 10px; }

.a11y-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
}
.a11y-label {
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
}

.a11y-seg {
  display: inline-flex;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.a11y-seg-btn {
  background: transparent;
  border: 0;
  padding: 6px 12px;
  font: inherit;
  color: var(--text-muted);
  cursor: pointer;
  min-width: 44px;
  transition: background var(--transition), color var(--transition);
}
.a11y-seg-btn:nth-child(1) { font-size: 0.8125rem; }
.a11y-seg-btn:nth-child(2) { font-size: 0.9375rem; }
.a11y-seg-btn:nth-child(3) { font-size: 1.125rem; font-weight: 600; }
.a11y-seg-btn[aria-checked="true"] {
  background: var(--accent);
  color: #fff;
}
.a11y-seg-btn:focus-visible { outline: var(--focus-ring-width) solid var(--accent); outline-offset: -2px; }

.a11y-switch-row { cursor: pointer; user-select: none; }
.a11y-switch {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
  pointer-events: none;
}
.a11y-switch-track {
  position: relative;
  width: 40px;
  height: 22px;
  background: var(--border-strong);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  transition: background var(--transition);
}
.a11y-switch-thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: left var(--transition);
}
.a11y-switch:checked ~ .a11y-switch-track { background: var(--accent); }
.a11y-switch:checked ~ .a11y-switch-track .a11y-switch-thumb { left: 20px; }
.a11y-switch:focus-visible ~ .a11y-switch-track {
  outline: var(--focus-ring-width) solid var(--accent);
  outline-offset: var(--focus-ring-offset);
}

.a11y-reset {
  margin-top: 4px;
  padding: 8px 12px;
  font: inherit;
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.a11y-reset:hover { background: var(--bg-hover); color: var(--text); }
.a11y-reset:focus-visible { outline: var(--focus-ring-width) solid var(--accent); outline-offset: var(--focus-ring-offset); }

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .chat { padding: 16px 12px 140px; }
  .brand-subtitle { display: none; }
  .suggestions { grid-template-columns: 1fr 1fr; }
  .hero { padding: 16px 8px; }
  .msg-user .bubble { max-width: 85%; }
}

/* Large touch screens / kiosk */
@media (min-width: 1200px) and (pointer: coarse) {
  .mic-btn, .send-btn { width: 56px; height: 56px; }
  #textInput { font-size: 1.0625rem; }
  .suggestion { padding: 18px 20px; font-size: 0.9375rem; }
}
