/* Homepage presentation. Brand colors mirror AppTheme; legal pages use style.css. */
:root {
  color-scheme: light dark;
  --page: #faf7f2;
  --page-soft: #f5f0ea;
  --surface: #fffdf9;
  --surface-strong: #eee8df;
  --text: #2d2a26;
  --text-soft: #68625b;
  --text-faint: #777067;
  --sage: #6b8f71;
  --sage-deep: #3f5743;
  --sage-soft: #e2ebe1;
  --coral: #e8917a;
  --coral-deep: #74311f;
  --amber: #d4a054;
  --divider: #ded7cf;
  --shadow: 50 55 43;
  --card-radius: 24px;
  --button-radius: 14px;
  --tag-radius: 8px;
  --page-gutter: clamp(24px, 4.5vw, 72px);
  --section-space: clamp(88px, 9vw, 136px);
  --nav-height: 80px;
  --ease-settle: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (prefers-color-scheme: dark) {
  :root {
    --page: #1c1a17;
    --page-soft: #282520;
    --surface: #33302b;
    --surface-strong: #3b3731;
    --text: #f0ede8;
    --text-soft: #c0b9b0;
    --text-faint: #aaa298;
    --sage: #8fb896;
    --sage-deep: #b9d3bd;
    --sage-soft: #2b3b2e;
    --coral: #f0a999;
    --coral-deep: #ffd1c6;
    --amber: #e0b86e;
    --divider: #4a443d;
    --shadow: 7 7 6;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
}
body.home-page {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family:
    ui-rounded,
    "SF Pro Rounded",
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.home-page *,
.home-page *::before,
.home-page *::after {
  box-sizing: border-box;
}
.home-page img {
  display: block;
  max-width: 100%;
}
.home-page a {
  color: inherit;
  text-underline-offset: 0.25em;
}
.home-page :is(p, h1, h2, h3, figure, ol) {
  margin: 0;
}
.home-page :is(h1, h2, h3) {
  color: var(--text);
  text-wrap: balance;
}
.home-page h1 {
  font-size: clamp(3.1rem, 5.1vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.04;
}
.home-page h1 span,
.home-page h1 em {
  display: block;
  max-width: 12ch;
}
.home-page h1 em {
  font-weight: inherit;
  line-height: inherit;
  color: var(--sage-deep);
  font-family: inherit;
  font-style: normal;
  margin-top: 0.14em;
}
.home-page h2 {
  max-width: 17ch;
  font-size: clamp(2.35rem, 3.65vw, 3.5rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.1;
}
.home-page h3 {
  font-size: clamp(1.25rem, 1.75vw, 1.65rem);
  font-weight: 650;
  letter-spacing: -0.028em;
  line-height: 1.25;
}
.home-page ::selection {
  background: var(--sage-soft);
  color: var(--sage-deep);
}
.home-page .section-shell {
  max-width: 1280px;
  width: min(100% - var(--page-gutter) * 2, 1280px);
  margin-inline: auto;
}
.home-page :is(a, button, summary):focus-visible {
  outline: 3px solid var(--sage-deep);
  outline-offset: 5px;
}
.home-page .skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 40;
  transform: translateY(-150%);
  background: var(--text);
  color: var(--page);
  border-radius: var(--button-radius);
  padding: 12px 18px;
  font-weight: 650;
}
.home-page .skip-link:focus {
  transform: translateY(0);
}
.home-page .site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  max-width: none;
  height: var(--nav-height);
  margin: 0;
  border: 0;
  border-radius: 0;
  background: color-mix(in srgb, var(--page) 94%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: none;
  padding: 0;
}
.home-page .nav-shell {
  width: min(100% - var(--page-gutter) * 2, 1280px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.home-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: auto;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-decoration: none;
  white-space: nowrap;
}
.home-page .brand img {
  width: 38px;
  height: 38px;
  border-radius: 0;
  box-shadow: none;
}
.home-page .brand span {
  font-size: 1.12rem;
}
.home-page .site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.35vw, 34px);
}
.home-page .site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 550;
  text-decoration: none;
  white-space: nowrap;
}
.home-page .site-nav a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--sage-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms var(--ease-settle);
}
.home-page .site-nav a:hover {
  color: var(--sage-deep);
}
.home-page .site-nav a:hover::after {
  transform: scaleX(1);
}
.home-page .menu-toggle {
  display: none;
  min-width: 68px;
  min-height: 44px;
  border: 1px solid var(--divider);
  border-radius: var(--button-radius);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 0.85rem;
}
.home-page .hero {
  display: grid;
  grid-template-columns: 1fr 1.07fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-block: 38px 68px;
  min-height: 690px;
}
.home-page .hero::before {
  content: none;
}
.hero-copy {
  min-width: 0;
  padding-block: 12px;
}
.eyebrow {
  margin-bottom: 25px !important;
  color: var(--sage-deep);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero-body {
  max-width: 26rem;
  margin-top: 26px !important;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
}
.home-page .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: fit-content;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  padding: 12px 22px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 220ms var(--ease-settle),
    box-shadow 220ms,
    background 220ms;
}
.home-page .button-primary {
  background: var(--coral);
  color: #2d2a26;
  box-shadow: 0 3px 0 rgb(var(--shadow) / 0.07);
}
.home-page .button-primary:hover {
  background: color-mix(in srgb, var(--coral) 88%, var(--surface));
  transform: translateY(-2px);
  box-shadow: 0 7px 16px rgb(var(--shadow) / 0.1);
}
.home-page .button-primary:active {
  transform: scale(0.98);
}
.button-arrow {
  font-family: system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  transition: transform 220ms var(--ease-settle);
}
.button:hover .button-arrow {
  transform: translate(2px, -2px);
}
.release-status {
  max-width: 26rem;
  margin-top: 22px !important;
  color: var(--text-soft);
  font-size: 0.76rem;
  line-height: 1.65;
}
.release-status strong {
  font-weight: 600;
}
.hero-visual {
  justify-content: stretch;
  position: relative;
  display: grid;
  align-items: center;
  justify-items: end;
  height: clamp(500px, 44vw, 622px);
  padding: 24px 7% 32px 0;
  isolation: isolate;
}
.hero-scene {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  border-radius: var(--card-radius);
}
.hero-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 36% center;
}
/* The editorial drawing is the hero; real product captures remain below. */
.home-page .hero-visual--illustrated {
  display: block;
  height: auto;
  min-height: 0;
  aspect-ratio: 1;
  padding: 0;
}
.hero-visual--illustrated .hero-scene {
  position: relative;
  display: block;
  z-index: auto;
  pointer-events: none;
}
.hero-visual--illustrated .hero-scene img {
  object-fit: contain;
  object-position: center;
  aspect-ratio: 1;
}
.device-frame {
  position: relative;
  overflow: hidden;
  border: 6px solid #363934;
  border-radius: 39px;
  background: #faf7f2;
  box-shadow:
    0 24px 50px rgb(var(--shadow) / 0.22),
    0 2px 5px rgb(var(--shadow) / 0.18),
    0 0 0 1px #8d9187;
}
.device-frame img {
  width: 100%;
  height: auto;
}
.ownership-bridge {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  padding-block: 46px 60px;
  border-top: 1px solid var(--divider);
}
.ownership-bridge-copy h2 {
  max-width: 18ch;
  font-size: clamp(1.65rem, 2.35vw, 2.25rem);
  letter-spacing: -0.035em;
}
.ownership-bridge-copy p {
  max-width: 29rem;
  margin-top: 15px !important;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.ownership-bridge-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 12px 24px;
}
.ownership-before {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 6px 12px;
}
.ownership-before span {
  color: var(--text-soft);
  font-size: 0.8rem;
}
.ownership-before span:not(:last-of-type)::after {
  content: ",";
}
.ownership-before strong {
  width: 100%;
  margin-top: 6px;
  font-weight: 500;
  font-size: 0.9rem;
}
.ownership-turn {
  grid-column: 1/-1;
  grid-row: 2;
  padding-top: 8px;
  color: var(--sage-deep);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}
.ownership-after {
  border-left: 2px solid var(--sage);
  padding: 14px 0 14px 22px;
}
.ownership-after > span {
  display: block;
  margin-bottom: 5px;
  color: var(--sage-deep);
  font-size: 0.72rem;
}
.ownership-after strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}
.ownership-after p {
  color: var(--text-soft);
  font-size: 0.8rem;
  margin-top: 3px !important;
}
.burden-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  margin-top: 54px;
  margin-bottom: var(--section-space);
  border-radius: var(--card-radius);
  background: var(--page-soft);
  overflow: hidden;
  padding: 64px 64px 0;
}
.burden-copy {
  padding-bottom: 64px;
}
.burden-copy p:not(.quiet-proof),
.journey-heading p,
.feature-heading p,
.partner-copy > p,
.trust-intro > p:last-child {
  max-width: 31rem;
  margin-top: 23px !important;
  color: var(--text-soft);
  font-size: 1.04rem;
}
.quiet-proof {
  max-width: 25rem;
  margin-top: 26px !important;
  color: var(--sage-deep);
  font-size: 0.9rem;
  font-weight: 550;
}
.capture-composition {
  height: 460px;
  align-self: end;
  display: grid;
  justify-items: center;
  align-items: start;
  padding-top: 26px;
}
.device-frame-capture {
  width: min(100%, 300px);
  transform: rotate(-5deg);
}
.journey-section {
  padding-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(48px, 9vw, 130px);
  padding-bottom: var(--section-space);
}
.journey-heading {
  grid-column: 1;
}
.journey-heading h2 {
  max-width: 13ch;
}
.stacked-heading span {
  display: block;
}
.stacked-heading span:last-child {
  color: var(--sage-deep);
}
.journey-heading p {
  max-width: 26rem;
}
.journey-layout {
  display: contents;
}
.journey-steps {
  grid-column: 1;
  list-style: none;
  padding: 26px 0 0;
}
.journey-steps li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 18px;
  padding-block: 21px;
}
.step-marker {
  color: var(--sage-deep);
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
  padding-top: 4px;
}
.journey-steps h3 {
  font-size: 1.1rem;
}
.journey-steps p {
  margin-top: 7px !important;
  max-width: 26rem;
  font-size: 0.93rem;
  color: var(--text-soft);
}
.journey-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  min-height: 640px;
  border-radius: var(--card-radius);
  background: var(--sage-soft);
}
.device-frame-routine {
  width: min(64%, 280px);
}
.feature-section {
  padding-bottom: var(--section-space);
}
.feature-heading {
  max-width: 650px;
  margin-bottom: 42px;
}
.feature-heading h2 {
  max-width: 18ch;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}
.feature-cell {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--card-radius);
  padding: 34px;
}
.feature-cell > :not(.feature-screen) {
  position: relative;
  z-index: 1;
}
.feature-cell p {
  max-width: 28rem;
  margin-top: 12px !important;
  color: var(--text-soft);
  font-size: 0.96rem;
}
.feature-cell-tasks {
  grid-column: span 7;
  min-height: 460px;
  background: var(--sage-soft);
}
.feature-cell-responsibilities {
  display: flex;
  flex-direction: column;
  grid-column: span 5;
  background: color-mix(in srgb, var(--coral) 17%, var(--surface));
}
.feature-cell .feature-example {
  margin-top: auto !important;
  padding-top: 70px;
  max-width: 9ch;
  color: var(--coral-deep);
  font-size: clamp(2.4rem, 4.4vw, 4.1rem);
  letter-spacing: -0.055em;
  font-weight: 550;
  line-height: 1.07;
}
.feature-cell-routines {
  grid-column: span 5;
  min-height: 430px;
  background: var(--page-soft);
}
.feature-cell-calendar {
  grid-column: span 7;
  background: var(--surface-strong);
}
.feature-cell .feature-mantra {
  margin-top: 14px !important;
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 550;
}
.feature-screen {
  position: absolute;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 16px 35px rgb(var(--shadow) / 0.12);
  pointer-events: none;
  background: #faf7f2;
}
.feature-screen img {
  width: 100%;
  height: auto;
}
.feature-screen-tasks {
  top: 215px;
  width: 310px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.feature-screen-tasks img {
  transform: translateY(-85px);
}
.feature-screen-calendar {
  top: 174px;
  width: 310px;
  right: 30px;
  bottom: 0;
  transform: rotate(-4deg);
  transform-origin: center top;
}
.feature-screen-calendar img {
  transform: translateY(-78px);
}
.feature-cell .appointment-audiences {
  display: flex;
  gap: 10px;
  max-width: calc(100% - 310px);
  flex-direction: column;
  margin-top: 68px !important;
  color: var(--text-soft);
  font-size: 0.9rem;
}
.appointment-audiences strong {
  color: var(--sage-deep);
  font-weight: 650;
}
.routine-lines {
  display: grid;
  gap: 0;
  margin-top: 42px;
}
.routine-lines span {
  position: relative;
  display: block;
  padding: 15px 0 15px 26px;
  font-size: 0.91rem;
  color: var(--text-soft);
}
.routine-lines span + span {
  border-top: 1px solid var(--divider);
}
.routine-lines span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--sage);
  border-radius: 3px;
}
.partner-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
  border-radius: var(--card-radius);
  background: color-mix(in srgb, var(--coral) 9%, var(--page-soft));
  padding: 64px 64px 0;
  margin-bottom: var(--section-space);
  overflow: hidden;
}
.partner-visual {
  display: grid;
  align-items: start;
  justify-items: center;
  height: 520px;
  padding-top: 16px;
}
.partner-halo {
  display: none;
}
.device-frame-partner {
  width: min(100%, 294px);
  transform: rotate(4deg);
}
.partner-copy {
  padding-bottom: 64px;
}
.partner-copy h2 {
  max-width: 14ch;
}
.partner-copy .partner-outcome {
  font-size: 1.2rem;
  color: var(--sage-deep);
  font-weight: 550;
  line-height: 1.5;
}
.home-page .faq-section {
  max-width: 890px;
  padding-bottom: var(--section-space);
}
.faq-heading {
  max-width: 640px;
  margin-bottom: 42px;
}
.faq-heading .eyebrow {
  display: none;
}
.faq-heading h2 {
  max-width: 20ch;
}
.faq-heading > p:last-child {
  margin-top: 22px !important;
  color: var(--text-soft);
  font-size: 1rem;
}
.faq-heading a {
  color: var(--sage-deep);
  text-decoration-thickness: 1px;
}
.faq-list details {
  border-bottom: 1px solid var(--divider);
  padding-block: 24px;
}
.faq-list details:first-child {
  border-top: 1px solid var(--divider);
}
.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding-right: 58px;
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 550;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 2px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border: 1px solid var(--divider);
  border-radius: 50%;
  color: var(--sage-deep);
  font-family: system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  transition: background 180ms;
}
.faq-list summary:hover::after {
  background: var(--sage-soft);
}
.faq-list details[open] summary::after {
  content: "−";
  background: var(--sage-soft);
}
.faq-list details p {
  margin-top: 12px !important;
  max-width: 45rem;
  padding-right: 50px;
  font-size: 0.96rem;
  color: var(--text-soft);
}
.trust-section {
  padding-top: 54px;
  padding-bottom: var(--section-space);
  border-top: 1px solid var(--divider);
}
.trust-intro {
  max-width: 650px;
}
.trust-intro .eyebrow {
  margin-bottom: 20px !important;
}
.trust-intro h2 {
  max-width: 20ch;
}
.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  margin-top: 46px;
}
.trust-list article {
  padding-top: 20px;
  border-top: 1px solid var(--divider);
}
.trust-list h3 {
  font-size: 1.12rem;
}
.trust-list p {
  margin-top: 13px !important;
  color: var(--text-soft);
  font-size: 0.93rem;
}
.closing-section {
  padding-bottom: 72px;
}
.closing-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  column-gap: 80px;
  row-gap: 28px;
  align-items: start;
  background: var(--sage-soft);
  border-radius: var(--card-radius);
  padding: clamp(40px, 6vw, 80px);
}
.closing-card h2 {
  grid-row: span 2;
  max-width: 12ch;
  font-size: clamp(2.6rem, 4.3vw, 4.25rem);
  color: var(--sage-deep);
}
.closing-card p {
  color: var(--text-soft);
  font-size: 1rem;
  padding-top: 7px;
}
.closing-card .button {
  align-self: end;
}
.home-page .site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 64px;
  padding-block: 0 34px;
  margin-top: 0;
  border: 0;
  text-align: left;
}
.site-footer > p:not(.apple-legal) {
  grid-row: 2;
  max-width: 27rem;
  color: var(--text-soft);
  font-size: 0.83rem;
}
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}
.site-footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 500;
}
.site-footer .apple-legal {
  grid-column: 1/-1;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
  color: var(--text-faint);
  font-size: 0.68rem;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *,
  .hero-visual {
    animation: enter 850ms var(--ease-settle) both;
  }
  .hero-copy > :nth-child(2) {
    animation-delay: 70ms;
  }
  .hero-copy > :nth-child(3) {
    animation-delay: 120ms;
  }
  .hero-copy > :nth-child(4) {
    animation-delay: 170ms;
  }
  .hero-visual {
    animation-delay: 100ms;
  }
  @keyframes enter {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .motion-item {
    transform: translateY(26px);
    transition: transform 850ms var(--ease-settle);
  }
  .motion-item.is-in-view { transform: translateY(0); }
  .journey-steps .motion-item:nth-child(2),
  .feature-grid .motion-item:nth-child(even) { transition-delay: 80ms; }
  .journey-steps .motion-item:nth-child(3) { transition-delay: 160ms; }
  @supports (animation-timeline: view()) {
    .capture-composition .device-frame,
    .partner-visual .device-frame {
      animation: device-drift linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 65%;
    }
    .hero-visual--illustrated .hero-scene {
      animation: illustration-drift linear both;
      animation-timeline: view();
      animation-range: exit 0% exit 100%;
    }
    @keyframes device-drift {
      from { translate: 0 28px; }
      to { translate: 0 -10px; }
    }
    @keyframes illustration-drift {
      from { translate: 0 0; }
      to { translate: 0 -22px; }
    }
  }
}
@media (prefers-reduced-transparency: reduce) {
  .home-page .site-header {
    background: var(--page);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
@media (max-width: 1100px) and (min-width: 768px) {
  .home-page h1 {
    font-size: clamp(2.6rem, 5vw, 3.55rem);
  }
  .home-page .hero {
    min-height: 620px;
    gap: 30px;
  }
  .hero-visual {
    height: 520px;
    padding-right: 6%;
  }
  .home-page .site-nav {
    gap: 16px;
  }
  .home-page .site-nav a {
    font-size: 0.74rem;
  }
  .home-page .brand span {
    font-size: 1rem;
  }
  .home-page .brand img {
    width: 32px;
    height: 32px;
  }
  .burden-section,
  .partner-section {
    padding: 44px 36px 0;
    gap: 36px;
  }
  .burden-copy,
  .partner-copy {
    padding-bottom: 44px;
  }
  .feature-cell {
    padding: 26px;
  }
  .feature-screen-tasks {
    top: 230px;
  }
  .feature-screen-calendar {
    right: -24px;
    top: 230px;
    width: 260px;
  }
  .feature-cell .appointment-audiences {
    flex-direction: row;
    max-width: none;
    margin-top: 20px !important;
  }
  .closing-card {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  :root {
    --page-gutter: 22px;
    --section-space: 80px;
    --nav-height: 70px;
    --card-radius: 20px;
  }
  .home-page .brand span {
    font-size: 1.02rem;
  }
  .home-page .brand img {
    width: 34px;
    height: 34px;
  }
  .home-page .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .home-page .site-nav {
    display: none;
    position: fixed;
    top: calc(var(--nav-height) + 4px);
    left: var(--page-gutter);
    right: var(--page-gutter);
    border: 1px solid var(--divider);
    border-radius: var(--card-radius);
    background: var(--surface);
    box-shadow: 0 16px 34px rgb(var(--shadow) / 0.14);
    overflow: hidden;
  }
  .home-page .site-nav.is-open {
    display: grid;
    gap: 0;
  }
  .home-page .site-nav a {
    min-height: 54px;
    padding: 12px 22px;
    font-size: 0.9rem;
  }
  .home-page .site-nav a + a {
    border-top: 1px solid var(--divider);
  }
  .home-page .site-nav a::after {
    display: none;
  }
  .home-page .hero {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 25px 42px;
    min-height: auto;
  }
  .home-page h1 {
    font-size: clamp(2.8rem, 10vw, 4.5rem);
    letter-spacing: -0.05em;
  }
  .home-page h1 span,
  .home-page h1 em {
    max-width: 14ch;
  }
  .hero-copy {
    padding: 0;
  }
  .eyebrow {
    font-size: 0.65rem;
    margin-bottom: 22px !important;
  }
  .hero-body {
    margin-top: 22px !important;
    font-size: 1rem;
    max-width: 30rem;
  }
  .hero-actions {
    margin-top: 25px;
  }
  .release-status {
    max-width: 30rem;
    margin-top: 18px !important;
    font-size: 0.73rem;
  }
  .hero-visual {
    height: auto;
    min-height: clamp(450px, 115vw, 590px);
    padding: 26px 8% 32px 0;
  }
  .hero-scene img {
    object-position: 34% center;
  }
  .ownership-bridge {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 35px 15px;
  }
  .ownership-bridge-copy h2 {
    max-width: 21ch;
    font-size: 1.8rem;
  }
  .ownership-bridge-copy p {
    font-size: 0.9rem;
  }
  .ownership-bridge-story {
    gap: 8px 16px;
  }
  .ownership-before strong {
    font-size: 0.8rem;
  }
  .ownership-after {
    padding-left: 16px;
  }
  .ownership-after strong {
    font-size: 1.16rem;
  }
  .ownership-after p {
    font-size: 0.75rem;
  }
  .burden-section {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 50px;
    padding: 34px 28px 0;
  }
  .burden-copy {
    padding-bottom: 0;
  }
  .home-page h2 {
    font-size: clamp(2.1rem, 8.4vw, 3.2rem);
  }
  .burden-copy p:not(.quiet-proof),
  .journey-heading p,
  .feature-heading p,
  .partner-copy > p,
  .trust-intro > p:last-child {
    font-size: 0.97rem;
    margin-top: 20px !important;
  }
  .quiet-proof {
    font-size: 0.86rem;
    margin-top: 20px !important;
  }
  .capture-composition {
    height: 355px;
    padding-top: 10px;
  }
  .device-frame-capture {
    width: min(84%, 270px);
  }
  .journey-section {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .journey-heading h2 {
    max-width: 16ch;
  }
  .journey-heading p {
    max-width: 30rem;
  }
  .journey-steps {
    padding-top: 20px;
  }
  .journey-steps li {
    padding-block: 18px;
  }
  .journey-visual {
    grid-column: 1;
    grid-row: auto;
    min-height: 570px;
    margin-top: 30px;
  }
  .device-frame-routine {
    width: min(70%, 255px);
  }
  .feature-heading {
    margin-bottom: 30px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-cell {
    grid-column: 1;
    padding: 28px;
  }
  .feature-cell-tasks {
    min-height: 440px;
  }
  .feature-screen-tasks {
    top: 220px;
    width: min(84%, 310px);
  }
  .feature-cell-responsibilities {
    min-height: 350px;
  }
  .feature-cell .feature-example {
    font-size: clamp(2.8rem, 11vw, 4rem);
    padding-top: 45px;
    max-width: 11ch;
  }
  .feature-cell-routines {
    min-height: 350px;
  }
  .routine-lines {
    margin-top: 26px;
  }
  .feature-cell-calendar {
    min-height: 440px;
  }
  .feature-cell .appointment-audiences {
    max-width: none;
    flex-direction: row;
    margin-top: 17px !important;
  }
  .feature-screen-calendar {
    top: 234px;
    right: 7%;
    width: min(84%, 300px);
  }
  .partner-section {
    grid-template-columns: 1fr;
    padding: 34px 28px 0;
    gap: 30px;
  }
  .partner-copy {
    order: -1;
    padding-bottom: 0;
  }
  .partner-copy .partner-outcome {
    font-size: 1.06rem;
  }
  .partner-visual {
    height: 380px;
    padding-top: 5px;
  }
  .device-frame-partner {
    width: min(85%, 270px);
  }
  .faq-heading {
    margin-bottom: 28px;
  }
  .faq-heading > p:last-child {
    font-size: 0.94rem;
  }
  .faq-list summary {
    font-size: 0.96rem;
    padding-right: 48px;
  }
  .faq-list details {
    padding-block: 18px;
  }
  .faq-list details p {
    padding-right: 12px;
    font-size: 0.92rem;
  }
  .trust-section {
    padding-top: 34px;
  }
  .trust-list {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 30px;
  }
  .trust-list article {
    padding-top: 22px;
  }
  .closing-section {
    padding-bottom: 48px;
  }
  .closing-card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 36px 28px;
  }
  .closing-card h2 {
    grid-row: auto;
    max-width: 12ch;
    font-size: clamp(2.5rem, 10vw, 3.7rem);
  }
  .closing-card p {
    padding-top: 0;
    font-size: 0.95rem;
  }
  .home-page .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .site-footer nav {
    justify-content: flex-start;
    gap: 4px 20px;
  }
  .site-footer .apple-legal {
    margin-top: 0;
    font-size: 0.66rem;
  }
}
@media (max-width: 359px) {
  :root {
    --page-gutter: 18px;
  }
  .home-page h1 {
    font-size: 2.65rem;
  }
  .hero-visual {
    min-height: 450px;
    padding-right: 5%;
  }
  .feature-cell,
  .burden-section,
  .partner-section {
    padding-inline: 22px;
  }
  .feature-screen-tasks {
    top: 240px;
  }
  .feature-screen-calendar {
    top: 260px;
  }
  .journey-visual {
    min-height: 510px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    animation: none !important;
    transition: none !important;
  }
}
