@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&family=Newsreader:opsz,wght@6..72,400;6..72,500&display=swap');

:root {
  --paper: #fbf7ef;
  --paper-deep: #efe8db;
  --ink: #203738;
  --muted: #6e756d;
  --blue: #7fa6b4;
  --blue-deep: #416775;
  --sage: #a4ad93;
  --sand: #d9c9ad;
  --coral: #d98f73;
  --line: rgba(32, 55, 56, .15);
  --line-strong: rgba(32, 55, 56, .28);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "DM Mono", ui-monospace, monospace;
  --page: min(1440px, calc(100% - 56px));
  --content: min(1240px, calc(100% - 56px));
  --shadow-window: 0 34px 90px rgba(32, 55, 56, .14), 0 8px 24px rgba(32, 55, 56, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: -5rem;
  left: 1rem;
  padding: .75rem 1rem;
  background: var(--ink);
  color: white;
}
.skip-link:focus { top: 1rem; }

.desktop-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 78px;
  padding: 0 max(24px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 239, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.5rem;
  text-decoration: none;
}
.brand img { border-radius: 9px; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: .82rem;
}
.desktop-nav a,
footer a {
  text-decoration: none;
  transition: color .2s ease;
}
.desktop-nav a:hover,
.desktop-nav a:focus-visible,
footer a:hover,
footer a:focus-visible { color: var(--blue-deep); }
.header-cta { justify-self: end; }
.menu-button,
.mobile-menu { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover {
  border-color: var(--blue-deep);
  background: var(--blue-deep);
  transform: translateY(-2px);
}
.button:focus-visible,
.text-link:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(65, 103, 117, .35);
  outline-offset: 4px;
}
.button-small {
  min-height: 40px;
  padding-inline: 17px;
  font-size: .77rem;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-deep);
  font-size: .86rem;
  font-weight: 600;
  text-decoration: none;
}
.text-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}
.text-link:hover svg { transform: translateX(4px); }
.actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 32px;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}
h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}
h1 { font-size: clamp(4.1rem, 6.1vw, 7.3rem); }
h2 { font-size: clamp(3.2rem, 5.4vw, 6.3rem); }
p { line-height: 1.65; }
.availability {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: .78rem;
}
.availability svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.download-note {
  max-width: 42rem;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.55;
}

.hero {
  display: grid;
  grid-template-columns: minmax(500px, .88fr) minmax(620px, 1.12fr);
  align-items: center;
  gap: clamp(50px, 6vw, 110px);
  width: var(--page);
  min-height: max(760px, 100vh);
  margin: 0 auto;
  padding: 135px 0 92px;
}
.hero h1 { font-size: clamp(4rem, 4.4vw, 5.6rem); }
.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #56615b;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}
.hero-product {
  position: relative;
  min-width: 0;
  padding: 24px 14px;
}
.mac-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(32, 55, 56, .16);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-window);
}
.mac-window img { width: 100%; }
.hero-window { transform: perspective(1600px) rotateY(-2.5deg) rotateX(.4deg); }
.floating-recorder {
  position: absolute;
  right: -1%;
  bottom: 24px;
  z-index: 4;
  width: min(390px, 55%);
  padding: 18px;
  border: 1px solid rgba(32, 55, 56, .18);
  border-radius: 16px;
  background: rgba(251, 247, 239, .97);
  box-shadow: 0 22px 55px rgba(32, 55, 56, .18);
}
.recorder-heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: .73rem;
}
.recorder-heading time {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .62rem;
}
.record-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(217, 143, 115, .16);
}
.mini-meter {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 9px;
  color: var(--muted);
  font-size: .6rem;
}
.mini-meter i {
  height: 5px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--paper-deep);
}
.mini-meter b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}
.floating-recorder > p {
  margin: 14px 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: .65rem;
  line-height: 1.45;
}
.floating-recorder > p strong { color: var(--blue-deep); }
.recorder-controls {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  font-size: .57rem;
}
.recorder-controls span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.recorder-controls .stop-control {
  border-color: rgba(217, 143, 115, .35);
  background: var(--coral);
  color: white;
}
.phone-frame {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 38px;
  background: #171c1b;
  box-shadow: 0 25px 65px rgba(32, 55, 56, .18);
}
.phone-frame img {
  width: 100%;
  border-radius: 32px;
}
.hero-phone {
  position: absolute;
  right: -7%;
  bottom: -10px;
  z-index: 5;
  width: 132px;
  transform: rotate(2deg);
}

.capture-section {
  padding: 145px max(28px, calc((100vw - 1240px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}
.section-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 70px;
}
.section-heading > p {
  max-width: 520px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1rem;
}
.capture-demo {
  margin-top: 80px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 26px 70px rgba(32, 55, 56, .09);
}
.capture-screenshot {
  width: var(--content);
  margin: 80px auto 0;
  background: white;
}
.capture-screenshot img {
  width: 100%;
  aspect-ratio: 1224 / 768;
  object-fit: contain;
}
.capture-tabs {
  display: flex;
  gap: 2px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.capture-tabs button,
.showcase-tabs button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: .75rem;
}
.capture-tabs button {
  padding: 10px 15px;
  border-radius: 7px;
}
.capture-tabs button[aria-selected="true"] {
  background: var(--blue-deep);
  color: white;
}
.capture-panel {
  display: grid;
  grid-template-columns: .8fr .8fr 1.4fr;
}
.capture-panel.microphone-only { grid-template-columns: .8fr 1.4fr; }
.capture-panel.microphone-only .live-transcript { grid-column: auto; }
.capture-source,
.live-transcript {
  min-width: 0;
  padding: 28px;
}
.capture-source { border-right: 1px solid var(--line); }
.source-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
}
.source-label svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--blue-deep);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.audio-bars {
  display: flex;
  align-items: end;
  height: 52px;
  gap: 3px;
  margin-top: 20px;
}
.audio-bars i {
  flex: 1;
  max-width: 7px;
  height: 24%;
  border-radius: 3px;
  background: var(--blue);
  animation: meter 1.4s ease-in-out infinite alternate;
}
.audio-bars i:nth-child(3n) { height: 70%; animation-delay: -.4s; }
.audio-bars i:nth-child(4n) { height: 42%; animation-delay: -.8s; }
.audio-bars i:nth-child(5n) { height: 88%; animation-delay: -.2s; }
.audio-bars.secondary i { background: var(--sage); }
.live-transcript {
  border-left: 0;
  background: rgba(251, 247, 239, .48);
}
.transcript-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.live-transcript p {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 10px;
  margin: 16px 0 0;
  color: var(--ink);
  font-size: .72rem;
  line-height: 1.5;
}
.live-transcript strong {
  color: var(--blue-deep);
  font-size: .65rem;
}
.live-transcript .provisional { color: var(--muted); }
.capture-controls {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
}
.capture-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  min-height: 42px;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: .72rem;
}
.capture-controls svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.capture-controls .stop-button {
  border-color: var(--coral);
  background: var(--coral);
  color: white;
}
.capture-panel.is-paused .audio-bars i { animation-play-state: paused; opacity: .45; }
.capture-panel.is-paused .provisional { opacity: .45; }
.capture-panel.is-stopped .audio-bars i { animation: none; height: 5px; opacity: .35; }
.capture-panel.is-stopped .provisional { color: var(--ink); opacity: 1; }
.capture-controls button[aria-pressed="true"] {
  border-color: var(--blue);
  background: rgba(127, 166, 180, .16);
  color: var(--blue-deep);
}
.capture-controls button:disabled { cursor: default; opacity: .72; }
.capture-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  border-top: 1px solid var(--line);
}
.capture-principles p {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  margin: 0;
  padding: 28px 28px 0;
  border-left: 1px solid var(--line);
}
.capture-principles p:first-child { border-left: 0; }
.capture-principles span {
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: .62rem;
}
.capture-principles b {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}
.capture-principles small {
  grid-column: 2;
  color: var(--muted);
  font-size: .73rem;
  line-height: 1.55;
}

.screen-meeting-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: clamp(70px, 9vw, 135px);
  width: var(--content);
  margin: 0 auto;
  padding: 165px 0;
}
.screen-meeting-copy > p:not(.eyebrow),
.playback-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
}
.capture-stack {
  position: relative;
  padding: 30px 30px 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(251, 247, 239, .88), rgba(251, 247, 239, .88)),
    repeating-linear-gradient(90deg, transparent 0, transparent 31px, rgba(32, 55, 56, .045) 32px),
    repeating-linear-gradient(0deg, transparent 0, transparent 31px, rgba(32, 55, 56, .045) 32px);
}
.capture-stack-screen {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: white;
  box-shadow: 0 20px 48px rgba(32, 55, 56, .11);
}
.capture-stack-toolbar {
  display: flex;
  align-items: center;
  min-height: 38px;
  gap: 6px;
  padding: 0 13px;
  border-bottom: 1px solid var(--line);
}
.capture-stack-toolbar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sand);
}
.capture-stack-toolbar > span:first-child { background: var(--coral); }
.capture-stack-toolbar > span:nth-child(2) { background: var(--sage); }
.capture-stack-toolbar small {
  margin-left: auto;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .52rem;
  letter-spacing: .05em;
}
.screen-content-demo,
.visual-cue-image {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 25px;
  background: var(--ink);
  color: var(--paper);
}
.screen-content-demo { min-height: 245px; padding: 34px 38px; }
.screen-demo-copy {
  display: grid;
  align-content: center;
}
.screen-demo-copy > span,
.visual-cue-image > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: .54rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.screen-demo-copy > b,
.visual-cue-image > b {
  margin: 12px 0 25px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.55rem);
  font-weight: 400;
  line-height: 1;
}
.screen-demo-copy > i {
  display: block;
  width: 74%;
  height: 3px;
  margin-top: 8px;
  background: rgba(251, 247, 239, .25);
}
.screen-demo-copy > i:nth-of-type(2) { width: 91%; }
.screen-demo-copy > i:nth-of-type(3) { width: 58%; }
.screen-demo-chart,
.visual-cue-image > div {
  display: flex;
  align-items: end;
  justify-content: center;
  height: 145px;
  gap: 9px;
  padding: 18px;
  border-left: 1px solid rgba(251, 247, 239, .15);
}
.screen-demo-chart i,
.visual-cue-image > div i {
  width: 18%;
  height: 42%;
  border-radius: 4px 4px 0 0;
  background: var(--blue);
}
.screen-demo-chart i:nth-child(2),
.visual-cue-image > div i:nth-child(2) { height: 68%; background: var(--sage); }
.screen-demo-chart i:nth-child(3),
.visual-cue-image > div i:nth-child(3) { height: 88%; background: var(--sand); }
.screen-demo-chart i:nth-child(4),
.visual-cue-image > div i:nth-child(4) { height: 75%; background: var(--coral); }
.capture-tracks { margin-top: 24px; }
.capture-tracks p {
  display: grid;
  grid-template-columns: 13px 90px 1fr 128px;
  align-items: center;
  gap: 11px;
  min-height: 39px;
  margin: 0;
  border-top: 1px solid var(--line);
  font-size: .61rem;
}
.capture-tracks b { font-size: .61rem; font-weight: 600; }
.capture-tracks small { color: var(--muted); font-size: .55rem; }
.capture-tracks i {
  position: relative;
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(127, 166, 180, .18);
}
.capture-tracks i::after {
  content: "";
  position: absolute;
  inset: 0 22% 0 0;
  border-radius: inherit;
  background: repeating-linear-gradient(90deg, var(--blue) 0 3px, transparent 3px 6px);
}
.track-kind {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.track-app { background: var(--sage); }
.track-mic { background: var(--coral); }
.track-canonical { background: var(--blue-deep); }
.capture-tracks .canonical-track {
  border-top-color: var(--line-strong);
  color: var(--blue-deep);
}
.canonical-track i { background: rgba(65, 103, 117, .14); }
.canonical-track i::after { background: var(--blue-deep); opacity: .7; }
.timeline-marker {
  position: absolute;
  right: 30%;
  top: 30px;
  bottom: 24px;
  width: 1px;
  background: rgba(217, 143, 115, .72);
  pointer-events: none;
}
.timeline-marker::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}
.timeline-marker span {
  position: absolute;
  right: 7px;
  bottom: 0;
  padding: 3px 6px;
  border-radius: 3px;
  background: var(--coral);
  color: white;
  font-family: var(--mono);
  font-size: .5rem;
}

.automation-section {
  width: var(--content);
  margin: 0 auto;
  padding: 165px 0;
}
.automation-heading {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: end;
  gap: clamp(55px, 8vw, 120px);
}
.automation-intro > p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
}
.automation-intro .automation-boundary {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: .8rem;
}
.automation-builder {
  display: grid;
  grid-template-columns: minmax(190px, .7fr) 54px minmax(250px, .95fr) 54px minmax(300px, 1.25fr);
  align-items: center;
  gap: clamp(15px, 2vw, 32px);
  margin-top: 82px;
  padding: clamp(28px, 3.8vw, 54px);
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(251, 247, 239, .82), rgba(251, 247, 239, .82)),
    repeating-linear-gradient(90deg, transparent 0, transparent 31px, rgba(32, 55, 56, .045) 32px),
    repeating-linear-gradient(0deg, transparent 0, transparent 31px, rgba(32, 55, 56, .045) 32px);
}
.automation-label {
  margin: 0 0 15px;
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}
.automation-picker,
.harbor-bridge-card,
.automation-options,
.meeting-options,
.meeting-result {
  min-width: 0;
}
.automation-options {
  display: grid;
  gap: 7px;
}
.automation-option,
.meeting-option,
.copy-automation-prompt {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .58);
  color: var(--ink);
  cursor: pointer;
}
.automation-option {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  min-height: 43px;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 7px;
  font-size: .7rem;
  text-align: left;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.automation-option > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--paper-deep);
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: .55rem;
  font-weight: 500;
}
.automation-option:hover,
.meeting-option:hover { border-color: var(--blue); transform: translateY(-1px); }
.automation-option.is-selected {
  border-color: var(--blue-deep);
  background: var(--blue-deep);
  color: white;
}
.automation-option.is-selected > span {
  background: rgba(255, 255, 255, .17);
  color: white;
}
.automation-flow-arrow {
  position: relative;
  height: 1px;
  background: var(--blue-deep);
}
.automation-flow-arrow::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-deep);
  animation: automation-travel 2.3s ease-in-out infinite;
}
.automation-flow-arrow::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--blue-deep);
  border-right: 1px solid var(--blue-deep);
  transform: rotate(45deg);
}
.harbor-bridge-card {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 45px rgba(32, 55, 56, .1);
}
.bridge-card-topline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 14px 15px;
  border-bottom: 1px solid var(--line);
  font-size: .68rem;
}
.bridge-card-topline small {
  color: #5f8f6e;
  font-family: var(--mono);
  font-size: .55rem;
  text-transform: uppercase;
}
.bridge-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #68a079;
  box-shadow: 0 0 0 4px rgba(104, 160, 121, .14);
}
.bridge-timeline {
  list-style: none;
  margin: 0;
  padding: 10px 15px;
}
.bridge-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 52px;
}
.bridge-timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  bottom: -8px;
  left: 11px;
  border-left: 1px solid var(--line-strong);
}
.bridge-timeline li > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: white;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .52rem;
}
.bridge-timeline .is-active > span {
  border-color: var(--blue-deep);
  background: var(--blue-deep);
  color: white;
}
.bridge-timeline div { display: grid; gap: 2px; }
.bridge-timeline b { font-size: .67rem; }
.bridge-timeline small { color: var(--muted); font-size: .56rem; }
.harbor-bridge-card > p {
  margin: 0;
  padding: 11px 15px;
  border-top: 1px solid var(--line);
  background: rgba(164, 173, 147, .12);
  color: var(--muted);
  font-size: .57rem;
  line-height: 1.5;
}
.meeting-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.meeting-option {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 17px;
  font-size: .62rem;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.meeting-option.is-selected {
  border-color: var(--blue-deep);
  background: rgba(127, 166, 180, .16);
  color: var(--blue-deep);
  font-weight: 600;
}
.meeting-result {
  margin-top: 17px;
  padding: 17px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 15px 34px rgba(32, 55, 56, .08);
}
.meeting-result-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}
.meeting-result-head > div { display: grid; gap: 2px; }
.meeting-result-head b { font-size: .72rem; }
.meeting-result-head small { color: var(--muted); font-size: .55rem; }
.meeting-result-head time {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .56rem;
}
.recording-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(217, 143, 115, .14);
  animation: recording-pulse 1.7s ease-out infinite;
}
.meeting-waveform {
  display: flex;
  align-items: center;
  height: 52px;
  gap: 4px;
  margin: 12px 0;
}
.meeting-waveform i {
  flex: 1;
  height: 22%;
  max-width: 9px;
  border-radius: 4px;
  background: var(--blue);
  animation: meter 1.3s ease-in-out infinite alternate;
}
.meeting-waveform i:nth-child(3n) { height: 72%; animation-delay: -.35s; }
.meeting-waveform i:nth-child(4n) { height: 45%; animation-delay: -.8s; }
.meeting-waveform i:nth-child(5n) { height: 90%; animation-delay: -.15s; }
.meeting-outputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.meeting-outputs span {
  display: grid;
  gap: 2px;
  padding: 11px 8px 0;
  border-left: 1px solid var(--line);
}
.meeting-outputs span:first-child { padding-left: 0; border-left: 0; }
.meeting-outputs b { font-size: .6rem; }
.meeting-outputs small { color: var(--muted); font-size: .49rem; }
.automation-instructions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.automation-instructions article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.automation-instructions article:first-child { border-left: 1px solid var(--line); }
.automation-instructions article > span {
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: .6rem;
}
.automation-instructions h3 {
  margin: 72px 0 11px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}
.automation-instructions p {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
}
.automation-prompt {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  margin-top: 34px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}
.automation-prompt .automation-label { margin-bottom: 10px; }
.automation-prompt blockquote {
  max-width: 960px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  line-height: 1.35;
}
.copy-automation-prompt {
  min-width: 130px;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 6px;
  color: var(--blue-deep);
  font-size: .68rem;
  font-weight: 600;
}
.copy-automation-prompt:hover { border-color: var(--blue-deep); }
.automation-compatibility {
  max-width: 970px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: .65rem;
  text-align: center;
}

.library-section {
  display: grid;
  grid-template-columns: .42fr 1fr;
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
  width: var(--page);
  margin: 0 auto;
  padding: 165px 0;
}
.library-copy > p:not(.eyebrow),
.review-copy > p:not(.eyebrow),
.processing-copy > p:not(.eyebrow),
.ecosystem-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
}
.showcase-tabs {
  display: grid;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}
.showcase-tabs button {
  position: relative;
  min-height: 48px;
  padding: 0 0 0 3px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.showcase-tabs button::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--blue-deep);
  transition: width .25s ease;
}
.showcase-tabs button[aria-selected="true"] {
  color: var(--blue-deep);
  font-weight: 600;
}
.showcase-tabs button[aria-selected="true"]::before { width: 86px; }
.showcase-window img {
  aspect-ratio: 2480 / 1560;
  object-fit: cover;
  transition: opacity .18s ease;
}

.review-section {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: clamp(65px, 9vw, 135px);
  padding: 160px max(28px, calc((100vw - 1360px) / 2));
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}
.review-visual { position: relative; padding: 20px 0 50px; }
.review-window img { aspect-ratio: 2480 / 1560; object-fit: cover; }
.correction-note {
  position: absolute;
  right: -24px;
  bottom: 0;
  display: grid;
  min-width: 220px;
  padding: 18px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 20px 45px rgba(32, 55, 56, .13);
}
.correction-note span {
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: .56rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.correction-note b {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}
.correction-note small { margin-top: 3px; color: var(--muted); }
.plain-list {
  list-style: none;
  margin: 35px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.plain-list li {
  position: relative;
  padding: 14px 0 14px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: .82rem;
}
.plain-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.evidence-section {
  padding: 155px max(28px, calc((100vw - 1360px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}
.evidence-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: clamp(55px, 8vw, 120px);
}
.evidence-heading > p {
  max-width: 560px;
  margin: 0 0 7px;
  color: var(--muted);
}
.evidence-showcase {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  margin-top: 82px;
}
.visual-cue-card,
.report-preview {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 24px 60px rgba(32, 55, 56, .1);
}
.visual-cue-card { overflow: hidden; border-radius: 14px; }
.visual-cue-image {
  min-height: 300px;
  padding: 38px;
}
.visual-cue-image > span,
.visual-cue-image > b { grid-column: 1; }
.visual-cue-image > b { margin-bottom: 0; }
.visual-cue-image > div { grid-column: 2; grid-row: 1 / span 2; }
.visual-cue-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  min-height: 82px;
  padding: 16px 18px;
}
.visual-cue-meta > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 40px;
  border-radius: 5px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: .61rem;
}
.visual-cue-meta > div { display: grid; gap: 4px; }
.visual-cue-meta b { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; }
.visual-cue-meta small { color: var(--muted); font-size: .6rem; line-height: 1.4; }
.report-preview {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 4px;
}
.report-preview-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: .57rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.report-preview-topline small { color: var(--muted); font: inherit; }
.report-preview h3 {
  margin: 28px 0 12px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
}
.report-brief {
  max-width: 620px;
  margin: 0 0 27px;
  color: var(--muted);
  font-size: .76rem;
}
.report-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: start;
  gap: 15px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.report-item > span {
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.report-item > div { display: grid; gap: 5px; }
.report-item b { font-family: var(--serif); font-size: 1rem; font-weight: 500; }
.report-item small { color: var(--muted); font-size: .58rem; }
.report-item a {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--blue);
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: .55rem;
  text-decoration: none;
}
.evidence-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 65px;
  border-top: 1px solid var(--line);
}
.evidence-principles p {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  margin: 0;
  padding: 28px 28px 0;
  border-left: 1px solid var(--line);
}
.evidence-principles p:first-child { border-left: 0; }
.evidence-principles span {
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: .62rem;
}
.evidence-principles b {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}
.evidence-principles small {
  grid-column: 2;
  color: var(--muted);
  font-size: .73rem;
  line-height: 1.55;
}

.playback-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: clamp(70px, 9vw, 135px);
  width: var(--content);
  margin: 0 auto;
  padding: 165px 0;
}
.playback-demo {
  position: relative;
  padding: 30px 30px 104px;
  border: 1px solid var(--line);
  background: rgba(239, 232, 219, .55);
}
.playback-frame {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow-window);
}
.playback-slide {
  min-height: 265px;
  padding: 48px;
  background:
    radial-gradient(circle at 82% 35%, rgba(127, 166, 180, .38), transparent 23%),
    radial-gradient(circle at 70% 68%, rgba(164, 173, 147, .27), transparent 28%),
    var(--ink);
  color: var(--paper);
}
.playback-slide span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: .56rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.playback-slide b {
  display: block;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}
.playback-controls {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 13px;
  min-height: 58px;
  padding: 0 16px;
}
.playback-button {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: white;
  font-size: .6rem;
}
.playback-progress {
  position: relative;
  height: 4px;
  border-radius: 4px;
  background: var(--paper-deep);
}
.playback-progress i {
  position: absolute;
  inset: 0 58% 0 0;
  border-radius: inherit;
  background: var(--blue-deep);
}
.playback-progress b {
  position: absolute;
  top: -4px;
  left: 42%;
  width: 12px;
  height: 12px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 1px var(--coral);
}
.playback-controls time {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .55rem;
}
.export-card {
  position: absolute;
  right: -26px;
  bottom: 30px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  width: min(430px, 72%);
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 20px 50px rgba(32, 55, 56, .15);
}
.export-card > div { display: grid; gap: 3px; }
.export-card small {
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: .53rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.export-card b { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }
.export-card p { margin: 2px 0 0; color: var(--muted); font-size: .62rem; line-height: 1.45; }

.processing-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
  width: var(--content);
  margin: 0 auto;
  padding: 165px 0;
}
.processing-copy .text-link { margin-top: 30px; }
.processing-card {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, .68);
  box-shadow: var(--shadow-window);
}
.processing-screenshot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow-window);
}
.processing-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}
.processing-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  font-size: .75rem;
  font-weight: 600;
}
.processing-topbar button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: var(--blue-deep);
  color: white;
  font-size: .66rem;
  cursor: pointer;
}
.recording-chip {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}
.recording-chip div,
.stage-list div { display: grid; gap: 2px; }
.recording-chip b,
.stage-list b { font-size: .72rem; }
.recording-chip small,
.stage-list small { color: var(--muted); font-size: .61rem; }
.document-icon {
  position: relative;
  width: 28px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: white;
}
.document-icon::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 9px;
  height: 9px;
  border-left: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--paper-deep);
}
.stage-list {
  list-style: none;
  margin: 0 18px 18px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.stage-list li {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 57px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
}
.stage-list li:last-child { border-bottom: 0; }
.stage-list li > span {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: .58rem;
}
.stage-list em {
  color: var(--muted);
  font-size: .58rem;
  font-style: normal;
}
.stage-list .complete > span { border-color: #5f9b73; background: #5f9b73; color: white; }
.stage-list .complete small { color: #5f9b73; }
.stage-list .attention > span { border-color: var(--coral); background: var(--coral); color: white; }
.stage-list .attention small { color: var(--coral); }
.stage-list li.is-processing > span {
  border-color: var(--blue);
  border-top-color: transparent;
  animation: stage-spin .7s linear infinite;
}
.stage-list li.is-complete > span {
  border-color: #5f9b73;
  background: #5f9b73;
  color: white;
}
.stage-list li.is-complete small { color: #5f9b73; }

.durability-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(70px, 10vw, 150px);
  padding: 145px max(28px, calc((100vw - 1240px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}
.durability-intro > p:last-child {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
}
.durability-points article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.durability-points article:last-child { border-bottom: 1px solid var(--line); }
.round-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.round-icon svg,
.action-list svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.blue-icon { background: rgba(127, 166, 180, .2); color: var(--blue-deep); }
.coral-icon { background: rgba(217, 143, 115, .17); color: #ad6147; }
.sage-icon { background: rgba(164, 173, 147, .24); color: #687259; }
.durability-points h3,
.action-list b {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}
.durability-points p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: .8rem;
}

.package-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
  width: var(--content);
  margin: 0 auto;
  padding: 165px 0;
}
.package-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 26px 0 0;
  color: var(--muted);
}
.action-list {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}
.action-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.action-list li:last-child { border-bottom: 1px solid var(--line); }
.action-list svg { color: var(--blue-deep); }
.action-list b { font-size: 1.15rem; }
.action-list div { display: grid; gap: 4px; }
.action-list small { color: var(--muted); font-size: .68rem; }
.folder-diagram {
  display: grid;
  grid-template-columns: .72fr 80px 1.28fr;
  align-items: center;
  min-height: 480px;
  padding: clamp(28px, 4vw, 60px);
  border: 1px solid var(--line);
  background: rgba(239, 232, 219, .55);
}
.folder-object {
  display: grid;
  justify-items: center;
  text-align: center;
}
.folder-object > span,
.small-folder {
  position: relative;
  display: block;
  width: 130px;
  height: 92px;
  border: 1px solid rgba(32, 55, 56, .2);
  border-radius: 5px 13px 13px 13px;
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(32, 55, 56, .15);
}
.folder-object > span::before,
.small-folder::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -1px;
  width: 58%;
  height: 20px;
  border: 1px solid rgba(32, 55, 56, .2);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: var(--blue);
}
.folder-object b { margin-top: 18px; font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.folder-object small { margin-top: 5px; color: var(--muted); font-size: .65rem; }
.folder-connector {
  position: relative;
  height: 1px;
  background: var(--blue-deep);
}
.folder-connector::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--blue-deep);
  border-right: 1px solid var(--blue-deep);
  transform: rotate(45deg);
}
.file-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.file-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
}
.file-kind {
  display: grid;
  place-items: center;
  width: 34px;
  height: 42px;
  border-radius: 2px;
  font-family: var(--mono);
  font-size: .56rem;
  box-shadow: 2px 3px 0 rgba(32, 55, 56, .11);
}
.audio-kind { background: var(--blue); color: white; font-size: 1rem; }
.md-kind { background: var(--ink); color: white; }
.json-kind { background: var(--sage); color: var(--ink); }
.file-list div { display: grid; gap: 3px; }
.file-list b { font-size: .75rem; }
.file-list small { color: var(--muted); font-size: .65rem; }

.ecosystem-section {
  padding: 155px max(28px, calc((100vw - 1360px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}
.ecosystem-copy {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  column-gap: 90px;
  align-items: end;
}
.ecosystem-copy .eyebrow,
.ecosystem-copy h2 { grid-column: 1; }
.ecosystem-copy > p:not(.eyebrow),
.ecosystem-copy .plain-list { grid-column: 2; }
.ecosystem-copy > p:not(.eyebrow) { grid-row: 1 / span 2; align-self: center; }
.ecosystem-copy .plain-list { margin-top: 28px; }
.ecosystem-visual {
  display: grid;
  grid-template-columns: 200px 210px minmax(580px, 1fr);
  align-items: center;
  justify-content: center;
  gap: clamp(25px, 4vw, 70px);
  margin-top: 85px;
}
.ecosystem-phone { width: 190px; margin: auto; }
.ecosystem-phone img {
  aspect-ratio: 393 / 852;
  object-fit: cover;
  object-position: top;
}
.package-node {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}
.package-node::before,
.package-node::after {
  content: "";
  position: absolute;
  top: 48px;
  width: 58px;
  border-top: 1px dashed var(--blue-deep);
}
.package-node::before { left: -42px; }
.package-node::after { right: -42px; }
.small-folder {
  width: 88px;
  height: 63px;
  box-shadow: 0 10px 22px rgba(32, 55, 56, .12);
}
.package-node b { margin-top: 16px; font-family: var(--serif); font-size: 1.05rem; font-weight: 500; }
.package-node small { margin-top: 4px; color: var(--muted); font-size: .62rem; }
.ecosystem-mac { width: 100%; }
.ecosystem-note {
  max-width: 760px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: .68rem;
  text-align: center;
}

.privacy-section {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: clamp(60px, 9vw, 130px);
  width: var(--content);
  margin: 0 auto;
  padding: 155px 0;
}
.privacy-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.privacy-points article {
  min-height: 250px;
  padding: 30px 28px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.privacy-points span {
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: .62rem;
}
.privacy-points h3 {
  margin: 70px 0 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}
.privacy-points p { margin: 0; color: var(--muted); font-size: .76rem; }
.privacy-links {
  grid-column: 2;
  display: flex;
  gap: 28px;
  margin-top: -45px;
  padding-left: 28px;
}
.privacy-links a {
  color: var(--blue-deep);
  font-size: .75rem;
  text-underline-offset: 4px;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 80px;
  min-height: 560px;
  padding: 120px max(28px, calc((100vw - 1240px) / 2));
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
}
.final-cta::after {
  content: "";
  position: absolute;
  right: -6%;
  bottom: -180px;
  left: -6%;
  height: 290px;
  border-radius: 50% 50% 0 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(127,166,180,.25), transparent 42%),
    radial-gradient(ellipse at 75% 15%, rgba(164,173,147,.3), transparent 46%),
    var(--paper-deep);
}
.final-cta > div { position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(4rem, 7vw, 7.5rem); }
.final-cta > div:first-child > p:last-child {
  max-width: 560px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.45rem;
}
.final-actions {
  display: grid;
  justify-items: start;
  min-width: 275px;
  gap: 22px;
  padding-bottom: 10px;
}
.final-actions .button { width: 100%; }
.final-actions .availability { margin: 0; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 130px;
  gap: 30px;
  padding: 24px max(28px, calc((100vw - 1240px) / 2));
  background: var(--ink);
  color: var(--paper);
}
.footer-brand { color: var(--paper); }
footer p { margin: 0; color: var(--sage); font-family: var(--serif); font-size: 1rem; }
footer nav {
  display: flex;
  justify-self: end;
  gap: 22px;
  font-size: .7rem;
}

@keyframes meter {
  0% { transform: scaleY(.62); opacity: .7; }
  100% { transform: scaleY(1); opacity: 1; }
}
@keyframes stage-spin { to { transform: rotate(360deg); } }
@keyframes automation-travel {
  0%, 100% { transform: translateX(0); opacity: 0; }
  18%, 78% { opacity: 1; }
  90% { transform: translateX(34px); opacity: 0; }
}
@keyframes recording-pulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 143, 115, .3); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(217, 143, 115, 0); }
}

@media (max-width: 1180px) {
  .desktop-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .header-cta { margin-right: 58px; }
  .menu-button {
    position: absolute;
    right: 24px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }
  .menu-button span:not(.sr-only) {
    position: absolute;
    width: 17px;
    height: 1px;
    background: var(--ink);
    transition: transform .2s ease;
  }
  .menu-button span:first-child { transform: translateY(-3px); }
  .menu-button span:nth-child(2) { transform: translateY(3px); }
  .menu-button[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: rotate(-45deg); }
  .mobile-menu {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    padding: 22px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 25px 60px rgba(32, 55, 56, .14);
  }
  .mobile-menu:not([hidden]) { display: block; }
  .mobile-menu nav { display: grid; }
  .mobile-menu a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
  }
  .hero {
    grid-template-columns: minmax(430px, .85fr) minmax(520px, 1.15fr);
    gap: 40px;
    width: calc(100% - 48px);
  }
  .hero h1 { font-size: clamp(4rem, 6vw, 5.5rem); }
  .hero-phone { right: -1%; width: 112px; }
  .floating-recorder { right: 2%; width: 52%; }
  .ecosystem-visual { grid-template-columns: 165px 150px minmax(430px, 1fr); }
  .automation-builder {
    grid-template-columns: minmax(170px, .7fr) 35px minmax(220px, .95fr) 35px minmax(270px, 1.15fr);
    gap: 14px;
    padding-inline: 25px;
  }
}

@media (max-width: 900px) {
  :root {
    --page: min(100% - 40px, 760px);
    --content: min(100% - 40px, 760px);
  }
  h1 { font-size: clamp(4rem, 12vw, 6.2rem); }
  h2 { font-size: clamp(3.3rem, 10vw, 5.4rem); }
  .hero h1 { font-size: clamp(4rem, 12vw, 6.2rem); }
  .hero {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: 0;
    padding: 145px 0 110px;
  }
  .hero-copy { max-width: 720px; }
  .hero-product { padding: 0; }
  .hero-phone { right: 0; }
  .floating-recorder { right: 2%; width: 48%; }
  .section-heading,
  .automation-heading,
  .library-section,
  .review-section,
  .screen-meeting-section,
  .evidence-heading,
  .playback-section,
  .processing-section,
  .durability-section,
  .package-section,
  .privacy-section {
    grid-template-columns: 1fr;
  }
  .section-heading { gap: 28px; }
  .capture-section { padding-block: 120px; }
  .capture-panel { grid-template-columns: 1fr 1fr; }
  .live-transcript { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .capture-principles { grid-template-columns: 1fr; }
  .capture-principles p {
    padding: 22px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .automation-section { padding-block: 125px; }
  .automation-heading { gap: 28px; }
  .automation-builder {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 62px;
  }
  .automation-options {
    grid-template-columns: repeat(5, minmax(105px, 1fr));
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
  }
  .automation-option {
    grid-template-columns: 28px 1fr;
    min-width: 105px;
  }
  .automation-flow-arrow {
    width: 52px;
    margin: 0 auto;
    transform: rotate(90deg);
  }
  .harbor-bridge-card { width: min(100%, 480px); margin: auto; }
  .meeting-picker { width: 100%; }
  .automation-instructions { grid-template-columns: repeat(2, 1fr); }
  .automation-instructions article:nth-child(3) { border-left: 1px solid var(--line); }
  .library-section { gap: 60px; padding: 125px 0; }
  .showcase-tabs { grid-template-columns: repeat(2, auto); }
  .showcase-tabs button { padding-inline: 10px; text-align: center; }
  .showcase-tabs button[aria-selected="true"]::before { width: 100%; }
  .review-section { gap: 70px; padding-block: 125px; }
  .review-copy { order: -1; }
  .screen-meeting-section,
  .playback-section { gap: 70px; padding-block: 125px; }
  .evidence-section { padding-block: 125px; }
  .evidence-heading { gap: 28px; }
  .evidence-showcase { grid-template-columns: 1fr; margin-top: 62px; }
  .visual-cue-card { width: min(100%, 640px); }
  .processing-section,
  .durability-section,
  .package-section { gap: 70px; padding-block: 125px; }
  .folder-diagram { min-height: 430px; }
  .ecosystem-section { padding-block: 125px; }
  .ecosystem-copy { grid-template-columns: 1fr; gap: 0; }
  .ecosystem-copy .eyebrow,
  .ecosystem-copy h2,
  .ecosystem-copy > p:not(.eyebrow),
  .ecosystem-copy .plain-list { grid-column: 1; grid-row: auto; }
  .ecosystem-visual {
    grid-template-columns: 155px 135px 1fr;
    gap: 25px;
    margin-top: 65px;
  }
  .privacy-section { gap: 60px; padding-block: 125px; }
  .privacy-links { grid-column: 1; margin-top: 0; padding: 0; }
  .final-cta {
    grid-template-columns: 1fr;
    align-items: center;
    min-height: 650px;
  }
  .final-actions { min-width: 0; width: min(100%, 350px); }
  footer { grid-template-columns: 1fr; justify-items: start; padding-block: 40px; }
  footer nav { justify-self: start; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  :root {
    --page: calc(100% - 32px);
    --content: calc(100% - 32px);
  }
  html { scroll-padding-top: 70px; }
  .desktop-header {
    height: 68px;
    padding-inline: 16px;
  }
  .brand { font-size: 1.25rem; }
  .brand img { width: 34px; height: 34px; }
  .header-cta {
    min-height: 36px;
    margin-right: 50px;
    padding-inline: 12px;
    font-size: .68rem;
  }
  .menu-button { right: 13px; width: 38px; height: 38px; }
  .mobile-menu { top: 68px; right: 12px; left: 12px; }
  h1 { font-size: clamp(3.6rem, 16vw, 5.2rem); }
  h2 { font-size: clamp(3.1rem, 14vw, 4.7rem); }
  .hero h1 { font-size: clamp(3.6rem, 16vw, 5.2rem); }
  .hero { padding-top: 118px; }
  .hero h1 br { display: block; }
  .hero-lead { font-size: 1rem; }
  .actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-product { padding: 0; }
  .hero-window {
    height: auto;
    transform: none;
  }
  .hero-window img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .floating-recorder {
    right: 0;
    bottom: 36px;
    width: 86%;
  }
  .hero-phone { right: 0; bottom: 0; width: 86px; }
  .capture-section,
  .automation-section,
  .review-section,
  .evidence-section,
  .ecosystem-section,
  .final-cta {
    padding-inline: 16px;
  }
  .capture-section { padding-block: 100px; }
  .automation-section { padding-block: 105px; }
  .automation-builder {
    margin-top: 50px;
    padding: 24px 18px;
  }
  .automation-options {
    grid-template-columns: repeat(5, 118px);
    margin-inline: -2px;
  }
  .automation-instructions { grid-template-columns: 1fr; }
  .automation-instructions article,
  .automation-instructions article:nth-child(3) {
    min-height: 0;
    padding: 25px 0;
    border-right: 0;
    border-left: 0;
  }
  .automation-instructions article:first-child { border-left: 0; }
  .automation-instructions h3 { margin-top: 24px; }
  .automation-prompt {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 20px;
  }
  .copy-automation-prompt { width: 100%; }
  .meeting-outputs small { display: none; }
  .capture-demo { margin-top: 50px; }
  .capture-panel { grid-template-columns: 1fr; }
  .capture-source { border-right: 0; border-bottom: 1px solid var(--line); }
  .live-transcript { grid-column: 1; }
  .capture-controls { display: grid; grid-template-columns: 1fr 1fr; }
  .capture-controls button { min-width: 0; }
  .capture-controls .stop-button { grid-column: 1 / -1; }
  .library-section { padding-block: 105px; }
  .showcase-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .showcase-tabs button {
    flex: 0 0 auto;
    min-width: 105px;
  }
  .showcase-window {
    height: auto;
    border-radius: 12px;
  }
  .showcase-window img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .review-section { padding-block: 105px; }
  .review-visual { padding-bottom: 80px; }
  .review-window { height: auto; }
  .review-window img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .correction-note { right: 10px; bottom: 0; }
  .screen-meeting-section,
  .playback-section { padding-block: 105px; }
  .capture-stack { padding: 18px 18px 20px; }
  .screen-content-demo {
    grid-template-columns: 1fr;
    min-height: 310px;
    padding: 28px;
  }
  .screen-demo-chart { height: 90px; border-top: 1px solid rgba(251, 247, 239, .15); border-left: 0; }
  .capture-tracks p { grid-template-columns: 10px 75px 1fr; }
  .capture-tracks small { display: none; }
  .timeline-marker { top: 18px; bottom: 20px; }
  .evidence-section { padding-block: 105px; }
  .visual-cue-image {
    grid-template-columns: 1fr;
    min-height: 360px;
    padding: 28px;
  }
  .visual-cue-image > div {
    grid-column: 1;
    grid-row: auto;
    height: 110px;
    border-top: 1px solid rgba(251, 247, 239, .15);
    border-left: 0;
  }
  .report-preview-topline small { display: none; }
  .report-item { grid-template-columns: 60px 1fr; }
  .report-item a { grid-column: 2; width: fit-content; }
  .evidence-principles { grid-template-columns: 1fr; }
  .evidence-principles p {
    padding: 22px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .playback-demo { padding: 18px 18px 122px; }
  .playback-slide { min-height: 225px; padding: 32px 26px; }
  .export-card { right: 8px; bottom: 24px; width: calc(100% - 30px); }
  .processing-section,
  .durability-section,
  .package-section,
  .privacy-section { padding-block: 105px; }
  .processing-topbar { align-items: flex-start; flex-direction: column; gap: 12px; padding-block: 16px; }
  .processing-topbar button { width: 100%; }
  .stage-list li { grid-template-columns: 22px 1fr; }
  .stage-list em { display: none; }
  .folder-diagram {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 35px;
    padding: 55px 24px 24px;
  }
  .folder-connector {
    width: 1px;
    height: 44px;
    margin: auto;
  }
  .folder-connector::after { right: -4px; top: auto; bottom: 0; transform: rotate(135deg); }
  .ecosystem-visual {
    grid-template-columns: 96px 90px 1fr;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
  }
  .ecosystem-phone { width: 92px; border-radius: 24px; }
  .ecosystem-phone img { border-radius: 20px; }
  .small-folder { width: 58px; height: 42px; }
  .package-node::before,
  .package-node::after { top: 28px; width: 18px; }
  .package-node::before { left: -5px; }
  .package-node::after { right: -5px; }
  .package-node b { font-size: .73rem; }
  .package-node small { display: none; }
  .ecosystem-mac { height: 155px; border-radius: 9px; }
  .ecosystem-mac img {
    width: auto;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: 56% center;
  }
  .privacy-points { grid-template-columns: 1fr; }
  .privacy-points article {
    min-height: 0;
    padding: 25px 0;
    border-left: 0;
  }
  .privacy-points h3 { margin-top: 24px; }
  .privacy-links { flex-direction: column; gap: 14px; }
  .final-cta { min-height: 680px; padding-block: 105px; }
  .final-cta h2 { font-size: clamp(4rem, 18vw, 5.8rem); }
  footer { padding-inline: 20px; }
}

@media (max-width: 390px) {
  .header-cta { display: none; }
  .hero h1 { font-size: 3.55rem; }
  .floating-recorder { width: 94%; }
  .recorder-controls span { padding-inline: 8px; }
}

@media (max-height: 700px) and (min-width: 901px) {
  .hero { min-height: 780px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
