/* HERTZ — ElevenLabs-inspired light design system */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
  /* Surfaces */
  --bg: #ffffff;
  --bg-alt: #f5f5f5;
  --bg-alt-2: #f6f6f6;
  --stone: #f5f2ef;
  --stone-translucent: rgba(245, 242, 239, 0.8);

  /* Text */
  --text: #000000;
  --text-2: #4e4e4e;
  --text-3: #777169;
  --text-muted: #9a9590;

  /* Borders */
  --border: #e5e5e5;
  --border-subtle: rgba(0, 0, 0, 0.05);
  --border-soft: rgba(0, 0, 0, 0.08);

  /* Accents (restrained — only for status/attention) */
  --accent: #000000;
  --amber: #D97706;
  --live: #10B981;
  --ink-blue: #3B82F6;
  --warm-tint: #4E3217;

  /* Shadows — multi-layer, sub-0.1 opacity, warm */
  --sh-inset: rgba(0,0,0,0.075) 0 0 0 0.5px inset, #fff 0 0 0 0 inset;
  --sh-outline: rgba(0,0,0,0.06) 0 0 0 1px, rgba(0,0,0,0.04) 0 1px 2px, rgba(0,0,0,0.04) 0 2px 4px;
  --sh-card: rgba(0,0,0,0.4) 0 0 1px, rgba(0,0,0,0.04) 0 4px 4px;
  --sh-warm: rgba(78,50,23,0.04) 0 6px 16px, rgba(0,0,0,0.04) 0 1px 2px;
  --sh-edge: rgba(0,0,0,0.08) 0 0 0 0.5px;
  --sh-float: rgba(0,0,0,0.06) 0 12px 32px -8px, rgba(0,0,0,0.04) 0 4px 12px;

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;
  --r-warm: 30px;
  --r-pill: 9999px;

  /* Fonts */
  --display: "Manrope", "Waldenburg Fallback", ui-sans-serif, system-ui, sans-serif;
  --sans: "Inter", "Inter Fallback", ui-sans-serif, system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

/* Typography */
.display {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.display-xl {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.display-lg {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.025em;
}
.display-md {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.display-sm {
  font-family: var(--display);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.13;
  letter-spacing: -0.015em;
}
.body-lg { font-size: 20px; line-height: 1.4; letter-spacing: 0.2px; color: var(--text-2); font-weight: 400; }
.body    { font-size: 16px; line-height: 1.55; letter-spacing: 0.16px; color: var(--text-2); font-weight: 400; }
.caption { font-size: 14px; line-height: 1.45; letter-spacing: 0.14px; color: var(--text-3); font-weight: 400; }
.mono    { font-family: var(--mono); letter-spacing: 0; }
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
}
.upper-cta {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  line-height: 1.1;
}

/* Container */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 960px; margin: 0 auto; padding: 0 32px; }
.wrap-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

/* Marketing Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
}
.nav-logo-mark {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark svg { width: 100%; height: 100%; }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.15px;
  color: var(--text-2);
}
.nav-links a {
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-right { margin-left: auto; display: flex; gap: 8px; align-items: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.47;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-black {
  background: #000;
  color: #fff;
  padding: 11px 18px;
  border-radius: var(--r-pill);
}
.btn-black:hover { background: #1a1a1a; transform: translateY(-0.5px); }
.btn-white {
  background: #fff;
  color: #000;
  padding: 11px 18px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-card);
}
.btn-white:hover { box-shadow: var(--sh-float); }
.btn-stone {
  background: var(--stone-translucent);
  color: #000;
  padding: 12px 20px 12px 14px;
  border-radius: var(--r-warm);
  box-shadow: var(--sh-warm);
}
.btn-stone:hover { background: var(--stone); transform: translateY(-0.5px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 10px 16px;
  border-radius: var(--r-pill);
}
.btn-ghost:hover { background: var(--bg-alt); }
.btn-sm { padding: 7px 14px; font-size: 13.5px; }
.btn-link {
  padding: 0;
  color: var(--text-2);
  font-size: 15px;
  font-weight: 500;
}
.btn-link:hover { color: var(--text); }

/* Chip / tag */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: #fff;
  box-shadow: var(--sh-outline);
}
.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text);
}
.chip-live .chip-dot {
  background: var(--live);
  box-shadow: 0 0 8px var(--live);
  animation: pulse 1.6s ease-in-out infinite;
}
.chip-new .chip-dot { background: var(--amber); }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  background: var(--bg-alt);
  border-radius: var(--r-xs);
  color: var(--text-2);
}
.tag-new { background: #FEF3C7; color: #92400E; }

/* Live dot */
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live);
  position: relative;
  flex-shrink: 0;
  animation: pulse 1.6s ease-in-out infinite;
}
.live-dot::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--live);
  opacity: 0.4;
  animation: ping 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.3); opacity: 0; }
}

/* Waveform */
.waveform {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 26px;
  color: var(--text);
}
.waveform span {
  display: block;
  width: 2.5px;
  background: currentColor;
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
  height: 30%;
}
.waveform span:nth-child(1) { animation-delay: 0s; }
.waveform span:nth-child(2) { animation-delay: 0.08s; }
.waveform span:nth-child(3) { animation-delay: 0.16s; }
.waveform span:nth-child(4) { animation-delay: 0.24s; }
.waveform span:nth-child(5) { animation-delay: 0.32s; }
.waveform span:nth-child(6) { animation-delay: 0.4s; }
.waveform span:nth-child(7) { animation-delay: 0.48s; }
.waveform span:nth-child(8) { animation-delay: 0.56s; }
.waveform span:nth-child(9) { animation-delay: 0.64s; }
.waveform span:nth-child(10) { animation-delay: 0.72s; }
.waveform span:nth-child(11) { animation-delay: 0.8s; }
.waveform span:nth-child(12) { animation-delay: 0.88s; }
.waveform span:nth-child(13) { animation-delay: 0.96s; }
.waveform span:nth-child(14) { animation-delay: 1.04s; }
.waveform span:nth-child(15) { animation-delay: 1.12s; }
.waveform span:nth-child(16) { animation-delay: 1.2s; }
.waveform span:nth-child(17) { animation-delay: 1.28s; }
.waveform span:nth-child(18) { animation-delay: 1.36s; }
.waveform span:nth-child(19) { animation-delay: 1.44s; }
.waveform span:nth-child(20) { animation-delay: 1.52s; }
.waveform.paused span { animation-play-state: paused; height: 30%; }

@keyframes wave {
  0%, 100% { height: 22%; }
  50% { height: 100%; }
}
.waveform-lg { height: 60px; gap: 4px; }
.waveform-lg span { width: 3.5px; }

/* Cards */
.card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-outline);
  transition: all 0.25s var(--ease);
}
.card:hover { box-shadow: var(--sh-float); transform: translateY(-1px); }
.card-flat {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border);
}
.card-stone {
  background: var(--stone-translucent);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--sh-warm);
}

/* Inline code */
code.code-inline, .code-inline {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--bg-alt);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text);
}

/* Code block */
.codeblock {
  background: #0b0b0b;
  border-radius: var(--r-lg);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.85;
  overflow: hidden;
  box-shadow: var(--sh-outline);
  color: #E5E5E5;
}
.codeblock-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: #777169;
  font-family: var(--mono);
}
.codeblock-head .dot { width: 9px; height: 9px; border-radius: 50%; background: #333; }
.codeblock-body { padding: 20px 22px; overflow-x: auto; }
.codeblock-body .c-key { color: #A4C8FF; }
.codeblock-body .c-str { color: #BEDEA5; }
.codeblock-body .c-num { color: #FFCB7A; }
.codeblock-body .c-com { color: #777169; font-style: italic; }
.codeblock-body .c-fn  { color: #E8DCC4; }
.codeblock-body .c-kw  { color: #F48B66; }
.codeblock-body .c-type{ color: #C9B9FF; }

/* ---------- Shared Final CTA Block ---------- */
.cta-final {
  padding: 128px 32px 112px;
  text-align: center;
  background: radial-gradient(ellipse 90% 70% at center top, var(--stone), transparent 72%);
  position: relative;
  overflow: hidden;
}
.cta-final-inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-final h2 {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(48px, 7.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--text);
}
.cta-final h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--text-3);
}
.cta-final-sub {
  margin: 20px auto 0;
  color: var(--text-2);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.18px;
  max-width: 52ch;
}
.cta-final .buttons,
.cta-final .cta-row {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  margin-top: 0;
  padding: 72px 0 36px;
  font-size: 14.5px;
  color: var(--text-2);
  background: #0A0A0A;
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer .wrap { max-width: 1280px; padding: 0 32px; }
.footer a { color: inherit; }
.footer .nav-logo { color: #fff; font-size: 20px; }
.footer .nav-logo-mark svg path { stroke: #fff; }
.footer .body,
.footer p.body {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  gap: 48px;
  align-items: start;
}
.footer h5 {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  margin-bottom: 16px;
  letter-spacing: 0.14px;
  text-transform: none;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer ul a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: color 0.15s var(--ease);
  line-height: 1.5;
}
.footer ul a:hover { color: #fff; }

.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom .live-dot {
  width: 7px;
  height: 7px;
}
.footer-bottom-right {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}
.footer-social {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.footer-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.15s var(--ease);
}
.footer-social a:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(14px); animation: reveal 0.9s var(--ease) forwards; }
.reveal.d1 { animation-delay: 0.06s; }
.reveal.d2 { animation-delay: 0.14s; }
.reveal.d3 { animation-delay: 0.22s; }
.reveal.d4 { animation-delay: 0.3s; }
.reveal.d5 { animation-delay: 0.38s; }
.reveal.d6 { animation-delay: 0.46s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

/* Section divider */
.hrule { height: 1px; background: var(--border); width: 100%; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #d8d2ca; border-radius: 10px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #b8b0a8; }

::selection { background: #000; color: #fff; }

/* ---------- APP SHELL (ElevenLabs sidebar pattern) ---------- */
.app {
  display: grid;
  grid-template-columns: 248px 1fr;
  min-height: 100vh;
  background: var(--bg);
}
.sidebar {
  background: #FAFAF8;
  border-right: 1px solid var(--border);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.sb-logo {
  padding: 6px 10px 10px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.sb-logo span { color: var(--text-2); }

.sb-workspace {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--sh-outline);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 4px;
  transition: background 0.15s var(--ease);
}
.sb-workspace:hover { background: #fafafa; }
.sb-workspace .ws-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FFB547, #FF5722);
  flex-shrink: 0;
}
.sb-workspace .ws-chevron { margin-left: auto; opacity: 0.5; }

.sb-group { display: flex; flex-direction: column; gap: 1px; }
.sb-group-title {
  padding: 14px 12px 6px;
  font-size: 12px;
  letter-spacing: 0.13px;
  color: var(--text-3);
  font-weight: 500;
}
.sb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: var(--r-md);
  color: var(--text-2);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.15px;
  line-height: 1.33;
  transition: all 0.15s var(--ease);
  cursor: pointer;
  position: relative;
}
.sb-item .sb-ic {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  opacity: 0.85;
}
.sb-item:hover { background: var(--bg-alt); color: var(--text); }
.sb-item.active {
  background: #fff;
  color: var(--text);
  box-shadow: var(--sh-outline);
}
.sb-item.active .sb-ic { opacity: 1; }
.sb-item .sb-plus {
  margin-left: auto;
  opacity: 0;
  width: 20px; height: 20px;
  border-radius: var(--r-xs);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-3);
  transition: all 0.15s;
}
.sb-item:hover .sb-plus { opacity: 1; background: var(--bg-alt); }
.sb-item .sb-chevron { margin-left: auto; opacity: 0.5; }

.sb-bottom { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 8px; }
.sb-invite {
  padding: 16px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--sh-outline);
}
.sb-invite-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
  color: var(--text-2);
}
.sb-invite h6 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.sb-invite p { font-size: 12.5px; color: var(--text-3); line-height: 1.4; }

.sb-foot {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 12px;
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
}
.sb-foot .dot-sys { width: 8px; height: 8px; border-radius: 50%; background: var(--live); }

/* Main app area */
.app-main { display: flex; flex-direction: column; min-width: 0; }
.app-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  position: sticky; top: 0; z-index: 30;
  min-height: 60px;
}
.app-topbar h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
}
.app-topbar .tb-right { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.app-topbar .tb-btn {
  padding: 7px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition: background 0.15s;
}
.app-topbar .tb-btn:hover { background: var(--bg-alt); color: var(--text); }

.app-body { padding: 32px 40px 80px; flex: 1; min-width: 0; }

/* Section head */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

/* Utilities */
.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.text-soft { color: var(--text-2); }
.text-muted { color: var(--text-3); }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }
.mt-20 { margin-top: 80px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.py-20 { padding-top: 80px; padding-bottom: 80px; }
.py-24 { padding-top: 96px; padding-bottom: 96px; }

/* Responsive */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .app { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-final { padding: 96px 24px 80px; }
  .footer .wrap { padding: 0 24px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* Transcript component */
.transcript {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
}
.t-row { display: flex; gap: 12px; align-items: flex-start; }
.t-who {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-3);
  flex-shrink: 0;
  width: 58px;
  padding-top: 3px;
}
.t-agent .t-who { color: var(--amber); }
.t-msg { flex: 1; color: var(--text); }
.t-agent .t-msg::after {
  content: "▊";
  color: var(--amber);
  margin-left: 1px;
  animation: blink 1s steps(2) infinite;
}
.t-row:not(:last-child).t-agent .t-msg::after { display: none; }
@keyframes blink { 50% { opacity: 0; } }
