:root {
  --ink: #112219;
  --ink-muted: #5d6a62;
  --forest: #176a46;
  --forest-deep: #0b1711;
  --forest-mid: #123d2a;
  --paper: #f4f2ec;
  --paper-bright: #fbfaf7;
  --line: rgba(17, 34, 25, 0.14);
  --white: #fffef9;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --page: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--forest-deep);
}

html.pricing-root {
  background: var(--paper);
}

body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--forest-deep);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

button {
  color: inherit;
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  color: var(--forest-deep);
  background: var(--white);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: env(safe-area-inset-top, 0px);
  left: 50%;
  width: var(--page);
  transform: translateX(-50%);
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: rgba(255, 254, 249, 0.8);
}

.wordmark {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.wordmark img {
  width: 25px;
  height: 34px;
  object-fit: contain;
  border-radius: 0;
  transform: translateY(2px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
}

.site-nav a,
.text-link {
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-cta {
  justify-self: end;
  font: inherit;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 11px 17px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: background-color 180ms ease, transform 140ms var(--ease-out);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 34%, rgba(64, 151, 105, 0.27), transparent 26%),
    radial-gradient(circle at 20% 38%, rgba(89, 124, 166, 0.13), transparent 30%),
    var(--forest-deep);
}

.hero-intro {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 290px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(3, 9, 6, 0.62));
}

.hero-glow {
  position: absolute;
  left: 50%;
  bottom: 45px;
  width: 900px;
  height: 540px;
  transform: translateX(-8%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  filter: blur(0.1px);
  opacity: 0.8;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: var(--page);
  margin: 0 auto;
  padding: calc(92px + env(safe-area-inset-top, 0px)) 0 48px;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  opacity: 0.82;
  stroke-width: 1.8;
}

.eyebrow.dark {
  color: var(--ink-muted);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(76px, 8vw, 128px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: #a5c7b4;
  font-weight: 400;
}

.hero-subtitle {
  max-width: 650px;
  margin: 30px 0 26px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.55;
}

.hero-subtitle-line {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  text-align: left;
}

.hero-subtitle-line + .hero-subtitle-line {
  margin-top: 2px;
}

.hero-subtitle-icon {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  color: var(--white);
  stroke-width: 1.7;
}

.hero-subtitle-lock {
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.availability-note {
  max-width: 230px;
  display: grid;
  justify-items: center;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 14px;
  line-height: 1.45;
}

.hero-facts {
  max-width: 650px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 28px;
}

.hero-facts > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-facts svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: #a5c7b4;
  stroke-width: 1.65;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
}

.hero-facts strong {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 650;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 20px 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  transition: transform 140ms var(--ease-out), background-color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms var(--ease-out);
}

.button-light {
  color: var(--forest-deep);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--forest-deep);
}

.button-static {
  cursor: default;
  user-select: none;
}

.button-disabled,
.button:disabled {
  border: 1px solid rgba(17, 34, 25, 0.08);
  color: rgba(17, 34, 25, 0.48);
  background: #e2e4e0;
  cursor: default;
  transform: none;
}

.text-link {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.24);
  text-underline-offset: 5px;
}

.text-button {
  padding: 8px 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-product {
  position: absolute;
  z-index: 4;
  right: max(24px, calc((100vw - 1240px) / 2));
  top: calc(50% + 34px);
  width: 470px;
  transform: translateY(-50%);
  transform-origin: right center;
}

.connection-pill {
  position: relative;
  z-index: 5;
  width: max-content;
  max-width: calc(100% - 8px);
  margin: -16px auto 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

.tag-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  opacity: 0.8;
}

.device-stage {
  position: relative;
  height: 700px;
  display: grid;
  place-items: center;
}

.device-stage::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 340px;
  height: 650px;
  border-radius: 100px;
  background: conic-gradient(from 210deg, #78d69a, #7096df, #aa82d4, #e9a36d, #78d69a);
  filter: blur(38px);
  opacity: 0.09;
  pointer-events: none;
  transform: scale(0.92) rotate(-8deg);
}

.hero-product.is-demo-glowing .device-stage::before {
  animation: demo-color-glow 1800ms var(--ease-out);
}

.orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.orbit-one {
  width: 580px;
  height: 300px;
}

.orbit-two {
  width: 470px;
  height: 230px;
  transform: rotate(42deg);
}

.phone {
  position: relative;
  z-index: 2;
  width: 302px;
  height: 624px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 54px;
  background: #090b0a;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.55), inset 0 0 0 2px rgba(255, 255, 255, 0.07);
}

.phone-speaker {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 50%;
  width: 72px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #080d0a;
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  overflow: clip;
  color: #fff;
  background: #000;
  border-radius: 46px;
}

.pairy-demo-shell {
  --demo-accent: #b84a00;
  --demo-accent-soft: rgba(184, 74, 0, 0.12);
  --demo-accent-on-dark: #ff9f0a;
  position: relative;
  height: 100%;
  padding: 36px 0 40px;
  display: grid;
  place-items: center;
}

.demo-shell-header {
  position: absolute;
  z-index: 7;
  top: 6px;
  right: 33px;
  left: 33px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  font-size: 11px;
  font-weight: 650;
}

.demo-shell-header > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.demo-shell-header svg {
  width: 13px;
  height: 13px;
}

.demo-shell-header button {
  padding: 4px 0;
  border: 0;
  color: #4fa870;
  background: transparent;
  font-size: inherit;
  font-weight: 650;
  cursor: pointer;
}

.simulator-device {
  position: relative;
  width: auto;
  height: 100%;
  min-height: 0;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  overflow: hidden;
  aspect-ratio: 1170 / 2532;
  color: #1c1c1e;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: auto;
  text-rendering: optimizeLegibility;
  border: 0;
  border-radius: 2px;
  box-shadow: none;
  transition: width 260ms var(--ease-in-out), height 260ms var(--ease-in-out), border-radius 260ms var(--ease-in-out);
}

.simulator-device.is-landscape {
  width: 100%;
  height: auto;
  max-height: 100%;
  margin: auto 0;
  aspect-ratio: 2532 / 1170;
  border-radius: 2px;
}

.mock-status {
  height: 29px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 10px;
  color: #171720;
  background: #fafafe;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.mock-status time {
  font-variant-numeric: tabular-nums;
}

.mock-island {
  width: 58px;
  height: 17px;
  border-radius: 999px;
  background: #111116;
}

.mock-status-icons {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mock-status-icons i {
  width: 14px;
  height: 7px;
  display: block;
  opacity: 0.28;
  background: radial-gradient(circle, #171720 1px, transparent 1.3px) 0 100% / 4px 4px repeat-x;
}

.mock-status-icons svg {
  width: 12px;
  height: 9px;
  stroke-width: 2.5;
}

.mock-status-icons b {
  position: relative;
  width: 15px;
  height: 8px;
  border: 1px solid rgba(23, 23, 32, 0.42);
  border-radius: 2px;
}

.mock-status-icons b::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 1px;
  background: #171720;
}

.mock-status-icons b::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -3px;
  width: 1px;
  height: 3px;
  border-radius: 0 1px 1px 0;
  background: rgba(23, 23, 32, 0.35);
}

.mock-scroll {
  min-height: 0;
  flex: 1 1 auto;
  overflow: auto;
  padding: 15px 11px 18px;
  color: #1c1c1e;
  background: #f2f2f7;
  scrollbar-width: none;
  overscroll-behavior: contain;
}

.mock-scroll::-webkit-scrollbar {
  display: none;
}

.mock-scroll:focus-visible {
  outline: 2px solid var(--demo-accent);
  outline-offset: -3px;
}

.checklist-heading {
  display: grid;
  gap: 2px;
  padding: 0 2px;
}

.checklist-heading h2 {
  margin: 0;
  color: #111114;
  font-size: 25px;
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1;
}

.checklist-description {
  margin-top: 4px;
  margin-bottom: 0;
  color: #707078;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
}

.checklist-progress {
  margin: 3px 0 0;
  color: var(--demo-accent);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.3;
}

.checklist-group {
  margin: 14px 12px 0 0;
  overflow: hidden;
  border: 1px solid rgba(60, 60, 67, 0.08);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(27, 27, 35, 0.035);
}

.checklist-group button {
  position: relative;
  width: 100%;
  min-height: 47px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 0 11px;
  border: 0;
  color: #222226;
  background: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
  transition: color 150ms ease-out, background-color 150ms ease-out, transform 100ms ease-out;
}

.checklist-group button[hidden] {
  display: none;
}

.checklist-group button + button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 40px;
  height: 1px;
  background: rgba(60, 60, 67, 0.12);
}

.checklist-check {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1.5px solid #b8b8c0;
  border-radius: 50%;
  color: #fff;
  background: #fff;
  transition: border-color 150ms ease-out, background-color 150ms ease-out, transform 100ms ease-out;
}

.checklist-check svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 120ms ease-out, transform 150ms ease-out;
}

.checklist-group button[aria-pressed="true"] {
  color: #74747c;
}

.checklist-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.checklist-copy > span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.checklist-copy small {
  color: #85858e;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.2;
}

.checklist-group button[aria-pressed="true"] .checklist-check {
  border-color: var(--demo-accent);
  background: var(--demo-accent);
}

.checklist-group button[aria-pressed="true"] .checklist-check svg {
  opacity: 1;
  transform: scale(1);
}

.checklist-add {
  color: var(--demo-accent) !important;
  font-weight: 650 !important;
}

.checklist-plus {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 50%;
  background: var(--demo-accent);
}

.checklist-plus::before,
.checklist-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  border-radius: 999px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.checklist-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.checklist-hint {
  margin: 8px 3px 0;
  color: #77777f;
  font-size: 9px;
  line-height: 1.45;
}


.simulator-home-screen {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: grid;
  place-items: start;
  padding: 74px 17px 17px;
  background:
    radial-gradient(circle at 25% 22%, rgba(255, 255, 255, 0.72), transparent 18%),
    radial-gradient(circle at 75% 68%, rgba(128, 115, 211, 0.58), transparent 34%),
    linear-gradient(145deg, #b8c3dd 0%, #d8c8e7 47%, #7774a1 100%);
}

.simulator-home-screen[hidden] {
  display: none;
}

.simulator-home-screen button {
  width: 45px;
  display: grid;
  gap: 4px;
  place-items: center;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 6px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.simulator-home-screen button > .mock-home-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-content: center;
  gap: 4px;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(145deg, #6f6de1, #4b49bc);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-shadow: none;
}

.mock-home-icon i {
  position: relative;
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
}

.mock-home-icon i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 2px;
  height: 2px;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  transform: translateY(-50%);
}


.edge-dock {
  position: absolute;
  z-index: 6;
  top: 165px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 160ms ease, transform 160ms var(--ease-out);
}

.phone.controls-collapsed .edge-dock {
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
}

.edge-dock button {
  width: 34px;
  height: 39px;
  display: grid;
  place-items: center;
  padding: 0 3px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 0;
  border-radius: 11px 0 0 11px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(68, 68, 68, 0.92);
  backdrop-filter: blur(18px) saturate(130%);
  box-shadow: -4px 6px 12px rgba(0, 0, 0, 0.2), inset 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transform-origin: right center;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 140ms var(--ease-out);
}

.edge-dock .dock-disconnect {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.95);
}

.edge-dock svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.9;
}

.dock-menu {
  position: absolute;
  z-index: 8;
  top: 111px;
  right: 38px;
  width: 176px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(61, 60, 60, 0.96);
  backdrop-filter: blur(22px) saturate(125%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateX(4px) scale(0.97);
  transform-origin: right center;
  transition: opacity 160ms ease, transform 160ms var(--ease-out);
}

.dock-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.dock-menu p {
  margin: 4px 10px 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.dock-menu button {
  width: 100%;
  min-height: 38px;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 10px;
  color: inherit;
  background: transparent;
  text-align: left;
  font-size: 10px;
  line-height: 1.2;
  cursor: pointer;
  transform-origin: center;
  transition: color 160ms ease, background-color 160ms ease, transform 120ms var(--ease-out);
}

.dock-menu button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #55b67a;
  stroke-width: 1.8;
}

.more-menu {
  top: 294px;
  width: 126px;
}

.recording-pill {
  position: absolute;
  z-index: 7;
  top: 88px;
  left: 50%;
  padding: 6px 9px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(31, 35, 32, 0.76);
  backdrop-filter: blur(12px);
  font-size: 7px;
  font-weight: 650;
  transform: translateX(-50%);
}

.recording-pill span {
  width: 6px;
  height: 6px;
  background: #ff914b;
  border-radius: 50%;
}

.demo-toast {
  position: absolute;
  z-index: 10;
  top: 48px;
  left: 12px;
  right: 12px;
  min-height: 39px;
  padding: 10px 12px 10px 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  color: #172019;
  background: rgba(244, 247, 244, 0.88);
  backdrop-filter: blur(15px);
  text-align: left;
  font-size: 8px;
  font-weight: 650;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms var(--ease-out);
}

.demo-toast::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #4fa870;
  border-radius: 50%;
  font-size: 8px;
  transform: translateY(-50%);
}

.demo-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.demo-note-sheet {
  position: absolute;
  z-index: 9;
  right: 0;
  bottom: 0;
  left: 0;
  height: 58%;
  padding: 10px;
  color: #1c1c1e;
  background: #f7f7f9;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.38);
  transform: translateY(100%);
  transition: transform 240ms var(--ease-out);
}

.demo-note-sheet.is-open {
  transform: translateY(0);
}

.note-sheet-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 25px;
  font-size: 8px;
}

.note-sheet-header button {
  padding: 5px;
  border: 0;
  color: #176a46;
  background: transparent;
  font-size: inherit;
  cursor: pointer;
}

.note-sheet-header button:last-child {
  justify-self: end;
  font-weight: 700;
}

.note-sheet-header button:disabled {
  color: #92979a;
  cursor: default;
}

.demo-note-sheet textarea {
  width: 100%;
  height: calc(100% - 31px);
  padding: 10px;
  resize: none;
  border: 1px solid rgba(28, 28, 30, 0.09);
  border-radius: 12px;
  outline: none;
  color: #1c1c1e;
  background: #fff;
  font: inherit;
  font-size: 9px;
}

.demo-gallery-sheet {
  position: absolute;
  z-index: 11;
  inset: 0;
  display: grid;
  align-items: end;
  color: #1c1c1e;
  background: rgba(4, 7, 5, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease-out;
}

.demo-gallery-sheet.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-sheet-card {
  height: 215px;
  overflow: hidden;
  border: 1px solid rgba(60, 60, 67, 0.12);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  background: rgba(247, 247, 250, 0.96);
  backdrop-filter: blur(22px) saturate(145%);
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.34);
  transform: translateY(100%);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.demo-gallery-sheet.is-open .gallery-sheet-card {
  transform: translateY(0);
}

.gallery-sheet-grabber {
  width: 34px;
  height: 4px;
  display: block;
  margin: 7px auto 3px;
  border-radius: 999px;
  background: #c7c7cc;
}

.gallery-sheet-header {
  min-height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery-sheet-header > div {
  display: grid;
  gap: 1px;
}

.gallery-sheet-header small {
  color: #77777f;
  font-size: 6.5px;
  font-weight: 720;
  letter-spacing: 0.08em;
}

.gallery-sheet-header strong {
  font-size: 13px;
  letter-spacing: -0.02em;
}

.gallery-sheet-header button {
  min-width: 44px;
  min-height: 36px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  color: var(--demo-accent);
  background: var(--demo-accent-soft);
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.gallery-empty {
  margin: 25px 16px 0;
  color: #77777f;
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
}

.gallery-grid {
  min-height: 145px;
  padding: 4px 12px 13px;
  display: flex;
  gap: 11px;
  overflow-x: auto;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-capture {
  width: 72px;
  flex: 0 0 72px;
  margin: 0;
}

.gallery-capture-preview {
  position: relative;
  width: 72px;
  height: 101px;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(90deg, var(--demo-accent) 0 42%, #dedee7 42%) 10px 41px / 52px 3px no-repeat,
    repeating-linear-gradient(to bottom, #fff 0 13px, #e5e5eb 13px 14px) 8px 51px / 56px 40px no-repeat,
    #f2f2f7;
  box-shadow: inset 0 0 0 1px rgba(60, 60, 67, 0.1), 0 5px 12px rgba(28, 28, 35, 0.12);
}

.gallery-capture-preview::before {
  content: "Checklist";
  position: absolute;
  top: 15px;
  left: 9px;
  color: #17171b;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.gallery-capture-preview::after {
  content: "";
  position: absolute;
  top: 31px;
  left: 9px;
  width: 25px;
  height: 3px;
  border-radius: 999px;
  background: #c9c9d1;
}

.gallery-capture figcaption {
  display: grid;
  gap: 1px;
  margin-top: 6px;
  line-height: 1.2;
}

.gallery-capture figcaption strong {
  overflow: hidden;
  color: #2c2c31;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-capture figcaption small {
  overflow: hidden;
  color: #7d7d85;
  font-size: 6.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-keyboard {
  position: absolute;
  z-index: 9;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 7px 6px 13px;
  background: rgba(217, 221, 217, 0.96);
  transform: translateY(calc(100% + 4px));
  transition: transform 240ms var(--ease-out);
}

.demo-keyboard.is-open {
  transform: translateY(0);
}

.keyboard-done-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 2px 7px;
}

.keyboard-done-row input {
  min-width: 0;
  flex: 1;
  padding: 7px 8px;
  border: 0;
  border-radius: 8px;
  outline: none;
  color: #3d463f;
  background: #f7f7f4;
  font-size: 8px;
}

.keyboard-done-row button {
  padding: 7px 9px;
  border: 1px solid rgba(17, 34, 25, 0.14);
  border-radius: 999px;
  color: #176a46;
  background: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
}

.keyboard-row {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-top: 4px;
}

.keyboard-row.narrow {
  padding: 0 6px;
}

.keyboard-row i {
  flex: 1;
  padding: 6px 0;
  border-radius: 4px;
  color: #1c1c1e;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.16);
  text-align: center;
  font-size: 7px;
  font-weight: 650;
  font-style: normal;
  line-height: 1;
}

.product-hint {
  position: absolute;
  right: auto;
  bottom: 20px;
  left: 50%;
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 0.04em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.hero-foot {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 7vw, 96px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-pad {
  padding: 110px max(24px, calc((100vw - 1240px) / 2));
}

.section-label {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 60px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label span {
  width: 32px;
  height: 1px;
  display: block;
  background: var(--forest);
}

.intro-grid,
.workflow-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  gap: clamp(42px, 8vw, 124px);
  align-items: center;
}

.intro,
.final-cta,
.site-footer {
  background: var(--paper);
}

.display-heading {
  max-width: 780px;
  margin: 0;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(50px, 6.3vw, 92px);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.055em;
}

.section-copy {
  max-width: 420px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.7;
}

.feature-stage {
  min-height: 570px;
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border-radius: 34px;
  color: var(--white);
  background: var(--forest-deep);
}

.feature-stage-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 60px;
}

.feature-stage-copy h2 {
  margin: 0;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.feature-stage-copy > p:not(.eyebrow) {
  max-width: 410px;
  margin: 25px 0 40px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.7;
}

.feature-stage-copy .eyebrow {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.micro-proof {
  display: flex;
  gap: 24px;
}

.micro-proof span {
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.micro-proof span:last-child {
  padding-right: 0;
  border: 0;
}

.micro-proof strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 24px;
  font-weight: 520;
  text-transform: none;
}

.touch-map {
  position: relative;
  min-height: 570px;
  background: radial-gradient(circle at center, rgba(65, 145, 102, 0.24), transparent 46%);
}

.touch-rings,
.touch-rings i {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(124, 204, 155, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.touch-rings {
  width: 460px;
  height: 460px;
}

.touch-rings i:nth-child(1) {
  width: 330px;
  height: 330px;
}

.touch-rings i:nth-child(2) {
  width: 210px;
  height: 210px;
}

.touch-rings i:nth-child(3) {
  width: 75px;
  height: 75px;
  background: rgba(104, 201, 139, 0.05);
}

.touch-device {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 215px;
  height: 440px;
  padding: 58px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 45px 80px rgba(0, 0, 0, 0.28), inset 0 0 0 5px #0a120e;
  transform: translate(-50%, -50%) rotate(7deg);
}

.touch-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 62px;
  height: 18px;
  border-radius: 999px;
  background: #07100b;
  transform: translateX(-50%);
}

.touch-ui-line,
.touch-ui-card {
  background: rgba(255, 255, 255, 0.09);
  border-radius: 999px;
}

.touch-ui-line {
  width: 55%;
  height: 7px;
  margin-bottom: 10px;
}

.touch-ui-line.wide {
  width: 86%;
  height: 14px;
}

.touch-ui-card {
  height: 80px;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.touch-ui-card.short {
  height: 58px;
  margin-top: 12px;
}

.touch-card {
  position: absolute;
  z-index: 4;
  min-width: 126px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.touch-card-icon {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.8);
  stroke-width: 1.7;
}

.touch-card-one {
  top: 19%;
  left: 7%;
}

.touch-card-two {
  top: 47%;
  right: 4%;
}

.touch-card-three {
  bottom: 16%;
  left: 8%;
}

.capability-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.capability {
  min-width: 0;
  min-height: 0;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.42);
}

.capability h3 {
  max-width: none;
  margin: 0 0 16px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.capability-title-icon {
  width: 29px;
  height: 29px;
  margin-top: 4px;
  flex: 0 0 auto;
  color: var(--forest);
  stroke-width: 1.8;
}

.capability-title span {
  min-width: 0;
}

.capability-description {
  max-width: 310px;
  min-height: 3.2em;
  margin: 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.6;
}

.capability-visual {
  position: relative;
  height: 145px;
  min-height: 145px;
  flex: 0 0 145px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(17, 34, 25, 0.08);
  border-radius: 20px;
  background: rgba(23, 106, 70, 0.045);
}

.capture-visual {
  background:
    radial-gradient(circle at 38% 50%, rgba(23, 106, 70, 0.08), transparent 54%),
    rgba(23, 106, 70, 0.045);
}

.capture-simulator {
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 15px;
  width: min(65%, 215px);
  overflow: hidden;
  border: 1px solid rgba(17, 34, 25, 0.14);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(17, 34, 25, 0.1);
}

.capture-simulator-bar {
  height: 25px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(17, 34, 25, 0.08);
  color: var(--ink-muted);
  background: #f5f6f4;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.capture-simulator-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #78a68f;
  box-shadow: 0 0 0 3px rgba(23, 106, 70, 0.09);
}

.capture-screen {
  position: relative;
  height: calc(100% - 25px);
  padding: 18px 13px 10px;
  background: #fafafc;
}

.capture-screen strong,
.capture-screen span {
  display: block;
  border-radius: 999px;
  background: #dfe5e1;
}

.capture-screen strong {
  width: 62%;
  height: 8px;
  margin-bottom: 10px;
  background: #bac9c0;
}

.capture-screen span {
  width: 76%;
  height: 5px;
  margin-bottom: 6px;
}

.capture-screen span:nth-of-type(2) {
  width: 48%;
}

.capture-screen > i {
  position: absolute;
  right: 13px;
  bottom: 11px;
  width: 37px;
  height: 27px;
  border-radius: 8px;
  background: #e5ede8;
}

.capture-focus {
  position: absolute;
  inset: 30px 6px 6px;
  border: 1px solid rgba(23, 106, 70, 0.2);
  border-radius: 6px;
}

.capture-focus i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: var(--forest);
}

.capture-focus i:nth-child(1) { top: -2px; left: -2px; border-top: 2px solid; border-left: 2px solid; border-radius: 4px 0 0; }
.capture-focus i:nth-child(2) { top: -2px; right: -2px; border-top: 2px solid; border-right: 2px solid; border-radius: 0 4px 0 0; }
.capture-focus i:nth-child(3) { bottom: -2px; right: -2px; border-right: 2px solid; border-bottom: 2px solid; border-radius: 0 0 4px; }
.capture-focus i:nth-child(4) { bottom: -2px; left: -2px; border-bottom: 2px solid; border-left: 2px solid; border-radius: 0 0 0 4px; }

.capture-action {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 14px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  color: #fff;
  background: var(--forest);
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 9px 20px rgba(17, 75, 51, 0.22);
}

.capture-action svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.8;
}

.capture-saved {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 17px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(23, 106, 70, 0.12);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(251, 250, 247, 0.92);
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(17, 34, 25, 0.08);
}

.capture-saved svg {
  width: 14px;
  height: 14px;
}

.note-visual {
  display: grid;
  place-items: center;
  background: rgba(93, 89, 164, 0.045);
}

.note-preview {
  width: calc(100% - 44px);
  padding: 18px;
  border: 1px solid rgba(17, 34, 25, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(17, 34, 25, 0.08);
  transform: rotate(1.5deg);
}

.note-preview strong {
  display: block;
  margin-bottom: 13px;
  font-size: 13px;
}

.note-preview > span {
  width: 86%;
  height: 6px;
  display: block;
  margin-bottom: 8px;
  border-radius: 999px;
  background: #e4e7e5;
}

.note-preview > span:nth-of-type(2) { width: 61%; }

.note-preview small {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--forest);
  font-size: 10px;
  font-weight: 650;
}

.note-preview small svg {
  width: 14px;
  height: 14px;
}

.workflow-visual {
  padding: 13px 14px;
  background:
    radial-gradient(circle at 70% 25%, rgba(23, 106, 70, 0.09), transparent 48%),
    rgba(23, 106, 70, 0.045);
}

.workflow-window {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(17, 34, 25, 0.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 13px 28px rgba(17, 34, 25, 0.08);
}

.workflow-window-bar {
  height: 27px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(17, 34, 25, 0.08);
  color: var(--ink-muted);
  background: #f5f6f4;
  font-size: 9px;
  font-weight: 700;
}

.workflow-window-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #78a68f;
  box-shadow: 0 0 0 3px rgba(23, 106, 70, 0.09);
}

.workflow-item {
  min-height: 58px;
  padding: 9px 10px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
}

.workflow-thumb {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--forest);
  background: rgba(23, 106, 70, 0.09);
}

.workflow-thumb svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}

.workflow-item > div:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.workflow-item strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
}

.workflow-item small {
  color: var(--ink-muted);
  font-size: 8px;
}

.workflow-item > span {
  padding: 5px 7px;
  border: 1px solid rgba(23, 106, 70, 0.14);
  border-radius: 999px;
  color: var(--forest);
  background: #fbfaf7;
  font-size: 8px;
  font-weight: 700;
}

.workflow-ready {
  position: absolute;
  right: 16px;
  bottom: 10px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(23, 106, 70, 0.14);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 8px 18px rgba(17, 34, 25, 0.08);
  font-size: 8px;
  font-weight: 700;
}

.workflow-ready svg {
  width: 12px;
  height: 12px;
  stroke-width: 1.8;
}

.workflow {
  padding-top: 80px;
  padding-bottom: 0;
  background: var(--paper);
}

.workflow + .intro {
  padding-top: 56px;
  padding-bottom: 64px;
}

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.steps li {
  min-width: 0;
  min-height: 132px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: start;
  border-right: 1px solid var(--line);
}

.steps li:first-child {
  padding-left: 0;
}

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

.steps li > span {
  display: block;
  margin-top: 5px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.steps h2 {
  margin: 0 0 9px;
  font-size: 23px;
  font-weight: 560;
  letter-spacing: -0.025em;
}

.steps p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.5;
}

.step-disclaimer {
  width: 100%;
  margin-top: 10px;
  display: block;
  color: rgba(93, 106, 98, 0.78);
  text-align: center;
  font-size: 11px;
  font-weight: 520;
  line-height: 1.45;
}

.privacy {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 8vw;
  align-items: center;
  color: var(--white);
  background: #102a1e;
}

.privacy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 45%, rgba(72, 164, 111, 0.22), transparent 34%);
}

.privacy-orb {
  position: absolute;
  top: 50%;
  right: -100px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: translateY(-50%);
}

.privacy-orb::before,
.privacy-orb::after {
  content: "";
  position: absolute;
  inset: 70px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.privacy-orb::after {
  inset: 145px;
}

.privacy-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 190px;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.privacy-mark span {
  position: absolute;
  left: 0;
  width: 140px;
  height: 42px;
  border-radius: 10px;
  background: rgba(175, 218, 191, 0.23);
  transform: skewY(-18deg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.privacy-mark span:nth-child(1) { top: 8px; }
.privacy-mark span:nth-child(2) { top: 73px; transform: skewY(18deg); }
.privacy-mark span:nth-child(3) { top: 138px; }

.privacy-copy,
.privacy-facts {
  position: relative;
  z-index: 2;
}

.privacy-copy h2 {
  margin: 0;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(52px, 5.4vw, 76px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.privacy-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.7;
}

.privacy-link {
  width: fit-content;
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 5px;
}

.privacy-facts {
  align-self: center;
  margin: 0;
}

.privacy-facts div {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  font-weight: 560;
}

.privacy-facts div:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-facts svg {
  width: 29px;
  height: 29px;
  color: rgba(255, 255, 255, 0.72);
  stroke-width: 1.6;
}

.final-cta {
  min-height: 520px;
  display: grid;
  place-items: center;
  text-align: center;
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta img {
  width: 64px;
  height: 92px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.final-cta .eyebrow {
  margin-bottom: 20px;
}

.final-cta h2 {
  margin: 0 0 30px;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 92px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.availability-copy {
  max-width: 420px;
  margin: -14px 0 28px;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.6;
}

.site-footer {
  min-height: 100px;
  padding: 30px max(24px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto;
  grid-template-rows: auto;
  align-items: center;
  gap: 18px 36px;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 14px;
}

.footer-wordmark {
  color: var(--ink);
  font-size: 20px;
}

.footer-wordmark img {
  width: 22px;
  height: 30px;
  border-radius: 0;
}

.footer-links {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
}

.footer-links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.footer-copyright {
  grid-column: auto;
  justify-self: end;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms var(--ease-out);
}

.js .reveal[data-reveal-delay="1"] { transition-delay: 70ms; }
.js .reveal[data-reveal-delay="2"] { transition-delay: 140ms; }

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes demo-color-glow {
  0% {
    opacity: 0.07;
    transform: scale(0.9) rotate(-10deg);
  }
  30% {
    opacity: 0.68;
    transform: scale(1.03) rotate(-2deg);
  }
  62% {
    opacity: 0.6;
    transform: scale(1.1) rotate(11deg);
  }
  100% {
    opacity: 0.07;
    transform: scale(0.94) rotate(19deg);
  }
}

@keyframes demo-guide-update {
  from {
    opacity: 0.45;
    transform: translateY(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover,
  .text-link:hover {
    color: var(--white);
  }

  .nav-cta:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  .button:hover svg {
    transform: translateX(4px);
  }

  .edge-dock button:hover {
    color: #fff;
    background: rgba(88, 88, 88, 0.96);
    box-shadow: -5px 7px 16px rgba(0, 0, 0, 0.28), inset 1px 0 rgba(255, 255, 255, 0.1);
  }

  .dock-menu button:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }

  .checklist-group button:hover {
    background: #f8f8fc;
  }
}

.button:not(:disabled):active,
.nav-cta:active,
.menu-button:active,
.edge-dock button:active,
.dock-menu button:active,
.gallery-sheet-header button:active,
.checklist-group button:active,
.simulator-home-screen button:active {
  transform: scale(0.97);
}

.checklist-group button:active {
  background: #ededf2;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 4px;
}

.hero button:focus-visible,
.hero a:focus-visible,
.hero input:focus-visible,
.hero textarea:focus-visible,
.privacy a:focus-visible {
  outline-color: #9fddb7;
}

@media (max-width: 1180px) {
  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding-top: calc(112px + env(safe-area-inset-top, 0px));
    padding-bottom: max(48px, env(safe-area-inset-bottom, 0px));
    text-align: center;
  }

  .hero h1,
  .hero-subtitle {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-subtitle-line {
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .hero-subtitle-line > span {
    min-width: 0;
    max-width: calc(100% - 28px);
  }

  .hero-subtitle-icon {
    flex: 0 0 18px;
  }

  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .hero-product {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    max-width: 470px;
    margin: 0 auto;
    padding-bottom: 24px;
    transform: none;
  }

  .connection-pill {
    margin-top: 34px;
  }

  .device-stage {
    height: 600px;
  }

  .phone {
    transform: scale(0.96);
  }

  .feature-stage {
    grid-template-columns: 1fr;
  }

  .feature-stage-copy {
    padding-bottom: 20px;
  }

  .touch-map {
    min-height: 540px;
  }

  .privacy {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  }
}

@media (min-width: 1181px) and (max-height: 900px) {
  .hero-product {
    top: calc(50% + 50px);
  }

  .device-stage {
    height: 640px;
  }

  .phone {
    transform: scale(1);
  }

  .connection-pill {
    margin-top: 14px;
  }
}

@media (min-width: 1181px) and (max-width: 1200px) {
  .hero-product {
    right: 0;
  }
}

@media (min-width: 901px) and (max-width: 1380px) {
  .nav-cta {
    display: none;
  }
}

@media (max-width: 900px) {
  .capability-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .privacy {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .privacy-facts {
    width: 100%;
  }

  .js .reveal {
    transform: translateY(12px);
    transition-duration: 560ms;
  }

  .js .reveal[data-reveal-delay="1"] { transition-delay: 45ms; }
  .js .reveal[data-reveal-delay="2"] { transition-delay: 90ms; }
}

@media (min-width: 1181px) and (max-height: 820px) {
  .hero-copy {
    padding-top: calc(76px + env(safe-area-inset-top, 0px));
    padding-bottom: 26px;
  }

  .hero h1 {
    font-size: clamp(70px, 7vw, 104px);
  }

  .hero-subtitle {
    max-width: 580px;
    margin-top: 24px;
    margin-bottom: 22px;
    font-size: 17px;
  }

  .hero-product {
    top: calc(50% + 50px);
    transform: translateY(-50%);
  }

  .device-stage {
    height: 590px;
  }

  .phone {
    transform: scale(0.96);
  }

  .connection-pill {
    margin-top: 44px;
  }
}

@media (min-width: 1181px) and (max-height: 780px) {
  .hero-product {
    top: calc(50% + 30px);
  }
}

@media (min-width: 1181px) and (max-height: 740px) {
  .hero-product {
    top: calc(50% + 8px);
  }
}

@media (min-width: 1181px) and (max-height: 700px) {
  .hero-product {
    top: calc(50% - 8px);
  }
}

@media (min-width: 1181px) and (max-height: 680px) {
  .hero-copy {
    padding-top: calc(68px + env(safe-area-inset-top, 0px));
    padding-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(62px, 6.4vw, 88px);
  }

  .hero-subtitle {
    max-width: 540px;
    margin-top: 18px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.45;
  }

  .hero-product {
    top: 50%;
    transform: translateY(-50%);
  }

  .device-stage {
    height: min(510px, calc(100svh - 48px));
  }

  .phone {
    width: 302px;
    height: 624px;
    transform: scale(0.84);
  }

  .connection-pill {
    margin-top: 86px;
  }
}

@media (max-height: 700px) {
  .js .reveal {
    transform: translateY(10px);
    transition-duration: 520ms;
  }

  .js .reveal[data-reveal-delay="1"] { transition-delay: 35ms; }
  .js .reveal[data-reveal-delay="2"] { transition-delay: 70ms; }
}

@media (max-width: 900px), (max-height: 560px) and (pointer: coarse) {
  :root {
    --page: calc(100% - 32px);
  }

  .site-header {
    height: 76px;
    display: flex;
    justify-content: space-between;
    padding-right: env(safe-area-inset-right, 0px);
    padding-left: env(safe-area-inset-left, 0px);
  }

  .wordmark {
    font-size: 21px;
  }

  .site-nav {
    gap: 12px;
    font-size: 12px;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .js .site-nav {
    position: absolute;
    top: 65px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(11, 23, 17, 0.94);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top;
    transition: opacity 180ms ease, transform 180ms var(--ease-out);
  }

  .js .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .js .site-nav a {
    min-height: 48px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 16px;
  }

  .js .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
  }

  .menu-button span {
    width: 15px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 180ms var(--ease-out);
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-bottom: 0;
  }

  .hero-copy {
    width: var(--page);
    padding-top: calc(100px + env(safe-area-inset-top, 0px));
    padding-right: env(safe-area-inset-right, 0px);
    padding-bottom: max(38px, env(safe-area-inset-bottom, 0px));
    padding-left: env(safe-area-inset-left, 0px);
  }

  .hero-copy .eyebrow {
    margin-bottom: 20px;
    font-size: 11px;
    letter-spacing: 0.11em;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 54px);
    line-height: 0.96;
    letter-spacing: -0.055em;
  }

  .hero-subtitle {
    max-width: 520px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    flex-direction: column;
    gap: 13px;
  }

  .hero-actions .button {
    min-width: min(290px, 100%);
    min-height: 54px;
    font-size: 15px;
  }

  .availability-note {
    max-width: 300px;
    font-size: 14px;
  }

  .hero-product {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
  }

  .connection-pill {
    margin-top: 10px;
    min-height: 38px;
    padding: 8px 13px;
    justify-content: center;
    font-size: 13px;
    line-height: 1.3;
    text-align: left;
    white-space: normal;
  }

  .device-stage {
    height: auto;
    min-height: 0;
    padding: 60px 0 12px;
    place-items: center;
  }

  .orbit-one {
    width: 410px;
    height: 220px;
  }

  .orbit-two {
    width: 340px;
    height: 170px;
  }

  .phone {
    width: min(358px, calc(100% - 14px));
    height: auto;
    aspect-ratio: 350 / 730;
    border-radius: 62px;
    transform: none;
  }

  .phone-screen {
    border-radius: 54px;
  }

  .phone-speaker {
    top: 18px;
    width: 72px;
    height: 22px;
  }

  .pairy-demo-shell {
    padding: 40px 0 44px;
  }

  .demo-shell-header {
    top: 7px;
    right: 38px;
    left: 38px;
    height: 24px;
    padding: 0;
    font-size: 12px;
  }

  .demo-shell-header svg {
    width: 14px;
    height: 14px;
  }

  .demo-shell-header button {
    min-height: 36px;
    padding: 8px 2px;
  }

  .simulator-device {
    width: auto;
    height: 100%;
    max-width: 100%;
    aspect-ratio: 1170 / 2532;
    margin: 0 auto;
    border-radius: 2px;
  }

  .simulator-device.is-landscape {
    width: 100%;
    height: auto;
    max-height: 100%;
    margin: auto 0;
    aspect-ratio: 2532 / 1170;
    border-radius: 2px;
  }

  .mock-status {
    height: 35px;
    padding: 0 12px;
    font-size: 11px;
  }

  .mock-island {
    width: 70px;
    height: 21px;
  }

  .mock-status-icons {
    gap: 5px;
  }

  .mock-status-icons i {
    width: 17px;
    height: 8px;
  }

  .mock-status-icons svg {
    width: 14px;
    height: 11px;
  }

  .mock-status-icons b {
    width: 18px;
    height: 9px;
  }

  .mock-scroll {
    padding: 18px 15px 22px;
  }

  .checklist-description {
    font-size: 12px;
  }

  .checklist-heading h2 {
    font-size: 31px;
  }

  .checklist-progress {
    font-size: 11px;
  }

  .checklist-group {
    margin-top: 14px;
    margin-right: 18px;
    border-radius: 16px;
  }

  .checklist-group button {
    min-height: 56px;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 11px;
    padding: 0 14px;
    font-size: 12px;
  }

  .checklist-group button + button::before {
    left: 49px;
  }

  .checklist-check,
  .checklist-plus {
    width: 21px;
    height: 21px;
  }

  .checklist-copy small {
    font-size: 10px;
  }

  .checklist-hint {
    margin-top: 10px;
    font-size: 10px;
  }

  .simulator-home-screen {
    padding: 92px 21px 21px;
  }

  .simulator-home-screen button {
    width: 55px;
    font-size: 8px;
  }

  .simulator-home-screen button > .mock-home-icon {
    width: 47px;
    height: 47px;
    border-radius: 11px;
  }

  .mock-home-icon i {
    width: 22px;
  }

  .edge-dock {
    top: 186px;
    gap: 4px;
  }

  .edge-dock button {
    width: 46px;
    height: 50px;
    border-radius: 13px 0 0 13px;
  }

  .edge-dock svg {
    width: 22px;
    height: 22px;
  }

  .dock-menu {
    top: 134px;
    right: 49px;
    width: 205px;
    padding: 10px;
    border-radius: 23px;
  }

  .more-menu {
    top: 365px;
    width: 150px;
  }

  .dock-menu button {
    min-height: 46px;
    padding: 9px 11px;
    gap: 12px;
    font-size: 12px;
  }

  .dock-menu p {
    margin: 5px 12px 7px;
    font-size: 10px;
  }

  .dock-menu button svg {
    width: 21px;
    height: 21px;
  }

  .recording-pill {
    top: 92px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .demo-toast {
    top: 52px;
    left: 12px;
    right: 12px;
    min-height: 44px;
    padding: 10px 12px 10px 39px;
    border-radius: 14px;
    font-size: 12px;
  }

  .demo-toast::before {
    left: 13px;
    width: 18px;
    height: 18px;
    font-size: 9px;
  }

  .note-sheet-header,
  .keyboard-done-row button {
    font-size: 12px;
  }

  .demo-note-sheet textarea,
  .keyboard-done-row input {
    font-size: 16px;
  }

  .gallery-sheet-card {
    height: 230px;
    border-radius: 24px 24px 0 0;
  }

  .gallery-sheet-grabber {
    width: 38px;
    margin-top: 8px;
  }

  .gallery-sheet-header {
    min-height: 46px;
    padding: 0 16px;
  }

  .gallery-sheet-header small {
    font-size: 8px;
  }

  .gallery-sheet-header strong {
    font-size: 17px;
  }

  .gallery-sheet-header button {
    min-height: 40px;
    font-size: 12px;
  }

  .gallery-empty {
    margin-top: 32px;
    font-size: 12px;
  }

  .gallery-grid {
    min-height: 166px;
    padding: 5px 16px 16px;
    gap: 13px;
  }

  .gallery-capture {
    width: 82px;
    flex-basis: 82px;
  }

  .gallery-capture-preview {
    width: 82px;
    height: 116px;
    border-radius: 12px;
    background:
      linear-gradient(90deg, var(--demo-accent) 0 42%, #dedee7 42%) 11px 47px / 60px 4px no-repeat,
      repeating-linear-gradient(to bottom, #fff 0 15px, #e5e5eb 15px 16px) 9px 59px / 64px 46px no-repeat,
      #f2f2f7;
  }

  .gallery-capture-preview::before {
    top: 17px;
    left: 10px;
    font-size: 12px;
  }

  .gallery-capture-preview::after {
    top: 36px;
    left: 10px;
    width: 29px;
  }

  .gallery-capture figcaption strong {
    font-size: 10px;
  }

  .gallery-capture figcaption small {
    font-size: 8px;
  }

  .keyboard-row i {
    min-height: 28px;
    padding: 8px 0;
    font-size: 11px;
  }

  .product-hint {
    display: none;
  }

  .section-pad {
    padding: 72px 20px;
  }

  .section-label {
    margin-bottom: 38px;
  }

  .display-heading {
    font-size: clamp(44px, 13vw, 52px);
    line-height: 1.01;
  }

  .section-copy {
    font-size: 17px;
    line-height: 1.65;
  }

  .feature-stage {
    min-height: 0;
    margin-top: 0;
    border-radius: 26px;
  }

  .feature-stage-copy {
    padding: 45px 24px 34px;
  }

  .feature-stage-copy h2 {
    font-size: clamp(42px, 12.5vw, 50px);
    line-height: 1;
  }

  .feature-stage-copy > p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 16.5px;
    line-height: 1.64;
  }

  .touch-map {
    min-height: 480px;
  }

  .touch-rings {
    width: 360px;
    height: 360px;
  }

  .touch-device {
    width: 180px;
    height: 365px;
  }

  .touch-card {
    min-width: 112px;
    padding: 12px 13px;
  }

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

  .capability {
    min-height: 0;
    padding: 24px 22px 22px;
  }

  .capability h3 {
    font-size: 36px;
    line-height: 1.05;
  }

  .workflow {
    padding-top: 56px;
    padding-bottom: 0;
  }

  .workflow + .intro {
    padding-top: 40px;
    padding-bottom: 48px;
  }

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

  .steps li {
    min-height: 0;
    padding: 24px 0;
    grid-template-columns: 45px 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .steps li > svg {
    display: none;
  }

  .steps h2 {
    font-size: 22px;
  }

  .steps p {
    padding-right: 10px;
    font-size: 16px;
    line-height: 1.45;
  }

  .privacy {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 44px;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .privacy-copy h2 {
    font-size: clamp(46px, 14vw, 56px);
    line-height: 1;
  }

  .privacy-copy > p:last-child {
    font-size: 17px;
    line-height: 1.65;
  }

  .privacy-facts {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .privacy-orb {
    top: auto;
    right: -200px;
    bottom: 30px;
    width: 500px;
    height: 500px;
    transform: none;
  }

  .final-cta {
    min-height: 500px;
  }

  .final-cta h2 {
    font-size: clamp(50px, 15vw, 60px);
    line-height: 0.96;
  }

  .site-footer {
    min-height: 210px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: start;
    gap: 20px;
    padding-top: 35px;
    padding-bottom: 35px;
    font-size: 14px;
    line-height: 1.5;
  }

  .site-footer p {
    margin: 0;
  }

  .footer-links {
    justify-self: start;
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .footer-copyright {
    grid-column: auto;
    justify-self: start;
  }
}

@media (max-height: 560px) and (max-width: 1100px) {
  .site-header {
    height: 64px;
  }

  .hero-copy {
    padding-top: calc(68px + env(safe-area-inset-top, 0px));
    padding-bottom: max(14px, env(safe-area-inset-bottom, 0px));
  }

  .hero-copy .eyebrow {
    display: none;
  }

  .hero h1 {
    font-size: clamp(42px, 7.5vw, 58px);
    line-height: 0.9;
  }

  .hero-subtitle {
    max-width: 680px;
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.35;
  }

  .hero-actions {
    flex-direction: row;
    gap: 18px;
  }

  .hero-actions .button {
    min-width: 0;
    min-height: 46px;
    font-size: 14px;
  }

  .availability-note {
    max-width: 220px;
    text-align: center;
  }
}

@media (max-height: 650px) and (max-width: 600px) {
  .hero-copy {
    padding-top: calc(76px + env(safe-area-inset-top, 0px));
    padding-bottom: max(18px, env(safe-area-inset-bottom, 0px));
  }

  .hero-copy .eyebrow {
    display: none;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 0.94;
  }

  .hero-subtitle {
    margin-top: 14px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.4;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 50px;
    font-size: 14px;
  }

  .availability-note {
    font-size: 13px;
  }
}

@media (pointer: coarse) {
  .mock-scroll {
    overscroll-behavior: auto;
  }

  .simulator-device {
    transition: none;
  }

  .demo-keyboard {
    padding: 8px;
  }

  .demo-keyboard .keyboard-row {
    display: none;
  }

  .keyboard-done-row {
    margin-bottom: 0;
  }

  .keyboard-done-row input,
  .keyboard-done-row button {
    min-height: 44px;
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  :root {
    --page: calc(100% - 28px);
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subtitle-lock {
    white-space: normal;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    max-width: 276px;
  }

  .hero-facts > div,
  .hero-facts > div:last-child {
    grid-column: auto;
    justify-content: flex-start;
  }

  .device-stage {
    height: auto;
    padding-top: 60px;
  }

  .pairy-demo-shell {
    padding-bottom: 40px;
  }

  .phone {
    width: min(334px, calc(100% - 12px));
    height: auto;
    aspect-ratio: 350 / 730;
    border-radius: 55px;
  }

  .phone-screen {
    border-radius: 45px;
  }

  .simulator-device {
    width: auto;
    height: 100%;
    max-width: 100%;
    aspect-ratio: 1170 / 2532;
  }

  .simulator-device.is-landscape {
    width: 100%;
    height: auto;
    max-height: 100%;
    margin: auto 0;
    aspect-ratio: 2532 / 1170;
  }

  .edge-dock {
    top: 178px;
  }

  .edge-dock button {
    width: 44px;
    height: 48px;
  }

  .feature-stage-copy,
  .capability {
    padding-right: 22px;
    padding-left: 22px;
  }

  .touch-card {
    min-width: 104px;
    font-size: 12px;
  }
}

.simulator-device.is-landscape .mock-status {
  height: 19px;
  padding: 0 9px;
  font-size: 6px;
}

.pairy-demo-shell:has(.simulator-device.is-landscape) .demo-shell-header {
  right: 12px;
  left: 12px;
}

.simulator-device.is-landscape .mock-island {
  width: 44px;
  height: 12px;
}

.simulator-device.is-landscape .mock-status-icons {
  gap: 3px;
}

.simulator-device.is-landscape .mock-status-icons i {
  width: 10px;
  height: 5px;
}

.simulator-device.is-landscape .mock-status-icons svg {
  width: 9px;
  height: 7px;
}

.simulator-device.is-landscape .mock-status-icons b {
  width: 11px;
  height: 6px;
}

.simulator-device.is-landscape .mock-scroll {
  padding: 6px 10px 9px;
}

.simulator-device.is-landscape .checklist-heading {
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2px 8px;
}

.simulator-device.is-landscape .checklist-description {
  display: none;
}

.simulator-device.is-landscape .checklist-heading h2 {
  font-size: 13px;
}

.simulator-device.is-landscape .checklist-progress {
  margin: 0;
  font-size: 6px;
}

.simulator-device.is-landscape .checklist-group {
  margin-top: 5px;
  border-radius: 8px;
}

.simulator-device.is-landscape .checklist-group button {
  min-height: 32px;
  grid-template-columns: 15px minmax(0, 1fr);
  gap: 6px;
  padding: 0 8px;
  font-size: 6px;
}

.simulator-device.is-landscape .checklist-group button + button::before {
  left: 29px;
}

.simulator-device.is-landscape .checklist-check,
.simulator-device.is-landscape .checklist-plus {
  width: 14px;
  height: 14px;
}

.simulator-device.is-landscape .checklist-copy {
  gap: 0;
}

.simulator-device.is-landscape .checklist-copy small {
  display: none;
}

.simulator-device.is-landscape .checklist-hint {
  display: none;
}

.simulator-device.is-landscape .simulator-home-screen {
  padding: 31px 14px 12px;
}

.simulator-device.is-landscape .simulator-home-screen button {
  width: 38px;
  font-size: 5px;
}

.simulator-device.is-landscape .simulator-home-screen button > .mock-home-icon {
  width: 31px;
  height: 31px;
  border-radius: 7px;
  font-size: 13px;
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-nav,
  .nav-cta,
  .connection-pill,
  .edge-dock button,
  .dock-menu,
  .demo-toast,
  .gallery-sheet-card {
    backdrop-filter: none;
  }

  .site-nav,
  .connection-pill {
    background: var(--forest-deep);
  }

  .edge-dock button,
  .dock-menu {
    background: #444;
  }

  .demo-toast {
    background: #f4f7f4;
  }

  .gallery-sheet-card {
    background: #f7f7fa;
  }
}

@media (prefers-contrast: more) {
  .site-nav,
  .nav-cta,
  .connection-pill,
  .edge-dock button,
  .dock-menu,
  .gallery-sheet-card {
    border-color: currentColor;
  }

  .site-nav,
  .connection-pill {
    background: var(--forest-deep);
  }

  .checklist-group {
    border-color: #5d5d66;
    box-shadow: none;
  }

  .checklist-check {
    border-color: #55555d;
  }
}

/* Temporary website-only dark preview. Remove is-dark-preview from the markup to revert. */
.simulator-device.is-dark-preview {
  color-scheme: dark;
  color: #f5f5f7;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.simulator-device.is-dark-preview .mock-status {
  color: #f5f5f7;
  background: #000;
}

.simulator-device.is-dark-preview .mock-status-icons i {
  opacity: 0.52;
  background: radial-gradient(circle, #f5f5f7 1px, transparent 1.3px) 0 100% / 4px 4px repeat-x;
}

.simulator-device.is-dark-preview .mock-status-icons b {
  border-color: rgba(245, 245, 247, 0.58);
}

.simulator-device.is-dark-preview .mock-status-icons b::before {
  background: #f5f5f7;
}

.simulator-device.is-dark-preview .mock-status-icons b::after {
  background: rgba(245, 245, 247, 0.5);
}

.simulator-device.is-dark-preview .mock-scroll {
  color: #f5f5f7;
  background: #000;
}

.simulator-device.is-dark-preview .checklist-heading h2 {
  color: #f5f5f7;
}

.simulator-device.is-dark-preview .checklist-description,
.simulator-device.is-dark-preview .checklist-hint,
.simulator-device.is-dark-preview .checklist-copy small {
  color: #aeaeb2;
}

.simulator-device.is-dark-preview .checklist-progress,
.simulator-device.is-dark-preview .checklist-add {
  color: var(--demo-accent-on-dark) !important;
}

.simulator-device.is-dark-preview .checklist-group {
  border-color: rgba(255, 255, 255, 0.1);
  background: #1c1c1e;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.28);
}

.simulator-device.is-dark-preview .checklist-group button {
  color: #f5f5f7;
  background: #1c1c1e;
}

.simulator-device.is-dark-preview .checklist-group button + button::before {
  background: rgba(84, 84, 88, 0.72);
}

.simulator-device.is-dark-preview .checklist-group button[aria-pressed="true"] {
  color: #8e8e93;
}

.simulator-device.is-dark-preview .checklist-group button:active {
  background: #2c2c2e;
}

.simulator-device.is-dark-preview .checklist-check {
  border-color: #636366;
  background: #1c1c1e;
}

.simulator-device.is-dark-preview .checklist-group button[aria-pressed="true"] .checklist-check {
  border-color: var(--demo-accent-on-dark);
  color: #1c1c1e;
  background: var(--demo-accent-on-dark);
}

.simulator-device.is-dark-preview .checklist-plus {
  background: var(--demo-accent-on-dark);
}

/* Pricing */
.pricing-page {
  background: var(--paper);
}

.pricing-page .site-nav a[aria-current="page"] {
  color: var(--white);
}

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

.pricing-intro {
  padding: 134px max(24px, calc((100vw - 1040px) / 2)) 102px;
  color: var(--white);
  background: var(--forest-deep);
}

.pricing-intro-inner {
  max-width: 720px;
}

.pricing-kicker {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pricing-intro .pricing-kicker {
  color: #91cba8;
}

.pricing-intro h1,
.compact-usage h2 {
  margin: 0;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.pricing-intro h1 {
  font-size: clamp(62px, 7.4vw, 94px);
  line-height: 0.94;
}

.pricing-intro-copy {
  max-width: 590px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.55;
}

.compact-plans {
  position: relative;
  z-index: 2;
  margin-top: -72px;
  padding: 0 max(24px, calc((100vw - 1040px) / 2)) 74px;
  background: linear-gradient(transparent 72px, var(--paper) 72px);
}

.compact-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.compact-plan {
  min-width: 0;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper-bright);
}

.compact-plan-annual {
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  background: #191b1a;
}

.compact-plan-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.compact-plan-header h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.compact-plan-header span {
  color: var(--forest);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compact-plan-annual .compact-plan-header span {
  color: rgba(255, 255, 255, 0.62);
}

.compact-plan-price {
  margin: 18px 0 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.compact-plan-price strong {
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(54px, 5.3vw, 70px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.compact-plan-price span {
  color: var(--ink-muted);
  font-size: 16px;
  font-weight: 600;
}

.compact-plan-annual .compact-plan-price span {
  color: rgba(255, 255, 255, 0.56);
}

.compact-plan-offer {
  min-height: 24px;
  margin: 9px 0 0;
  font-size: 16px;
  line-height: 1.4;
}

.compact-plan-offer strong {
  color: var(--ink);
  font-weight: 720;
}

.compact-plan-offer span {
  color: var(--ink-muted);
}

.compact-plan-annual .compact-plan-offer strong {
  color: var(--white);
}

.compact-plan-annual .compact-plan-offer span {
  color: rgba(255, 255, 255, 0.56);
}

.compact-plan-facts {
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compact-plan-annual .compact-plan-facts {
  border-color: rgba(255, 255, 255, 0.13);
}

.compact-plan-facts div {
  min-width: 0;
  padding: 12px 14px 12px 0;
}

.compact-plan-facts div + div {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.compact-plan-annual .compact-plan-facts div + div {
  border-color: rgba(255, 255, 255, 0.13);
}

.compact-plan-facts dt {
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.compact-plan-annual .compact-plan-facts dt {
  color: rgba(255, 255, 255, 0.52);
}

.compact-plan-facts dd {
  margin: 6px 0 0;
  font-size: 16px;
  font-weight: 670;
  line-height: 1.35;
}

.compact-plan-facts dd strong,
.compact-plan-facts dd span {
  display: inline;
}

.compact-plan-facts dd strong {
  font-size: 17px;
}

.compact-plan-facts dd span {
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.compact-plan-annual .compact-plan-facts dd span {
  color: rgba(255, 255, 255, 0.56);
}

.compact-plan-button {
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  color: var(--forest-deep);
  background: var(--white);
  font-size: 16px;
  font-weight: 700;
  cursor: not-allowed;
}

.compact-plan-button-secondary {
  border: 1px solid var(--line);
  color: var(--ink-muted);
  background: rgba(17, 34, 25, 0.05);
}

.compact-pricing-note {
  max-width: 850px;
  margin: 22px auto 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.65;
  text-align: center;
}

.compact-usage {
  padding: 80px max(24px, calc((100vw - 1040px) / 2)) 90px;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.compact-usage h2 {
  max-width: 410px;
  font-size: clamp(48px, 5vw, 68px);
  line-height: 0.98;
}

.compact-usage-copy {
  max-width: 620px;
}

.compact-usage-copy > p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.7;
}

.compact-usage-copy > p + p {
  margin-top: 16px;
}

.compact-topup-note {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.compact-topup-note h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.compact-topup-note p {
  margin: 10px 0 0;
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .pricing-intro {
    padding: calc(108px + env(safe-area-inset-top, 0px)) 20px 92px;
  }

  .pricing-intro h1 {
    font-size: clamp(54px, 14vw, 68px);
  }

  .pricing-intro-copy {
    max-width: 540px;
    margin-top: 15px;
    font-size: 16px;
  }

  .compact-plans {
    margin-top: -62px;
    padding-right: 20px;
    padding-bottom: 62px;
    padding-left: 20px;
    background: linear-gradient(transparent 62px, var(--paper) 62px);
  }

  .compact-plan-grid,
  .compact-usage {
    grid-template-columns: 1fr;
  }

  .compact-usage {
    gap: 34px;
    padding: 68px 20px 76px;
  }

  .compact-usage h2 {
    max-width: 560px;
  }
}

@media (max-width: 520px) {
  .pricing-intro {
    padding-top: calc(102px + env(safe-area-inset-top, 0px));
    padding-bottom: 86px;
  }

  .pricing-intro h1 {
    font-size: clamp(52px, 15vw, 62px);
  }

  .compact-plan {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .compact-plan-price {
    margin-top: 17px;
  }

  .compact-plan-price strong {
    font-size: clamp(52px, 16vw, 62px);
  }

  .compact-plan-facts {
    margin-top: 17px;
  }

  .compact-plan-facts div {
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .compact-plan-button {
    margin-top: 14px;
  }

  .compact-pricing-note {
    margin-top: 18px;
  }

  .compact-usage h2 {
    font-size: 48px;
  }
}

@media (min-width: 901px) and (max-height: 700px) {
  .pricing-intro {
    padding-top: 116px;
    padding-bottom: 90px;
  }

  .pricing-intro h1 {
    font-size: 72px;
  }

  .compact-plans {
    margin-top: -66px;
    background: linear-gradient(transparent 66px, var(--paper) 66px);
  }
}

@media (prefers-contrast: more) {
  .compact-plan,
  .compact-plan-facts,
  .compact-topup-note {
    border-color: currentColor;
  }
}
