:root {
  color-scheme: light;
  --ink: #111217;
  --ink-soft: #1b1d24;
  --paper: #f4f5f7;
  --paper-bright: #ffffff;
  --line: #d7d9e0;
  --line-dark: #30323a;
  --muted: #646872;
  --muted-dark: #a8abb5;
  --purple: #7657ff;
  --purple-deep: #6444dc;
  --purple-bright: #9875ff;
  --purple-pale: #eeeaff;
  --green: #47d98b;
  --green-dark: #137447;
  --green-field: #e3f5eb;
  --orange: #e99c36;
  --max-width: 1240px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(88px, 11vw, 168px);
  --focus: 0 0 0 3px #f4f5f7, 0 0 0 6px #7657ff;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::selection,
body *::selection {
  background: var(--purple);
  color: #fff;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--paper);
}

::-webkit-scrollbar-thumb {
  background: #9a9da7;
  border: 3px solid var(--paper);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--purple);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: .22em;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.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: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  background: #fff;
  color: #111217;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 750;
}

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

.section-shell {
  width: min(100%, calc(var(--max-width) + (var(--gutter) * 2)));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  padding: 0 var(--gutter);
  color: #fff;
  background: rgba(16, 17, 21, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  text-decoration: none;
  font-weight: 840;
  letter-spacing: -.02em;
}

.brand img {
  width: 40px;
  height: auto;
}

.brand span {
  font-size: 1.16rem;
}

.brand small {
  color: var(--muted-dark);
  font-size: .74rem;
  font-weight: 650;
  letter-spacing: .03em;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
}

.site-nav a {
  color: #d4d5dc;
  font-size: .88rem;
  font-weight: 690;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: #fff;
}

.nav-status {
  margin-left: 5px;
  color: var(--purple-bright);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-action {
  min-height: 42px;
  background: #fff;
  color: var(--ink);
}

.header-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-action:hover {
  background: var(--purple-pale);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: transparent;
  color: #fff;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button span:not(.sr-only) + span {
  margin-top: 7px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: clamp(48px, 6vw, 92px);
  min-height: calc(100svh - 120px);
  padding: clamp(60px, 7vh, 76px) var(--gutter) clamp(72px, 8vh, 88px);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(120deg, transparent 46%, rgba(118, 87, 255, .16) 78%, rgba(71, 217, 139, .07));
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -4%;
  right: -4%;
  bottom: -52px;
  height: 92px;
  background: var(--paper);
  transform: rotate(-2.25deg);
  transform-origin: left top;
}

.hero-copy {
  align-self: center;
  max-width: 700px;
}

.hero h1,
.section-intro h2,
.capability-heading h2,
.action-field h2,
.privacy h2,
.model-heading h2,
.install h2,
.faq h2,
.notes-hero h1 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 850;
  letter-spacing: -.04em;
  line-height: .94;
  text-wrap: balance;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(4rem, 7.3vw, 6rem);
}

.hero h1 span {
  display: block;
  color: #fff;
}

.hero-lede {
  max-width: 640px;
  margin: 32px 0 0;
  color: #c2c4cc;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.55;
}

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

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

.button-primary:hover {
  background: #6848f3;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: #fff;
  font-size: .9rem;
  font-weight: 780;
  text-decoration: none;
}

.arrow {
  --arrow-rotation: 0deg;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  transform: rotate(var(--arrow-rotation));
  transition: transform 180ms var(--ease-out);
}

.arrow::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 1px;
  width: 10px;
  height: 1.5px;
  border-radius: 1px;
  background: currentColor;
}

.arrow::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 1px;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.arrow-up {
  --arrow-rotation: -45deg;
}

.arrow-down {
  --arrow-rotation: 90deg;
}

.text-link:hover .arrow,
.button:hover .arrow,
.header-action:hover .arrow {
  transform: translateX(2px) rotate(var(--arrow-rotation));
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 38px 0 0;
  padding: 0;
  color: #b6b8c1;
  font-size: .84rem;
  list-style: none;
}

.hero-proof li {
  position: relative;
  padding-left: 16px;
}

.hero-proof li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.hero-app-shot {
  position: relative;
  align-self: center;
  justify-self: center;
  width: min(100%, 760px);
  margin: 0;
}

.hero-app-frame {
  position: relative;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid #41434c;
  border-radius: 14px;
  background: #17171c;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .48), 0 12px 30px rgba(0, 0, 0, .32);
}

.hero-app-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px rgba(255, 255, 255, .08);
}

.hero-app-frame img {
  width: 100%;
  height: auto;
}

.hero-app-shot figcaption,
.ipad-app-shot figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  color: var(--muted-dark);
  font-size: .72rem;
}

.hero-app-shot figcaption strong,
.ipad-app-shot figcaption strong {
  color: #fff;
}

.voice-instrument {
  position: relative;
  align-self: center;
  width: 100%;
  max-width: 700px;
  justify-self: end;
  overflow: hidden;
  background: #191b22;
  border: 1px solid #373a44;
  border-radius: 16px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, .42), 0 10px 26px rgba(0, 0, 0, .28);
}

.voice-instrument::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px rgba(255, 255, 255, .035);
}

.instrument-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 22px;
  border-bottom: 1px solid #30323a;
  color: #8f929d;
  font-size: .72rem;
  font-weight: 680;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.instrument-state {
  color: var(--green);
}

.instrument-state i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(71, 217, 139, .11);
}

.transcript-stage {
  min-height: 328px;
  padding: clamp(28px, 4vw, 46px);
}

.transcript-label {
  margin: 0 0 8px;
  color: #858894;
  font-size: .71rem;
  font-weight: 790;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.transcript-raw {
  max-width: 31ch;
  margin: 0;
  color: #8d8292;
  font-size: clamp(.95rem, 1.4vw, 1.13rem);
  line-height: 1.45;
  text-decoration: line-through;
  text-decoration-color: rgba(152, 117, 255, .72);
}

.transcript-result {
  max-width: 30ch;
  min-height: 2.6em;
  margin: 0;
  color: #fff;
  font-size: clamp(1.6rem, 2.8vw, 2.55rem);
  font-weight: 720;
  letter-spacing: -.035em;
  line-height: 1.06;
  text-wrap: balance;
}

.signal-rule {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 50px;
  margin: 14px 0 22px;
  overflow: hidden;
}

.signal-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-left: 9px;
  background: #31343d;
}

.signal-rule span {
  width: 3px;
  height: var(--bar, 9px);
  border-radius: 2px;
  background: var(--purple-bright);
  transform-origin: center;
  animation: voice-pulse 1.8s var(--ease-out) infinite alternate;
}

.signal-rule span:nth-child(2n) { --bar: 16px; animation-delay: -1.1s; }
.signal-rule span:nth-child(3n) { --bar: 27px; animation-delay: -.5s; }
.signal-rule span:nth-child(4n) { --bar: 12px; animation-delay: -1.5s; }
.signal-rule span:nth-child(5n) { --bar: 34px; animation-delay: -.8s; }

@keyframes voice-pulse {
  0% { transform: scaleY(.35); opacity: .55; filter: blur(.2px); }
  100% { transform: scaleY(1); opacity: 1; filter: blur(0); }
}

.action-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #30323a;
  border-top: 1px solid #30323a;
  border-bottom: 1px solid #30323a;
}

.action-switcher button {
  min-height: 54px;
  padding: 0 14px;
  border: 0;
  background: #1c1e25;
  color: #9da0aa;
  font-size: .78rem;
  font-weight: 760;
  cursor: pointer;
}

.action-switcher button:hover {
  color: #fff;
  background: #23262e;
}

.action-switcher button[aria-pressed="true"] {
  background: var(--purple);
  color: #fff;
}

.instrument-metadata {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 22px;
}

.instrument-metadata div {
  min-width: 0;
  padding-right: 12px;
}

.instrument-metadata dt,
.instrument-metadata dd {
  margin: 0;
}

.instrument-metadata dt {
  margin-bottom: 4px;
  color: #90939d;
  font-size: .66rem;
  font-weight: 760;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.instrument-metadata dd {
  color: #d6d7dc;
  font-size: .74rem;
  line-height: 1.35;
}

.product-threshold {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-entry {
  position: relative;
  display: grid;
  grid-template-columns: 90px 135px minmax(160px, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 122px;
  padding: 26px var(--gutter);
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.product-entry + .product-entry {
  border-left: 1px solid var(--line);
}

.product-entry span {
  color: var(--green-dark);
  font-size: .68rem;
  font-weight: 840;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-entry strong {
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  letter-spacing: -.025em;
}

.product-entry small {
  max-width: 32ch;
  color: var(--muted);
  font-size: .84rem;
}

.product-entry b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--purple-deep);
  font-size: .75rem;
  white-space: nowrap;
}

.product-entry:hover {
  background: #fff;
}

.product-entry.future span {
  color: var(--purple-deep);
}

.app-proof {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(480px, 1.28fr);
  gap: clamp(56px, 9vw, 140px);
  align-items: center;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.app-proof-copy h2 {
  margin: 0;
  max-width: 720px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.8rem, 5.6vw, 5.65rem);
  font-weight: 850;
  letter-spacing: -.04em;
  line-height: .94;
  text-wrap: balance;
}

.app-proof-copy > p {
  max-width: 56ch;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.app-proof-copy dl {
  margin: 40px 0 0;
  border-top: 1px solid var(--ink);
}

.app-proof-copy dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.app-proof-copy dt,
.app-proof-copy dd {
  margin: 0;
}

.app-proof-copy dt {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 760;
}

.app-proof-copy dd {
  font-size: .84rem;
  font-weight: 680;
}

.ipad-app-shot {
  margin: 0;
}

.ipad-app-shot img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 34px 74px rgba(24, 25, 31, .2), 0 8px 22px rgba(24, 25, 31, .12);
}

.ipad-app-shot figcaption {
  color: var(--muted);
}

.ipad-app-shot figcaption strong {
  color: var(--ink);
}

.mechanism {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

.section-intro h2,
.capability-heading h2,
.action-field h2,
.privacy h2,
.model-heading h2,
.install h2,
.faq h2 {
  font-size: clamp(2.8rem, 5.6vw, 5.65rem);
}

.section-intro p,
.capability-heading > p,
.action-field-inner > p,
.model-heading p,
.install-copy > p {
  max-width: 65ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
}

.flow-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: clamp(64px, 7vw, 96px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.flow-line li {
  position: relative;
  min-width: 0;
  padding: 30px 22px 0 0;
}

.flow-line li:not(:last-child) {
  margin-right: 22px;
  border-right: 1px solid var(--line);
}

.flow-line li > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-top: -47px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--purple-deep);
  font-size: .72rem;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.flow-line h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

.flow-line p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.55;
}

.capabilities {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
  gap: clamp(60px, 9vw, 144px);
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  border-top: 1px solid var(--line);
}

.capability-heading {
  align-self: start;
  position: sticky;
  top: 126px;
}

.capability-heading h2 {
  font-size: clamp(3rem, 5.1vw, 5.3rem);
}

.capability-heading > p {
  margin-top: 28px;
}

.dark-link {
  margin-top: 32px;
  color: var(--ink);
}

.capability-ledger {
  border-top: 1px solid var(--ink);
}

.capability-ledger article {
  display: grid;
  grid-template-columns: minmax(170px, .65fr) minmax(240px, 1fr);
  gap: 12px 48px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.platform-scope {
  grid-column: 1;
  grid-row: 1;
  color: var(--purple-deep);
  font-size: .7rem;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.capability-ledger h3 {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  letter-spacing: -.03em;
  line-height: 1.12;
}

.capability-ledger p {
  grid-column: 2;
  grid-row: 1;
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
}

.capability-ledger ul {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: -10px 0 0;
  padding: 0;
  list-style: none;
}

.capability-ledger li {
  position: relative;
  padding-left: 12px;
  color: #484b54;
  font-size: .76rem;
  font-weight: 730;
}

.capability-ledger li::before {
  content: "";
  position: absolute;
  top: .63em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--purple);
}

.action-field {
  padding: var(--section-space) 0;
  background: var(--purple);
  color: #fff;
}

.action-field h2 {
  max-width: 900px;
}

.action-field-inner > p {
  margin-top: 26px;
  color: #fff;
}

.action-spectrum {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(58px, 7vw, 92px);
  border-top: 1px solid rgba(255, 255, 255, .4);
  border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.action-spectrum article {
  min-height: 280px;
  padding: 32px;
}

.action-spectrum article + article {
  border-left: 1px solid rgba(255, 255, 255, .4);
}

.action-spectrum span {
  display: inline-block;
  margin-bottom: 54px;
  color: #fff;
  font-size: .72rem;
  font-weight: 830;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.action-spectrum h3 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -.035em;
}

.action-spectrum p {
  max-width: 40ch;
  margin: 0;
  color: #fff;
}

.platforms {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.platform-intro {
  grid-template-columns: 1fr .55fr;
}

.platform-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(220px, .58fr) minmax(300px, .88fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: end;
  margin-top: clamp(52px, 7vw, 88px);
}

.platform-proof {
  min-width: 0;
  margin: 0;
}

.platform-proof-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
  align-items: baseline;
  margin-bottom: 18px;
  border-top: 1px solid var(--ink);
  padding-top: 14px;
}

.platform-proof-copy h3,
.platform-proof-copy p,
.platform-proof-copy span {
  margin: 0;
}

.platform-proof-copy h3 {
  font-size: 1.08rem;
  letter-spacing: 0;
}

.platform-proof-copy p {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: .84rem;
}

.platform-proof-copy span {
  justify-self: end;
  color: var(--purple-deep);
  font-size: .7rem;
  font-weight: 800;
}

.platform-proof img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 28px 64px rgba(24, 25, 31, .18), 0 7px 18px rgba(24, 25, 31, .1);
}

.platform-proof-iphone {
  max-width: 340px;
  justify-self: center;
}

.mac-window {
  overflow: hidden;
  background: #17181e;
  color: #fff;
  border: 1px solid #353740;
  border-radius: 16px;
  box-shadow: 0 34px 74px rgba(24, 25, 31, .24), 0 8px 22px rgba(24, 25, 31, .13);
}

.mac-evidence {
  padding: clamp(34px, 5vw, 64px);
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 34px 74px rgba(24, 25, 31, .2), 0 8px 22px rgba(24, 25, 31, .12);
}

.mac-evidence > img {
  width: 91px;
  height: auto;
}

.mac-evidence > p {
  max-width: 48ch;
  margin: 34px 0 0;
  color: #d4d5dc;
  font-size: clamp(1.18rem, 2.1vw, 1.75rem);
  line-height: 1.32;
}

.mac-evidence ul {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.mac-evidence li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line-dark);
  color: #f4f5f7;
  font-size: .84rem;
  font-weight: 700;
}

.mac-evidence small {
  display: block;
  max-width: 60ch;
  margin-top: 30px;
  color: var(--muted-dark);
  font-size: .72rem;
  line-height: 1.5;
}

.platform-app-shot {
  display: grid;
  justify-items: center;
  margin: 0;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  background: #e9e6ff;
  border-radius: 16px;
}

.platform-app-shot img {
  width: min(78%, 520px);
  height: auto;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(37, 24, 85, .2), 0 8px 18px rgba(37, 24, 85, .12);
}

.platform-app-shot figcaption {
  margin-top: 18px;
  color: #534c69;
  font-size: .72rem;
  font-weight: 720;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid #30323a;
}

.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; }

.window-bar b {
  margin-left: auto;
  color: #979aa4;
  font-size: .7rem;
  font-weight: 680;
}

.window-body {
  display: grid;
  grid-template-columns: 155px 1fr;
  min-height: 410px;
}

.window-body aside {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 14px;
  background: #131419;
  border-right: 1px solid #2b2d35;
}

.window-body aside span,
.window-body aside strong {
  padding: 9px 11px;
  border-radius: 7px;
  color: #8f929d;
  font-size: .72rem;
}

.window-body aside strong {
  background: #292435;
  color: #c9bcff;
}

.window-settings {
  position: relative;
  padding: 34px;
  overflow: hidden;
}

.window-settings p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid #31333b;
  font-size: .78rem;
}

.window-settings p span {
  color: #979aa4;
}

.window-settings p strong {
  text-align: right;
}

.mini-wave {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  height: 74px;
  background: #21232b;
  border-radius: 12px;
}

.mini-wave i {
  width: 4px;
  height: 18px;
  border-radius: 3px;
  background: var(--purple-bright);
  animation: voice-pulse 1.5s var(--ease-out) infinite alternate;
}

.mini-wave i:nth-child(2n) { height: 36px; animation-delay: -.6s; }
.mini-wave i:nth-child(3n) { height: 52px; animation-delay: -1s; }

.phone-stage {
  display: grid;
  place-items: center;
  min-height: 620px;
  background: #e9e6ff;
  border-radius: 16px;
  overflow: hidden;
}

.phone-frame {
  position: relative;
  width: min(315px, 72%);
  aspect-ratio: .51;
  overflow: hidden;
  background: #f8f8fa;
  border: 9px solid var(--ink);
  border-radius: 44px;
  box-shadow: 0 30px 60px rgba(37, 24, 85, .2), 0 8px 18px rgba(37, 24, 85, .12);
}

.phone-island {
  width: 88px;
  height: 24px;
  margin: 10px auto 34px;
  border-radius: 999px;
  background: var(--ink);
}

.message-line {
  width: 74%;
  height: 12px;
  margin: 0 24px 12px;
  border-radius: 6px;
  background: #dfe0e5;
}

.message-line.short {
  width: 52%;
}

.ios-keyboard {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px;
  background: #1b1d24;
  color: #fff;
}

.keyboard-signal {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid #343640;
  font-size: .72rem;
}

.keyboard-signal img {
  width: 27px;
}

.keyboard-signal span {
  color: var(--green);
  font-weight: 760;
}

.keyboard-signal b {
  color: #9497a2;
  font-variant-numeric: tabular-nums;
}

.keyboard-transcript {
  min-height: 104px;
  padding: 20px 0;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.keyboard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .72rem;
}

.keyboard-actions span {
  color: #a4a6b0;
}

.keyboard-actions strong {
  padding: 8px 13px;
  border-radius: 8px;
  background: var(--purple);
}

.privacy {
  padding: var(--section-space) 0;
  background: var(--green-field);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(480px, 1.15fr);
  gap: clamp(64px, 10vw, 150px);
  align-items: start;
}

.privacy h2 {
  max-width: 760px;
}

.privacy-statement > p {
  max-width: 58ch;
  margin: 30px 0 0;
  color: #3d5548;
}

.privacy-promise {
  padding-top: 28px;
  border-top: 1px solid rgba(19, 116, 71, .3);
  color: #1b5035 !important;
  font-weight: 720;
}

.boundary-map {
  border-top: 1px solid #1f5f3e;
}

.boundary-map > div {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 20px;
  align-items: center;
  min-height: 70px;
  border-bottom: 1px solid rgba(19, 116, 71, .28);
}

.boundary-map span,
.boundary-map strong {
  font-size: .84rem;
}

.boundary-map > div:not(.boundary-head) span {
  color: var(--green-dark);
  font-weight: 820;
}

.boundary-head span {
  color: #4a6857;
  font-size: .67rem;
  font-weight: 820;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.model-rail {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.model-heading {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 60px;
  align-items: end;
}

.model-table {
  margin-top: clamp(58px, 7vw, 92px);
  border-top: 1px solid var(--ink);
}

.model-row {
  display: grid;
  grid-template-columns: .45fr 1fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 92px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.model-row span,
.model-row strong {
  font-size: .93rem;
}

.model-row > span:last-child {
  color: var(--muted);
}

.model-row-head {
  min-height: 52px;
  color: var(--muted);
}

.model-row-head span {
  font-size: .68rem;
  font-weight: 820;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.install {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  padding: var(--section-space) var(--gutter);
  background: var(--ink);
  color: #fff;
}

.install-copy > p {
  margin-top: 28px;
  color: #b7bac3;
}

.install-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

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

.button-light:hover {
  background: var(--purple-pale);
}

.availability-status {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #4b4e59;
  border-radius: 999px;
  color: #d5cedf;
  font-size: .75rem;
  font-weight: 760;
}

.light-link {
  color: #d7d8de;
}

.install-trust {
  margin: 28px 0 0;
  color: var(--muted-dark);
  font-size: .84rem;
}

.faq {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.faq h2 {
  max-width: 900px;
}

.faq-list {
  margin-top: clamp(56px, 7vw, 86px);
  border-top: 1px solid var(--ink);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 26px 54px 26px 0;
  cursor: pointer;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 760;
  letter-spacing: -.02em;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  color: var(--purple);
  font-size: 1.45rem;
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 68ch;
  margin: -4px 0 28px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: .7fr 1.2fr 1fr;
  gap: 36px 64px;
  align-items: start;
  padding: 72px var(--gutter) 40px;
  background: #0e0f13;
  color: #fff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 47px;
  height: auto;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-size: 1.05rem;
}

.footer-brand span {
  color: #9a9da7;
  font-size: .7rem;
}

.site-footer > p {
  max-width: 52ch;
  margin: 0;
  color: #a7aab4;
  font-size: .9rem;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.site-footer nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #c8cad1;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: #fff;
}

.site-footer nav span {
  color: var(--purple-bright);
  font-size: .62rem;
  text-transform: uppercase;
}

.site-footer > small {
  grid-column: 1 / -1;
  padding-top: 30px;
  border-top: 1px solid #292b32;
  color: #90939d;
  font-size: .7rem;
}

/* Murmr Notes entry */
.notes-page {
  background: var(--ink);
  color: #fff;
}

.notes-main {
  overflow: hidden;
}

.notes-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
  min-height: calc(100svh - 120px);
  padding: clamp(60px, 7vh, 76px) var(--gutter) clamp(72px, 8vh, 88px);
  background: var(--purple);
}

.notes-status {
  display: inline-flex;
  width: fit-content;
  margin: 24px 0 0;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  color: #fff;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.notes-hero h1 {
  max-width: 780px;
  font-size: clamp(4rem, 8vw, 6rem);
}

.notes-hero h1 span {
  display: block;
  color: #e5ddff;
}

.notes-hero-copy > p:not(.notes-status) {
  max-width: 58ch;
  margin: 30px 0 0;
  color: #fff;
  font-size: clamp(1.06rem, 1.5vw, 1.26rem);
}

.notes-hero-copy .hero-actions {
  margin-top: 38px;
}

.notes-hero .button-light:hover {
  background: var(--ink);
  color: #fff;
}

.notes-map {
  position: relative;
  min-height: 520px;
}

.notes-map::before,
.notes-map::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
}

.notes-map::before {
  inset: 7% 2% 12% 8%;
}

.notes-map::after {
  inset: 22% 16% 0 0;
}

.map-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 116px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 40px rgba(45, 25, 113, .26), 0 5px 14px rgba(45, 25, 113, .17);
  font-size: .78rem;
  font-weight: 820;
}

.map-node.capture { top: 3%; left: 38%; }
.map-node.context { top: 38%; right: 2%; }
.map-node.recall { bottom: 3%; left: 22%; }

.map-signal {
  position: absolute;
  z-index: 3;
  top: 39%;
  left: 39%;
  display: grid;
  place-items: center;
  width: 130px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 24px 55px rgba(45, 25, 113, .3), 0 8px 20px rgba(45, 25, 113, .16);
}

.map-signal img {
  width: 64px;
}

.notes-plan {
  padding: var(--section-space) var(--gutter);
  background: var(--paper);
  color: var(--ink);
}

.notes-plan-header {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 70px;
  align-items: end;
  max-width: var(--max-width);
  margin: 0 auto;
}

.notes-plan h2 {
  margin: 0;
  font-size: clamp(2.9rem, 5.7vw, 5.7rem);
  letter-spacing: -.04em;
  line-height: .96;
}

.notes-plan-header p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
}

.notes-directions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max-width);
  margin: 72px auto 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.notes-directions article {
  min-height: 320px;
  padding: 34px 30px;
}

.notes-directions article + article {
  border-left: 1px solid var(--line);
}

.notes-directions h3 {
  margin: 0 0 22px;
  font-size: clamp(1.7rem, 2.6vw, 2.55rem);
  letter-spacing: -.035em;
}

.notes-directions p {
  color: var(--muted);
}

.notes-caveat {
  max-width: var(--max-width);
  margin: 32px auto 0;
  color: var(--muted);
  font-size: .76rem;
}

.notes-return {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: clamp(76px, 9vw, 130px) var(--gutter);
  background: var(--green-field);
  color: var(--ink);
}

.notes-return h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  letter-spacing: -.04em;
  line-height: .96;
}

.notes-return p {
  max-width: 60ch;
  margin: 24px 0 0;
  color: #3d5548;
}

.legal-page {
  background: var(--paper);
}

.legal-main {
  min-height: 70vh;
}

.legal-hero {
  padding: clamp(72px, 10vw, 140px) var(--gutter);
  background: var(--ink);
  color: #fff;
}

.legal-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(3.4rem, 7vw, 6rem);
  font-weight: 850;
  letter-spacing: -.04em;
  line-height: .94;
  text-wrap: balance;
}

.legal-hero p {
  max-width: 66ch;
  margin: 30px 0 0;
  color: #c2c4cc;
  font-size: 1.08rem;
}

.legal-content {
  width: min(100%, calc(920px + (var(--gutter) * 2)));
  margin-inline: auto;
  padding: var(--section-space) var(--gutter);
}

.legal-content article {
  display: grid;
  grid-template-columns: minmax(210px, .55fr) minmax(0, 1fr);
  gap: 28px 64px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.legal-content article:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-content h2,
.legal-content p {
  margin: 0;
}

.legal-content h2 {
  font-size: 1.15rem;
  letter-spacing: 0;
  line-height: 1.25;
}

.legal-content p {
  color: var(--muted);
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 42px;
    padding: 64px var(--gutter) 76px;
  }

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

  .hero-app-shot {
    width: min(100%, 760px);
  }

  .hero-app-frame {
    width: 100%;
  }

  .voice-instrument {
    max-width: none;
  }

  .product-entry {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .product-entry b {
    margin-top: 8px;
  }

  .flow-line {
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 0;
  }

  .flow-line li:nth-child(3) {
    border-right: 0;
  }

  .privacy-layout,
  .app-proof {
    grid-template-columns: 1fr;
  }

  .platform-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  }

  .platform-proof-mac {
    grid-column: 1 / -1;
  }

  .app-proof-copy {
    max-width: 760px;
  }

  .privacy-statement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 48px;
  }

  .privacy-statement h2 {
    grid-column: 1 / -1;
  }

  .privacy-statement > p {
    margin-top: 0;
  }

  .privacy-promise {
    padding: 0 0 0 28px;
    border-top: 0;
    border-left: 1px solid rgba(19, 116, 71, .3);
  }

  .notes-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 40px;
    padding: 64px var(--gutter) 78px;
  }

  .notes-map {
    width: min(480px, 100%);
    min-height: 360px;
    margin-inline: auto;
  }

  .legal-content article {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (min-width: 1081px) and (max-height: 800px) {
  .hero,
  .notes-hero {
    padding: 48px var(--gutter) 56px;
  }

  .hero h1,
  .notes-hero h1 {
    font-size: clamp(3.8rem, 6vw, 4.8rem);
  }

  .hero-app-shot {
    width: min(100%, 620px);
  }

  .hero-app-frame {
    width: 100%;
  }

  .notes-map {
    min-height: 360px;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-action {
    display: none;
  }

  .site-nav {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 16px;
  }

  .js .menu-button {
    display: block;
  }

  .js .site-nav {
    position: absolute;
    top: 75px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px var(--gutter) 22px;
    background: #101115;
    border-bottom: 1px solid #30323a;
  }

  .js .site-header.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #292b33;
  }

  .js .site-header.menu-open .menu-button span:not(.sr-only):nth-of-type(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .js .site-header.menu-open .menu-button span:not(.sr-only):nth-of-type(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }
}

@media (max-width: 900px) {
  .section-intro,
  .capabilities,
  .model-heading,
  .install,
  .notes-plan-header,
  .notes-return {
    grid-template-columns: 1fr;
  }

  .capability-heading {
    position: static;
  }

  .capability-ledger article {
    grid-template-columns: 1fr;
  }

  .platform-scope,
  .capability-ledger h3,
  .capability-ledger p,
  .capability-ledger ul {
    grid-column: 1;
    grid-row: auto;
  }

  .action-spectrum,
  .notes-directions {
    grid-template-columns: 1fr;
  }

  .action-spectrum article {
    min-height: 0;
  }

  .action-spectrum article + article,
  .notes-directions article + article {
    border-top: 1px solid rgba(255, 255, 255, .4);
    border-left: 0;
  }

  .notes-directions article + article {
    border-top-color: var(--line);
  }

  .action-spectrum span {
    margin-bottom: 30px;
  }

  .privacy-statement {
    display: block;
  }

  .privacy-statement > p {
    margin-top: 26px;
  }

  .privacy-promise {
    padding: 26px 0 0;
    border-top: 1px solid rgba(19, 116, 71, .3);
    border-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-footer nav {
    justify-content: flex-end;
  }

  .notes-return {
    justify-items: start;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 68px;
  }

  .site-nav {
    top: 67px;
  }

  .hero {
    gap: 24px;
    padding: 44px var(--gutter) 52px;
  }

  .hero h1,
  .notes-hero h1 {
    font-size: clamp(2.75rem, 12vw, 3.15rem);
    letter-spacing: -.035em;
  }

  .hero-lede {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
  }

  .install-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof {
    gap: 8px 16px;
    margin-top: 22px;
    font-size: .76rem;
  }

  .instrument-topline {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 14px;
  }

  .transcript-stage {
    min-height: 318px;
  }

  .action-switcher button {
    padding-inline: 8px;
    font-size: .7rem;
  }

  .instrument-metadata {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-threshold {
    grid-template-columns: 1fr;
  }

  .product-entry + .product-entry {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .flow-line {
    display: block;
    margin-top: 64px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .flow-line li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 0 0 38px;
  }

  .flow-line li:not(:last-child) {
    margin-right: 0;
    border-right: 0;
  }

  .flow-line li > span {
    margin: 0 0 0 -16px;
  }

  .capability-ledger article {
    gap: 18px;
    padding: 30px 0;
  }

  .platform-showcase {
    grid-template-columns: 1fr;
  }

  .platform-proof-mac {
    grid-column: auto;
  }

  .hero-app-shot {
    width: 100%;
  }

  .hero-app-frame {
    width: 100%;
    border-radius: 12px;
  }

  .app-proof {
    gap: 48px;
  }

  .ipad-app-shot img {
    width: 100%;
  }

  .window-body {
    grid-template-columns: 1fr;
  }

  .window-body aside {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-right: 0;
    border-bottom: 1px solid #2b2d35;
  }

  .window-body aside span:nth-of-type(n+3) {
    display: none;
  }

  .window-settings {
    min-height: 380px;
    padding: 24px;
  }

  .mini-wave {
    right: 24px;
    left: 24px;
  }

  .phone-stage {
    min-height: 540px;
  }

  .phone-frame {
    width: 280px;
  }

  .hero-app-shot figcaption {
    align-items: center;
    flex-direction: column;
    gap: 4px;
    margin-top: 12px;
    text-align: center;
  }

  .ipad-app-shot figcaption {
    flex-direction: column;
    gap: 4px;
  }

  .platform-proof-iphone {
    width: min(100%, 320px);
    max-width: none;
    justify-self: center;
  }

  .boundary-map {
    overflow-x: auto;
  }

  .boundary-map > div {
    grid-template-columns: minmax(145px, 1.3fr) minmax(100px, .7fr) minmax(100px, .7fr);
    min-width: 380px;
  }

  .model-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .model-row-head {
    display: none;
  }

  .install {
    padding-inline: var(--gutter);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer > p,
  .site-footer nav {
    grid-column: 1;
    grid-row: auto;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer nav a {
    min-width: 44px;
    min-height: 44px;
    padding-inline: 4px;
  }

  .notes-hero {
    gap: 22px;
    padding: 46px var(--gutter) 50px;
  }

  .notes-status {
    margin-top: 16px;
  }

  .notes-hero-copy > p:not(.notes-status) {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .notes-hero-copy .hero-actions {
    margin-top: 22px;
  }

  .notes-map {
    width: min(300px, 100%);
    min-height: 220px;
  }

  .map-node {
    width: 64px;
    font-size: .68rem;
  }

  .map-signal {
    width: 78px;
  }

  .map-signal img {
    width: 44px;
  }

  .notes-directions article {
    min-height: 0;
  }
}

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

  .signal-rule span {
    animation: none;
    filter: none;
    opacity: 1;
    transform: scaleY(1);
  }

  .site-nav a,
  .header-action,
  .button,
  .arrow,
  .menu-button span:not(.sr-only),
  .product-entry {
    transition: none;
  }

  .header-action:hover,
  .button:hover {
    transform: none;
  }

  .text-link:hover .arrow,
  .button:hover .arrow,
  .header-action:hover .arrow {
    transform: rotate(var(--arrow-rotation));
  }
}

@media (prefers-contrast: more) {
  :root {
    --line: #9699a3;
    --muted: #474a52;
  }

  .site-header,
  .voice-instrument,
  .mac-window,
  .hero-app-frame {
    border-color: #777b86;
  }
}
