/* Hero product mock styles */

.hero-mock {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--omm-zinc-200);
  box-shadow: 0 24px 60px -20px rgba(30,58,138,0.18);
  overflow: hidden;
  position: relative;
  font-family: var(--omm-font-sans);
}

.hm-chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #fafafa, #f4f4f5);
  border-bottom: 1px solid var(--omm-zinc-200);
}
.hm-dots { display: flex; gap: 6px; }
.hm-dots span {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--omm-zinc-300);
}
.hm-dots span:nth-child(1) { background: #ff5f57; }
.hm-dots span:nth-child(2) { background: #febc2e; }
.hm-dots span:nth-child(3) { background: #28c840; }

.hm-url {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 5px 14px;
  background: #fff;
  border: 1px solid var(--omm-zinc-200);
  border-radius: 9999px;
  font-size: 12px;
  color: var(--omm-zinc-600);
}
.hm-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: var(--omm-success-50);
  color: var(--omm-success);
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hm-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--omm-success);
  box-shadow: 0 0 0 0 rgba(22,163,74,0.4);
  animation: pulse-ring 1.8s infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

.hm-sources {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding: 12px 18px;
  background: var(--accent-soft);
  border-bottom: 1px solid var(--accent-line);
}
.hm-srclabel {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-from);
}
.hm-srcchip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: #fff;
  border: 1px solid var(--accent-line);
  border-radius: 9999px;
  font-size: 12px;
  color: var(--omm-zinc-700);
}
.hm-srcmore { font-size: 12px; color: var(--omm-zinc-500); }

.hm-thread {
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
}

.hm-bubble {
  display: flex; gap: 12px;
  animation: slide-up 320ms var(--omm-ease-standard);
}

.hm-avatar {
  width: 32px; height: 32px;
  border-radius: 9999px;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
  font-family: var(--serif);
}
.hm-uavatar {
  background: var(--omm-zinc-100);
  color: var(--omm-zinc-700);
  border: 1px solid var(--omm-zinc-200);
}
.hm-aavatar {
  background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
}

.hm-msg {
  flex: 1;
  font-size: 14px;
  line-height: 1.55;
  color: var(--omm-zinc-800);
  padding-top: 5px;
}
.hm-aimsg {
  background: var(--omm-zinc-50);
  border: 1px solid var(--omm-zinc-200);
  border-radius: 14px;
  padding: 14px 16px;
  margin-top: 0;
}

.hm-line {
  font-size: 14px;
  line-height: 1.7;
  color: var(--omm-zinc-800);
  animation: slide-up 280ms var(--omm-ease-standard);
}
.hm-line.strong { font-weight: 600; color: var(--omm-zinc-900); margin-bottom: 4px; }

.hm-cite {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px;
  padding: 4px 10px;
  background: var(--accent-soft);
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-from);
  animation: slide-up 320ms var(--omm-ease-standard);
}

.hm-thinking {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--omm-zinc-500);
}
.hm-thinking span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-from);
  animation: pulse-soft 1.2s ease-in-out infinite;
}
.hm-thinking span:nth-child(2) { animation-delay: 0.2s; }
.hm-thinking span:nth-child(3) { animation-delay: 0.4s; }
.hm-thinking em { font-style: italic; }

.hm-caret {
  display: inline-block;
  width: 2px;
  background: var(--accent-from);
  animation: typewriter-cursor 1s infinite;
}

.hm-actionbar {
  display: flex; gap: 8px;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--omm-zinc-200);
  background: #fff;
}
.hm-input {
  flex: 1;
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: var(--omm-zinc-50);
  border: 1px solid var(--omm-zinc-200);
  border-radius: 9999px;
}
.hm-send {
  width: 38px; height: 38px;
  border-radius: 9999px;
  border: 0;
  background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px var(--accent-line);
  transition: transform 200ms var(--omm-ease-standard);
}
.hm-send:hover { transform: translateY(-1px) scale(1.04); }

/* "Probieren Sie es" suggestion chip strip */
.hm-tryit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(180deg, var(--accent-soft), #fff);
  border-top: 1px solid var(--omm-zinc-100);
  flex-wrap: wrap;
}
.hm-tryit-label {
  font-family: var(--omm-font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-from);
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 600;
}
.hm-tryit-chips {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.hm-tryit-chip {
  appearance: none;
  border: 1px solid var(--omm-zinc-200);
  background: #fff;
  color: var(--omm-zinc-700);
  padding: 5px 12px;
  border-radius: 9999px;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 200ms var(--omm-ease-standard);
}
.hm-tryit-chip:hover {
  border-color: var(--accent-line);
  color: var(--accent-from);
  background: var(--accent-soft);
  transform: translateY(-1px);
}
.hm-tryit-chip.is-active {
  background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px var(--accent-line);
}

.hm-dots-indicator {
  position: absolute;
  bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.hm-dot {
  width: 6px; height: 6px;
  border-radius: 9999px;
  border: 0;
  background: var(--omm-zinc-300);
  cursor: pointer;
  padding: 0;
  transition: all 200ms var(--omm-ease-standard);
}
.hm-dot.active {
  width: 18px;
  background: var(--accent-from);
}
