/* ============ Tokens ============ */
:root {
  --bg: #06060a;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.065);
  --surface-3: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.16);
  --text: #f3f3f6;
  --muted: #8d8d9c;
  --soft: #c4c4cf;
  --violet: #7c5cff;
  --cyan: #3ee0ff;
  --lime: #c8ff4d;
  --lime-ink: #10140a;
  --danger: #ff6b8a;
  --grad: linear-gradient(120deg, var(--violet), var(--cyan) 55%, var(--lime));
  --radius: 20px;
  --radius-sm: 14px;
  --font: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --topbar: 68px;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
button { font: inherit; color: inherit; cursor: pointer; }
svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
::selection { background: var(--violet); color: #fff; }

.mono { font-family: var(--mono); letter-spacing: 0.02em; }
.tiny { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; margin: 0; }
.muted { color: var(--muted); }

/* ============ Fondo ============ */
.bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.55; will-change: transform; }
.orb-a { width: 46vmax; height: 46vmax; background: radial-gradient(circle, var(--violet), transparent 65%); top: -18vmax; left: -12vmax; animation: drift 22s var(--ease) infinite alternate; }
.orb-b { width: 38vmax; height: 38vmax; background: radial-gradient(circle, var(--cyan), transparent 65%); bottom: -20vmax; right: -10vmax; opacity: 0.35; animation: drift 26s var(--ease) infinite alternate-reverse; }
.orb-c { width: 22vmax; height: 22vmax; background: radial-gradient(circle, var(--lime), transparent 65%); top: 40%; left: 55%; opacity: 0.16; animation: drift 30s var(--ease) infinite alternate; }
.grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 10%, transparent 70%);
  opacity: 0.5;
}
.noise {
  position: absolute; inset: 0; opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes drift { to { transform: translate3d(6vmax, 4vmax, 0) scale(1.1); } }

/* ============ Topbar ============ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 20;
  height: var(--topbar);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 0 clamp(16px, 3vw, 32px);
  background: linear-gradient(to bottom, rgba(6, 6, 10, 0.85), rgba(6, 6, 10, 0));
  backdrop-filter: blur(8px);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-weight: 600; letter-spacing: -0.01em; }
.brand-mark { width: 26px; height: 26px; border-radius: 9px; background: var(--grad); position: relative; box-shadow: 0 0 24px rgba(124, 92, 255, 0.5); }
.brand-mark::after { content: ''; position: absolute; inset: 7px; border-radius: 50%; background: var(--bg); }
.progress { flex: 1; max-width: 360px; display: flex; align-items: center; gap: 12px; }
.progress-track { flex: 1; height: 4px; border-radius: 4px; background: var(--surface-3); overflow: hidden; }
.progress-fill { height: 100%; width: 0; background: var(--grad); border-radius: 4px; transition: width 0.6s var(--ease); box-shadow: 0 0 12px var(--cyan); }
.progress-label { font-size: 12px; color: var(--soft); min-width: 36px; text-align: right; }
.top-actions { display: flex; gap: 8px; }
.ghost-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 38px; padding: 0 14px;
  border: 1px solid var(--line-2); border-radius: 999px;
  background: var(--surface); font-size: 14px;
  transition: background 0.2s, border-color 0.2s;
}
.ghost-btn:hover { background: var(--surface-2); border-color: rgba(255, 255, 255, 0.28); }
.ghost-btn svg { width: 16px; height: 16px; }
.count { font-size: 11px; background: var(--lime); color: var(--lime-ink); border-radius: 999px; padding: 1px 7px; font-weight: 500; }
#btnBrief { display: none; }

/* ============ Intro ============ */
.intro {
  min-height: 100dvh;
  max-width: 1080px; margin: 0 auto;
  padding: calc(var(--topbar) + 6vh) clamp(16px, 4vw, 32px) 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.intro > * { animation: rise 0.9s var(--ease) both; }
.intro > *:nth-child(2) { animation-delay: 0.08s; }
.intro > *:nth-child(3) { animation-delay: 0.16s; }
.intro > *:nth-child(4) { animation-delay: 0.24s; }
.intro > *:nth-child(5) { animation-delay: 0.32s; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; align-self: flex-start;
  font-size: 12px; color: var(--soft); text-transform: uppercase; letter-spacing: 0.14em;
  padding: 8px 14px; border: 1px solid var(--line-2); border-radius: 999px; background: var(--surface);
  margin: 0 0 28px;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(200, 255, 77, 0.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(200, 255, 77, 0); } 100% { box-shadow: 0 0 0 0 rgba(200, 255, 77, 0); } }
.headline {
  font-size: clamp(2.6rem, 7.4vw, 6.2rem);
  line-height: 0.98; letter-spacing: -0.045em; font-weight: 600;
  margin: 0 0 28px;
}
.headline em {
  font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.02em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-right: 0.06em;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--soft); max-width: 580px; margin: 0 0 40px; }
.intro-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-bottom: 64px; }

.btn-primary {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 56px; padding: 0 28px;
  border: 0; border-radius: 999px;
  background: var(--lime); color: var(--lime-ink);
  font-weight: 600; font-size: 16px; letter-spacing: -0.01em;
  box-shadow: 0 10px 40px -10px rgba(200, 255, 77, 0.55), inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), opacity 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 50px -10px rgba(200, 255, 77, 0.7), inset 0 -2px 0 rgba(0, 0, 0, 0.15); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary svg { transition: transform 0.25s var(--ease); stroke-width: 2.2; }
.btn-primary:disabled { opacity: 0.35; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-primary.sm { height: 48px; padding: 0 22px; font-size: 15px; }
.btn-link { background: none; border: 0; color: var(--soft); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--line-2); padding: 8px 4px; }
.btn-link:hover { color: var(--text); text-decoration-color: var(--cyan); }

.features { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.features li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); backdrop-filter: blur(12px);
}
.features strong { display: block; font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.features span:not(.f-icon) { color: var(--muted); font-size: 14px; }
.f-icon { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--line); color: var(--cyan); flex-shrink: 0; }

@keyframes rise { from { opacity: 0; transform: translateY(18px); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }

/* ============ App ============ */
.app {
  height: 100dvh;
  padding-top: var(--topbar);
  display: grid; grid-template-columns: minmax(0, 1fr) 360px;
}
.chat-col { display: flex; flex-direction: column; min-height: 0; min-width: 0; }
.chat {
  flex: 1; overflow-y: auto; overscroll-behavior: contain;
  padding: 24px clamp(16px, 4vw, 48px) 24px;
  display: flex; flex-direction: column; gap: 10px;
  scrollbar-width: thin; scrollbar-color: var(--surface-3) transparent;
  mask-image: linear-gradient(to bottom, transparent, #000 28px);
}
.chat > * { width: 100%; max-width: 720px; margin-left: auto; margin-right: auto; flex-shrink: 0; }
.chat::before { content: ''; margin-top: auto; }

.msg { display: flex; gap: 12px; align-items: flex-end; animation: pop 0.45s var(--ease) both; }
.msg.user { justify-content: flex-end; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(from 0deg, var(--violet), var(--cyan), var(--lime), var(--violet));
  position: relative; animation: spin 6s linear infinite;
  box-shadow: 0 0 18px rgba(62, 224, 255, 0.35);
}
.avatar::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #2a2a3a, #0b0b12 70%); }
.msg.bot + .msg.bot .avatar { visibility: hidden; }
.msg.bot + .msg.bot { margin-top: -4px; }
@keyframes spin { to { transform: rotate(360deg); } }

.bubble {
  max-width: min(560px, 82%);
  padding: 13px 17px; border-radius: 20px;
  font-size: 15.5px; line-height: 1.5;
  overflow-wrap: anywhere;
}
.msg.bot .bubble { background: var(--surface-2); border: 1px solid var(--line); border-bottom-left-radius: 6px; backdrop-filter: blur(14px); }
.msg.user .bubble { background: var(--text); color: #0b0b12; border-bottom-right-radius: 6px; font-weight: 500; }
.hint { display: block; margin-top: 6px; color: var(--muted); font-size: 13.5px; }
.typing { display: inline-flex; gap: 5px; padding: 16px 18px; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--soft); animation: blink 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes blink { 0%, 60%, 100% { opacity: 0.25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
@keyframes pop { from { opacity: 0; transform: translateY(10px) scale(0.98); } to { opacity: 1; transform: none; } }

/* ============ Composer ============ */
.composer { padding: 0 clamp(16px, 4vw, 48px) max(20px, env(safe-area-inset-bottom)); }
.composer:empty { padding-bottom: 0; }
.composer-inner {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
  padding: 16px; border-radius: 24px;
  background: rgba(16, 16, 24, 0.72); border: 1px solid var(--line-2);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.7);
  animation: pop 0.45s var(--ease) both;
}
.back-btn {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; padding: 2px 4px; color: var(--muted); font-size: 13px;
}
.back-btn:hover { color: var(--text); }
.back-btn svg { width: 15px; height: 15px; }

.field-form { display: flex; gap: 10px; align-items: flex-end; }
.field {
  flex: 1; min-width: 0;
  font: inherit; font-size: 16px; color: var(--text);
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 16px;
  padding: 14px 16px; resize: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.field::placeholder { color: #6b6b7a; }
.field:focus { outline: none; border-color: var(--cyan); background: var(--surface-2); box-shadow: 0 0 0 4px rgba(62, 224, 255, 0.12); }
.send-btn {
  width: 52px; height: 52px; flex-shrink: 0; border: 0; border-radius: 16px;
  background: var(--lime); color: var(--lime-ink); display: grid; place-items: center;
  transition: transform 0.2s var(--ease);
}
.send-btn:hover { transform: translateY(-2px); }
.send-btn svg { stroke-width: 2.2; width: 20px; height: 20px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 8px 16px 8px 10px;
  border: 1px solid var(--line-2); border-radius: 999px;
  background: var(--surface); font-size: 14.5px; text-align: left;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease), color 0.2s;
  animation: pop 0.4s var(--ease) both; animation-delay: calc(var(--i) * 30ms);
}
.chip:hover { background: var(--surface-2); border-color: rgba(255, 255, 255, 0.3); transform: translateY(-1px); }
.chip .kbd {
  font-size: 11px; width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center;
  background: var(--surface-2); color: var(--muted); border: 1px solid var(--line);
}
.chip .ck { width: 0; overflow: hidden; display: inline-grid; transition: width 0.2s var(--ease); }
.chip .ck svg { width: 15px; height: 15px; stroke-width: 2.4; }
.chip.on { background: rgba(200, 255, 77, 0.1); border-color: var(--lime); color: #fff; }
.chip.on .kbd { background: var(--lime); color: var(--lime-ink); border-color: var(--lime); }
.chip.on .ck { width: 15px; color: var(--lime); }
.actions-row { display: flex; justify-content: flex-end; }
.chip-link { align-self: flex-start; background: none; border: 0; color: var(--muted); font-size: 14px; text-decoration: underline; text-underline-offset: 3px; padding: 0 4px; }
.chip-link:hover { color: var(--text); }
.error { margin: 0; color: var(--danger); font-size: 13.5px; display: none; }
.error.show { display: block; animation: shake 0.35s; }
@keyframes shake { 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }

/* ============ Brief lateral ============ */
.brief {
  border-left: 1px solid var(--line);
  background: rgba(10, 10, 16, 0.5); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; min-height: 0;
}
.brief-head { display: flex; justify-content: space-between; align-items: flex-start; padding: 24px 24px 12px; }
.brief-head h2 { margin: 4px 0 0; font-size: 22px; letter-spacing: -0.02em; font-weight: 600; }
.brief-body { flex: 1; overflow-y: auto; padding: 4px 24px 24px; scrollbar-width: thin; scrollbar-color: var(--surface-3) transparent; }
.b-group { padding: 14px 0; border-top: 1px solid var(--line); }
.b-group:first-child { border-top: 0; }
.b-sec { margin-bottom: 10px; }
.b-item { display: flex; gap: 12px; padding: 6px 0; position: relative; }
.b-dot { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--line-2); margin-top: 6px; flex-shrink: 0; transition: all 0.3s var(--ease); }
.b-item.done .b-dot { background: var(--lime); border-color: var(--lime); box-shadow: 0 0 10px rgba(200, 255, 77, 0.6); }
.b-item.current .b-dot { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(62, 224, 255, 0.15); }
.b-txt { display: flex; flex-direction: column; min-width: 0; }
.b-label { font-size: 13px; color: var(--muted); }
.b-val { font-size: 14px; color: #5f5f6e; overflow-wrap: anywhere; }
.b-item.done .b-val { color: var(--text); animation: pop 0.4s var(--ease); }
.b-item.current .b-label { color: var(--cyan); }

.icon-btn {
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line); color: var(--soft);
  transition: background 0.2s, color 0.2s;
}
.icon-btn:hover { background: var(--surface-2); color: var(--text); }
.icon-btn.sm { width: 34px; height: 34px; border-radius: 10px; }
.icon-btn.sm svg { width: 15px; height: 15px; }
.only-sm { display: none; }

/* ============ Resumen ============ */
.summary {
  margin-top: 10px;
  border-radius: 28px; padding: 28px;
  background: linear-gradient(160deg, rgba(124, 92, 255, 0.14), rgba(62, 224, 255, 0.05) 45%, rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line-2);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px -30px rgba(124, 92, 255, 0.45);
  animation: pop 0.6s var(--ease) both;
  position: relative; overflow: hidden;
}
.summary::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--grad); opacity: 0.8; }
.sum-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.sum-head h3 { margin: 6px 0 0; font-size: clamp(1.6rem, 3.4vw, 2.2rem); letter-spacing: -0.03em; line-height: 1.05; font-weight: 600; overflow-wrap: anywhere; }
.tier { display: flex; flex-direction: column; gap: 2px; padding: 10px 14px; border-radius: 14px; border: 1px solid var(--line-2); background: rgba(0, 0, 0, 0.25); }
.tier span { color: var(--muted); }
.tier strong { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 22px; line-height: 1.1; }
.tier-starter strong { color: var(--cyan); }
.tier-growth strong { color: var(--lime); }
.tier-scale strong { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sum-desc { color: var(--soft); margin: 12px 0 8px; font-size: 15px; }
.sum-group { padding-top: 18px; margin-top: 14px; border-top: 1px solid var(--line); }
.sum-sec { margin-bottom: 6px; }
.sum-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 0; }
.sum-txt { display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: 12px; min-width: 0; flex: 1; }
.sum-label { color: var(--muted); font-size: 14px; }
.sum-val { font-size: 14.5px; overflow-wrap: anywhere; }
.sum-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.btn-primary.wa { width: 100%; }
.btn-primary.wa svg { stroke-width: 1.8; width: 20px; height: 20px; }
.sec-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; border-radius: 999px; border: 1px solid var(--line-2);
  background: var(--surface); font-size: 14px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: var(--surface-2); border-color: rgba(255, 255, 255, 0.3); }
.btn-ghost svg { width: 16px; height: 16px; }

/* ============ Hoja de edición ============ */
.sheet {
  position: fixed; inset: 0; z-index: 50;
  display: grid; place-items: center; padding: 16px;
  background: rgba(3, 3, 6, 0.6); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity 0.22s var(--ease);
}
.sheet.open { opacity: 1; }
.sheet-panel {
  width: 100%; max-width: 620px; max-height: 90dvh; overflow-y: auto;
  padding: 22px; border-radius: 26px;
  background: #0f0f17; border: 1px solid var(--line-2);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
  transform: translateY(16px) scale(0.98); transition: transform 0.3s var(--ease);
}
.sheet.open .sheet-panel { transform: none; }
.sheet-head { display: flex; justify-content: space-between; align-items: center; }
.sheet h3 { font-size: 20px; letter-spacing: -0.02em; font-weight: 600; margin: 8px 0 16px; line-height: 1.3; }
.sheet .composer-inner { padding: 0; background: none; border: 0; box-shadow: none; backdrop-filter: none; }

/* ============ Toast ============ */
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 60;
  transform: translate(-50%, 20px); opacity: 0; pointer-events: none;
  padding: 12px 18px; border-radius: 999px;
  background: var(--text); color: #0b0b12; font-size: 14px; font-weight: 500;
  transition: all 0.3s var(--ease);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.scrim { display: none; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .app { grid-template-columns: minmax(0, 1fr); }
  #btnBrief { display: inline-flex; }
  .brief {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 40;
    width: min(380px, 88vw);
    background: #0c0c13; border-left: 1px solid var(--line-2);
    transform: translateX(100%); transition: transform 0.35s var(--ease);
  }
  .brief-open .brief { transform: none; box-shadow: -30px 0 80px rgba(0, 0, 0, 0.6); }
  .scrim { display: block; position: fixed; inset: 0; z-index: 35; background: rgba(3, 3, 6, 0.55); backdrop-filter: blur(3px); }
  .only-sm { display: grid; }
}

@media (max-width: 720px) {
  :root { --topbar: 60px; }
  .hide-sm { display: none; }
  .features { grid-template-columns: 1fr; }
  .intro { padding-top: calc(var(--topbar) + 32px); justify-content: flex-start; }
  .intro-cta { margin-bottom: 40px; }
  .intro-cta .btn-primary { width: 100%; }
  .intro-cta .btn-link { width: 100%; text-align: center; }
  .progress { max-width: none; }
  .ghost-btn { padding: 0 11px; }
  .chat { padding: 16px 16px; }
  .composer { padding: 0 12px max(12px, env(safe-area-inset-bottom)); }
  .composer-inner { padding: 12px; border-radius: 22px; }
  .bubble { max-width: 86%; font-size: 15px; }
  .avatar { width: 28px; height: 28px; }
  .chip { font-size: 14px; min-height: 42px; }
  .chip .kbd { display: none; }
  .chip { padding-left: 14px; }
  .summary { padding: 20px; border-radius: 22px; }
  .sum-txt { grid-template-columns: 1fr; gap: 0; }
  .sec-actions { grid-template-columns: repeat(3, 1fr); }
  .btn-ghost span { font-size: 13px; }
  .brand-name { display: none; }
}

@media (hover: none) {
  .chip .kbd { display: none; }
  .chip { padding-left: 14px; }
}

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