@font-face {
  font-family: "Familjen Grotesk";
  src: url("/fonts/familjen-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --signal: #2ac76a;
  --signal-bright: #53dc86;
  --signal-soft: #dff7e8;
  --ink: #0f2e1f;
  --ink-muted: #486254;
  --paper: #f4faf6;
  --white: #ffffff;
  --rule: #ccddd2;
  --danger: #af4637;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --page: min(1220px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scrollbar-color: var(--ink) var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  color: var(--ink);
  background: var(--signal-bright);
}

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

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

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

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

.site-header {
  width: var(--page);
  height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--rule);
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand img {
  object-fit: contain;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header nav a {
  color: var(--ink-muted);
  font-size: 15px;
  font-weight: 550;
  text-decoration: none;
}

.site-header > .button {
  justify-self: end;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition: transform 150ms var(--ease-out), box-shadow 180ms var(--ease-out), background-color 180ms ease;
}

.button svg,
.replay-button svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--small {
  min-height: 40px;
  padding-inline: 17px;
  color: var(--white);
  background: var(--ink);
  border-radius: 12px;
  font-size: 15px;
}

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

.button--ink {
  color: var(--white);
  background: var(--ink);
}

.button--quiet {
  color: currentColor;
  background: transparent;
  border-color: currentColor;
}

.button-label--short {
  display: none;
}

.text-link {
  font-weight: 650;
  text-decoration-line: underline;
  text-decoration-color: var(--signal);
  text-decoration-thickness: 2px;
}

.hero {
  width: var(--page);
  min-height: calc(100svh - 82px);
  margin-inline: auto;
  padding: clamp(62px, 9vh, 108px) 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(510px, 1.16fr);
  align-items: center;
  gap: clamp(52px, 7vw, 100px);
}

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

.hero h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(4rem, 6.5vw, 5.8rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 0.93;
  text-wrap: balance;
}

.hero-lede {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.1;
}

.hero-detail {
  max-width: 58ch;
  margin: 21px 0 0;
  color: var(--ink-muted);
  font-size: 18px;
}

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

.requirements {
  margin: 16px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.signal-demo {
  min-width: 0;
  color: var(--ink);
  background: var(--signal);
  border: 1px solid rgba(15, 46, 31, 0.2);
  border-radius: 34px;
  box-shadow: 0 22px 70px rgba(15, 46, 31, 0.15);
  overflow: hidden;
}

.demo-menubar {
  height: 42px;
  padding: 0 17px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(15, 46, 31, 0.16);
  font-size: 12px;
  font-weight: 600;
}

.traffic-lights {
  display: flex;
  gap: 6px;
}

.traffic-lights i {
  width: 8px;
  height: 8px;
  background: var(--ink);
  border-radius: 50%;
  opacity: 0.22;
}

.demo-app-name {
  justify-self: center;
}

.demo-clock {
  justify-self: end;
  font-variant-numeric: tabular-nums;
}

.demo-desktop {
  position: relative;
  min-height: 560px;
  padding: 52px 38px 38px;
  display: grid;
  place-items: center;
}

.call-surface {
  position: absolute;
  inset: 46px 32px 32px;
  border: 1px solid rgba(15, 46, 31, 0.18);
  border-radius: 24px;
}

.avatar {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 46, 31, 0.14);
  border-radius: 50%;
  font-weight: 650;
}

.avatar--one {
  top: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: #f9e37a;
}

.avatar--two {
  right: 24px;
  bottom: 24px;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--ink);
}

.roadie-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 46, 31, 0.16);
  border-radius: 20px;
  box-shadow: 0 20px 54px rgba(15, 46, 31, 0.2);
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.live-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
}

.live-state i,
.connected i {
  width: 8px;
  height: 8px;
  display: inline-block;
  background: var(--signal);
  border: 1px solid rgba(15, 46, 31, 0.3);
  border-radius: 50%;
}

.device-switch {
  min-height: 84px;
  margin-top: 14px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 42px 30px;
  align-items: center;
  gap: 10px;
}

.device-icon,
.output-symbol {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--signal-soft);
  border-radius: 10px;
}

.device-icon svg,
.output-symbol svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.device-names {
  position: relative;
  min-width: 0;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.device-label,
.output-row small {
  position: absolute;
  top: 0;
  color: var(--ink-muted);
  font-size: 11px;
  line-height: 1;
}

.device-name {
  position: absolute;
  bottom: 0;
  max-width: 100%;
  font-size: 15px;
  font-weight: 620;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.device-name--right {
  visibility: hidden;
  transform: translateY(12px);
}

.signal-track {
  --signal-lock-distance: 29px;
  position: relative;
  width: 42px;
  height: 2px;
  background: var(--rule);
  overflow: visible;
}

.signal-track i {
  position: absolute;
  top: -5px;
  left: -1px;
  width: 12px;
  height: 12px;
  background: var(--signal);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--ink);
}

.device-rank {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.panel-rule {
  height: 1px;
  background: var(--rule);
}

.output-row {
  min-height: 66px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 620;
}

.output-row > span:nth-child(2) {
  position: relative;
  padding-top: 14px;
}

.correction-note {
  position: relative;
  min-height: 39px;
  padding: 10px 88px 10px 12px;
  display: flex;
  align-items: center;
  color: var(--ink-muted);
  background: var(--paper);
  border-radius: 11px;
  font-size: 12px;
  overflow: hidden;
}

.note-before,
.note-after {
  position: absolute;
}

.note-after {
  color: var(--ink);
  font-weight: 620;
  opacity: 0;
  transform: translateY(10px);
}

.replay-button {
  position: absolute;
  right: 10px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ink);
  background: none;
  border: 0;
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
}

.replay-button svg {
  width: 14px;
  height: 14px;
}

.demo-caption {
  margin: 0;
  padding: 14px 20px 17px;
  border-top: 1px solid rgba(15, 46, 31, 0.16);
  font-size: 13px;
  text-align: center;
}

.signal-demo.is-playing .device-name--wrong {
  animation: old-device-out 420ms var(--ease-out) 1100ms both;
}

.signal-demo.is-playing .device-name--right {
  animation: new-device-in 480ms var(--ease-out) 1250ms both;
}

.signal-demo.is-playing .signal-track i {
  animation: signal-lock 780ms var(--ease-in-out) 880ms both;
}

.signal-demo.is-playing .note-before {
  animation: note-out 360ms var(--ease-out) 1420ms both;
}

.signal-demo.is-playing .note-after {
  animation: note-in 420ms var(--ease-out) 1510ms both;
}

.signal-demo.is-playing .live-state i {
  animation: light-confirm 620ms var(--ease-out) 1650ms both;
}

@keyframes old-device-out {
  from { visibility: visible; }
  to { visibility: hidden; transform: translateY(-12px); }
}

@keyframes new-device-in {
  from { visibility: hidden; transform: translateY(12px); }
  1%, to { visibility: visible; transform: translateY(0); }
}

@keyframes signal-lock {
  0% { transform: translateX(0); }
  58% { transform: translateX(var(--signal-lock-distance)); }
  100% { transform: translateX(var(--signal-lock-distance)); }
}

@keyframes note-out {
  to { opacity: 0; transform: translateY(-10px); }
}

@keyframes note-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes light-confirm {
  50% { box-shadow: 0 0 0 8px rgba(42, 199, 106, 0.2); }
}

.interruption {
  padding: clamp(96px, 14vw, 180px) 24px;
  color: var(--white);
  background: var(--ink);
}

.interruption p {
  max-width: 1040px;
  margin: 0 auto;
  font-size: clamp(2.9rem, 6.7vw, 6rem);
  font-weight: 580;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-align: center;
  text-wrap: balance;
}

.priority-section {
  width: var(--page);
  margin-inline: auto;
  padding: clamp(110px, 14vw, 180px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(70px, 10vw, 140px);
}

.section-copy h2,
.privacy-section h2,
.feature-rows > h2,
.honesty h2,
.download-section h2,
.faq h2 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 5.3rem);
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 0.96;
  text-wrap: balance;
}

.section-copy > p {
  max-width: 58ch;
  margin: 28px 0 0;
  color: var(--ink-muted);
  font-size: 19px;
}

.plain-list {
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.plain-list li {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
}

.plain-list span {
  color: var(--ink-muted);
}

.plain-list strong {
  font-weight: 650;
  text-align: right;
}

.priority-board {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(15, 46, 31, 0.09);
  overflow: hidden;
}

.board-heading {
  min-height: 52px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-muted);
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.priority-board ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.priority-board li {
  min-height: 88px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 16px 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--rule);
}

.priority-board li.is-live {
  background: var(--signal-soft);
}

.priority-board li.is-avoided {
  color: var(--ink-muted);
  background: #f2f3f2;
}

.grip {
  width: 12px;
  height: 17px;
  opacity: 0.32;
  background-image: radial-gradient(circle, var(--ink) 1px, transparent 1.4px);
  background-size: 6px 6px;
}

.priority-board li > b {
  font-variant-numeric: tabular-nums;
}

.board-device {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.board-device strong {
  overflow: hidden;
  font-size: 16px;
  font-weight: 620;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.board-device small {
  color: var(--ink-muted);
  font-size: 13px;
}

.connected {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-muted);
  font-size: 13px;
  white-space: nowrap;
}

.priority-board > p {
  margin: 0;
  padding: 12px 22px;
  color: var(--ink-muted);
  background: var(--paper);
  font-size: 12px;
  text-align: right;
}

.privacy-section {
  padding: clamp(100px, 13vw, 170px) max(24px, calc((100vw - 1220px) / 2));
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: clamp(80px, 11vw, 150px);
  background: var(--signal);
  border-block: 1px solid rgba(15, 46, 31, 0.2);
}

.privacy-lockup img {
  width: 84px;
  height: auto;
  margin-bottom: 40px;
}

.privacy-section h2 {
  max-width: 12ch;
}

.privacy-facts {
  border-top: 1px solid rgba(15, 46, 31, 0.3);
}

.privacy-facts > div {
  padding: 21px 0;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 22px;
  border-bottom: 1px solid rgba(15, 46, 31, 0.3);
}

.privacy-facts strong {
  font-weight: 650;
}

.privacy-facts span {
  color: var(--ink);
}

.feature-rows {
  width: var(--page);
  margin-inline: auto;
  padding: clamp(110px, 14vw, 180px) 0;
}

.feature-rows > h2 {
  max-width: 8ch;
  margin-bottom: 88px;
}

.feature-row {
  padding: 52px 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 10vw, 140px);
  border-top: 1px solid var(--rule);
}

.feature-row:last-child {
  border-bottom: 1px solid var(--rule);
}

.feature-row h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.feature-row p {
  max-width: 56ch;
  margin: 16px 0 0;
  color: var(--ink-muted);
}

.feature-visual {
  min-height: 76px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(15, 46, 31, 0.07);
  font-size: 14px;
}

.feature-visual--undo {
  justify-content: space-between;
}

.feature-visual--undo b {
  color: #137a41;
}

.feature-visual--mode {
  gap: 8px;
}

.feature-visual--mode span {
  margin-right: auto;
  color: var(--ink-muted);
}

.feature-visual--mode b {
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 550;
}

.feature-visual--mode .is-selected {
  color: var(--white);
  background: var(--ink);
}

.feature-visual--pause {
  justify-content: space-between;
}

.feature-visual--pause i {
  position: relative;
  width: 44px;
  height: 25px;
  background: var(--signal);
  border: 1px solid rgba(15, 46, 31, 0.35);
  border-radius: 20px;
}

.feature-visual--pause i::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 17px;
  height: 17px;
  content: "";
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(15, 46, 31, 0.28);
}

.honesty {
  padding: clamp(76px, 9vw, 110px) max(24px, calc((100vw - 1220px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.5fr);
  align-items: end;
  gap: 70px;
  color: var(--white);
  background: var(--ink);
}

.honesty h2 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 4.8vw, 4.3rem);
}

.honesty p {
  max-width: 67ch;
  margin: 24px 0 0;
  color: #c8d8ce;
}

.honesty .text-link {
  justify-self: end;
  color: var(--white);
}

.download-section {
  width: var(--page);
  margin-inline: auto;
  padding: clamp(110px, 14vw, 180px) 0;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: clamp(70px, 10vw, 140px);
}

.download-copy > p:not(.requirements) {
  max-width: 52ch;
  margin: 26px 0 30px;
  color: var(--ink-muted);
  font-size: 19px;
}

.install-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.install-list li {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 17px;
  border-bottom: 1px solid var(--rule);
}

.install-list b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--signal);
  border-radius: 50%;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.faq {
  padding: clamp(100px, 13vw, 160px) max(24px, calc((100vw - 1220px) / 2));
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(70px, 10vw, 150px);
  background: var(--white);
  border-top: 1px solid var(--rule);
}

.faq h2 {
  max-width: 7ch;
  font-size: clamp(3rem, 5.4vw, 4.8rem);
}

.faq-list {
  border-top: 1px solid var(--rule);
}

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

.faq summary {
  position: relative;
  padding: 22px 38px 22px 0;
  font-size: 19px;
  font-weight: 620;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 11px;
  height: 11px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-67%) rotate(45deg);
}

.faq details[open] summary::after {
  transform: translateY(-28%) rotate(225deg);
}

.faq details p {
  max-width: 62ch;
  margin: -5px 0 24px;
  color: var(--ink-muted);
}

footer {
  width: var(--page);
  min-height: 116px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  color: var(--ink-muted);
  font-size: 14px;
}

footer p {
  margin: 0;
}

footer p:last-child {
  justify-self: end;
}

.footer-meta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-meta a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.analytics-consent {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  width: min(680px, calc(100% - 40px));
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(15, 46, 31, 0.3);
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent strong {
  font-size: 17px;
}

.analytics-consent p {
  max-width: 50ch;
  margin: 3px 0 0;
  color: #d9e9df;
  font-size: 14px;
  line-height: 1.4;
}

.analytics-consent__actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.analytics-consent .button {
  min-height: 42px;
  padding-inline: 15px;
  border-radius: 11px;
  font-size: 14px;
  white-space: nowrap;
}

.analytics-consent :focus-visible {
  outline-color: var(--signal-bright);
}

.legal-page .site-header {
  grid-template-columns: 1fr auto;
}

.legal-page .site-header > .text-link {
  justify-self: end;
}

.legal-content {
  width: min(760px, calc(100% - 48px));
  min-height: calc(100svh - 198px);
  margin-inline: auto;
  padding: clamp(72px, 10vw, 120px) 0;
}

.legal-updated {
  margin: -52px 0 52px;
  color: #14763f;
  font-size: 14px;
  font-weight: 650;
}

.legal-content h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.legal-intro {
  max-width: 58ch;
  margin: 28px 0 72px;
  color: var(--ink-muted);
  font-size: 20px;
}

.legal-content section {
  padding: 32px 0;
  border-top: 1px solid var(--rule);
}

.legal-content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 4vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.legal-content section p {
  margin: 0 0 14px;
  color: var(--ink-muted);
}

.legal-content ul {
  margin: 0;
  padding-left: 20px;
}

.legal-content li a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 46, 31, 0.16);
  }

  .button:active,
  .replay-button:active {
    transform: scale(0.97);
  }

  .site-header nav a:hover,
  .text-link:hover {
    color: #14763f;
  }
}

@media (max-width: 1040px) {
  .hero,
  .priority-section {
    grid-template-columns: 1fr;
  }

  .hero {
    max-width: 820px;
  }

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

  .hero h1 {
    max-width: 11ch;
  }

  .signal-demo {
    width: min(100%, 700px);
  }

  .priority-section {
    max-width: 820px;
  }

  .section-copy {
    max-width: 680px;
  }

  .privacy-section {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .privacy-section h2 {
    max-width: 11ch;
  }
}

@media (min-width: 761px) and (max-width: 1040px) and (max-height: 600px) and (orientation: landscape) {
  .hero {
    max-width: none;
    min-height: calc(100svh - 82px);
    padding: 30px 0 38px;
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
    align-items: start;
    gap: 32px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 4.8vw, 3.2rem);
    line-height: 0.96;
    text-wrap: pretty;
  }

  .hero-lede {
    margin-top: 17px;
    font-size: 1.28rem;
  }

  .hero-detail {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.42;
  }

  .hero-actions {
    margin-top: 20px;
    gap: 16px;
    flex-wrap: wrap;
  }

  .requirements {
    margin-top: 10px;
    font-size: 12px;
  }

  .signal-demo {
    width: 100%;
    border-radius: 26px;
  }

  .demo-desktop {
    min-height: 320px;
    padding: 30px 18px 20px;
  }

  .call-surface {
    inset: 25px 14px 14px;
  }

  .roadie-panel {
    padding: 14px;
  }

  .demo-caption {
    padding-block: 10px 12px;
    font-size: 12px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: min(100% - 32px, 620px);
  }

  body {
    font-size: 16px;
  }

  .site-header {
    height: 70px;
    grid-template-columns: 1fr auto;
  }

  .site-header .brand,
  footer .brand {
    min-height: 44px;
  }

  .site-header nav {
    display: none;
  }

  .site-header > .button {
    grid-column: 2;
    min-height: 44px;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
    gap: 34px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.95rem, 11.8vw, 3.3rem);
    line-height: 0.98;
    text-wrap: pretty;
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 1.28rem;
    line-height: 1.15;
  }

  .hero-detail {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-actions {
    margin-top: 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .text-link,
  .honesty .text-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .requirements {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.4;
  }

  .signal-demo {
    width: calc(100% + 12px);
    margin-left: -6px;
    border-radius: 25px;
  }

  .demo-desktop {
    min-height: 410px;
    padding-inline: 18px;
  }

  .call-surface {
    inset-inline: 14px;
  }

  .roadie-panel {
    padding: 15px;
  }

  .correction-note {
    min-height: 48px;
  }

  .replay-button {
    right: 6px;
    min-width: 72px;
    min-height: 44px;
    justify-content: center;
  }

  .device-switch {
    grid-template-columns: 32px minmax(0, 1fr) 34px 24px;
    gap: 8px;
  }

  .device-name {
    font-size: 14px;
  }

  .signal-track {
    --signal-lock-distance: 21px;
    width: 34px;
  }

  .interruption {
    padding: 100px 20px;
  }

  .priority-section {
    padding-block: 100px;
    gap: 60px;
  }

  .plain-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .plain-list strong {
    text-align: left;
  }

  .priority-board li {
    min-height: 82px;
    padding-inline: 14px;
    grid-template-columns: 12px 21px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .priority-board .connected {
    max-width: 82px;
    display: inline-flex;
    justify-content: flex-end;
    font-size: 11px;
    line-height: 1.2;
    text-align: right;
    white-space: normal;
  }

  .privacy-section {
    padding-block: 100px;
    gap: 70px;
  }

  .privacy-facts > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .feature-rows {
    padding-block: 100px;
  }

  .feature-rows > h2 {
    margin-bottom: 65px;
  }

  .feature-row {
    padding-block: 42px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .feature-visual {
    grid-row: 2;
  }

  .honesty,
  .download-section,
  .faq {
    grid-template-columns: 1fr;
  }

  .honesty {
    gap: 38px;
  }

  .honesty .text-link {
    justify-self: start;
  }

  .download-section {
    padding-block: 100px;
    gap: 65px;
  }

  .faq {
    padding-block: 100px;
    gap: 64px;
  }

  footer {
    padding: 34px 0;
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
  }

  footer p:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-meta {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: start;
    justify-content: flex-start;
  }

  .analytics-consent {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .analytics-consent__actions {
    justify-content: flex-end;
  }

  .legal-content {
    width: var(--page);
    padding-block: 58px 84px;
  }

  .legal-intro {
    margin-bottom: 50px;
  }

  .legal-updated {
    margin-top: -34px;
    margin-bottom: 34px;
  }
}

@media (min-width: 400px) and (max-width: 760px) {
  .hero-actions {
    align-items: center;
    flex-direction: row;
    gap: 16px;
  }
}

@media (max-width: 400px) {
  .site-header > .button {
    padding-inline: 13px;
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
    gap: 12px;
  }

  .button-label--long {
    display: none;
  }

  .button-label--short {
    display: inline;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 3.05rem);
  }

  .demo-desktop {
    min-height: 380px;
  }

  .demo-caption {
    min-height: 60px;
  }

  .correction-note {
    padding-right: 75px;
  }

  .analytics-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (pointer: coarse) {
  .brand,
  .button--small,
  .site-header nav a,
  .text-link {
    min-height: 44px;
  }

  .site-header nav a,
  .text-link,
  .footer-meta a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .replay-button {
    min-width: 72px;
    min-height: 44px;
    justify-content: center;
  }

  .button:active {
    transform: scale(0.98);
  }
}

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

  .signal-demo *,
  .signal-demo *::before,
  .signal-demo *::after {
    animation: none !important;
    transition: none !important;
  }

  .button,
  .skip-link {
    transition: none;
  }

  .button:active {
    transform: none;
  }

  .device-name--wrong {
    visibility: hidden;
  }

  .note-before {
    opacity: 0;
  }

  .device-name--right {
    visibility: visible;
    transform: none;
  }

  .note-after {
    opacity: 1;
    transform: none;
  }

  .signal-track i {
    transform: translateX(var(--signal-lock-distance));
  }
}
