:root {
  color-scheme: light;
  --ink: #191a1d;
  --ink-soft: #555852;
  --muted: #74766f;
  --paper: #f8f7f3;
  --paper-raised: #fdfcf9;
  --ground: #ece9e1;
  --ground-deep: #dfdcd3;
  --line: #d7d4cc;
  --line-strong: #c4c1b9;
  --blue: #087df0;
  --green: #25734a;
  --charcoal: #17191e;
  --radius-small: 8px;
  --radius-medium: 14px;
  --radius-large: 22px;
  --page-width: 1440px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ground);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

button,
textarea,
a {
  font: inherit;
}

a {
  color: inherit;
}

button,
a,
textarea,
[tabindex] {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 72%, white);
  outline-offset: 3px;
}

::selection {
  background: #c9e3fb;
  color: #101318;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 9px 12px;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.symbol-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header,
.hero,
.story,
.demo-section,
.privacy,
.site-footer {
  max-width: var(--page-width);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 clamp(24px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  display: block;
  border-radius: 9px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.platform-note {
  color: var(--muted);
  font-size: 12px;
}

.header-link,
.quiet-link {
  font-size: 13px;
  font-weight: 680;
  text-underline-offset: 4px;
  text-decoration-color: transparent;
  transition: text-decoration-color 140ms ease;
}

.header-link:hover,
.quiet-link:hover {
  text-decoration-color: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(620px, 1.35fr);
  align-items: center;
  gap: clamp(32px, 5vw, 82px);
  min-height: calc(100vh - 82px);
  padding: clamp(80px, 10vw, 144px) clamp(24px, 5vw, 76px);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 610px;
  margin: 18px 0 0;
  font-size: clamp(58px, 6.6vw, 96px);
  font-weight: 770;
  letter-spacing: -0.072em;
  line-height: 0.91;
}

.hero-lede {
  max-width: 525px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.65vw, 22px);
  letter-spacing: -0.02em;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 31px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--ink);
  color: #fff;
}

.button-primary:hover {
  background: #303238;
}

.quiet-link {
  color: var(--ink-soft);
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
  margin: 29px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 11px;
  list-style: none;
}

.trust-list li::before {
  content: "✓";
  margin-right: 6px;
  color: var(--green);
  font-weight: 800;
}

.hero-product {
  width: min(900px, 69vw);
  margin: 0 -18vw 0 0;
}

.hero-product img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 38px rgba(29, 31, 35, 0.14));
}

.hero-product figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -8px 6% 0 7%;
  color: var(--muted);
  font-size: 11px;
}

.hero-keys {
  display: flex;
  align-items: center;
  gap: 5px;
}

kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 5px;
  border: 1px solid #c9c7c0;
  border-bottom-width: 2px;
  border-radius: 5px;
  background: #fff;
  color: #4d504c;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 9px;
  font-weight: 650;
  line-height: 1;
}

.story {
  padding: clamp(88px, 10vw, 150px) clamp(24px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: var(--ground);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(400px, 1.14fr);
  gap: clamp(50px, 8vw, 130px);
  margin-top: 32px;
}

.story h2,
.section-heading h2,
.closing h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 740;
  letter-spacing: -0.058em;
  line-height: 1;
}

.story-copy p {
  max-width: 700px;
  margin: 0 0 23px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.65vw, 21px);
  letter-spacing: -0.018em;
  line-height: 1.58;
}

.story-copy p:first-child {
  color: var(--ink);
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.rhythm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: clamp(70px, 8vw, 112px) 0 0;
  padding: 0;
  border-block: 1px solid var(--line-strong);
  list-style: none;
}

.rhythm li {
  min-height: 208px;
  padding: 25px 28px 30px;
  border-right: 1px solid var(--line-strong);
}

.rhythm li:last-child {
  border-right: 0;
}

.rhythm span,
.privacy-lines article > span {
  color: #8b8b85;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10px;
}

.rhythm strong {
  display: block;
  margin-top: 58px;
  font-size: 15px;
  letter-spacing: -0.016em;
}

.rhythm p {
  max-width: 300px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.demo-section {
  padding: clamp(88px, 10vw, 150px) clamp(18px, 4vw, 54px);
  background: var(--charcoal);
  color: #f5f4f1;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(260px, 0.62fr);
  align-items: end;
  gap: 40px;
}

.demo-heading {
  max-width: 1230px;
  margin: 0 auto 50px;
}

.demo-heading .eyebrow {
  color: #9d9fa3;
}

.demo-heading h2 {
  margin-top: 14px;
}

.demo-heading > p,
.privacy-heading > p {
  margin: 0 0 4px;
  color: #aeb0b3;
  font-size: 15px;
  line-height: 1.55;
}

.demo-frame {
  position: relative;
  max-width: 1280px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid #515359;
  border-radius: 18px;
  background: #f5f6f7;
  color: #292b2e;
  box-shadow: 0 34px 85px rgba(0, 0, 0, 0.34);
}

.demo-frame:focus-visible {
  outline-color: #75b8fa;
  outline-offset: 7px;
}

.demo-frame[data-keyboard-active="true"]::after {
  position: absolute;
  top: 12px;
  right: 15px;
  z-index: 12;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(28, 30, 35, 0.82);
  color: #fff;
  content: "Keyboard active";
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.demo-titlebar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  height: 35px;
  padding: 0 13px;
  border-bottom: 1px solid #dedfe1;
  background: #f0f1f2;
}

.demo-titlebar > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b9babd;
}

.demo-titlebar b {
  position: absolute;
  left: 50%;
  color: #7d7f83;
  font-size: 10px;
  font-weight: 580;
  transform: translateX(-50%);
}

.demo-app {
  display: grid;
  grid-template-columns: 52px 314px minmax(460px, 1fr);
  grid-template-areas: "rail list transcript";
  height: min(660px, 72vw);
  min-height: 570px;
}

.demo-rail {
  grid-area: rail;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 6px 11px;
  border-right: 1px solid #d7d9da;
  background: #eef0f1;
}

.demo-rail-main {
  display: grid;
  gap: 3px;
}

.rail-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-inline: auto;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #75797d;
  cursor: pointer;
}

.rail-button:hover {
  background: #e1e4e5;
  color: #484c50;
}

.rail-button.is-active {
  background: #dfe3e5;
  color: #31363a;
}

.rail-button svg,
.list-tools svg,
.transcript-actions svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.rail-button > span {
  position: absolute;
  right: -1px;
  top: 0;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  border: 1px solid #eef0f1;
  border-radius: 99px;
  background: #7d8287;
  color: white;
  font-size: 8px;
  font-weight: 750;
  line-height: 12px;
}

.rail-button > span:empty,
.rail-button > span[data-zero="true"] {
  display: none;
}

.demo-list-pane {
  grid-area: list;
  display: grid;
  grid-template-rows: 50px minmax(0, 1fr) 29px;
  min-width: 0;
  border-right: 1px solid #d9dadb;
  background: #f7f8f8;
}

.demo-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #dadbdd;
}

.demo-view-name {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 5px 0;
  border: 0;
  background: transparent;
  color: #2b2d30;
  font-size: 13px;
  font-weight: 720;
}

.list-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555a5e;
}

.list-tools svg {
  width: 15px;
  height: 15px;
}

.demo-conversation-list {
  overflow-y: auto;
  scrollbar-width: none;
}

.demo-conversation-list::-webkit-scrollbar {
  display: none;
}

.demo-list-empty,
.demo-transcript-empty {
  display: grid;
  place-content: center;
  height: 100%;
  padding: 24px;
  color: #8b8e91;
  text-align: center;
}

.demo-list-empty strong,
.demo-transcript-empty strong {
  color: #55595d;
  font-size: 12px;
}

.demo-list-empty span,
.demo-transcript-empty span {
  max-width: 230px;
  margin-top: 5px;
  font-size: 9px;
}

.conversation-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 50px 13px;
  align-items: center;
  width: calc(100% - 14px);
  min-height: 51px;
  margin-inline: 7px;
  padding: 7px 8px 7px 14px;
  border: 0;
  border-bottom: 1px solid #e3e4e4;
  background: transparent;
  color: #404347;
  text-align: left;
  cursor: pointer;
}

.conversation-row.is-selected {
  border-bottom-color: transparent;
  border-radius: 7px;
  background: #a8a9aa;
  color: #fff;
}

.conversation-row.is-selected + .conversation-row {
  border-top-color: transparent;
}

.conversation-copy {
  min-width: 0;
}

.conversation-copy strong,
.conversation-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.conversation-copy strong {
  font-size: 12px;
  font-weight: 620;
}

.conversation-row.is-unread .conversation-copy strong {
  font-weight: 760;
}

.conversation-copy small {
  margin-top: 2px;
  color: #686c70;
  font-size: 9px;
}

.conversation-row.is-selected .conversation-copy small {
  color: rgba(255, 255, 255, 0.76);
}

.conversation-row time {
  justify-self: end;
  color: #686c70;
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

.conversation-row.is-selected time {
  color: rgba(255, 255, 255, 0.76);
}

.row-indicator {
  justify-self: end;
  color: currentColor;
  font-size: 10px;
}

.unread-dot {
  position: absolute;
  left: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9ba0a3;
}

.demo-list-footer {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 10px;
  border-top: 1px solid #dddedf;
  color: #b0b2b4;
  font-size: 8px;
  white-space: nowrap;
}

.demo-list-footer kbd {
  min-width: auto;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.shortcut-spacer {
  flex: 1;
}

.demo-transcript {
  grid-area: transcript;
  display: grid;
  grid-template-rows: 50px minmax(0, 1fr) 75px;
  min-width: 0;
  background: #fbfbfb;
}

.demo-transcript-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 15px 0 19px;
  border-bottom: 1px solid #dbdcdd;
}

.transcript-identity {
  min-width: 0;
}

.transcript-identity strong,
.transcript-identity span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.transcript-identity strong {
  font-size: 12px;
  font-weight: 700;
}

.transcript-identity span {
  margin-top: 1px;
  color: #8a8d90;
  font-size: 9px;
}

.transcript-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.transcript-actions button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 0;
  border: 0;
  background: transparent;
  color: #666a6e;
  font-size: 10px;
  cursor: pointer;
}

.transcript-actions button:hover {
  color: #202225;
}

.transcript-actions button:disabled {
  color: #b8babc;
  cursor: default;
}

.transcript-actions svg {
  width: 13px;
  height: 13px;
}

.transcript-actions kbd {
  min-width: 17px;
  height: 17px;
  padding: 0;
  border-color: #e2e3e3;
  background: #f7f7f7;
  color: #a1a3a5;
  font-size: 7px;
}

.demo-messages {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 9px;
  overflow-y: auto;
  padding: 24px 22px 17px;
  scrollbar-width: none;
}

.demo-messages::-webkit-scrollbar {
  display: none;
}

.message-day {
  align-self: center;
  margin-bottom: 6px;
  color: #8b8e91;
  font-size: 9px;
  font-weight: 650;
}

.message-run {
  max-width: 77%;
}

.message-run p {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 7px 10px;
  border-radius: 14px;
  font-size: 12px;
  letter-spacing: -0.008em;
  line-height: 1.3;
}

.message-run.is-incoming {
  align-self: flex-start;
}

.message-run.is-incoming p {
  border-bottom-left-radius: 5px;
  background: #e9e9e9;
  color: #26282b;
}

.message-run.is-outgoing {
  align-self: flex-end;
}

.message-run.is-outgoing p {
  margin-left: auto;
  border-bottom-right-radius: 5px;
  background: var(--blue);
  color: white;
}

.message-run > small {
  display: block;
  margin: 3px 4px 0;
  color: #85888b;
  font-size: 8px;
  text-align: right;
}

.sender-label {
  display: block;
  margin: 0 0 4px 34px;
  color: #777a7d;
  font-size: 8px;
}

.message-line {
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.sender-avatar {
  display: grid;
  flex: 0 0 26px;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e5e6e6;
  color: #8b8e91;
  font-size: 8px;
}

.avatar-coral { background: #f0d6cd; color: #8d5545; }
.avatar-blue { background: #d6e2ef; color: #4a6888; }
.avatar-green { background: #d9e7d8; color: #567453; }
.avatar-plum { background: #e5d8e7; color: #76587a; }
.avatar-orange { background: #eddfce; color: #87684c; }
.avatar-slate { background: #dfe2e4; color: #626a70; }
.avatar-rose { background: #edd9de; color: #855967; }
.avatar-teal { background: #d2e5e3; color: #4c7470; }
.avatar-gold { background: #ece3c9; color: #7b6b3d; }
.avatar-mint { background: #d7e9e0; color: #4f7463; }

.demo-composer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  grid-template-rows: 42px 24px;
  align-items: center;
  padding: 0 13px 7px 15px;
  border-top: 1px solid #dbdcdd;
  background: #f6f7f7;
}

.demo-composer textarea {
  width: 100%;
  max-height: 36px;
  padding: 10px 0 6px;
  resize: none;
  border: 0;
  outline: 0;
  background: transparent;
  color: #2b2d30;
  font-size: 11px;
  line-height: 1.3;
}

.demo-composer textarea::placeholder {
  color: #929599;
}

.demo-composer button {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #dddfe0;
  color: #85888b;
  font-size: 17px;
  cursor: pointer;
}

.demo-composer:focus-within button {
  background: var(--blue);
  color: white;
}

.demo-composer:focus-within {
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--blue) 68%, white);
}

.composer-meta {
  grid-column: 1 / -1;
  display: flex;
  gap: 14px;
  color: #b5b7b9;
  font-size: 8px;
}

.composer-meta span:last-child {
  margin-left: auto;
}

.composer-meta kbd {
  min-width: auto;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.shortcut-sheet {
  position: absolute;
  inset: 35px 0 0;
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 25px;
  background: rgba(18, 20, 24, 0.42);
  backdrop-filter: blur(8px);
}

.shortcut-sheet[hidden] {
  display: none;
}

.shortcut-panel {
  width: min(520px, 92%);
  padding: 26px;
  border: 1px solid #d7d7d4;
  border-radius: 16px;
  background: #fafaf8;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.shortcut-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.shortcut-panel h3 {
  margin: 7px 0 0;
  color: #202225;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.shortcut-panel-header button {
  align-self: flex-start;
  padding: 5px 8px;
  border: 1px solid #d5d5d2;
  border-radius: 6px;
  background: #fff;
  color: #6e7174;
  font-size: 9px;
  cursor: pointer;
}

.shortcut-panel dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 24px 0 0;
  border-top: 1px solid #dededb;
}

.shortcut-panel dl > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid #dededb;
}

.shortcut-panel dl > div:nth-child(odd) {
  border-right: 1px solid #dededb;
}

.shortcut-panel dl > div:nth-child(even) {
  padding-left: 18px;
}

.shortcut-panel dt,
.shortcut-panel dd {
  margin: 0;
}

.shortcut-panel dd {
  color: #6b6e70;
  font-size: 11px;
}

.demo-toast {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 11;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(34, 36, 40, 0.92);
  color: white;
  font-size: 10px;
  transform: translateX(-50%);
}

.demo-toast[hidden] {
  display: none;
}

.demo-help {
  max-width: 1280px;
  margin: 19px auto 0;
  color: #8f9297;
  font-size: 11px;
  text-align: center;
}

.demo-help kbd {
  border-color: #4b4e54;
  background: #24262b;
  color: #c7c9cc;
}

.privacy {
  padding: clamp(90px, 11vw, 165px) clamp(24px, 5vw, 76px);
}

.privacy-heading > p {
  color: var(--ink-soft);
}

.privacy-heading h2 {
  max-width: 760px;
  margin-top: 14px;
}

.privacy-lines {
  margin-top: clamp(60px, 8vw, 104px);
  border-top: 1px solid var(--line-strong);
}

.privacy-lines article {
  display: grid;
  grid-template-columns: 70px minmax(180px, 0.8fr) minmax(300px, 1.2fr);
  gap: 24px;
  align-items: baseline;
  padding: 27px 0;
  border-bottom: 1px solid var(--line-strong);
}

.privacy-lines h3,
.privacy-lines p {
  margin: 0;
}

.privacy-lines h3 {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.privacy-lines p {
  max-width: 570px;
  color: var(--muted);
  font-size: 14px;
}

.closing {
  display: grid;
  justify-items: center;
  padding: clamp(92px, 12vw, 178px) 24px;
  background: var(--charcoal);
  color: #f5f4f1;
  text-align: center;
}

.closing .eyebrow {
  color: #9b9da1;
}

.closing h2 {
  margin-top: 18px;
  font-size: clamp(52px, 7vw, 98px);
}

.closing > p:not(.eyebrow) {
  max-width: 520px;
  margin: 25px 0 0;
  color: #abadaf;
  font-size: 16px;
}

.button-light {
  margin-top: 31px;
  background: #f6f5f1;
  color: #17191d;
}

.button-light:hover {
  background: #fff;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 94px;
  padding: 22px clamp(24px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.site-footer p {
  margin: 0;
}

.site-footer > a:last-child {
  justify-self: end;
  text-underline-offset: 4px;
}

.footer-brand {
  font-size: 13px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(320px, 0.85fr) minmax(520px, 1.2fr);
    gap: 24px;
  }

  .hero-product {
    width: 760px;
    margin-right: -290px;
  }

  .demo-app {
    grid-template-columns: 48px 270px minmax(420px, 1fr);
  }

  .transcript-actions button span {
    display: none;
  }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 94px 82px;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero-product {
    width: 112%;
    margin: 30px -6% 0;
  }

  .hero-product figcaption {
    margin-top: -4px;
  }

  .story-grid,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .rhythm {
    grid-template-columns: 1fr;
  }

  .rhythm li {
    display: grid;
    grid-template-columns: 50px minmax(150px, 0.75fr) 1fr;
    align-items: baseline;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .rhythm li:last-child {
    border-bottom: 0;
  }

  .rhythm strong {
    margin-top: 0;
  }

  .rhythm p {
    margin-top: 0;
  }

  .demo-app {
    grid-template-columns: 46px 265px minmax(410px, 1fr);
    height: 610px;
    min-height: 610px;
  }

  .demo-frame {
    overflow-x: auto;
  }

  .privacy-lines article {
    grid-template-columns: 45px minmax(160px, 0.7fr) 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 70px;
  }

  .platform-note {
    display: none;
  }

  .hero {
    padding-block: 75px 64px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 75px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .trust-list {
    display: grid;
  }

  .hero-product {
    width: 132%;
    margin: 22px -16% 0;
  }

  .hero-product figcaption {
    display: none;
  }

  .story,
  .privacy {
    padding-block: 78px;
  }

  .story h2,
  .section-heading h2 {
    font-size: 42px;
  }

  .rhythm li {
    grid-template-columns: 40px 1fr;
    gap: 7px;
    padding-inline: 0;
  }

  .rhythm p {
    grid-column: 2;
  }

  .demo-section {
    padding-block: 76px;
  }

  .demo-heading {
    padding-inline: 7px;
  }

  .demo-frame {
    border-radius: 13px;
  }

  .demo-app {
    grid-template-columns: 43px minmax(250px, 1fr);
    grid-template-areas:
      "rail list"
      "rail transcript";
    height: auto;
    min-width: 0;
    min-height: 0;
  }

  .demo-rail {
    grid-row: 1 / 3;
  }

  .demo-list-pane {
    height: 330px;
    border-right: 0;
    border-bottom: 1px solid #d9dadb;
  }

  .demo-transcript {
    height: 500px;
  }

  .transcript-actions {
    gap: 9px;
  }

  .transcript-actions button:nth-child(3) {
    display: none;
  }

  .shortcut-panel dl {
    grid-template-columns: 1fr;
  }

  .shortcut-panel dl > div:nth-child(odd) {
    border-right: 0;
  }

  .shortcut-panel dl > div:nth-child(even) {
    padding-left: 0;
  }

  .privacy-lines article {
    grid-template-columns: 35px 1fr;
    gap: 12px;
  }

  .privacy-lines p {
    grid-column: 2;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 17px;
  }

  .site-footer p {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
