@font-face {
  font-family: "Instrument Sans";
  src: url("/fonts/instrument-sans-regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --ink: #18201d;
  --stone: #66716b;
  --milk: #f7f4ec;
  --porcelain: #fffdf8;
  --surface: #eef0ea;
  --line: #d8ded9;
  --body-ink: #44504a;
  --signal: #d6f15b;
  --signal-strong: #c4e332;
  --success: #247a52;
  --warning: #a55b13;
  --error: #b93a32;
  --info: #315db8;
  --dark-ground: #111512;
  --dark-primary: #f1efe7;
  --dark-secondary: #a9b1ab;
  --dark-line: #38413c;
  --font-display: "General Sans", "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --font-meta: ui-monospace, "SFMono-Regular", Menlo, monospace;
  --type-display: clamp(42px, 5.4vw, 68px);
  --type-title: clamp(20px, 2vw, 24px);
  --type-body: 16px;
  --gutter: clamp(16px, 2vw, 24px);
  --section: clamp(64px, 8vw, 96px);
  --section-tight: clamp(48px, 6vw, 64px);
  --shell: 1280px;
  --measure: 66ch;
  --radius-small: 8px;
  --radius-row: 10px;
  --radius-control: 12px;
  --radius-drawer: 18px;
  --radius-large: 22px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--milk);
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

small {
  font-size: var(--type-body);
}

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

strong,
b {
  font-weight: inherit;
}

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-control);
  color: var(--ink);
  background: var(--signal);
  transform: translateY(-180%);
  transition: transform 180ms ease-out;
}

.skip-link:focus {
  transform: none;
}

.site-header,
.document-header {
  z-index: 20;
  display: flex;
  width: min(calc(100% - (2 * var(--gutter))), var(--shell));
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
}

.site-header {
  position: absolute;
  top: 24px;
  right: 0;
  left: 0;
  padding: 0 40px;
}

.document-header {
  position: relative;
}

.brand,
.footer-brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: var(--type-title);
  line-height: 1;
  letter-spacing: -0.035em;
}

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

.site-header nav,
.document-header nav,
.site-footer nav,
.document-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
}

.site-header nav a,
.document-header nav a,
.site-footer nav a,
.document-footer nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--stone);
  transition: color 180ms ease-out;
}

.site-header nav a:hover,
.document-header nav a:hover,
.site-footer nav a:hover,
.document-footer nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  width: min(calc(100% - (2 * var(--gutter))), var(--shell));
  height: min(720px, calc(100svh - 48px));
  min-height: 660px;
  margin: 24px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--surface);
}

.hero-inner {
  display: grid;
  height: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: start;
  gap: clamp(48px, 7vw, 96px);
  padding: 144px clamp(32px, 5vw, 64px) 32px;
}

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

.hero h1,
.statement h2,
.shared-copy h2,
.walk-copy h2,
.section-heading h2,
.privacy-section h2,
.closing h2,
.document-title h1,
.faq-section h2,
.not-found h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-display);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.hero-summary {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--stone);
  font-size: var(--type-title);
  line-height: 1.4;
  letter-spacing: -0.015em;
}

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

.store-button {
  display: inline-flex;
  min-width: 192px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  color: var(--stone);
  background: var(--porcelain);
  line-height: 1.15;
  text-align: center;
}

.store-button small {
  display: block;
  color: var(--stone);
}

.store-button.is-disabled {
  cursor: not-allowed;
}

.text-link,
.button-link,
.support-email {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: text-decoration-color 180ms ease-out;
}

.text-link:hover,
.button-link:hover,
.support-email:hover {
  text-decoration-color: var(--ink);
}

.purchase-note,
.document-index > p {
  font-family: var(--font-meta);
  letter-spacing: 0.06em;
}

.purchase-note {
  margin: 16px 0 0;
  color: var(--stone);
}

.hero-product {
  position: relative;
  width: min(100%, 430px);
  height: min(470px, calc(100% - 72px));
  margin: 32px auto 0;
  overflow: visible;
}

.hero-product::before {
  position: absolute;
  z-index: 0;
  top: 18%;
  right: -12%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--signal);
  content: "";
}

.phone-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 300px);
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  border: 8px solid var(--ink);
  border-radius: 36px;
  background: var(--dark-ground);
  box-shadow: 0 24px 48px rgba(24, 32, 29, 0.14);
  transform: rotate(1.5deg);
}

.phone-shell img,
.suggestions-product img {
  width: 100%;
  height: auto;
}

.hero-glow {
  display: none;
}

.statement {
  max-width: 960px;
  margin: 0 auto;
  padding: var(--section) var(--gutter);
  text-align: center;
}

.statement > p:last-child {
  max-width: var(--measure);
  margin: 24px auto 0;
  color: var(--stone);
  font-size: var(--type-title);
}

.shared-section,
.walk-section,
.features {
  width: min(100%, var(--shell));
  margin-inline: auto;
}

.shared-section,
.walk-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  padding: var(--section) var(--gutter);
}

.shared-copy > p,
.walk-copy > p,
.feature-copy > p,
.privacy-copy > p,
.support-note > p {
  max-width: var(--measure);
  margin: 24px 0 0;
  color: var(--stone);
}

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

.plain-list li {
  display: grid;
  min-height: 56px;
  grid-template-columns: 8px 1fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.plain-list li::before {
  width: 8px;
  height: 8px;
  background: var(--signal-strong);
  content: "";
}

.household-visual {
  position: relative;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--porcelain);
}

.member {
  display: flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 7px;
  border: 1px solid var(--line);
  border-radius: 9999px;
  color: var(--stone);
  background: var(--surface);
}

.member span {
  display: grid;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--signal);
  place-items: center;
}

.member-two {
  margin-left: auto;
}

.member-two span {
  background: var(--line);
}

.sync-line {
  width: 1px;
  height: 32px;
  margin-left: 26px;
  background: var(--line);
}

.member-two + .sync-line {
  margin-right: 26px;
  margin-left: auto;
}

.list-sample {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-row);
  background: var(--surface);
}

.list-sample p {
  display: grid;
  min-height: 52px;
  margin: 0;
  padding: 0 16px;
  grid-template-columns: 24px 1fr auto 14px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}

.list-sample p:first-child {
  grid-template-columns: 18px 1fr auto;
}

.list-sample p:last-child {
  border-bottom: 0;
}

.list-sample em {
  color: var(--stone);
  font-style: normal;
}

.aisle-dot,
.person-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.aisle-dot {
  background: var(--signal-strong);
}

.person-dot.teal {
  background: var(--success);
}

.person-dot.coral {
  background: var(--error);
}

.walk-section {
  width: min(calc(100% - (2 * var(--gutter))), var(--shell));
  padding: var(--section-tight) clamp(32px, 6vw, 80px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  color: var(--ink);
  background: var(--surface);
}

.walk-copy > p {
  color: var(--stone);
}

.suggestions-product {
  width: min(100%, 390px);
  margin: 0 auto;
  overflow: hidden;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--porcelain);
}

.suggestions-product img {
  border-radius: var(--radius-drawer);
}

.detail-note {
  padding-left: 16px;
  border-left: 3px solid var(--signal);
}

.features {
  padding: var(--section) var(--gutter);
}

.section-heading {
  max-width: 900px;
}

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

.feature-list article {
  min-width: 0;
  padding: 32px 24px 40px;
  border-right: 1px solid var(--line);
}

.feature-list article:first-child {
  padding-left: 0;
}

.feature-list article:last-child {
  padding-right: 0;
  border-right: 0;
}

.feature-illustration {
  position: relative;
  min-height: 176px;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--surface);
}

.feature-copy {
  margin-top: 24px;
}

.feature-copy h3,
.document-content h2,
.support-note h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-title);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.feature-copy > p {
  margin-top: 12px;
}

.capture-input {
  position: absolute;
  top: 24px;
  left: 20px;
  display: grid;
  width: 58%;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-row);
  background: var(--porcelain);
}

.capture-input span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--stone);
}

.capture-input i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--stone);
  border-radius: 50%;
}

.capture-tools {
  position: absolute;
  top: 28px;
  right: 20px;
  display: grid;
  gap: 8px;
}

.capture-tool {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  color: var(--ink);
  background: var(--porcelain);
  place-items: center;
}

.capture-tool svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.sync-device {
  position: absolute;
  top: 24px;
  left: 20px;
  display: grid;
  width: 68px;
  height: 120px;
  align-content: center;
  gap: 10px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-drawer);
  background: var(--porcelain);
}

.sync-device span,
.extension-widget > span {
  height: 5px;
  border-radius: 9999px;
  background: var(--line);
}

.sync-device span:nth-child(2),
.extension-widget > span:nth-child(2) {
  width: 72%;
}

.sync-track {
  position: absolute;
  top: 80px;
  right: 88px;
  left: 88px;
  height: 2px;
  background: var(--line);
}

.sync-track span {
  position: absolute;
  top: -4px;
  left: -5px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: var(--signal-strong);
}

.sync-cloud {
  position: absolute;
  top: 48px;
  right: 18px;
  display: grid;
  width: 72px;
  height: 64px;
  place-items: center;
}

.sync-cloud svg,
.privacy-icloud svg {
  width: 58px;
  fill: var(--porcelain);
  stroke: var(--ink);
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.sync-status {
  position: absolute;
  right: 18px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--stone);
}

.sync-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.extension-panel {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  color: var(--stone);
  background: var(--porcelain);
}

.extension-widget {
  top: 22px;
  left: 20px;
  width: 44%;
  height: 126px;
}

.extension-share {
  top: 28px;
  right: 20px;
  width: 34%;
  height: 74px;
  align-items: center;
  justify-content: center;
}

.share-arrow {
  color: var(--ink);
  font-size: var(--type-title);
  line-height: 1;
}

.extension-voice {
  right: 36px;
  bottom: 16px;
  width: 42%;
  height: 58px;
}

.voice-wave {
  display: flex;
  height: 18px;
  align-items: center;
  gap: 3px;
}

.voice-wave i {
  width: 3px;
  height: 7px;
  border-radius: 9999px;
  background: var(--ink);
}

.privacy-section {
  width: min(calc(100% - (2 * var(--gutter))), var(--shell));
  margin: 0 auto;
  padding: var(--section-tight) clamp(32px, 6vw, 80px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--surface);
}

.privacy-intro {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(40px, 6vw, 80px);
}

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

.privacy-copy .button-link {
  margin-top: 24px;
}

.privacy-story {
  display: grid;
  margin-top: 48px;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  align-items: center;
  gap: 40px;
}

.privacy-flow {
  position: relative;
  display: grid;
  min-height: 260px;
  padding: 32px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-drawer);
  background: var(--porcelain);
}

.privacy-track {
  position: absolute;
  top: 50%;
  right: 17%;
  left: 17%;
  height: 2px;
  background: var(--line);
}

.privacy-track i {
  position: absolute;
  top: -5px;
  left: -6px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--porcelain);
  border-radius: 50%;
  background: var(--signal-strong);
}

.privacy-node {
  position: relative;
  z-index: 1;
  display: flex;
  width: 104px;
  min-height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  justify-self: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  color: var(--stone);
  background: var(--surface);
}

.privacy-device > i {
  position: relative;
  width: 34px;
  height: 52px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-small);
}

.privacy-device > i::after {
  position: absolute;
  right: 7px;
  bottom: 7px;
  left: 7px;
  height: 2px;
  border-radius: 9999px;
  background: var(--line);
  box-shadow: 0 -7px var(--line), 0 -14px var(--line);
  content: "";
}

.privacy-household {
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
}

.privacy-household > i {
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--signal);
}

.privacy-household > i:nth-child(2) {
  margin-left: -12px;
  background: var(--line);
}

.privacy-household small {
  width: 100%;
  text-align: center;
}

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

.privacy-ledger li {
  display: grid;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-ledger span {
  color: var(--stone);
}

.privacy-ledger strong {
  margin-top: 4px;
  font-size: var(--type-title);
}

.closing {
  display: flex;
  width: min(calc(100% - (2 * var(--gutter))), var(--shell));
  min-height: 520px;
  margin: 24px auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--section-tight) var(--gutter);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--porcelain);
  text-align: center;
}

.closing img {
  width: 56px;
  height: auto;
  margin-bottom: 32px;
}

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

.closing .store-button {
  margin-top: 32px;
}

.site-footer,
.document-footer {
  display: grid;
  width: min(calc(100% - (2 * var(--gutter))), var(--shell));
  min-height: 112px;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.site-footer p,
.document-footer p {
  margin: 0;
  justify-self: end;
  color: var(--stone);
}

.site-footer nav,
.document-footer nav {
  justify-content: center;
}

.document-page {
  background: var(--milk);
}

.document-header {
  border-bottom: 1px solid var(--line);
}

.document-main {
  width: min(100%, var(--shell));
  margin: 0 auto;
  padding: var(--section) var(--gutter);
}

.document-title {
  max-width: 960px;
}

.document-title > p:last-child {
  margin: 20px 0 0;
  color: var(--stone);
}

.document-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: 220px minmax(0, 760px);
  align-items: start;
  gap: clamp(48px, 8vw, 112px);
}

.document-index {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.document-index > p {
  margin: 0 0 12px;
  color: var(--success);
  text-transform: uppercase;
}

.document-index a {
  display: flex;
  min-height: 44px;
  align-items: center;
  color: var(--stone);
}

.document-index a:hover {
  color: var(--ink);
}

.document-content section {
  scroll-margin-top: 24px;
  padding: 0 0 48px;
  border-bottom: 1px solid var(--line);
}

.document-content section + section {
  padding-top: 48px;
}

.document-content p,
.document-content li {
  max-width: var(--measure);
  color: var(--body-ink);
  line-height: 1.55;
}

.document-content p {
  margin: 20px 0 0;
}

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

.document-content a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--info);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-title > p:nth-of-type(2) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--stone);
}

.support-email {
  margin-top: 24px;
  color: var(--info);
  font-size: var(--type-title);
}

.support-meta {
  margin-top: 8px !important;
}

.faq-section {
  display: grid;
  margin-top: var(--section);
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(48px, 8vw, 112px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--porcelain);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: 12px 56px 12px 20px;
  cursor: pointer;
  font-size: var(--type-title);
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: 20px;
  color: var(--success);
  content: "+";
  font-size: var(--type-title);
  transition: transform 180ms ease-in-out;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details > div {
  max-width: 700px;
  padding: 0 40px 24px 20px;
}

.faq-list details p {
  margin: 0;
  color: var(--stone);
}

.faq-list details p + p {
  margin-top: 12px;
}

.support-note {
  margin-top: var(--section);
  padding: clamp(32px, 5vw, 64px);
  border-radius: var(--radius-large);
  color: var(--dark-primary);
  background: var(--dark-ground);
}

.support-note > p {
  color: var(--dark-secondary);
}

.support-note .button-link {
  margin-top: 24px;
  color: var(--dark-primary);
  text-decoration-color: var(--dark-line);
}

.not-found-page {
  background: var(--surface);
}

.not-found {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px var(--gutter);
  text-align: center;
}

.not-found img {
  width: 56px;
  height: auto;
  margin-bottom: 32px;
}

.not-found > p {
  margin: 24px 0 0;
  color: var(--stone);
}

.not-found .button-link {
  margin-top: 24px;
}

.not-found nav {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  color: var(--stone);
}

.js [data-reveal="header"],
.js [data-reveal="hero"],
.js [data-reveal="product"] {
  opacity: 0;
}

.js [data-reveal="header"] {
  transform: translateY(-8px);
}

.js [data-reveal="hero"],
.js [data-reveal="product"],
.js .reveal-section {
  transform: translateY(12px);
}

.js body.is-ready [data-reveal="header"],
.js body.is-ready [data-reveal="hero"],
.js body.is-ready [data-reveal="product"],
.js .reveal-section.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 320ms ease-out, transform 320ms var(--ease-out);
}

.js .reveal-section {
  opacity: 0;
}

.features.is-visible .capture-input span {
  animation: capture-row 320ms var(--ease-out) both;
}

.features.is-visible .capture-input span:nth-child(2) {
  animation-delay: 90ms;
}

.features.is-visible .capture-input span:nth-child(3) {
  animation-delay: 180ms;
}

.features.is-visible .sync-track span {
  animation: sync-travel 320ms var(--ease-out) both;
}

.features.is-visible .extension-panel {
  animation: panel-enter 320ms var(--ease-out) both;
}

.features.is-visible .extension-share {
  animation-delay: 90ms;
}

.features.is-visible .extension-voice {
  animation-delay: 180ms;
}

.features.is-visible .voice-wave i {
  animation: voice-pulse 320ms ease-in-out both;
}

.features.is-visible .voice-wave i:nth-child(2),
.features.is-visible .voice-wave i:nth-child(4) {
  animation-delay: 90ms;
}

.features.is-visible .voice-wave i:nth-child(3) {
  animation-delay: 180ms;
}

.privacy-section.is-visible .privacy-track i {
  animation: privacy-travel 320ms var(--ease-out) both;
}

@keyframes capture-row {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes sync-travel {
  from {
    left: -5px;
  }

  to {
    left: calc(100% - 5px);
  }
}

@keyframes panel-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes voice-pulse {
  50% {
    transform: scaleY(2);
  }
}

@keyframes privacy-travel {
  from {
    left: -6px;
  }

  to {
    left: calc(100% - 6px);
  }
}

@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.64fr);
    gap: 40px;
  }

  .shared-section,
  .walk-section {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  .feature-list article,
  .feature-list article:first-child,
  .feature-list article:last-child {
    display: grid;
    padding: 32px 0;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 1fr);
    grid-template-areas: "copy visual";
    gap: 16px 32px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-list article:last-child {
    border-bottom: 0;
  }

  .feature-illustration {
    margin-top: 0;
    grid-area: visual;
  }

  .feature-copy {
    margin-top: 0;
    grid-area: copy;
  }

  .document-grid {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .document-header {
    width: calc(100% - 32px);
    min-height: 64px;
  }

  .site-header {
    top: 16px;
    padding: 0 16px;
  }

  .site-header nav,
  .document-header nav {
    gap: 12px;
  }

  .site-header nav a:first-child,
  .document-header nav a:first-child {
    display: none;
  }

  .hero {
    width: calc(100% - 32px);
    height: 760px;
    min-height: 0;
    margin-top: 16px;
  }

  .hero-inner {
    display: block;
    padding: 96px 24px 24px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-summary {
    margin-top: 20px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .purchase-note {
    margin-top: 12px;
  }

  .hero-product {
    width: 220px;
    height: 300px;
    margin: 28px auto 0;
  }

  .hero-product::before {
    right: -18%;
    width: 58%;
  }

  .phone-shell {
    width: 190px;
    border-width: 5px;
    border-radius: 28px;
  }

  .statement,
  .shared-section,
  .features {
    padding: 64px 16px;
  }

  .shared-section,
  .walk-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .walk-section {
    width: calc(100% - 32px);
    padding: 48px 24px;
  }

  .walk-copy {
    order: 1;
  }

  .suggestions-product {
    order: 2;
    margin-top: 24px;
  }

  .feature-list {
    margin-top: 48px;
  }

  .feature-list article,
  .feature-list article:first-child,
  .feature-list article:last-child {
    display: block;
    padding: 32px 0;
  }

  .feature-illustration,
  .feature-copy {
    margin-top: 20px;
  }

  .privacy-section {
    width: calc(100% - 32px);
    padding: 48px 24px;
  }

  .privacy-intro,
  .privacy-story {
    grid-template-columns: 1fr;
  }

  .privacy-copy {
    margin-top: 24px;
  }

  .privacy-story {
    margin-top: 40px;
    gap: 32px;
  }

  .privacy-flow {
    min-height: 220px;
    padding: 16px;
  }

  .privacy-node {
    width: 82px;
    min-height: 96px;
  }

  .closing {
    width: calc(100% - 32px);
    min-height: 480px;
  }

  .site-footer,
  .document-footer {
    display: flex;
    width: calc(100% - 32px);
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 32px 0;
  }

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

  .site-footer p,
  .document-footer p {
    justify-self: start;
  }

  .document-main {
    padding: 64px 16px;
  }

  .document-grid {
    display: block;
    margin-top: 48px;
  }

  .document-index {
    display: none;
  }

  .document-content section {
    padding-bottom: 40px;
  }

  .document-content section + section {
    padding-top: 40px;
  }

  .faq-section {
    display: block;
    margin-top: 64px;
  }

  .faq-list {
    margin-top: 32px;
  }

  .support-note {
    margin-top: 64px;
    padding: 32px 24px;
  }
}

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

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

  .js [data-reveal],
  .js .reveal-section {
    opacity: 1;
    transform: none;
  }
}
