:root {
  --scene: #ece6db;
  --paper: #fefdfa;
  --panel: #f4f0e8;
  --wash: #f7f3ea;
  --ink: #1d1b17;
  --soft: #55524b;
  --mute: #9a958a;
  --faint: #d8d3c8;
  --graphite: #201d19;
  --yellow: oklch(0.91 0.17 98);
  --pink: oklch(0.91 0.12 5);
  --red: #d4321a;
  --line: rgb(29 27 23 / 18%);
  --shadow: 0 24px 70px rgb(40 32 22 / 13%), 0 5px 18px rgb(40 32 22 / 8%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--scene);
  font-family: "Literata", Georgia, serif;
  -webkit-font-smoothing: antialiased;
}

button, input, textarea { font: inherit; }

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 10px clamp(18px, 3vw, 48px);
  background: rgb(254 253 250 / 92%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  font-family: "Inter", sans-serif;
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .04em;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  transform: rotate(-45deg);
}

.brand-mark::after,
.brand-mark i {
  content: "";
  position: absolute;
  left: -5px;
  bottom: -6px;
  width: 18px;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.brand-mark i { left: -8px; bottom: -10px; width: 26px; }

.site-header nav { display: flex; gap: 22px; font-size: 13px; }
.site-header nav a { text-decoration: none; }
.site-header nav a:hover { text-decoration: underline; text-underline-offset: 4px; }
.header-rec { display: inline-flex; gap: 8px; align-items: center; font: 12px "JetBrains Mono", monospace; }
.header-rec i { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.header-cta { padding: 12px 20px; border: 1px solid var(--ink); color: var(--paper); background: var(--ink); font-weight: 600; }
.site-header nav .header-cta:hover { color: var(--ink); background: var(--yellow); text-decoration: none; }

.page-frame {
  margin: clamp(12px, 2vw, 28px);
  border: 1.5px solid var(--ink);
  background: var(--paper);
}

.hero {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: minmax(370px, .88fr) minmax(600px, 1.32fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: center;
  padding: clamp(48px, 7vw, 104px) clamp(32px, 5.4vw, 88px);
  overflow: hidden;
}

.overline,
.film,
.ui-label,
.date-label,
.section-label {
  font-family: "JetBrains Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-copy > .overline {
  max-width: 520px;
  margin: 0 0 42px;
  font-size: 14px;
  line-height: 1.5;
}

h1, h2, p { margin-top: 0; }

.hero h1 {
  max-width: 720px;
  margin-bottom: 25px;
  font-size: clamp(43px, 4.3vw, 76px);
  font-weight: 450;
  line-height: 1.01;
  letter-spacing: -.045em;
}

.hero-list {
  margin: 0 0 40px;
  padding-left: 1.08em;
  max-width: 720px;
  font-size: clamp(19px, 1.55vw, 27px);
  line-height: 1.27;
}

.hero-list li { padding-left: .25em; margin: .3em 0; }

.soon-inline {
  font-family: "JetBrains Mono", monospace;
  font-size: .64em;
  letter-spacing: .05em;
  white-space: nowrap;
}

.marker-link {
  position: relative;
  z-index: 0;
  display: inline-flex;
  gap: 13px;
  align-items: center;
  margin-top: 4px;
  padding: 6px 11px 8px;
  font-size: clamp(22px, 1.8vw, 31px);
  font-style: italic;
  text-decoration: none;
}

.marker-link::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18% -6px 9%;
  background: var(--yellow);
  border-radius: 48% 9% 45% 12%;
  transform: rotate(-1deg);
}

.marker-link span { font-family: "Inter", sans-serif; font-style: normal; }

.hero-note {
  margin: 14px 0 0 10px;
  color: var(--soft);
  font-family: "Inter", sans-serif;
  font-size: 13px;
}

.hero-stage {
  position: relative;
  min-height: 670px;
}

.app-window {
  position: absolute;
  top: 42px;
  left: 0;
  width: min(910px, 67vw);
  height: 560px;
  display: grid;
  grid-template-columns: 180px 240px 1fr;
  grid-template-rows: 34px 1fr;
  overflow: hidden;
  border: 1px solid rgb(29 27 23 / 22%);
  border-radius: 13px;
  background: var(--paper);
  box-shadow: var(--shadow);
  font-family: "Inter", sans-serif;
}

.window-bar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 13px;
  border-bottom: 1px solid var(--line);
}

.window-bar span { width: 9px; height: 9px; border-radius: 50%; background: #ff5f57; }
.window-bar span:nth-child(2) { background: #febc2e; }
.window-bar span:nth-child(3) { background: #28c840; }

.app-sidebar,
.meeting-list { border-right: 1px solid var(--line); }

.app-sidebar { padding: 17px 14px; background: var(--panel); }
.app-wordmark { font-family: "Literata", serif; font-size: 22px; font-weight: 600; }
.app-wordmark small { color: var(--mute); font: 9px "JetBrains Mono", monospace; }
.record-button {
  width: 100%;
  padding: 10px 8px;
  border: 0;
  border-radius: 6px;
  color: white;
  background: var(--red);
  font-size: 12px;
  font-weight: 600;
}
.record-button i { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: white; }
.ui-label { margin: 27px 5px 7px; color: var(--mute); font-size: 8px; }
.app-sidebar a { display: flex; align-items: center; gap: 7px; padding: 7px 8px; font-size: 11px; text-decoration: none; }
.app-sidebar a b { margin-left: auto; color: var(--mute); font-weight: 400; }
.nav-active { border-radius: 4px; background: white; }
.thread-dot { width: 8px; height: 8px; border-radius: 50%; }
.avocado { background: #8aa63d; }
.blue { background: #4b91bf; }

.list-head { display: flex; justify-content: space-between; padding: 16px 16px 13px; border-bottom: 1px solid var(--line); font-size: 13px; }
.list-head span { color: var(--mute); }
.date-label { margin: 17px 16px 7px; color: var(--mute); font-size: 8px; }
.meeting-row { padding: 13px 16px; border-bottom: 1px solid var(--line); }
.meeting-row b { display: block; font: 500 14px/1.25 "Literata", serif; }
.meeting-row small { display: block; margin-top: 7px; color: var(--mute); font: 9px "JetBrains Mono", monospace; }
.meeting-row small i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; background: var(--yellow); }
.meeting-row.active { background: #f7f1e6; }

.meeting-detail { padding: 17px 24px; min-width: 0; }
.detail-actions { display: flex; align-items: center; justify-content: space-between; color: var(--soft); font-size: 10px; }
.detail-actions button { padding: 6px 9px; border: 1px solid var(--line); border-radius: 5px; background: var(--paper); font-size: 10px; }
.film { margin-top: 21px; color: var(--soft); font-size: 9px; }
.meeting-detail h2 { margin: 7px 0 13px; font: 500 27px/1.05 "Literata", serif; }
.people { display: flex; flex-wrap: wrap; gap: 5px; }
.people span { padding: 5px 7px; border-radius: 4px; background: var(--panel); font-size: 9px; }
.section-label { margin: 31px 0 18px; color: var(--mute); font-size: 8px; }
.reply { display: grid; grid-template-columns: 43px 48px 1fr; gap: 8px; margin: 13px 0; align-items: start; }
.reply time { color: var(--mute); font: 9px "JetBrains Mono", monospace; }
.reply b { font: 500 11px "Literata", serif; }
.reply p { font: 12px/1.35 "Literata", serif; }
mark { padding: 0 .12em; color: inherit; background: linear-gradient(transparent 12%, var(--yellow) 12% 91%, transparent 91%); }
.note-card { margin: 28px 0 0 45px; padding: 13px 16px; border-left: 3px solid var(--ink); background: var(--panel); }
.note-card p { margin-bottom: 9px; color: var(--soft); font: 8px "JetBrains Mono", monospace; letter-spacing: .08em; }
.note-card em { font: italic 11px/1.4 "Literata", serif; }

.record-popover {
  position: absolute;
  z-index: 4;
  left: -54px;
  bottom: 55px;
  width: 335px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgb(254 253 250 / 96%);
  box-shadow: var(--shadow);
  font-family: "Inter", sans-serif;
}
.rec-head { display: flex; gap: 9px; align-items: center; padding: 13px 15px; border-bottom: 1px solid var(--line); font-size: 10px; }
.rec-head b { color: var(--red); font-family: "JetBrains Mono", monospace; }
.rec-head span:last-child { margin-left: auto; color: var(--mute); }
.rec-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.record-popover > p { min-height: 88px; margin: 0; padding: 18px 16px; font: 13px/1.45 "Literata", serif; }
.record-popover time { margin-right: 8px; color: var(--mute); font: 9px "JetBrains Mono", monospace; }
.popover-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px; border-top: 1px solid var(--line); }
.popover-actions button { padding: 7px; border: 1px solid var(--line); border-radius: 5px; background: var(--paper); font: 10px "Inter", sans-serif; }
.popover-actions i { display: inline-block; width: 7px; height: 7px; background: var(--yellow); }

.future-note {
  position: absolute;
  right: 3%;
  bottom: 8px;
  z-index: 3;
  width: 330px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  background: var(--wash);
}
.future-note .overline { margin-bottom: 8px; color: var(--soft); font-size: 10px; }
.future-note b { font-size: 22px; line-height: 1.1; font-weight: 500; }
.thread-line {
  position: absolute;
  z-index: 2;
  left: 250px;
  right: 230px;
  bottom: 93px;
  height: 92px;
  border-bottom: 2px solid #d56245;
  border-right: 2px solid #d56245;
  border-radius: 0 0 42px 0;
  transform: skewX(-24deg);
  transform-origin: left bottom;
}

/* Первый экран: сырой разговор становится рабочей записью. */
.hero-transcript {
  position: relative;
  display: block;
  height: calc(100svh - 62px);
  min-height: 900px;
  max-height: 1120px;
  padding: 0;
  overflow: hidden;
  background: #f7f7f4;
}

.transcript-noise {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 15px 0 65px;
  overflow: hidden;
  color: #b8b8b3;
  opacity: .25;
  font: 17px/1.2 "JetBrains Mono", monospace;
  white-space: nowrap;
  user-select: none;
}

.transcript-noise > div { display: flex; gap: clamp(80px, 12vw, 240px); width: max-content; }
.transcript-noise > div:nth-child(odd) { transform: translateX(-4%); }
.transcript-noise > div:nth-child(even) { transform: translateX(12%); }
.transcript-noise > div:nth-child(3n) { transform: translateX(-18%); }

.hero-title {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 4.5vh, 56px) clamp(24px, 2.2vw, 46px) 0;
}

.hero-title > .overline {
  margin: 0 0 clamp(26px, 4vh, 46px);
  font-size: 11px;
}

.hero-transcript h1 {
  max-width: 1780px;
  margin: 0;
  font-size: clamp(72px, 7.8vw, 148px);
  font-weight: 620;
  line-height: .87;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.hero-transcript h1 span { display: block; }

.hero-bottom-copy {
  position: absolute;
  z-index: 4;
  right: clamp(25px, 2.2vw, 48px);
  bottom: 255px;
  left: clamp(25px, 2.2vw, 48px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
}

.hero-message { max-width: min(820px, 54vw); }
.hero-examples { margin: 0; font-size: clamp(19px, 1.55vw, 27px); line-height: 1.3; }
.hero-explainer { margin: 13px 0 0; font: 11px/1.5 "JetBrains Mono", monospace; letter-spacing: .025em; text-transform: uppercase; }
.hero-action { display: flex; gap: 28px; align-items: end; }
.hero-action > p { margin: 0 0 10px; text-align: right; color: var(--soft); font: italic 16px/1.35 "Literata", serif; }
.hero-action > a {
  display: flex;
  gap: 38px;
  align-items: center;
  min-width: 300px;
  padding: 20px 24px;
  color: var(--paper);
  background: var(--ink);
  font: 600 18px "Inter", sans-serif;
  text-decoration: none;
}
.hero-action > a span { margin-left: auto; font-size: 25px; font-weight: 400; }
.hero-action > a:hover { color: var(--ink); background: var(--yellow); }

.hero-product {
  position: absolute;
  z-index: 3;
  right: 6.3%;
  bottom: -225px;
  left: 6.3%;
  height: 440px;
  overflow: hidden;
  color: #dbdad6;
  background: #101114;
  border: 1px solid #3a3b3f;
  box-shadow: 0 -22px 60px rgb(22 22 20 / 14%);
  font-family: "Inter", sans-serif;
}

.hero-app-head {
  height: 66px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 28px;
  border-bottom: 1px solid #303136;
  color: #8c8d92;
  font-size: 13px;
}
.hero-app-head > span { justify-self: center; }
.hero-app-head > b { justify-self: end; display: flex; gap: 9px; align-items: center; color: #d5d5d4; font: 12px "JetBrains Mono", monospace; }
.hero-app-head > b i { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.traffic { display: flex; gap: 9px; }
.traffic i { width: 11px; height: 11px; border-radius: 50%; background: #45464b; }

.hero-app-body { display: grid; grid-template-columns: 3fr 1.18fr; min-height: 374px; }
.wave-area { padding: 34px 42px; border-right: 1px solid #303136; }
.waveform { height: 108px; display: flex; gap: 5px; align-items: center; overflow: hidden; }
.waveform i { flex: 1 0 5px; max-width: 8px; height: 35%; background: #a3a3a2; }
.waveform i:nth-child(5n + 1) { height: 75%; }
.waveform i:nth-child(7n + 2) { height: 49%; }
.waveform i:nth-child(9n + 3) { height: 92%; }
.waveform i:nth-child(4n + 4) { height: 63%; }
.waveform i:nth-child(11n) { height: 28%; }
.live-transcript { display: grid; grid-template-columns: 62px 80px 1fr; gap: 13px; margin-top: 26px; color: #a2a2a5; font-size: 13px; }
.live-transcript time { font: 10px "JetBrains Mono", monospace; }
.live-transcript b { color: #d6d6d4; font: 500 13px "Literata", serif; }
.live-transcript p { margin: 0; }
.hero-notes { padding: 35px 35px; }
.hero-notes > .overline { color: #717278; font-size: 10px; }
.hero-notes ul { margin: 28px 0 0; padding: 0; list-style: none; }
.hero-notes li { position: relative; margin: 22px 0; padding-left: 22px; font-size: 16px; }
.hero-notes li::before { content: "·"; position: absolute; left: 0; color: #77787d; }
.hero-notes mark { color: #e0dfdb; background: linear-gradient(transparent 7%, #bd2c1b 7% 94%, transparent 94%); }

.js .transcript-noise { opacity: .4; transition: opacity 1.1s ease; }
.js .hero-title { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.js .hero-product { transform: translateY(34px); transition: transform .85s cubic-bezier(.2,.75,.2,1); }
.js .hero-bottom-copy { opacity: 0; transition: opacity .7s ease .25s; }
.js.hero-ready .transcript-noise { opacity: .25; }
.js.hero-ready .hero-title { opacity: 1; transform: none; }
.js.hero-ready .hero-product { transform: none; }
.js.hero-ready .hero-bottom-copy { opacity: 1; }

.section-pad { padding: clamp(76px, 9vw, 150px) clamp(28px, 6vw, 112px); }

.section-heading { margin-bottom: clamp(54px, 7vw, 110px); }
.section-heading .overline { margin-bottom: 18px; color: var(--soft); font-size: 11px; }
.section-heading h2,
.faq-heading h2,
.founder h2,
.last-line h2,
.site-footer h2 {
  margin: 0;
  font-size: clamp(48px, 7.2vw, 118px);
  font-weight: 430;
  line-height: .94;
  letter-spacing: -.055em;
}

.workflow { color: #ece7dc; background: var(--graphite); }
.workflow .section-heading .overline { color: #b6b0a3; }
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgb(236 231 220 / 24%);
  border-bottom: 1px solid rgb(236 231 220 / 24%);
}
.workflow-card { display: flex; flex-direction: column; min-width: 0; padding: 28px 22px 38px; border-right: 1px solid rgb(236 231 220 / 24%); }
.workflow-card:first-child { padding-left: 0; }
.workflow-card:last-child { padding-right: 0; border-right: 0; }
.workflow-card > .number,
.use-case > .number,
.proof-strip .number {
  margin: 27px 0 20px;
  font: 600 clamp(16px, 1.35vw, 23px)/1.03 "Literata", serif;
  text-transform: uppercase;
}
.workflow-card > p:last-child { margin: 0; color: #d5cfc2; font-size: clamp(16px, 1.25vw, 21px); line-height: 1.35; }
.workflow-visual { height: 325px; padding: 18px; overflow: hidden; color: var(--ink); background: var(--scene); }

.mini-recording { margin-top: 46px; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); box-shadow: 0 13px 25px rgb(35 27 20 / 14%); }
.mini-recording > div { display: flex; gap: 8px; align-items: center; padding: 11px 12px; border-bottom: 1px solid var(--line); font: 10px "Inter", sans-serif; }
.mini-recording > div b { color: var(--red); font-family: "JetBrains Mono", monospace; }
.mini-recording > div small { margin-left: auto; color: var(--mute); }
.mini-recording > p { min-height: 110px; padding: 20px 14px; font-size: 15px; line-height: 1.4; }
.mini-recording time { color: var(--mute); font: 9px "JetBrains Mono", monospace; }
.mini-recording footer { display: flex; justify-content: space-between; padding: 10px 12px; border-top: 1px solid var(--line); font: 9px "Inter", sans-serif; }

.mini-meeting { height: 100%; padding: 20px 18px; background: var(--paper); box-shadow: 0 13px 25px rgb(35 27 20 / 12%); }
.mini-meeting .film { margin: 0 0 8px; font-size: 8px; }
.mini-meeting h3 { margin: 0 0 12px; font: 500 24px/1.02 "Literata", serif; }
.chips { display: flex; flex-wrap: wrap; gap: 5px; }
.chips span { padding: 5px 6px; border-radius: 4px; background: var(--panel); font: 8px "Inter", sans-serif; }
.tiny-reply { display: grid; grid-template-columns: auto auto; gap: 5px 9px; margin-top: 21px; font-size: 11px; }
.tiny-reply time { color: var(--mute); font: 8px "JetBrains Mono", monospace; }
.tiny-reply p { grid-column: 1/-1; margin: 0; font-size: 11px; line-height: 1.35; }

.mini-chat { height: 100%; padding: 19px; background: var(--paper); box-shadow: 0 13px 25px rgb(35 27 20 / 12%); font-family: "Inter", sans-serif; }
.chat-label { padding-bottom: 12px; border-bottom: 1px solid var(--line); color: var(--soft); font: 9px "JetBrains Mono", monospace; }
.bubble { margin: 18px 0 14px 40px; padding: 13px 14px; border-radius: 7px; background: var(--panel); font-size: 11px; line-height: 1.35; }
.attachment { padding: 10px 11px; border: 1px solid var(--line); border-left: 3px solid var(--yellow); font-size: 9px; }
.mini-chat > p:last-child { margin: 15px 0 0; font-size: 11px; line-height: 1.45; }

.future-card { background: rgb(236 231 220 / 4%); }
.future-card .number span { padding: 3px 6px; color: var(--ink); background: var(--pink); font: 10px "JetBrains Mono", monospace; }
.mini-thread { position: relative; height: 100%; background: var(--paper); }
.thread-meeting { position: absolute; z-index: 2; display: block; width: 42%; padding: 10px; border: 1px solid var(--line); background: var(--paper); font: 8px "JetBrains Mono", monospace; }
.thread-meeting b { display: block; margin-top: 6px; font: 500 12px "Literata", serif; }
.thread-meeting.one { top: 23px; left: 14px; }
.thread-meeting.two { top: 104px; right: 13px; }
.thread-meeting.three { bottom: 19px; left: 24px; }
.thread-meeting.next { right: 10px; bottom: 26px; border-color: #d46475; background: var(--pink); }
.mini-thread i { position: absolute; top: 43px; right: 21%; bottom: 56px; left: 21%; border: 2px solid #d46475; border-left-color: transparent; border-radius: 50%; transform: rotate(17deg); }

.uses { background: var(--paper); }
.uses .section-heading h2 { max-width: 1400px; }
.uses-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1.5px solid var(--ink); }
.use-case { min-width: 0; padding: 0 24px 24px; border-right: 1px solid var(--line); }
.use-case:first-child { padding-left: 0; }
.use-case:last-child { padding-right: 0; border-right: 0; }
.use-case > p:nth-child(2) { min-height: 85px; font-size: clamp(17px, 1.3vw, 22px); line-height: 1.3; }
.paper-fragment { min-height: 290px; padding: 20px; border: 1px solid var(--line); background: var(--wash); box-shadow: 0 13px 30px rgb(35 27 20 / 7%); }
.email-fragment > div { display: flex; justify-content: space-between; color: var(--mute); font: 9px "JetBrains Mono", monospace; }
.email-fragment > p { margin-top: 35px; font-size: 18px; line-height: 1.35; }
.prep-fragment b { display: block; margin-bottom: 24px; font: 600 15px "Inter", sans-serif; }
.prep-fragment ul { padding-left: 18px; font: 14px/1.65 "Inter", sans-serif; }
.quote-fragment .film { margin: 0 0 28px; font-size: 9px; }
.quote-fragment blockquote { margin: 0 0 28px; font-size: 18px; line-height: 1.35; }
.quote-fragment mark { font-size: 17px; }
.meeting-pill { margin-bottom: 8px; padding: 10px; border: 1px solid var(--line); border-radius: 5px; background: var(--paper); font: 11px "Inter", sans-serif; }
.meeting-pill time { float: right; color: var(--mute); font: 8px "JetBrains Mono", monospace; }
.multi-fragment > p { margin: 22px 4px 0; padding-top: 18px; border-top: 1px solid var(--line); font: 600 14px/1.35 "Inter", sans-serif; }
.section-conclusion { max-width: 1050px; margin: clamp(70px, 9vw, 140px) 0 0; font-size: clamp(35px, 4vw, 68px); line-height: 1.02; letter-spacing: -.035em; }

.anywhere { background: var(--scene); }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(280px, .55fr); gap: 8vw; align-items: end; }
.split-heading > p { margin: 0 0 .3em; font-size: clamp(18px, 1.5vw, 25px); line-height: 1.35; }
.context-switcher { overflow: hidden; border: 1.5px solid var(--ink); background: var(--paper); }
.mac-menu { display: flex; justify-content: space-between; padding: 9px 16px; border-bottom: 1px solid var(--line); font: 11px "Inter", sans-serif; }
.mac-menu > div { display: flex; gap: 16px; align-items: center; }
.mac-menu strong { color: var(--red); font-family: "JetBrains Mono", monospace; }
.mac-menu i { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.context-panels { position: relative; min-height: 520px; }
.context-panel { position: absolute; inset: 0; display: none; padding: clamp(26px, 4vw, 64px); }
.context-panel.is-active { display: block; animation: context-in .42s ease both; }
@keyframes context-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.context-panel > p { position: absolute; right: 32px; bottom: 21px; margin: 0; font: 11px "JetBrains Mono", monospace; text-transform: uppercase; }
.browser-chrome { display: flex; gap: 7px; align-items: center; max-width: 900px; margin: auto; padding: 11px 13px; border: 1px solid var(--line); border-bottom: 0; background: var(--panel); }
.browser-chrome i { width: 9px; height: 9px; border-radius: 50%; background: #ff5f57; }
.browser-chrome i:nth-child(2) { background: #febc2e; }
.browser-chrome i:nth-child(3) { background: #28c840; }
.browser-chrome span { flex: 1; margin-left: 10px; padding: 5px 10px; border-radius: 5px; color: var(--mute); background: var(--paper); font: 9px "Inter", sans-serif; }
.call-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; max-width: 900px; height: 345px; margin: auto; padding: 24px; background: #252522; }
.call-grid span { display: grid; place-items: center; color: white; background: #76746d; font: 28px "Inter", sans-serif; }
.call-grid span:nth-child(2) { background: #6b7462; }
.call-grid span:nth-child(3) { background: #6d7482; }
.call-grid span:nth-child(4) { background: #817469; }
.app-call-head { max-width: 900px; margin: auto; padding: 12px 16px; color: white; background: #383733; font: 11px "Inter", sans-serif; }
.app-grid { padding-top: 10px; }
.table-scene { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; gap: 6vw; align-items: center; max-width: 1000px; min-height: 370px; margin: auto; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.table-scene span { font-size: clamp(23px, 2.6vw, 42px); line-height: 1.15; }
.table-scene i { display: grid; place-items: center; width: 120px; height: 120px; border: 1px solid var(--ink); border-radius: 50%; font: 10px "JetBrains Mono", monospace; }
.import-scene { display: flex; gap: 6vw; align-items: center; justify-content: center; min-height: 390px; }
.audio-file, .import-target { display: flex; flex-direction: column; justify-content: center; width: 230px; height: 180px; padding: 24px; border: 1px solid var(--ink); background: var(--wash); font: 32px "JetBrains Mono", monospace; }
.audio-file b, .import-target b { margin-top: 22px; font: 12px "Inter", sans-serif; }
.import-target { color: #ece7dc; background: var(--graphite); }
.import-scene > strong { font: 400 60px "Literata", serif; }
.context-controls { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.context-controls button { padding: 16px; border: 0; border-right: 1px solid var(--line); background: transparent; cursor: pointer; font: 12px "JetBrains Mono", monospace; text-transform: uppercase; }
.context-controls button:last-child { border-right: 0; }
.context-controls button.is-active { color: var(--ink); background: var(--yellow); }
.proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 42px; border-top: 1px solid var(--ink); }
.proof-strip article { padding: 0 28px 0 0; border-right: 1px solid var(--line); }
.proof-strip article + article { padding-left: 28px; }
.proof-strip article:last-child { border-right: 0; }
.proof-strip .number { margin-bottom: 12px; }
.proof-strip article > p:last-child { font-size: 17px; }

.founder { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(520px, 1.28fr); gap: clamp(55px, 8vw, 140px); background: var(--paper); }
.founder-portrait { position: relative; align-self: start; margin: 0; }
.founder-portrait img { display: block; width: 100%; max-height: 700px; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.founder-portrait figcaption { margin-top: 14px; font-size: 19px; }
.founder-copy h2 { max-width: 1000px; font-size: clamp(46px, 5.5vw, 91px); }
.founder-copy > p { max-width: 900px; margin: 33px 0 0; font-size: clamp(18px, 1.5vw, 25px); line-height: 1.35; }
.access-form { margin-top: 42px; }
.access-form label { display: block; margin-bottom: 18px; }
.access-form label span { display: block; margin: 0 0 7px; font-size: 16px; }
.access-form input { width: 100%; padding: 17px 18px; border: 1px solid var(--ink); border-radius: 0; color: var(--ink); background: var(--wash); font: 18px "Inter", sans-serif; }
.access-form button { width: 100%; display: flex; justify-content: space-between; padding: 18px; border: 1px solid var(--ink); color: var(--ink); background: var(--yellow); cursor: pointer; font-size: 22px; }
.form-note, .form-success { margin: 12px 0 0; color: var(--soft); font: 12px "Inter", sans-serif; }
.form-success { color: var(--ink); }

.features { color: #ece7dc; background: var(--graphite); }
.features .section-heading .overline { color: #b6b0a3; }
.feature-list { border-top: 1px solid rgb(236 231 220 / 28%); }
.feature-list details { border-bottom: 1px solid rgb(236 231 220 / 28%); }
.feature-list summary { display: grid; grid-template-columns: 70px minmax(230px, .8fr) 1fr; gap: 25px; align-items: center; padding: 24px 0; list-style: none; cursor: pointer; }
.feature-list summary::-webkit-details-marker { display: none; }
.feature-list summary span { color: #b6b0a3; font: 12px "JetBrains Mono", monospace; }
.feature-list summary b { font-size: clamp(22px, 2vw, 34px); }
.feature-list summary em { justify-self: start; padding: 9px 12px; color: var(--ink); background: #f4f0e8; font: normal 12px "Inter", sans-serif; }
.feature-list details > div { display: grid; grid-template-columns: 70px minmax(230px, .8fr) 1fr; gap: 25px; }
.feature-list details > div p { grid-column: 3; max-width: 850px; margin: 0 0 27px; color: #cfc8bc; font-size: 18px; line-height: 1.45; }

.faq { display: grid; grid-template-columns: minmax(0, .65fr) minmax(0, 1.35fr); gap: clamp(40px, 9vw, 170px); background: var(--paper); }
.faq-heading { position: sticky; top: 110px; align-self: start; }
.faq-heading .overline { color: var(--soft); font-size: 11px; }
.faq-heading h2 { margin-top: 17px; font-size: clamp(45px, 5vw, 80px); }
.faq-dialogue { border-top: 1px solid var(--ink); }
.faq-dialogue article { position: relative; padding: 27px 0 26px; border-bottom: 1px solid var(--line); }
.speaker { margin: 0 0 7px; font: 10px "JetBrains Mono", monospace; letter-spacing: .08em; }
.faq-dialogue h3 { margin: 0 0 17px; font-size: 22px; font-weight: 500; }
.faq-dialogue article > p:not(.speaker) { margin: 0; font-size: 18px; line-height: 1.4; }
.faq-dialogue em { position: absolute; top: 32px; right: 0; color: var(--soft); font: normal 10px "JetBrains Mono", monospace; }

.last-line { position: relative; min-height: 90vh; display: grid; grid-template-columns: .7fr 1.3fr; gap: 12vw; align-items: center; overflow: hidden; background: var(--scene); }
.next-meeting { z-index: 2; align-self: start; margin-top: 10vh; padding: 21px; border: 1px solid var(--line); background: var(--paper); }
.next-meeting .film { margin: 0 0 8px; font-size: 9px; }
.next-meeting b { font-size: 24px; font-weight: 500; }
.last-line > div:last-child { z-index: 2; }
.last-line h2 { font-size: clamp(48px, 6vw, 96px); }
.last-line a { display: inline-block; margin-top: 36px; font-size: 20px; text-underline-offset: 5px; }
.last-thread { position: absolute; left: 24%; right: 42%; top: 44%; height: 20%; border-top: 2px solid #d56245; border-right: 2px solid #d56245; border-radius: 0 55% 0 0; transform: rotate(8deg); }

.site-footer { color: #ece7dc; background: var(--graphite); }
.footer-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; }
.site-footer .overline { color: #b6b0a3; font-size: 11px; }
.site-footer h2 { margin-top: 18px; font-size: clamp(42px, 4.6vw, 76px); }
.site-footer article > p:not(.overline) { max-width: 700px; margin-top: 28px; color: #cfc8bc; font-size: 19px; line-height: 1.45; }
.site-footer a { display: inline-block; margin-top: 22px; text-underline-offset: 5px; }
.site-footer ol { margin: 32px 0 0; padding: 0; list-style: none; counter-reset: footer-list; }
.site-footer li { counter-increment: footer-list; padding: 15px 0; border-top: 1px solid rgb(236 231 220 / 18%); font-size: 17px; }
.site-footer li::before { content: "0" counter(footer-list); margin-right: 20px; color: #b6b0a3; font: 10px "JetBrains Mono", monospace; }
.footer-meta { display: flex; justify-content: space-between; margin-top: 90px; padding-top: 20px; border-top: 1px solid rgb(236 231 220 / 22%); color: #b6b0a3; font: 10px "JetBrains Mono", monospace; text-transform: uppercase; }

.js .workflow-card,
.js .use-case,
.js .proof-strip article,
.js .feature-list details,
.js .faq-dialogue article {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.js .is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1150px) {
  .hero:not(.hero-transcript) { grid-template-columns: 1fr; }
  .hero-stage { min-height: 650px; }
  .app-window { width: min(920px, 90vw); }
  .hero-transcript h1 { font-size: clamp(68px, 8.8vw, 108px); }
  .hero-bottom-copy { bottom: 245px; }
  .hero-action > a { min-width: 250px; }
  .workflow-grid,
  .uses-grid { grid-template-columns: 1fr 1fr; }
  .workflow-card:nth-child(2),
  .use-case:nth-child(2) { border-right: 0; }
  .workflow-card:nth-child(n+3),
  .use-case:nth-child(n+3) { border-top: 1px solid currentColor; }
  .workflow-card:first-child,
  .workflow-card:nth-child(3),
  .use-case:first-child,
  .use-case:nth-child(3) { padding-left: 0; }
  .workflow-card:nth-child(2),
  .workflow-card:nth-child(4),
  .use-case:nth-child(2),
  .use-case:nth-child(4) { padding-right: 0; }
  .founder { grid-template-columns: minmax(280px, .65fr) 1fr; gap: 6vw; }
}

@media (max-width: 760px) {
  .header-rec { display: none; }
  .header-cta { display: block; padding: 10px 13px; font-size: 11px; }
  .page-frame { margin: 8px; }
  .hero:not(.hero-transcript) { padding: 43px 20px 64px; gap: 38px; }
  .hero-copy > .overline { margin-bottom: 25px; font-size: 11px; }
  .hero:not(.hero-transcript) h1 { font-size: clamp(39px, 12vw, 58px); }
  .hero-list { font-size: 18px; }
  .hero-stage { min-height: 670px; width: 100%; }
  .app-window {
    left: 0;
    width: 760px;
    transform: scale(.66);
    transform-origin: left top;
  }
  .record-popover { left: 12px; bottom: 103px; width: 305px; }
  .future-note { right: -7px; bottom: 0; width: 245px; padding: 14px 16px; }
  .future-note b { font-size: 17px; }
  .thread-line { display: none; }
  .hero-transcript { height: 860px; min-height: 860px; }
  .hero-title { padding: 28px 17px 0; }
  .hero-title > .overline { margin-bottom: 28px; font-size: 9px; }
  .hero-transcript h1 { font-size: clamp(46px, 14vw, 67px); line-height: .9; }
  .transcript-noise { font-size: 11px; opacity: .2; }
  .transcript-noise > div { gap: 48px; }
  .hero-bottom-copy { right: 17px; bottom: 225px; left: 17px; display: block; }
  .hero-message { max-width: none; }
  .hero-examples { font-size: 16px; }
  .hero-explainer { margin-top: 9px; font-size: 8px; }
  .hero-action { display: block; margin-top: 22px; }
  .hero-action > p { display: none; }
  .hero-action > a { min-width: 0; width: 100%; padding: 15px 17px; font-size: 14px; }
  .hero-product { right: 10px; bottom: -245px; left: 10px; height: 430px; }
  .hero-app-head { height: 52px; grid-template-columns: auto 1fr; padding: 0 14px; font-size: 9px; }
  .hero-app-head > span { justify-self: start; margin-left: 15px; }
  .hero-app-head > b { display: none; }
  .traffic i { width: 8px; height: 8px; }
  .hero-app-body { grid-template-columns: 1fr; }
  .wave-area { padding: 26px 18px; border-right: 0; }
  .waveform { height: 90px; gap: 3px; }
  .hero-notes { display: none; }
  .live-transcript { grid-template-columns: 50px 60px 1fr; gap: 8px; font-size: 10px; }
  .section-pad { padding: 72px 20px; }
  .section-heading { margin-bottom: 48px; }
  .section-heading h2,
  .faq-heading h2,
  .founder h2,
  .last-line h2,
  .site-footer h2 { font-size: clamp(42px, 14vw, 66px); }
  .workflow-grid,
  .uses-grid { grid-template-columns: 1fr; }
  .workflow-card,
  .workflow-card:first-child,
  .workflow-card:nth-child(2),
  .workflow-card:nth-child(3),
  .workflow-card:nth-child(4),
  .use-case,
  .use-case:first-child,
  .use-case:nth-child(2),
  .use-case:nth-child(3),
  .use-case:nth-child(4) { padding: 26px 0 34px; border-right: 0; border-top: 1px solid currentColor; }
  .workflow-card:first-child,
  .use-case:first-child { border-top: 0; }
  .workflow-visual { height: 340px; }
  .use-case > p:nth-child(2) { min-height: auto; }
  .paper-fragment { min-height: 245px; }
  .section-conclusion { margin-top: 60px; font-size: 39px; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .context-panels { min-height: 390px; }
  .context-panel { padding: 25px 14px; }
  .call-grid { height: 275px; padding: 13px; }
  .call-grid span { font-size: 20px; }
  .table-scene { grid-template-columns: 1fr; gap: 20px; padding: 30px 8px; text-align: center; }
  .table-scene span { font-size: 24px; }
  .table-scene i { width: 82px; height: 82px; margin: auto; }
  .import-scene { gap: 13px; }
  .audio-file, .import-target { width: 128px; height: 150px; padding: 14px; font-size: 20px; }
  .import-scene > strong { font-size: 31px; }
  .context-controls { grid-template-columns: 1fr 1fr; }
  .context-controls button:nth-child(2) { border-right: 0; }
  .context-controls button:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip article,
  .proof-strip article + article { padding: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip article:last-child { border-bottom: 0; }
  .founder { grid-template-columns: 1fr; }
  .founder-portrait img { max-height: none; }
  .founder-copy h2 { font-size: 48px; }
  .founder-copy > p { font-size: 18px; }
  .feature-list summary { grid-template-columns: 36px 1fr; gap: 12px; }
  .feature-list summary em { grid-column: 2; }
  .feature-list details > div { display: block; padding-left: 48px; }
  .feature-list details > div p { font-size: 16px; }
  .faq { display: block; }
  .faq-heading { position: static; margin-bottom: 52px; }
  .faq-dialogue article { padding-right: 0; padding-bottom: 48px; }
  .faq-dialogue em { position: static; display: block; margin-top: 17px; }
  .last-line { min-height: 95vh; grid-template-columns: 1fr; gap: 60px; align-content: center; }
  .next-meeting { align-self: auto; margin: 0; }
  .last-thread { display: none; }
  .footer-columns { grid-template-columns: 1fr; gap: 80px; }
  .footer-meta { flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .context-panel.is-active { animation: none; }
  .js .transcript-noise { opacity: .25; transition: none; }
  .js .hero-title,
  .js .hero-product,
  .js .hero-bottom-copy { opacity: 1; transform: none; transition: none; }
  .js .workflow-card,
  .js .use-case,
  .js .proof-strip article,
  .js .feature-list details,
  .js .faq-dialogue article { opacity: 1; transform: none; transition: none; }
}
