:root {
  --bg: #f5f7f5;
  --bg-2: #eef2ee;
  --panel: rgba(255, 255, 255, 0.84);
  --panel-solid: #ffffff;
  --ink: #111827;
  --muted: #5f6b66;
  --line: #dde5e0;
  --line-strong: #cad7d1;
  --accent: #7b5cc7;
  --accent-strong: #5d37b4;
  --accent-soft: #f3effd;
  --accent-lime: #b9cf61;
  --warn: #b96d42;
  --shadow: 0 20px 60px rgba(16, 24, 40, 0.08);
  --shadow-soft: 0 8px 24px rgba(16, 24, 40, 0.05);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(123, 92, 199, 0.08), transparent 26%),
    linear-gradient(180deg, #f8fbf8 0%, var(--bg) 48%, var(--bg-2) 100%);
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.shell {
  max-width: 1440px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 20px 24px 88px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  position: sticky;
  top: 10px;
  z-index: 60;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(221, 229, 224, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.nav a,
.button,
.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: none;
}

.nav a.active,
.button.primary,
.pill.active {
  background: var(--accent-strong);
  color: white;
  border-color: var(--accent-strong);
}

.nav a:hover,
.button:hover,
.pill:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.panel {
  background: var(--panel);
  border: 1px solid rgba(221, 229, 224, 0.95);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  padding: 24px;
}

.page-grid,
.workspace-grid,
.catalog-layout,
.voice-layout,
.admin-layout {
  display: grid;
  gap: 20px;
}

.page-grid {
  grid-template-columns: 1.35fr 1fr;
}

.span-2 { grid-column: 1 / -1; }

.hero-panel h1,
.section-head h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  max-width: 13ch;
}

.lead,
.muted,
.feature-link p,
.info-card p,
.bubble-box,
.voice-box p {
  color: var(--muted);
  line-height: 1.7;
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--line);
}

.eyebrow,
.badge.ok {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: #e2daf7;
}

.badge.warn {
  color: #a36038;
  background: #fff1e6;
  border-color: #f2d6c3;
}

.hero-actions,
.button-row,
.filter-row,
.quick-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.stats.dense { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.stat-card,
.feature-link,
.info-card,
.voice-box {
  border: 1px solid var(--line);
  background: var(--panel-solid);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8);
}

.stat-card strong {
  display: block;
  font-size: 30px;
  margin-bottom: 6px;
}

.feature-list,
.side-stack {
  display: grid;
  gap: 12px;
}

.feature-link strong,
.info-card strong {
  display: block;
  margin-bottom: 6px;
}

.feature-link:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.section-head h2 {
  margin: 0;
  font-size: 21px;
}

.two-col-grid,
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.workspace-grid {
  grid-template-columns: 1.45fr 0.75fr;
}

.chat-layout {
  display: grid;
  gap: 16px;
}

.journey-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.journey-step {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.82);
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.journey-step.active {
  background: #f2faf7;
  color: var(--accent);
  border-color: #dfd5f7;
}

.chat-feed {
  display: grid;
  gap: 14px;
  min-height: 460px;
  padding: 8px 0;
}

.message {
  display: grid;
  gap: 10px;
  max-width: min(86%, 760px);
}

.message.user {
  margin-inline-start: auto;
  justify-items: end;
}

.bubble-box {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f7faf8;
  border: 1px solid #dde7e2;
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(255,255,255,0.9);
}

.message.user .bubble-box {
  background: linear-gradient(180deg, #6e47c8 0%, #5d37b4 100%);
  color: #fff;
  border-color: #5d37b4;
  box-shadow: 0 10px 22px rgba(123, 92, 199, 0.18);
}

.typing-bubble {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f7faf8;
  border: 1px solid #dde7e2;
}

.typing-bubble span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c6a892;
  animation: blink 1s infinite ease-in-out;
}

.typing-bubble span:nth-child(2) { animation-delay: 0.15s; }
.typing-bubble span:nth-child(3) { animation-delay: 0.3s; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-grid.wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-solid);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.product-thumb {
  height: 140px;
  padding: 14px;
  display: grid;
  align-items: end;
  font-weight: 700;
  color: #315346;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.92), transparent 30%),
    linear-gradient(135deg, #eef4f1 0%, #f9fbfa 58%, #dcebe4 100%);
}

.product-body {
  padding: 14px;
  display: grid;
  gap: 10px;
}

.product-body h3 {
  margin: 0;
  font-size: 15px;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 12px;
  background: #f6f2fe;
  color: var(--accent);
  border: 1px solid #e2daf7;
}

.price {
  font-weight: 700;
}

.composer {
  border: 1px solid var(--line);
  background: var(--panel-solid);
  border-radius: 20px;
  padding: 16px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow-soft);
}

.composer-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.message-input {
  min-height: 92px;
  border-radius: 16px;
  border: 1px solid #dfe7e3;
  background: #fbfdfc;
  padding: 16px;
  color: var(--ink);
  resize: vertical;
}

.message-input:focus {
  outline: 2px solid rgba(123, 92, 199, 0.12);
  border-color: #ddd2f7;
}

.composer-bar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #bda798;
}

.status-dot.busy {
  background: var(--warn);
  box-shadow: 0 0 0 6px rgba(210,135,88,0.12);
}

.status-dot.ready {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(123, 92, 199, 0.12);
}

.smart-prompts,
.voice-demo-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.prompt-chip {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
}

.catalog-layout,
.voice-layout,
.admin-layout {
  grid-template-columns: 1.35fr 0.7fr;
}

.voice-panel {
  display: grid;
  gap: 18px;
}

.voice-stage {
  display: grid;
  place-items: center;
  gap: 18px;
  min-height: 460px;
}

.mic-button {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: white;
  font-size: 20px;
  box-shadow: 0 20px 40px rgba(123, 92, 199, 0.22);
}

.mic-button.recording {
  background: linear-gradient(135deg, #b54f43, #df8a6f);
}

.voice-state-pill {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.wave {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 64px;
}

.wave span {
  width: 10px;
  height: 24px;
  border-radius: 999px;
  background: #d9c4b3;
  transition: transform 0.2s ease, height 0.2s ease, background 0.2s ease;
}

.wave.playing span {
  background: var(--accent);
}

.wave.playing span:nth-child(1) { height: 22px; }
.wave.playing span:nth-child(2) { height: 56px; }
.wave.playing span:nth-child(3) { height: 34px; }
.wave.playing span:nth-child(4) { height: 48px; }
.wave.playing span:nth-child(5) { height: 28px; }

.voice-progress {
  width: min(100%, 420px);
  height: 10px;
  border-radius: 999px;
  background: #e5ece8;
  overflow: hidden;
}

.voice-progress-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #b9cf61);
  transition: width 0.35s ease;
}

.voice-box {
  width: min(100%, 620px);
}

.voice-box small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.voice-box.accent {
  background: #edf7f3;
}

.showcase-button {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.45);
  background: linear-gradient(135deg, #4e2ea3 0%, #7b5cc7 70%, #b9cf61 100%);
  color: white;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.22);
}

.showcase-button small {
  color: rgba(255,255,255,0.82);
  display: block;
}

.showcase-button strong {
  display: block;
  font-size: 14px;
}

.showcase-overlay {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(27, 21, 17, 0.52);
  backdrop-filter: blur(8px);
}

.showcase-overlay.open {
  display: flex;
}

.showcase-modal {
  width: min(1160px, 100%);
  max-height: min(90vh, 920px);
  overflow: auto;
  border-radius: 28px;
  border: 1px solid rgba(221, 229, 224, 0.95);
  background: linear-gradient(180deg, #fbfdfc 0%, #f3f7f5 100%);
  box-shadow: 0 28px 80px rgba(16, 24, 40, 0.18);
  padding: 24px;
}

.showcase-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.showcase-header h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
}

.showcase-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
}

.showcase-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.showcase-kpi {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.95);
}

.showcase-kpi strong {
  display: block;
  font-size: 28px;
  margin-bottom: 6px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.showcase-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.94);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.showcase-preview {
  min-height: 190px;
  padding: 18px;
  display: grid;
  align-content: end;
  gap: 10px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.92), transparent 26%),
    linear-gradient(145deg, #e9f2ee 0%, #fbfdfc 55%, #dbe9e3 100%);
}

.showcase-preview.client {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.9), transparent 26%),
    linear-gradient(145deg, #e7f1ed 0%, #fbfdfc 52%, #d5e8df 100%);
}

.showcase-preview.catalog {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.88), transparent 28%),
    linear-gradient(145deg, #eef3ef 0%, #fbfdfc 52%, #e1ebe4 100%);
}

.showcase-preview.voice {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.86), transparent 30%),
    linear-gradient(145deg, #edf3f1 0%, #fbfdfc 48%, #dce8e5 100%);
}

.showcase-preview.admin {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.9), transparent 28%),
    linear-gradient(145deg, #e9f1ed 0%, #fbfdfc 54%, #d9e9de 100%);
}

.mini-bars,
.mini-cards,
.mini-dashboard,
.mini-products {
  display: grid;
  gap: 8px;
}

.mini-line,
.mini-box,
.mini-tile {
  border-radius: 12px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(221, 229, 224, 0.92);
}

.mini-line {
  height: 16px;
}

.mini-line.short { width: 52%; }
.mini-line.mid { width: 74%; }

.mini-products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-box {
  height: 74px;
}

.mini-cards {
  grid-template-columns: 1.2fr 0.8fr;
}

.mini-dashboard {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-tile {
  height: 62px;
}

.showcase-content {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.showcase-content h3 {
  margin: 0;
  font-size: 18px;
}

.showcase-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.showcase-tags,
.showcase-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.showcase-tag {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid #e2daf7;
  background: #f3effd;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

.client-page .shell {
  max-width: 1600px;
  padding-top: 18px;
}

.client-page .showcase-button {
  bottom: 18px;
}

.client-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  padding: 6px 4px;
}

.client-language {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #1f2937;
}

.client-language span {
  color: var(--accent);
  font-size: 15px;
}

.client-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #111827;
}

.client-logo-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 10px;
}

.client-brand-text {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0;
}

.client-brand-badge {
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid #ddd2f7;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.2;
}

.client-stage {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.client-hero {
  min-height: 56vh;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  padding-top: 18px;
}

.hero-logo-shell {
  position: relative;
  width: 164px;
  height: 164px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
}

.hero-ripple {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(123, 92, 199, 0.16);
  background: radial-gradient(circle, rgba(123, 92, 199, 0.08), transparent 68%);
  animation: lavenderRipple 6s ease-out infinite;
}

.ripple-two {
  animation-delay: 2s;
}

.ripple-three {
  animation-delay: 4s;
}

.hero-logo-ring {
  position: relative;
  z-index: 2;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(244,239,253,0.96));
  border: 1px solid rgba(206, 194, 241, 0.9);
  box-shadow:
    0 20px 44px rgba(123, 92, 199, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.92);
}

.hero-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.client-hello {
  margin: 0 0 8px;
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1;
  color: #0f172a;
}

.client-title {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 700;
  color: #111827;
}

.client-title span {
  color: var(--accent);
}

.client-subtitle {
  max-width: 720px;
  margin: 0 0 28px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.65;
}

.hero-prompts {
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.client-page .pill,
.client-page .prompt-chip {
  background: rgba(255,255,255,0.9);
  border-color: #d7dee7;
  color: #374151;
}

.client-page .pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.client-composer-shell {
  width: min(100%, 760px);
}

.hero-composer {
  border-radius: 28px;
  border: 1px solid #e3dbf7;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  padding: 12px 14px 12px;
  gap: 12px;
}

.hero-message-input {
  min-height: 104px;
  border: 0;
  background: transparent;
  padding: 12px 14px 8px;
  font-size: 28px;
  line-height: 1.4;
  color: #111827;
}

.hero-message-input::placeholder {
  color: #9ca3af;
}

.hero-message-input:focus {
  outline: none;
  box-shadow: none;
}

.hero-composer-bar {
  align-items: center;
}

.hero-send-button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e5e7eb;
  color: #6b7280;
  font-size: 20px;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.hero-send-button:hover {
  transform: translateY(-1px);
  background: var(--accent);
  color: white;
}

.client-live-status {
  justify-content: center;
  margin-top: 12px;
}

.client-results {
  display: grid;
  gap: 18px;
  padding-bottom: 40px;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, max-height 0.45s ease;
}

.client-journey {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

.client-chat-feed {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}

.client-page .bubble-box {
  border-radius: 20px;
}

.client-results-footer {
  display: flex;
  justify-content: center;
}

.client-page.conversation-active .client-results {
  opacity: 1;
  max-height: 4000px;
  pointer-events: auto;
}

.client-page.conversation-active .client-hero {
  min-height: auto;
  padding-top: 0;
}

.client-page.conversation-active .client-subtitle {
  margin-bottom: 18px;
}

.client-page.conversation-active .hero-prompts {
  margin-bottom: 12px;
}

.client-page.conversation-active .client-composer-shell {
  width: 100%;
  max-width: 860px;
}

.client-page.conversation-active .hero-composer {
  border-radius: 24px;
}

.client-page.conversation-active .client-live-status {
  justify-content: flex-start;
}

@keyframes lavenderRipple {
  0% {
    transform: scale(0.82);
    opacity: 0;
  }
  22% {
    opacity: 1;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@keyframes blink {
  0%, 80%, 100% { transform: scale(0.75); opacity: 0.45; }
  40% { transform: scale(1); opacity: 1; }
}

@media (max-width: 1180px) {
  .page-grid,
  .workspace-grid,
  .catalog-layout,
  .voice-layout,
  .admin-layout,
  .showcase-grid,
  .showcase-kpis {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid.wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats.dense {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .shell { padding: 14px; }
  .page-grid,
  .two-col-grid,
  .dashboard-grid,
  .stats,
  .stats.dense,
  .journey-bar,
  .mini-products,
  .mini-cards,
  .mini-dashboard,
  .product-grid,
  .product-grid.wide {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    top: 0;
    border-radius: 18px;
  }

  .showcase-button {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
  }

  .hero-panel h1,
  .section-head h1 {
    max-width: none;
  }

  .client-brand-text {
    font-size: 22px;
  }

  .client-topbar {
    margin-bottom: 18px;
  }

  .hero-logo {
    width: 76px;
    height: 76px;
  }

  .hero-logo-shell {
    width: 132px;
    height: 132px;
  }

  .hero-logo-ring {
    width: 104px;
    height: 104px;
  }

  .client-title {
    font-size: 38px;
  }

  .hero-message-input {
    font-size: 22px;
    min-height: 86px;
  }
}
