/* Hearsay landing — gethearsay.app
   Desktop 1440, light theme. Tokens and values follow design_handoff_hearsay_landing/README.md */

:root {
  --accent: #2F6FEB;
  --accent-hover: #1d5cd6;
  --text: #1d1d1f;
  --text-2: #55555c;
  --text-2b: #48484d;
  --text-3: #86868b;
  --muted: #a1a1a6;
  --timecode: rgba(60, 60, 67, 0.4);
  --bg: #ffffff;
  --bg-section: #fafafc;
  --bg-chrome: #f4f4f6;
  --bg-sidebar: #ececee;
  --line-06: rgba(0, 0, 0, 0.06);
  --line-08: rgba(0, 0, 0, 0.08);
  --line-10: rgba(0, 0, 0, 0.10);
  --spk-me: #0066D6;
  --spk-green: #1F9E54;
  --spk-orange: #C8740A;
  --spk-purple: #8944D6;
  --spk-pink: #D6377F;
  --spk-teal: #0A93A8;
  --rec: #ff3b30;
  --rec-text: #e03127;
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', Inter, system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
h1, h2, h3, p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
svg { display: block; }
img { max-width: 100%; }
[hidden] { display: none !important; }

.container { width: 100%; max-width: 1312px; margin: 0 auto; padding: 0 16px; }
.spacer { flex: 1; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Scroll reveal ---------- */
.rv { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.rv.rvon { opacity: 1; transform: translateY(0); }

/* ---------- Keyframes ---------- */
@keyframes caret { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes recpulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.82); } }
@keyframes wave { from { transform: scaleY(.16); } to { transform: scaleY(1); } }

/* ---------- Shared bits ---------- */
.overline {
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--accent);
}
.h2 { font-size: 36px; font-weight: 800; letter-spacing: -1px; line-height: 1.12; }
.h2--sm { font-size: 30px; letter-spacing: -.8px; }
.lead { font-size: 15.5px; color: var(--text-2); line-height: 1.55; }
.section-head { display: flex; flex-direction: column; gap: 10px; }

.btn-dark {
  display: inline-flex; align-items: center; gap: 10px; height: 50px; padding: 0 26px;
  border-radius: 12px; background: var(--text); color: #fff; font-size: 16px; font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}
.btn-dark:hover { color: #fff; background: #000; }
.btn-blue {
  display: inline-flex; align-items: center; height: 50px; padding: 0 30px; border-radius: 12px;
  background: var(--accent); color: #fff; font-size: 16px; font-weight: 650;
  box-shadow: 0 8px 22px rgba(47, 111, 235, .35);
}
.btn-blue:hover { color: #fff; background: var(--accent-hover); }
.cta-note { font-size: 13px; color: var(--text-3); }

.badge {
  font-size: 10px; font-weight: 700; letter-spacing: .5px; border-radius: 5px; padding: 2px 7px; margin-left: auto;
}
.badge--free { color: var(--text-2); background: rgba(0, 0, 0, .06); }
.badge--pro { color: var(--accent); background: rgba(47, 111, 235, .1); }

.tc { color: var(--timecode); font-family: var(--mono); font-variant-numeric: tabular-nums; }
.tc-chip {
  display: inline-flex; align-items: center; gap: 4px; padding: 2px 8px; border-radius: 9px;
  background: rgba(47, 111, 235, .12); color: var(--accent); font-size: 11px; font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.check { flex: 0 0 auto; }

.lang {
  display: flex; align-items: center; border: 1px solid rgba(0, 0, 0, .14); border-radius: 7px; overflow: hidden;
  font-size: 12px; font-weight: 600;
}
.lang button { padding: 4px 9px; color: var(--text-3); }
.lang button.is-active { background: var(--text); color: #fff; cursor: default; }
.lang--sm { border-radius: 6px; font-size: 11px; }
.lang--sm button { padding: 3px 8px; }

.dots { display: flex; align-items: center; gap: 5px; }
.dots span { width: 8px; height: 8px; border-radius: 50%; }
.dots span:nth-child(1) { background: #ff5f57; }
.dots span:nth-child(2) { background: #febc2e; }
.dots span:nth-child(3) { background: #28c840; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-08);
}
.nav__in { height: 60px; display: flex; align-items: center; gap: 28px; }
.logo { display: flex; align-items: center; gap: 9px; color: var(--text); }
.logo:hover { color: var(--text); }
.logo__word { font-size: 17px; font-weight: 700; letter-spacing: -.2px; }
.nav__links { display: flex; align-items: center; gap: 26px; font-size: 13.5px; font-weight: 500; }
.nav__links a { color: var(--text-2b); }
.nav__links a:hover { color: var(--text); }
.nav__right { display: flex; align-items: center; gap: 14px; }
.btn-nav {
  display: inline-flex; align-items: center; height: 32px; padding: 0 15px; border-radius: 8px;
  background: var(--accent); color: #fff; font-size: 13.5px; font-weight: 600;
  box-shadow: 0 1px 2px rgba(47, 111, 235, .35);
}
.btn-nav:hover { color: #fff; background: var(--accent-hover); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero__glow {
  position: absolute; top: -180px; right: -120px; width: 760px; height: 640px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(47, 111, 235, .07), rgba(47, 111, 235, 0));
}
.hero__in { position: relative; padding-top: 72px; padding-bottom: 96px; display: flex; gap: 44px; align-items: center; }
.hero__copy { width: 430px; flex: 0 0 430px; display: flex; flex-direction: column; gap: 22px; }
.hero__title { font-size: 52px; line-height: 1.08; letter-spacing: -1.6px; font-weight: 800; text-wrap: balance; }
.hero__sub { font-size: 17px; line-height: 1.55; color: var(--text-2); text-wrap: pretty; }
.hero__cta { display: flex; flex-direction: column; gap: 9px; align-items: flex-start; }
.hero__trust { display: flex; gap: 18px; margin-top: 6px; font-size: 13px; color: var(--text-2); }
.hero__trust span { display: inline-flex; align-items: center; gap: 6px; }
.dot { width: 7px; height: 7px; border-radius: 50%; flex: 0 0 7px; }
.dot--green { background: var(--spk-green); }
.dot--orange { background: var(--spk-orange); }
.hero__visual { flex: 1; min-width: 0; }
.hero__visual .win { transform-origin: top left; }

/* ---------- App window (hero demo) ---------- */
.win {
  position: relative; width: 806px; height: 568px; border-radius: 12px; background: #fff;
  border: .5px solid rgba(0, 0, 0, .16);
  box-shadow: 0 30px 80px rgba(23, 42, 84, .22), 0 4px 14px rgba(0, 0, 0, .08);
  overflow: hidden; display: flex; flex-direction: column;
}
.win__title { height: 48px; flex: 0 0 48px; display: flex; border-bottom: 1px solid var(--line-10); background: var(--bg-chrome); }
.win__tl {
  width: 188px; flex: 0 0 188px; display: flex; align-items: center; gap: 8px; padding: 0 14px;
  border-right: 1px solid var(--line-10);
}
.win__tl .light { width: 12px; height: 12px; border-radius: 50%; }
.win__head { flex: 1; display: flex; align-items: center; justify-content: space-between; padding: 0 12px; min-width: 0; }
.win__meta { display: flex; flex-direction: column; min-width: 0; }
.win__name { font-size: 13px; font-weight: 640; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.win__sub { font-size: 10.5px; color: var(--text-3); }
.win__tools { display: flex; align-items: center; gap: 8px; }
.recpill {
  display: inline-flex; align-items: center; gap: 6px; padding: 3px 10px; border-radius: 12px;
  background: rgba(255, 59, 48, .12);
}
.recpill__dot, .rec-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rec); animation: recpulse 1.3s ease-in-out infinite; }
.recpill__txt { font-size: 11px; font-weight: 640; color: var(--rec-text); font-variant-numeric: tabular-nums; white-space: nowrap; }
.ai-btn {
  display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(140deg, #3a7bff, #1d5cd6); box-shadow: 0 1px 3px rgba(47, 111, 235, .4);
}

.win__body { display: flex; flex: 1; min-height: 0; }
.win__side {
  width: 188px; flex: 0 0 188px; display: flex; flex-direction: column;
  background: var(--bg-sidebar); border-right: 1px solid var(--line-10);
}
.win__side-top { padding: 10px 10px 6px; display: flex; flex-direction: column; gap: 7px; }
.side-new {
  display: flex; align-items: center; justify-content: center; gap: 6px; height: 27px; border-radius: 7px;
  background: var(--accent); color: #fff; font-size: 11.5px; font-weight: 600; box-shadow: 0 1px 2px rgba(0, 0, 0, .14);
}
.side-search {
  display: flex; align-items: center; gap: 5px; height: 24px; padding: 0 8px; border-radius: 6px;
  background: #fff; border: 1px solid var(--line-10); color: var(--timecode); font-size: 11px;
}
.side-list { flex: 1; overflow: hidden; padding: 0 7px 10px; display: flex; flex-direction: column; gap: 1px; }
.side-group {
  font-size: 9.5px; font-weight: 640; letter-spacing: .4px; text-transform: uppercase; color: var(--text-3); padding: 9px 5px 4px;
}
.side-item { display: flex; flex-direction: column; gap: 1px; padding: 6px 8px; border-radius: 6px; }
.side-item.is-active { background: rgba(0, 0, 0, .08); }
.side-item__t { font-size: 11px; font-weight: 560; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.side-item__m { display: flex; align-items: center; gap: 4px; font-size: 9.5px; color: var(--text-3); }
.side-item__m svg { flex: 0 0 9px; opacity: .85; }

.win__main { flex: 1; min-width: 0; display: flex; flex-direction: column; position: relative; background: #fff; }
.win__parts { display: flex; align-items: center; gap: 7px; padding: 8px 16px; border-bottom: 1px solid var(--line-08); }
.win__parts-label { font-size: 10.5px; color: var(--text-3); margin-right: 2px; }
.part {
  display: inline-flex; align-items: center; gap: 6px; height: 23px; padding: 0 9px; border-radius: 12px;
  background: rgba(0, 0, 0, .055); font-size: 11px; font-weight: 600;
}
.part i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

.win__replies { flex: 1; min-height: 0; overflow: hidden; padding: 10px 14px 6px; display: flex; flex-direction: column; gap: 2px; }
.reply { display: flex; gap: 11px; align-items: flex-start; padding: 7px 8px; border-radius: 7px; background: transparent; }
.reply.is-typing { background: rgba(47, 111, 235, .05); }
.reply__tc { flex: 0 0 34px; text-align: right; font-size: 10px; padding-top: 2.5px; }
.reply__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1.5px; }
.reply__name { font-size: 11px; font-weight: 640; }
.reply__text { font-size: 12.5px; line-height: 1.5; color: var(--text); text-wrap: pretty; }
.caret {
  display: none; width: 2px; height: 13px; background: var(--accent); margin-left: 2px; vertical-align: -2px;
  animation: caret .9s step-end infinite;
}
.reply.is-typing .caret { display: inline-block; }

.win__player {
  display: flex; align-items: center; gap: 10px; height: 50px; flex: 0 0 50px;
  border-top: 1px solid var(--line-08); padding: 0 14px;
}
.play {
  display: grid; place-items: center; width: 32px; height: 32px; flex: 0 0 32px; border-radius: 50%;
  background: var(--accent); color: #fff; box-shadow: 0 2px 5px rgba(47, 111, 235, .45);
}
.play svg { margin-left: 1px; }
.win__player .time { font-size: 10px; font-variant-numeric: tabular-nums; font-family: var(--mono); color: var(--text); }
.win__player .time--end { color: rgba(60, 60, 67, .45); }
.wave { flex: 1; display: flex; align-items: center; gap: 1px; height: 26px; }
.wave span { flex: 1; min-width: 0; border-radius: 1px; background: rgba(0, 0, 0, .18); }
.speed { height: 22px; padding: 0 8px; border: 1px solid rgba(0, 0, 0, .14); border-radius: 6px; background: #fff; font-size: 10.5px; font-weight: 600; line-height: 20px; }

.win__bar {
  display: flex; align-items: center; gap: 10px; height: 42px; flex: 0 0 42px;
  border-top: 1px solid var(--line-08); background: var(--bg-chrome); padding: 0 14px;
}
.win__bar-state { display: contents; }
.bar-btn {
  display: flex; align-items: center; gap: 6px; height: 26px; padding: 0 13px; border-radius: 7px;
  color: #fff; font-size: 11.5px; font-weight: 600; box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
}
.bar-btn--stop { background: var(--rec); }
.bar-btn--rec { background: var(--accent); }
.bar-live { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: var(--rec-text); font-weight: 540; }
.bar-done { font-size: 11px; color: var(--text-3); min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Summary panel */
.sum {
  position: absolute; top: 44px; right: 10px; bottom: 52px; width: 252px; border-radius: 11px; background: #fff;
  border: 1px solid rgba(0, 0, 0, .12); box-shadow: 0 14px 40px rgba(23, 42, 84, .2);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateX(16px); transition: opacity .5s ease, transform .5s ease; pointer-events: none;
}
.sum.is-on { opacity: 1; transform: translateX(0); }
.sum__head { display: flex; align-items: center; gap: 7px; padding: 10px 13px 8px; border-bottom: 1px solid var(--line-08); }
.sum__title { font-size: 12px; font-weight: 680; }
.sum__pro { font-size: 9px; font-weight: 700; letter-spacing: .6px; color: var(--accent); background: rgba(47, 111, 235, .1); border-radius: 4px; padding: 2px 5px; }
.sum__list { padding: 10px 13px; display: flex; flex-direction: column; gap: 8px; }
.sum__b {
  display: flex; gap: 7px; align-items: flex-start;
  opacity: 0; transform: translateY(6px); transition: opacity .45s ease, transform .45s ease;
}
.sum__b.is-on { opacity: 1; transform: translateY(0); }
.sum__b svg { flex: 0 0 11px; margin-top: 2px; }
.sum__b span { font-size: 11px; line-height: 1.45; color: var(--text); text-wrap: pretty; }
.sum__ask { margin-top: auto; border-top: 1px solid var(--line-08); padding: 9px 13px 11px; display: flex; flex-direction: column; gap: 7px; }
.sum__ask-label { font-size: 9.5px; font-weight: 640; letter-spacing: .4px; text-transform: uppercase; color: var(--text-3); }
.sum__q {
  align-self: flex-end; max-width: 92%; padding: 6px 10px; border-radius: 11px 11px 3px 11px;
  background: var(--accent); color: #fff; font-size: 11px; line-height: 1.4;
}
.sum__q .caret { height: 11px; background: #fff; vertical-align: -1.5px; }
.sum__q.is-typing .caret { display: inline-block; }
.sum__a {
  align-self: flex-start; max-width: 95%; padding: 7px 10px; border-radius: 11px 11px 11px 3px;
  background: rgba(0, 0, 0, .05); font-size: 11px; line-height: 1.45; color: var(--text);
  opacity: 0; transform: translateY(6px); transition: opacity .45s ease, transform .45s ease;
}
.sum__a.is-on { opacity: 1; transform: translateY(0); }
.sum__a .tc-chip { gap: 3px; padding: 1px 6px; border-radius: 8px; font-size: 9.5px; font-weight: 640; }

/* ---------- Three views ---------- */
.views { padding-top: 64px; padding-bottom: 84px; }
.views .h2 { white-space: nowrap; }
.views__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 34px; align-items: stretch; }
.vcard {
  border: 1px solid var(--line-10); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column;
  background: #fff; box-shadow: 0 3px 14px rgba(0, 0, 0, .05);
}
.vcard--hi { border-color: rgba(47, 111, 235, .35); box-shadow: 0 6px 22px rgba(47, 111, 235, .13); }
.vcard__head { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--line-08); background: var(--bg-chrome); }
.vcard--hi .vcard__head { background: linear-gradient(140deg, rgba(47, 111, 235, .09), rgba(47, 111, 235, .03)); }
.vcard__title { font-size: 13px; font-weight: 650; }
.vcard__body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.vcard--transcript .vcard__body { padding: 14px 16px 18px; }
.vline { display: flex; gap: 10px; }
.vline__tc { flex: 0 0 36px; text-align: right; font-size: 10.5px; padding-top: 2px; }
.vline__name { font-size: 12px; font-weight: 650; }
.vline__text { font-size: 13px; line-height: 1.5; color: var(--text); }
.vcard__range { font-size: 11px; font-weight: 640; letter-spacing: .5px; text-transform: uppercase; color: var(--text-3); }
.vbullet { display: flex; gap: 8px; }
.vbullet svg { flex: 0 0 13px; margin-top: 3px; }
.vbullet span { font-size: 13.5px; line-height: 1.5; }
.vcard--chat .vcard__body { gap: 11px; }
.bubble--q {
  align-self: flex-end; max-width: 85%; padding: 9px 13px; border-radius: 14px 14px 4px 14px;
  background: var(--accent); color: #fff; font-size: 13.5px; line-height: 1.45;
}
.bubble--a {
  align-self: flex-start; max-width: 95%; padding: 10px 13px; border-radius: 14px 14px 14px 4px;
  background: rgba(0, 0, 0, .05); font-size: 13.5px; line-height: 1.5;
}

/* ---------- How it works ---------- */
.band { background: var(--bg-section); border-top: 1px solid var(--line-06); border-bottom: 1px solid var(--line-06); }
.how__in { padding-top: 76px; padding-bottom: 84px; }
.how .section-head { max-width: 600px; }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.step { display: flex; flex-direction: column; gap: 16px; }
.mini {
  height: 196px; border-radius: 13px; background: #fff; border: 1px solid var(--line-10);
  box-shadow: 0 3px 12px rgba(0, 0, 0, .05); overflow: hidden; display: flex; flex-direction: column;
}
.mini__title { height: 26px; display: flex; align-items: center; gap: 5px; padding: 0 10px; background: var(--bg-chrome); border-bottom: 1px solid var(--line-08); }
.mini__center { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 14px; }
.mini__center--rec { gap: 11px; }
.mini-new {
  display: flex; align-items: center; gap: 8px; height: 34px; padding: 0 18px; border-radius: 9px;
  background: var(--accent); color: #fff; font-size: 13px; font-weight: 600; box-shadow: 0 2px 6px rgba(47, 111, 235, .4);
}
.mini-perms { display: flex; flex-direction: column; gap: 6px; font-size: 11.5px; color: var(--text-2); }
.mini-perms span { display: flex; align-items: center; gap: 7px; }
.mini-recpill { display: inline-flex; align-items: center; gap: 7px; padding: 4px 12px; border-radius: 14px; background: rgba(255, 59, 48, .12); }
.mini-recpill .rec-dot { width: 8px; height: 8px; }
.mini-recpill span:last-child { font-size: 11.5px; font-weight: 640; color: var(--rec-text); }
.recwave { display: inline-flex; align-items: flex-end; gap: 2.5px; height: 34px; }
.recwave span { width: 3px; height: 30px; border-radius: 1.5px; background: var(--accent); transform-origin: center; animation: wave .6s ease-in-out infinite alternate; }
.mini-note { font-size: 11.5px; color: var(--text-3); text-align: center; }
.mini__post { flex: 1; padding: 12px 14px; display: flex; flex-direction: column; gap: 7px; }
.mini-line { display: flex; gap: 8px; }
.mini-line .tc { font-size: 10px; padding-top: 2px; }
.mini-line__name { font-size: 10.5px; font-weight: 650; }
.mini-line__text { font-size: 11px; line-height: 1.4; color: var(--text); }
.mini-chips { display: flex; gap: 6px; margin-top: auto; }
.mini-chip { display: inline-flex; align-items: center; gap: 5px; padding: 4px 9px; border-radius: 7px; background: rgba(0, 0, 0, .05); color: var(--text-2); font-size: 10.5px; font-weight: 640; }
.mini-chip--blue { background: rgba(47, 111, 235, .1); color: var(--accent); }
.step__text { display: flex; flex-direction: column; gap: 6px; }
.step__num { font-size: 12px; font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; }
.step__title { font-size: 16px; font-weight: 700; }
.step__desc { font-size: 13.5px; line-height: 1.55; color: var(--text-2); }

/* ---------- Calls ---------- */
.calls { padding-top: 84px; padding-bottom: 84px; display: flex; gap: 64px; align-items: center; }
.calls__copy { width: 480px; flex: 0 0 480px; display: flex; flex-direction: column; gap: 14px; }
.calls__copy .lead { line-height: 1.6; text-wrap: pretty; }
.apps { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.apps span { padding: 6px 14px; border-radius: 9px; border: 1px solid rgba(0, 0, 0, .12); font-size: 13px; font-weight: 600; color: var(--text-2b); }
.apps span.apps--any { border-style: dashed; border-color: rgba(0, 0, 0, .2); color: var(--text-3); }
.diagram { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.diagram__src { display: flex; gap: 12px; }
.src {
  flex: 1; border: 1px solid var(--line-10); border-radius: 12px; padding: 14px 16px; background: #fff;
  display: flex; align-items: center; gap: 11px; box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}
.src__icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; }
.src__icon--me { background: rgba(0, 102, 214, .1); }
.src__icon--green { background: rgba(31, 158, 84, .1); }
.src__text { display: flex; flex-direction: column; }
.src__title { font-size: 13.5px; font-weight: 650; }
.src__sub { font-size: 12px; color: var(--text-3); }
.src__sub b { font-weight: 640; }
.diagram__arrow { display: flex; justify-content: center; }
.merged {
  border: 1px solid var(--line-10); border-radius: 12px; padding: 16px 18px; background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06); display: flex; flex-direction: column; gap: 9px;
}
.merged__label { font-size: 11px; font-weight: 640; letter-spacing: .5px; text-transform: uppercase; color: var(--text-3); }
.merged__line { display: flex; gap: 9px; font-size: 13px; }
.merged__line .tc { font-size: 10.5px; padding-top: 2px; }
.merged__line b { font-weight: 650; }
.diagram__note { font-size: 12.5px; color: var(--text-3); text-align: center; }

/* Speaker colors */
.c-me { color: var(--spk-me); }
.c-green { color: var(--spk-green); }
.c-orange { color: var(--spk-orange); }
.c-purple { color: var(--spk-purple); }
.c-pink { color: var(--spk-pink); }

/* ---------- Pricing ---------- */
.pricing { padding-top: 84px; padding-bottom: 84px; display: flex; flex-direction: column; align-items: center; }
.pricing .section-head { align-items: center; text-align: center; max-width: 560px; }
.plans {
  width: 720px; margin-top: 36px; border: 1px solid var(--line-10); border-radius: 16px; background: #fff;
  box-shadow: 0 10px 34px rgba(23, 42, 84, .08); overflow: hidden;
}
.plans__row { display: grid; grid-template-columns: 1fr 150px 150px; align-items: center; padding: 13px 22px; border-bottom: 1px solid var(--line-06); font-size: 14px; }
.plans__row--head { padding: 16px 22px; border-bottom-color: var(--line-08); }
.plans__row--price { padding: 15px 22px; border-bottom: 0; }
.plans__brand { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; }
.plans__brand em { font-style: normal; color: var(--accent); }
.plans__col { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--text-3); }
.plans__col--pro { color: var(--accent); background: rgba(47, 111, 235, .08); border-radius: 8px; padding: 7px 0; }
.plans__free { text-align: center; color: var(--text-2); font-size: 13px; }
.plans__free--ok { color: var(--spk-green); font-size: 14px; }
.plans__free--no { color: var(--muted); font-size: 14px; }
.plans__pro { text-align: center; color: var(--accent); font-weight: 700; background: rgba(47, 111, 235, .05); border-radius: 6px; padding: 4px 0; }
.plans__pro--text { font-weight: 650; font-size: 13px; }
.plans__row--price .plans__label { font-weight: 700; }
.plans__row--price .plans__free { font-weight: 650; color: var(--text); font-size: 14px; }
.plans__row--price .plans__pro { font-weight: 800; font-size: 16px; background: none; padding: 0; }
.pricing .btn-blue { margin-top: 26px; }
.pricing__note { margin-top: 12px; font-size: 13px; color: var(--text-3); max-width: 520px; text-align: center; line-height: 1.55; }

/* ---------- Privacy ---------- */
.privacy { padding-top: 76px; padding-bottom: 76px; }
.privacy__card {
  border: 1px solid rgba(47, 111, 235, .22); border-radius: 18px;
  background: linear-gradient(160deg, rgba(47, 111, 235, .055), rgba(47, 111, 235, .015));
  padding: 40px 44px; display: flex; gap: 56px; align-items: center;
}
.privacy__copy { width: 380px; flex: 0 0 380px; display: flex; flex-direction: column; gap: 12px; }
.privacy__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(47, 111, 235, .12); }
.privacy__copy .h2 { line-height: 1.15; }
.privacy__copy p { font-size: 14.5px; line-height: 1.6; color: var(--text-2); }
.privacy__list { flex: 1; display: grid; grid-template-columns: 1fr; gap: 13px; font-size: 14.5px; }
.privacy__list span { display: flex; align-items: center; gap: 9px; }
.privacy__list svg { flex: 0 0 14px; }

/* ---------- FAQ ---------- */
.faq { padding-top: 10px; padding-bottom: 90px; display: flex; flex-direction: column; align-items: center; }
.faq .h2 { margin-bottom: 30px; }
.faq__list { width: 760px; border: 1px solid var(--line-10); border-radius: 14px; background: #fff; overflow: hidden; }
.faq__item { border-top: 1px solid rgba(0, 0, 0, .07); }
.faq__item:first-child { border-top: 0; }
.faq__q { display: flex; align-items: center; gap: 14px; padding: 17px 22px; width: 100%; text-align: left; }
.faq__q:hover { background: rgba(0, 0, 0, .02); }
.faq__q span { flex: 1; font-size: 15px; font-weight: 600; }
.faq__q svg { flex: 0 0 14px; transform: rotate(0deg); transition: transform .25s ease; }
.faq__item.is-open .faq__q svg { transform: rotate(180deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 22px 18px; font-size: 14px; line-height: 1.6; color: var(--text-2); max-width: 640px; }

/* ---------- Final CTA ---------- */
.final { border-bottom: 0; }
.final__in { padding-top: 90px; padding-bottom: 90px; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.final__icon { width: 84px; height: 84px; border-radius: 19px; box-shadow: 0 12px 30px rgba(47, 111, 235, .3); }
.final__title { font-size: 40px; font-weight: 800; letter-spacing: -1.2px; line-height: 1.1; max-width: 560px; text-wrap: balance; }
.final__cta { display: flex; flex-direction: column; gap: 9px; align-items: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line-08); }
.footer__in { height: 76px; display: flex; align-items: center; gap: 26px; }
.footer__in { flex-wrap: nowrap; }
.footer__brand { display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto; white-space: nowrap; line-height: 1; }
.footer__brand .logo__word { font-size: 14px; letter-spacing: 0; line-height: 1; }
.footer__copy { font-size: 12px; color: var(--muted); line-height: 1; }
.footer__links { display: flex; align-items: center; gap: 22px; font-size: 12.5px; flex: 0 0 auto; white-space: nowrap; }
.footer__links a { color: var(--text-2); }
.footer__links a:hover { color: var(--text); }
.made { display: inline-flex; align-items: center; gap: 6px; padding: 4px 11px; border-radius: 7px; border: 1px solid rgba(0, 0, 0, .14); font-size: 11px; font-weight: 600; color: var(--text-2); }

/* ---------- Responsive ---------- */
@media (max-width: 1312px) {
  .hero__in { gap: 32px; }
  .hero__copy { width: 380px; flex-basis: 380px; }
}

@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .nav__in { gap: 12px; }
  .nav__links { display: none; }
  .nav__right { gap: 10px; }

  .hero__in { flex-direction: column; align-items: stretch; padding-top: 40px; padding-bottom: 56px; gap: 32px; }
  .hero__copy { width: auto; flex: none; gap: 18px; }
  .hero__title { font-size: 40px; letter-spacing: -1.2px; }
  .hero__sub { font-size: 16px; }
  .hero__glow { right: -300px; top: -260px; }

  /* App window: no sidebar, full width, panel over the transcript */
  .win { width: 100%; height: 520px; }
  .win__side { display: none; }
  .win__tl { width: auto; flex: 0 0 auto; border-right: 0; padding: 0 6px 0 12px; gap: 6px; }
  .win__tl .spacer, .win__tl svg { display: none; }
  .win__parts { flex-wrap: wrap; gap: 6px; }
  .sum { left: 10px; width: auto; }

  .h2 { font-size: 28px; letter-spacing: -.7px; }
  .h2--sm { font-size: 26px; }
  .views { padding-top: 48px; padding-bottom: 56px; }
  .views .h2 { white-space: normal; }
  .views__grid { grid-template-columns: 1fr; margin-top: 24px; }
  .how__in { padding-top: 56px; padding-bottom: 56px; }
  .how__grid { grid-template-columns: 1fr; margin-top: 28px; gap: 28px; }

  .calls { flex-direction: column; align-items: stretch; gap: 32px; padding-top: 56px; padding-bottom: 56px; }
  .calls__copy { width: auto; flex: none; }
  .diagram__src { flex-direction: column; }

  .pricing { padding-top: 56px; padding-bottom: 56px; }
  .plans { width: 100%; margin-top: 24px; }
  .plans__row { grid-template-columns: 1fr 88px 88px; padding: 12px 14px; font-size: 13px; }
  .plans__row--head { padding: 14px 14px; }
  .plans__row--price { padding: 14px 14px; }
  .plans__brand { font-size: 14px; }
  .plans__free { font-size: 12.5px; }
  .plans__pro--text { font-size: 12px; }
  .pricing .btn-blue { margin-top: 22px; }

  .privacy { padding-top: 48px; padding-bottom: 48px; }
  .privacy__card { flex-direction: column; align-items: stretch; gap: 22px; padding: 26px 22px; }
  .privacy__copy { width: auto; flex: none; }

  .faq { padding-top: 0; padding-bottom: 64px; }
  .faq__list { width: 100%; }
  .faq__q { padding: 15px 18px; }
  .faq__q span { font-size: 14.5px; }
  .faq__a p { padding: 0 18px 16px; }

  .final__in { padding-top: 64px; padding-bottom: 64px; gap: 18px; }
  .final__title { font-size: 30px; letter-spacing: -.8px; }

  .footer__in { height: auto; padding-top: 22px; padding-bottom: 22px; flex-wrap: wrap; gap: 14px 20px; }
  .footer__links { flex: 1 1 auto; min-width: 0; flex-wrap: wrap; white-space: normal; gap: 12px 18px; }
}

@media (max-width: 480px) {
  .hero__in { padding-top: 32px; padding-bottom: 48px; }
  .hero__title { font-size: 34px; letter-spacing: -1px; }
  .hero__cta { align-self: stretch; }
  .btn-dark, .btn-blue { width: 100%; justify-content: center; }
  .hero__trust { flex-wrap: wrap; gap: 8px 16px; }
  .win { height: 440px; }
  .win__head { padding: 0 10px; }
  .win__sub { display: none; }
  .bar-live { display: none; }
  .views { padding-top: 32px; }
  .plans__row { grid-template-columns: 1fr 76px 76px; padding: 11px 12px; }
  .plans__row--head, .plans__row--price { padding: 12px; }
  .final__cta { align-self: stretch; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .recpill__dot, .rec-dot, .recwave span, .caret { animation: none; }
  .sum, .sum__b, .sum__a, .faq__a, .faq__q svg { transition: none; }
}
