:root {
  --pine-900: #07110f;
  --pine-800: #0b1f1a;
  --pine-700: #062e24;
  --pine-600: #10382e;
  --moss-500: #24483c;
  --gold-500: #b8872d;
  --gold-text: #8a621f;
  --gold-300: #d4b06a;
  --mist-50: #edf5f0;
  --mist-100: #dbede6;
  --ivory-50: #fff9ef;
  --ivory-100: #f4efe5;
  --paper-200: #eee5d7;
  --stone-300: #d8d0c3;
  --ink-900: #111312;
  --charcoal-700: #252724;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --content: 1240px;
  --page-gutter: 48px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--mist-50);
  color: var(--ink-900);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ivory-50);
  color: var(--pine-700);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 2px solid var(--gold-text);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 max(var(--page-gutter), calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(237, 245, 240, 0.93);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(6, 46, 36, 0.12);
  background: rgba(237, 245, 240, 0.98);
}

.site-identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--pine-700);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
}

.studio-back {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(6, 46, 36, 0.18);
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.42);
  color: var(--pine-700);
  font-size: 12px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.studio-back:hover,
.studio-back:focus-visible {
  border-color: rgba(6, 46, 36, 0.34);
  background: rgba(255, 249, 239, 0.82);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--pine-800);
  font-size: 14px;
}

.site-nav a {
  position: relative;
}

.site-nav > a:not(.nav-status)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--pine-700);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(6, 46, 36, 0.2);
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.52);
  font-size: 13px;
}

.nav-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--pine-700);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--moss-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 94svh);
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 70px;
  overflow: hidden;
  padding: calc(var(--header-height) + 70px) max(var(--page-gutter), calc((100vw - var(--content)) / 2)) 78px;
  background: var(--mist-50);
}

.hero::after {
  position: absolute;
  top: 17%;
  right: max(var(--page-gutter), calc((100vw - var(--content)) / 2));
  width: 38%;
  height: 1px;
  background: rgba(6, 46, 36, 0.16);
  content: "";
}

.hero-rule {
  position: absolute;
  top: var(--header-height);
  bottom: 0;
  left: max(var(--page-gutter), calc((100vw - var(--content)) / 2));
  width: 1px;
  background: rgba(6, 46, 36, 0.1);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 630px;
  padding-left: 38px;
}

.hero h1 {
  margin: 0;
  color: var(--pine-700);
  font-family: var(--serif);
  font-size: 92px;
  font-weight: 600;
  line-height: 0.92;
}

.hero-lead {
  max-width: 560px;
  margin: 28px 0 16px;
  color: var(--pine-800);
  font-family: var(--serif);
  font-size: 35px;
  line-height: 1.18;
}

.hero-support {
  max-width: 540px;
  margin: 0;
  color: rgba(17, 19, 18, 0.72);
  font-size: 17px;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--pine-700);
  color: var(--ivory-50);
}

.button-primary:hover {
  background: var(--pine-600);
}

.text-link {
  padding: 8px 0;
  border-bottom: 1px solid rgba(6, 46, 36, 0.32);
  color: var(--pine-700);
  font-size: 14px;
  white-space: nowrap;
}

.hero-guide-link {
  display: flex;
  width: fit-content;
  align-items: baseline;
  gap: 8px;
  margin-top: 16px;
  color: var(--pine-700);
  font-size: 13px;
  font-weight: 650;
}

.hero-guide-link > span:first-of-type {
  color: rgba(17, 19, 18, 0.5);
  font-size: 11px;
  font-weight: 500;
}

.hero-guide-link:hover {
  color: var(--pine-500);
}

.product-scene {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  min-height: 650px;
  align-items: center;
  justify-content: center;
  padding: 42px 74px 24px;
}

.phone {
  position: relative;
  width: 330px;
  height: 676px;
  padding: 8px;
  border: 2px solid #17201e;
  border-radius: 52px;
  background: #070d0c;
  box-shadow: 0 28px 70px rgba(7, 17, 15, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.26);
  transform: rotate(1.2deg);
}

.phone-concept::before,
.phone-concept::after {
  position: absolute;
  background: #17201e;
  content: "";
}

.phone-concept::before {
  top: 128px;
  left: -5px;
  width: 4px;
  height: 76px;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 92px 0 #17201e;
}

.phone-concept::after {
  top: 180px;
  right: -5px;
  width: 4px;
  height: 112px;
  border-radius: 0 3px 3px 0;
}

.real-device {
  position: relative;
  width: 330px;
  margin: 0;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 249, 239, 0.4);
  border-radius: 46px;
  background: var(--pine-900);
  box-shadow: 0 28px 70px rgba(7, 17, 15, 0.22);
  transform: rotate(1.2deg);
}

.real-device img {
  width: 100%;
  height: auto;
  border-radius: 37px;
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 50%;
  width: 96px;
  height: 24px;
  border-radius: 999px;
  background: var(--pine-900);
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 0 18px 78px;
  border-radius: 42px;
  background: var(--mist-50);
}

.phone-status-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 2px 0 0;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  color: var(--pine-900);
  font-size: 9px;
  font-weight: 700;
}

.phone-status span:last-child {
  font-size: 6px;
}

.phone-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 8px;
}

.phone-heading p {
  margin: 0;
  color: var(--pine-700);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.phone-heading span {
  display: block;
  margin-top: 5px;
  color: var(--moss-500);
  font-size: 10px;
}

.phone-heading img {
  width: 34px;
  height: 34px;
  border-radius: 7px;
}

.return-card {
  position: relative;
  min-height: 374px;
  margin-top: 16px;
  overflow: hidden;
  padding: 22px 20px 18px;
  border: 1px solid rgba(212, 176, 106, 0.22);
  border-radius: 8px;
  background: var(--pine-800);
  color: var(--ivory-50);
  transition: min-height 420ms ease, background-color 420ms ease;
}

.return-card::before {
  position: absolute;
  top: 0;
  left: 20px;
  width: 54px;
  height: 2px;
  background: var(--gold-300);
  content: "";
}

.return-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--gold-300);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.return-label span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.return-card blockquote {
  margin: 30px 0 16px;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.36;
  transition: opacity 280ms ease, transform 280ms ease;
}

.return-source {
  margin: 0;
  color: rgba(255, 249, 239, 0.6);
  font-size: 9px;
  transition: opacity 280ms ease, transform 280ms ease;
}

.margin-note {
  margin-top: 22px;
  padding: 12px;
  border-left: 1px solid var(--gold-500);
  background: rgba(255, 249, 239, 0.06);
  color: rgba(255, 249, 239, 0.82);
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.45;
  transition: opacity 280ms ease, transform 280ms ease;
}

.margin-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-300);
  font-family: var(--sans);
  font-size: 8px;
  font-style: normal;
  text-transform: uppercase;
}

.return-action {
  position: absolute;
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(255, 249, 239, 0.16);
  background: transparent;
  color: var(--ivory-50);
  cursor: pointer;
  font-size: 9px;
  text-align: left;
}

.return-card.is-hidden blockquote,
.return-card.is-hidden .return-source,
.return-card.is-hidden .margin-note {
  opacity: 0;
  transform: translateY(14px);
}

.return-card.is-hidden::after {
  position: absolute;
  top: 106px;
  right: 24px;
  left: 24px;
  color: rgba(255, 249, 239, 0.76);
  content: "Одна мысль ждёт следующей встречи";
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.35;
  text-align: center;
}

.quiet-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 0 3px;
  color: var(--moss-500);
  font-size: 10px;
}

.quiet-link strong {
  color: var(--pine-700);
  font-weight: 650;
}

.phone-tabs {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
  display: grid;
  height: 46px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border: 1px solid rgba(6, 46, 36, 0.12);
  border-radius: 20px;
  background: rgba(255, 249, 239, 0.92);
  color: rgba(6, 46, 36, 0.56);
  font-size: 8px;
  text-align: center;
}

.phone-tabbar-image {
  position: absolute;
  right: 6px;
  bottom: 4px;
  left: 6px;
  display: block;
  width: calc(100% - 12px);
  height: auto;
}

.phone-tabs .is-active {
  color: var(--pine-700);
  font-weight: 700;
}

.scene-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--pine-700);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}

.scene-note span {
  color: var(--gold-text);
  font-family: var(--sans);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.scene-note-top {
  top: 96px;
  left: 2px;
}

.scene-note-bottom {
  right: 0;
  bottom: 92px;
}

.hero-footnote {
  position: absolute;
  right: max(var(--page-gutter), calc((100vw - var(--content)) / 2));
  bottom: 28px;
  left: max(var(--page-gutter), calc((100vw - var(--content)) / 2));
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(6, 46, 36, 0.12);
  color: rgba(6, 46, 36, 0.62);
  font-size: 12px;
  text-transform: uppercase;
}

.statement {
  display: grid;
  max-width: var(--content);
  grid-template-columns: 74px minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 38px;
  margin: 0 auto;
  padding: 128px var(--page-gutter);
}

.section-number {
  color: var(--gold-text);
  font-size: 12px;
  font-weight: 700;
}

.statement h2,
.principles h2,
.reading-circle h2,
.development h2,
.closing h2 {
  margin: 0;
  color: var(--pine-700);
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.12;
}

.statement-body {
  min-width: 0;
  align-self: end;
  margin: 0;
  color: rgba(17, 19, 18, 0.7);
  font-size: 17px;
  line-height: 1.7;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--ivory-100);
}

.feature {
  position: relative;
  min-height: 620px;
  padding: 54px 48px 52px;
  border-right: 1px solid var(--stone-300);
  border-bottom: 1px solid var(--stone-300);
  overflow: hidden;
}

.feature:nth-child(2n) {
  border-right: 0;
}

.feature:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.feature-index {
  color: var(--gold-text);
  font-size: 11px;
  font-weight: 700;
}

.feature h3 {
  margin: 42px 0 14px;
  color: var(--pine-700);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
}

.feature > p {
  max-width: 430px;
  margin: 0;
  color: rgba(17, 19, 18, 0.66);
}

.feature-screenshot {
  height: 320px;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(6, 46, 36, 0.13);
  border-radius: 8px;
  background: var(--mist-50);
}

.feature-screenshot img {
  width: 100%;
  height: auto;
}

.feature-screenshot-dark {
  border-color: rgba(212, 176, 106, 0.28);
}

.capture-fragment,
.note-fragment,
.return-fragment,
.scan-fragment,
.widget-fragment {
  height: 262px;
  margin-top: 34px;
  padding: 26px;
  border: 1px solid rgba(6, 46, 36, 0.13);
  border-radius: 8px;
  background: var(--mist-50);
}

.scan-fragment {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--paper-200);
}

.widget-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--moss-500);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.widget-heading small {
  color: var(--gold-text);
  font-size: 9px;
}

.scan-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.scan-heading {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  background: rgba(6, 46, 36, 0.88);
  color: var(--ivory-50);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.scan-heading small {
  color: var(--gold-300);
  font-size: 9px;
}

.scan-selection {
  position: absolute;
  right: 10%;
  bottom: 18%;
  left: 22%;
  padding: 12px 14px;
  border: 2px solid var(--gold-300);
  background: rgba(255, 249, 239, 0.9);
  box-shadow: 0 10px 26px rgba(6, 46, 36, 0.16);
}

.scan-selection small {
  color: var(--gold-text);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.scan-selection p {
  margin: 6px 0 0;
  color: var(--pine-700);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.2;
}

.feature-widget {
  background: var(--mist-50);
}

.widget-fragment {
  background: var(--ivory-50);
}

.widget-preview {
  height: 142px;
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(212, 176, 106, 0.32);
  background: var(--pine-800);
  color: var(--ivory-50);
}

.widget-preview small,
.widget-preview span {
  color: rgba(255, 249, 239, 0.56);
  font-size: 9px;
}

.widget-preview blockquote {
  margin: 12px 0 8px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.25;
}

.widget-options {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
}

.widget-options i {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(6, 46, 36, 0.16);
  border-radius: 50%;
  background: var(--pine-700);
}

.widget-options i:nth-child(2) {
  background: var(--paper-200);
}

.widget-options i:nth-child(3) {
  background: var(--gold-300);
}

.widget-options small {
  margin-left: 4px;
  color: var(--moss-500);
  font-size: 9px;
}

.capture-fragment span,
.note-fragment span {
  color: var(--moss-500);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.capture-fragment p {
  margin: 42px 0 22px;
  color: var(--pine-700);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.35;
}

.fragment-heading,
.fragment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.fragment-heading small {
  color: var(--gold-text);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.fragment-meta small {
  color: var(--moss-500);
}

.fragment-meta em {
  padding: 5px 8px;
  border: 1px solid rgba(6, 46, 36, 0.14);
  border-radius: 999px;
  color: var(--pine-700);
  font-size: 9px;
  font-style: normal;
}

.capture-fragment small {
  color: var(--moss-500);
}

.feature-paper {
  background: var(--paper-200);
}

.note-fragment {
  background: var(--ivory-50);
}

.note-fragment p {
  margin: 22px 0 28px;
  color: var(--charcoal-700);
  font-family: var(--serif);
  font-size: 21px;
}

.note-fragment > small {
  display: block;
  margin-top: 16px;
  color: var(--moss-500);
  font-family: var(--serif);
  font-size: 13px;
}

.note-fragment i,
.note-fragment i::before,
.note-fragment i::after {
  display: block;
  height: 1px;
  background: var(--stone-300);
  content: "";
}

.note-fragment i::before {
  margin-top: 18px;
}

.note-fragment i::after {
  width: 72%;
  margin-top: 18px;
}

.feature-dark {
  background: var(--pine-900);
  color: var(--ivory-50);
}

.feature-dark h3 {
  color: var(--ivory-50);
}

.feature-dark > p {
  color: rgba(255, 249, 239, 0.64);
}

.return-fragment {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-color: rgba(212, 176, 106, 0.28);
  background: var(--pine-800);
  color: var(--ivory-50);
  text-align: left;
}

.return-fragment img {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 8px;
}

.return-fragment blockquote {
  margin: 26px 0 18px;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.36;
}

.return-fragment small {
  color: rgba(255, 249, 239, 0.56);
  font-size: 10px;
}

.principles {
  display: grid;
  max-width: var(--content);
  grid-template-columns: minmax(320px, 0.8fr) minmax(400px, 1.2fr);
  gap: 110px;
  margin: 0 auto;
  padding: 142px var(--page-gutter);
}

.principles-heading .section-number {
  margin-bottom: 46px;
}

.principles-heading {
  position: sticky;
  top: 120px;
  min-width: 0;
  align-self: start;
}

.principle {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px 30px;
  padding: 40px 0;
  border-top: 1px solid rgba(6, 46, 36, 0.18);
}

.principle:last-child {
  border-bottom: 1px solid rgba(6, 46, 36, 0.18);
}

.principle > span {
  grid-row: 1 / span 2;
  color: var(--gold-text);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.principle h3 {
  margin: 0;
  color: var(--pine-700);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.principle p {
  max-width: 520px;
  margin: 0;
  color: rgba(17, 19, 18, 0.66);
}

.reading-circle {
  padding: 0 var(--page-gutter);
  border-top: 1px solid rgba(6, 46, 36, 0.12);
  border-bottom: 1px solid rgba(6, 46, 36, 0.12);
  background: #dfeae4;
}

.reading-circle-inner {
  display: grid;
  max-width: calc(var(--content) - (var(--page-gutter) * 2));
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 96px;
  margin: 0 auto;
  padding: 124px 0;
}

.circle-copy,
.circle-preview {
  min-width: 0;
}

.circle-copy .section-number {
  margin-bottom: 46px;
}

.circle-lead {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(17, 19, 18, 0.68);
  font-size: 17px;
  line-height: 1.7;
}

.circle-points {
  margin: 42px 0 0;
  border-bottom: 1px solid rgba(6, 46, 36, 0.16);
}

.circle-points > div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid rgba(6, 46, 36, 0.16);
}

.circle-points dt {
  color: var(--gold-text);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.circle-points dd {
  margin: 0;
  color: rgba(17, 19, 18, 0.72);
  font-size: 14px;
}

.circle-preview {
  position: relative;
  min-height: 500px;
  align-self: center;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(212, 176, 106, 0.34);
  border-radius: 8px;
  background: var(--pine-800);
  box-shadow: 0 28px 64px rgba(7, 17, 15, 0.15);
  color: var(--ivory-50);
}

.circle-preview::before {
  position: absolute;
  top: 0;
  left: 42px;
  width: 76px;
  height: 2px;
  background: var(--gold-300);
  content: "";
}

.circle-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.circle-preview-head span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-300);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.circle-preview-head i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.circle-preview-head small {
  color: rgba(255, 249, 239, 0.46);
  font-size: 10px;
}

.circle-preview blockquote {
  max-width: 520px;
  margin: 74px 0 22px;
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1.34;
}

.circle-preview > p {
  margin: 0;
  color: rgba(255, 249, 239, 0.54);
  font-size: 11px;
}

.circle-preview-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 70px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 249, 239, 0.14);
  color: rgba(255, 249, 239, 0.82);
  font-size: 11px;
}

.circle-preview-actions span:last-child {
  color: var(--gold-300);
  text-align: right;
}

.circle-private-note {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 249, 239, 0.1);
  color: rgba(255, 249, 239, 0.48);
  font-size: 10px;
}

.development {
  padding: 0 var(--page-gutter);
  background: var(--pine-900);
  color: var(--ivory-50);
}

.development-inner {
  display: grid;
  max-width: calc(var(--content) - (var(--page-gutter) * 2));
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: 90px;
  margin: 0 auto;
  padding: 124px 0;
}

.development .eyebrow,
.development .section-number {
  color: var(--gold-300);
}

.development h2 {
  color: var(--ivory-50);
}

.development-heading > p:last-child {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255, 249, 239, 0.62);
}

.development-heading,
.update-entry {
  min-width: 0;
}

.development-heading .section-number {
  margin-bottom: 46px;
}

.update-entry {
  align-self: end;
  padding: 38px;
  border: 1px solid rgba(212, 176, 106, 0.32);
  border-radius: 8px;
  background: var(--pine-800);
}

.update-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 249, 239, 0.12);
  color: var(--gold-300);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.update-meta time {
  color: rgba(255, 249, 239, 0.5);
}

.update-entry h3 {
  margin: 34px 0 18px;
  color: var(--ivory-50);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
}

.update-entry p {
  margin: 0;
  color: rgba(255, 249, 239, 0.65);
}

.update-progress {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
}

.update-progress > div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 249, 239, 0.12);
}

.update-progress dt,
.update-progress dd {
  margin: 0;
}

.update-progress dt {
  color: var(--gold-300);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.update-progress dd {
  color: rgba(255, 249, 239, 0.68);
  font-size: 14px;
}

.closing {
  position: relative;
  display: grid;
  min-height: 440px;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  padding: 76px max(var(--page-gutter), calc((100vw - var(--content)) / 2));
  background: var(--ivory-50);
}

.closing::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--stone-300);
  content: "";
}

.closing-mark {
  width: min(220px, 64%);
  height: auto;
  justify-self: center;
  opacity: 0.92;
}

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

.closing-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 24px 0 32px;
  color: rgba(17, 19, 18, 0.66);
  font-size: 17px;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 32px max(var(--page-gutter), calc((100vw - var(--content)) / 2));
  border-top: 1px solid rgba(255, 249, 239, 0.14);
  background: var(--pine-900);
  color: rgba(255, 249, 239, 0.58);
  font-size: 12px;
}

.site-footer-expanded {
  grid-template-columns: auto minmax(180px, 1fr) minmax(260px, auto) auto;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  font-size: 13px;
}

.footer-links a {
  border-bottom: 1px solid rgba(255, 249, 239, 0.28);
}

.not-found-page {
  display: grid;
  min-height: 100svh;
  grid-template-rows: 1fr auto;
  padding-top: var(--header-height);
  background: var(--mist-50);
}

.not-found-main {
  display: grid;
  width: min(100%, var(--content));
  grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1.4fr);
  align-items: center;
  gap: 72px;
  margin: 0 auto;
  padding: 80px var(--page-gutter);
}

.not-found-code {
  color: var(--gold-text);
  font-family: var(--serif);
  font-size: 112px;
  line-height: 1;
}

.not-found-copy {
  max-width: 640px;
}

.not-found-copy h1 {
  margin: 0;
  color: var(--pine-700);
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.08;
}

.not-found-copy > p:not(.eyebrow) {
  margin: 24px 0 32px;
  color: rgba(17, 19, 18, 0.68);
  font-size: 17px;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
}

.legal-page {
  min-height: 100svh;
  padding-top: var(--header-height);
  background: var(--mist-50);
}

.legal-shell {
  display: grid;
  max-width: 1040px;
  grid-template-columns: minmax(0, 220px) minmax(0, 720px);
  gap: 72px;
  margin: 0 auto;
  padding: 72px var(--page-gutter) 100px;
}

.legal-aside {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.legal-aside p {
  margin: 0 0 12px;
  color: var(--moss-500);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-aside nav {
  display: grid;
  gap: 10px;
  color: rgba(17, 19, 18, 0.68);
  font-size: 14px;
}

.legal-aside a[aria-current="page"] {
  color: var(--pine-700);
  font-weight: 700;
}

.legal-document {
  min-width: 0;
}

.legal-document header {
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(6, 46, 36, 0.16);
}

.legal-document h1 {
  max-width: 680px;
  margin: 0 0 18px;
  color: var(--pine-700);
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 600;
  line-height: 1.05;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  color: rgba(17, 19, 18, 0.62);
  font-size: 13px;
}

.legal-document section {
  padding-top: 38px;
}

.legal-document h2 {
  margin: 0 0 14px;
  color: var(--pine-800);
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.2;
}

.legal-document h3 {
  margin: 24px 0 8px;
  color: var(--pine-800);
  font-size: 17px;
}

.legal-document p,
.legal-document li {
  color: rgba(17, 19, 18, 0.78);
}

.legal-document ul,
.legal-document ol {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-callout {
  margin-top: 26px;
  padding: 20px;
  border-left: 3px solid var(--gold-500);
  background: rgba(255, 249, 239, 0.62);
}

.legal-callout p {
  margin: 0;
}

.legal-contact {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(6, 46, 36, 0.2);
  border-radius: 6px;
  color: var(--pine-700);
  font-weight: 700;
}

@media (max-width: 760px) {
  .site-footer-expanded {
    grid-template-columns: 1fr;
  }

  .legal-shell {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 42px;
  }

  .legal-aside {
    position: static;
  }

  .legal-aside nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .legal-document h1 {
    font-size: 36px;
  }
}

.brand-footer {
  color: var(--ivory-50);
  font-size: 20px;
}

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

.site-footer p {
  margin: 0;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

@media (max-width: 1180px) {
  :root {
    --page-gutter: 36px;
  }

  .site-nav {
    gap: 20px;
  }

  .hero {
    gap: 36px;
  }

  .hero-copy {
    padding-left: 20px;
  }

  .product-scene {
    padding-right: 36px;
    padding-left: 36px;
  }

  .feature {
    padding-right: 36px;
    padding-left: 36px;
  }

  .principles,
  .reading-circle-inner,
  .development-inner {
    gap: 64px;
  }
}

@media (max-width: 1060px) {
  :root {
    --page-gutter: 28px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(350px, 1.05fr);
    gap: 24px;
  }

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

  .hero-lead {
    font-size: 30px;
  }

  .product-scene {
    padding-right: 24px;
    padding-left: 24px;
  }

  .scene-note {
    display: none;
  }

  .feature {
    padding-right: 30px;
    padding-left: 30px;
  }

  .principles,
  .development-inner {
    gap: 54px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
    --page-gutter: 28px;
  }

  .site-header,
  .site-header.is-scrolled {
    position: sticky;
    background: var(--mist-50);
  }

  .menu-button {
    display: block;
  }

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

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

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 38px var(--page-gutter);
    background: var(--mist-50);
    font-family: var(--serif);
    font-size: 30px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid rgba(6, 46, 36, 0.14);
  }

  .site-nav > a::after {
    display: none;
  }

  .site-nav .nav-status {
    width: auto;
    margin-top: 28px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(6, 46, 36, 0.2);
    font-family: var(--sans);
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 62px;
    padding-bottom: 80px;
  }

  .hero::after,
  .hero-rule {
    display: none;
  }

  .hero-copy {
    max-width: 680px;
    padding-left: 0;
  }

  .product-scene {
    min-height: 610px;
    padding: 0;
  }

  .phone {
    width: 300px;
    height: 615px;
  }

  .real-device {
    width: 300px;
  }

  .return-card {
    min-height: 348px;
  }

  .return-card blockquote {
    margin-top: 24px;
    font-size: 19px;
  }

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

  .hero-footnote {
    position: static;
    grid-column: 1;
  }

  .statement {
    grid-template-columns: 44px 1fr;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .statement-body {
    grid-column: 2;
  }

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

  .feature {
    min-height: auto;
    padding: 50px var(--page-gutter) 62px;
    border-right: 0;
    border-bottom: 1px solid var(--stone-300);
  }

  .capture-fragment,
  .note-fragment,
  .return-fragment,
  .scan-fragment,
  .widget-fragment,
  .feature-screenshot {
    max-width: 560px;
  }

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

  .feature h3 {
    margin-top: 34px;
  }

  .principles {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .principles-heading {
    position: static;
    max-width: 640px;
  }

  .reading-circle-inner {
    grid-template-columns: 1fr;
    padding: 96px 0;
  }

  .circle-copy,
  .circle-preview {
    max-width: 680px;
  }

  .development-inner {
    grid-template-columns: 1fr;
    padding: 96px 0;
  }

  .update-entry {
    max-width: 640px;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .feature-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature:nth-child(odd) {
    border-right: 1px solid var(--stone-300);
  }

  .feature:nth-child(even) {
    border-right: 0;
  }

  .feature:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (min-width: 840px) and (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .product-scene {
    min-height: 615px;
  }

  .hero-footnote {
    grid-column: 1 / -1;
  }

  .principles {
    grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
    gap: 44px;
  }

  .principles-heading {
    position: sticky;
    top: calc(var(--header-height) + 28px);
  }
}

@media (min-width: 900px) and (max-width: 980px) {
  .development-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    gap: 44px;
  }
}

@media (max-width: 620px) {
  :root {
    --page-gutter: 20px;
  }

  .site-header {
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }

  .brand {
    font-size: 22px;
  }

  .site-identity {
    gap: 10px;
  }

  .studio-back {
    min-height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }

  .hero {
    gap: 30px;
    padding-top: 32px;
    padding-bottom: 48px;
  }

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

  .hero-lead {
    margin-top: 22px;
    font-size: 27px;
  }

  .hero-support {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-guide-link {
    flex-wrap: wrap;
  }

  .product-scene {
    min-height: 540px;
    justify-content: center;
  }

  .phone {
    width: min(264px, calc(100vw - 44px));
    height: 540px;
    border-radius: 40px;
  }

  .real-device {
    width: min(264px, calc(100vw - 44px));
    padding: 7px;
    border-radius: 40px;
  }

  .real-device img {
    border-radius: 33px;
  }

  .phone-screen {
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 33px;
  }

  .return-card {
    min-height: 316px;
    padding: 19px 17px 16px;
  }

  .return-card blockquote {
    margin: 20px 0 10px;
    font-size: 17px;
  }

  .margin-note {
    margin-top: 13px;
    padding: 9px;
    font-size: 10px;
  }

  .return-action {
    right: 15px;
    bottom: 11px;
    left: 15px;
  }

  .quiet-link {
    margin-top: 10px;
  }

  .hero-footnote {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    font-size: 11px;
  }

  .statement {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 52px var(--page-gutter);
  }

  .statement-copy,
  .statement-body {
    grid-column: 1;
  }

  .statement h2,
  .principles h2,
  .reading-circle h2,
  .development h2,
  .closing h2 {
    font-size: 36px;
  }

  .statement-body {
    font-size: 15px;
  }

  .feature {
    padding-top: 30px;
    padding-bottom: 38px;
  }

  .feature h3 {
    margin-top: 26px;
    font-size: 27px;
  }

  .capture-fragment,
  .note-fragment,
  .return-fragment,
  .scan-fragment,
  .widget-fragment {
    height: 200px;
    margin-top: 26px;
    padding: 20px;
  }

  .scan-fragment {
    padding: 0;
  }

  .scan-heading {
    top: 12px;
    right: 12px;
    left: 12px;
    padding: 8px 10px;
  }

  .scan-selection {
    right: 7%;
    bottom: 12%;
    left: 14%;
    padding: 9px 10px;
  }

  .scan-selection p {
    font-size: 15px;
  }

  .widget-preview {
    height: 104px;
    margin-top: 12px;
    padding: 12px 14px;
  }

  .widget-preview blockquote {
    margin: 8px 0 5px;
    font-size: 15px;
  }

  .widget-options {
    margin-top: 9px;
  }

  .feature-screenshot {
    height: 280px;
    margin-top: 26px;
  }

  .capture-fragment p {
    margin-top: 30px;
    font-size: 20px;
  }

  .principles {
    gap: 28px;
    padding: 52px var(--page-gutter);
  }

  .reading-circle-inner {
    gap: 38px;
    padding: 52px 0;
  }

  .circle-copy .section-number {
    margin-bottom: 32px;
  }

  .circle-lead {
    font-size: 15px;
  }

  .circle-points {
    margin-top: 30px;
  }

  .circle-points > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .circle-preview {
    min-height: 430px;
    padding: 26px;
  }

  .circle-preview::before {
    left: 26px;
  }

  .circle-preview blockquote {
    margin-top: 52px;
    font-size: 26px;
  }

  .circle-preview-actions {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 48px;
  }

  .circle-preview-actions span:last-child {
    text-align: left;
  }

  .principle {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .principle > span {
    grid-row: auto;
  }

  .principle h3 {
    font-size: 23px;
  }

  .development {
    padding: 0 var(--page-gutter);
  }

  .development-inner {
    gap: 36px;
    padding: 52px 0;
  }

  .update-entry {
    padding: 22px;
  }

  .update-entry h3 {
    font-size: 24px;
  }

  .update-progress > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .closing {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .closing-mark {
    width: 104px;
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px var(--page-gutter);
  }

  .not-found-main {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .not-found-code {
    font-size: 72px;
  }

  .not-found-copy h1 {
    font-size: 36px;
  }

  .not-found-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .not-found-actions .text-link {
    align-self: flex-start;
  }
}

@media (max-width: 360px) {
  :root {
    --page-gutter: 16px;
  }

  .brand {
    gap: 8px;
    font-size: 20px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero {
    gap: 28px;
    padding-top: 34px;
  }

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

  .hero-lead {
    font-size: 24px;
  }

  .hero-footnote {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 18px;
  }

  .product-scene {
    min-height: 528px;
  }

  .phone {
    width: 258px;
    height: 528px;
  }

  .real-device {
    width: 258px;
  }

  .phone-heading {
    margin-top: 18px;
  }

  .phone-heading p {
    font-size: 22px;
  }

  .return-card {
    min-height: 292px;
  }

  .return-card blockquote {
    font-size: 16px;
  }

  .margin-note {
    font-size: 9px;
  }

  .statement h2,
  .principles h2,
  .reading-circle h2,
  .development h2,
  .closing h2 {
    font-size: 32px;
  }

  .capture-fragment,
  .note-fragment,
  .return-fragment,
  .scan-fragment,
  .widget-fragment {
    height: auto;
    min-height: 220px;
  }
}

/* Homepage editorial pass */

.beta-note {
  margin: 16px 0 0;
  color: rgba(17, 19, 18, 0.58);
  font-size: 12px;
}

.hero {
  min-height: min(820px, 88svh);
  padding-top: calc(var(--header-height) + 44px);
  padding-bottom: 72px;
}

.product-scene {
  min-height: 610px;
  padding-top: 20px;
  padding-bottom: 16px;
}

.phone {
  width: 300px;
  height: 615px;
}

.hero-footnote {
  bottom: 20px;
}

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

.section-heading h2,
.spotlight h2,
.principle-strip h2,
.reading-circle h2,
.beta h2 {
  margin: 0;
  color: var(--pine-700);
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
}

.section-heading > p:last-child,
.spotlight-copy > p:not(.eyebrow),
.beta-intro > p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(17, 19, 18, 0.7);
  font-size: 17px;
  line-height: 1.7;
}

.journey {
  max-width: var(--content);
  margin: 0 auto;
  padding: 104px var(--page-gutter) 112px;
}

.journey-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 64px 0 0;
  padding: 0;
  border-top: 1px solid rgba(6, 46, 36, 0.18);
  border-bottom: 1px solid rgba(6, 46, 36, 0.18);
  list-style: none;
}

.journey-list li {
  display: grid;
  min-width: 0;
  grid-template-rows: 22px 72px auto;
  row-gap: 20px;
  padding: 34px 34px 38px 0;
}

.journey-list li + li {
  padding-left: 34px;
  border-left: 1px solid rgba(6, 46, 36, 0.18);
}

.journey-list span,
.principle-strip-list span,
.beta-facts span {
  display: block;
  margin-bottom: 0;
  color: var(--gold-text);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.journey-list h3,
.principle-strip-list h3,
.beta-facts h3 {
  margin: 0;
  color: var(--pine-700);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.18;
}

.journey-list p,
.beta-facts p {
  max-width: 330px;
  margin: 0;
  color: rgba(17, 19, 18, 0.66);
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 88px;
  padding: 104px max(var(--page-gutter), calc((100vw - var(--content)) / 2));
}

.spotlight-capture {
  background: var(--ivory-100);
}

.spotlight-copy {
  min-width: 0;
}

.capability-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(6, 46, 36, 0.16);
  color: var(--moss-500);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.capture-visual {
  position: relative;
  min-width: 0;
  min-height: 500px;
}

.book-capture {
  position: absolute;
  top: 0;
  right: 52px;
  bottom: 24px;
  left: 0;
  overflow: hidden;
  border: 1px solid rgba(6, 46, 36, 0.14);
  border-radius: 8px;
  background: var(--stone-300);
}

.book-capture::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 15, 0.04), rgba(7, 17, 15, 0.3));
  content: "";
}

.book-capture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recognition-bar {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  left: 22px;
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 249, 239, 0.92);
  color: var(--pine-700);
  font-size: 11px;
  text-transform: uppercase;
}

.recognition-bar strong {
  color: var(--gold-text);
}

.book-capture blockquote {
  position: absolute;
  z-index: 2;
  right: 16%;
  bottom: 18%;
  left: 9%;
  margin: 0;
  padding: 20px 22px;
  border-left: 3px solid var(--gold-300);
  background: rgba(255, 249, 239, 0.95);
  color: var(--pine-700);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.25;
}

.screen-inset {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: 184px;
  height: 392px;
  margin: 0;
  overflow: hidden;
  border: 8px solid #07110f;
  border-radius: 40px;
  background: var(--mist-50);
  box-shadow: 0 24px 55px rgba(7, 17, 15, 0.24);
}

.screen-inset img {
  width: 100%;
  height: auto;
  transform: translateY(-8.5%);
}

.spotlight-widget {
  grid-template-columns: minmax(420px, 1fr) minmax(320px, 0.78fr);
  background: var(--pine-900);
  color: var(--ivory-50);
}

.spotlight-widget .eyebrow {
  color: var(--gold-300);
}

.spotlight-widget h2 {
  color: var(--ivory-50);
}

.spotlight-widget .spotlight-copy > p:not(.eyebrow) {
  color: rgba(255, 249, 239, 0.68);
}

.product-crop {
  position: relative;
  width: min(100%, 500px);
  height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 176, 106, 0.32);
  border-radius: 8px;
  background: var(--mist-50);
  box-shadow: 0 28px 64px rgba(7, 17, 15, 0.18);
}

.product-crop img {
  width: 100%;
  height: auto;
}

.product-crop-widget {
  justify-self: end;
  background: #b7d7ef;
}

.product-crop-widget img {
  transform: translateY(-5.8%);
}

.widget-home-card {
  position: absolute;
  z-index: 2;
  top: 2%;
  left: 5%;
  display: flex;
  width: 90%;
  aspect-ratio: 2.15 / 1;
  flex-direction: column;
  justify-content: center;
  padding: 22px 26px;
  border-radius: 26px;
  background: #fffdf8;
  color: var(--pine-900);
  box-shadow: 0 8px 24px rgba(7, 17, 15, 0.12);
}

.widget-home-card > span {
  position: absolute;
  top: 16px;
  right: 18px;
  color: var(--moss-500);
  font-size: 18px;
}

.widget-home-card blockquote {
  max-width: 92%;
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.18;
}

.widget-home-card small {
  margin-top: 10px;
  color: rgba(17, 19, 18, 0.56);
  font-size: 11px;
}

.widget-styles {
  display: grid;
  max-width: 460px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 36px;
}

.widget-style {
  display: flex;
  min-height: 86px;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid rgba(212, 176, 106, 0.28);
  border-radius: 6px;
}

.widget-style strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
}

.widget-style span {
  font-size: 10px;
  text-transform: uppercase;
}

.widget-style-clean {
  background: #f8fbf9;
  color: var(--pine-800);
}

.widget-style-clean span,
.widget-style-paper span,
.widget-style-focus span {
  color: rgba(17, 19, 18, 0.54);
}

.widget-style-paper {
  border-color: rgba(138, 94, 27, 0.24);
  background: #f4ead8;
  color: #4b3c28;
}

.widget-style-night {
  border-color: rgba(255, 249, 239, 0.22);
  background: #101816;
  color: var(--ivory-50);
}

.widget-style-night span {
  color: rgba(255, 249, 239, 0.52);
}

.widget-style-focus {
  border-left: 4px solid var(--gold-300);
  background: #dcebe5;
  color: var(--pine-800);
}

.principle-strip {
  max-width: var(--content);
  margin: 0 auto;
  padding: 104px var(--page-gutter);
}

.principle-strip-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid rgba(6, 46, 36, 0.18);
  border-bottom: 1px solid rgba(6, 46, 36, 0.18);
}

.principle-strip-list article {
  padding: 32px 30px 36px 0;
}

.principle-strip-list article + article {
  padding-left: 30px;
  border-left: 1px solid rgba(6, 46, 36, 0.18);
}

.principle-strip-list span {
  margin-bottom: 28px;
}

.principle-strip-list h3 {
  font-size: 23px;
}

.reading-circle {
  padding: 0 var(--page-gutter);
  background: #dfeae4;
}

.reading-circle-inner {
  max-width: calc(var(--content) - (var(--page-gutter) * 2));
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 88px;
  padding: 104px 0;
}

.circle-lead {
  margin-top: 24px;
}

.circle-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  border: 0;
  list-style: none;
}

.circle-points li {
  padding: 9px 12px;
  border: 1px solid rgba(6, 46, 36, 0.16);
  border-radius: 999px;
  color: var(--pine-700);
  font-size: 12px;
  font-weight: 700;
}

.product-crop-circle {
  width: min(100%, 480px);
  height: 520px;
  justify-self: end;
}

.product-crop-circle img {
  transform: translateY(-64px);
}

.circle-visual {
  width: min(100%, 520px);
  justify-self: end;
  padding: 34px;
  border: 1px solid rgba(6, 46, 36, 0.18);
  border-radius: 8px;
  background: var(--ivory-50);
  box-shadow: 0 24px 54px rgba(7, 17, 15, 0.12);
}

.circle-visual-head,
.circle-visual-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.circle-visual-head span,
.circle-shared-thought p {
  color: var(--gold-text);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.circle-visual-head strong {
  display: block;
  margin-top: 4px;
  color: var(--pine-700);
  font-size: 15px;
}

.circle-members {
  display: flex;
  padding-right: 8px;
}

.circle-members i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-right: -8px;
  border: 2px solid var(--ivory-50);
  border-radius: 50%;
  background: var(--mist-100);
  color: var(--pine-700);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.circle-members i:nth-child(2) {
  background: #e8dcc8;
}

.circle-members i:nth-child(3) {
  background: #dcebe5;
}

.circle-shared-thought {
  margin-top: 34px;
  padding: 32px 0;
  border-top: 1px solid rgba(6, 46, 36, 0.14);
  border-bottom: 1px solid rgba(6, 46, 36, 0.14);
}

.circle-shared-thought p {
  margin: 0;
}

.circle-shared-thought p span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--gold-300);
}

.circle-shared-thought blockquote {
  margin: 24px 0 18px;
  color: var(--pine-800);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.25;
}

.circle-shared-thought small {
  color: rgba(17, 19, 18, 0.54);
}

.circle-visual-foot {
  align-items: flex-start;
  margin-top: 24px;
  color: var(--moss-500);
  font-size: 11px;
  font-weight: 700;
}

.circle-visual-foot span:last-child {
  max-width: 170px;
  text-align: right;
}

.beta {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(520px, 1.2fr);
  gap: 90px;
  padding: 104px max(var(--page-gutter), calc((100vw - var(--content)) / 2));
  background: var(--pine-900);
  color: var(--ivory-50);
}

.beta .eyebrow {
  color: var(--gold-300);
}

.beta h2 {
  color: var(--ivory-50);
}

.beta-intro > p:not(.eyebrow) {
  color: rgba(255, 249, 239, 0.68);
}

.button-light {
  margin-top: 32px;
  background: var(--ivory-50);
  color: var(--pine-700);
}

.beta-feedback-link {
  display: flex;
  max-width: 420px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 249, 239, 0.2);
  border-radius: 6px;
  color: var(--ivory-50);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.beta-feedback-link:hover {
  border-color: rgba(255, 249, 239, 0.42);
  background: rgba(255, 249, 239, 0.06);
}

.beta-feedback-link > span:first-child {
  display: grid;
  gap: 5px;
}

.beta-feedback-link small {
  color: var(--gold-300);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.beta-feedback-link strong {
  font-size: 13px;
  line-height: 1.4;
}

.beta-contact {
  display: block;
  width: fit-content;
  margin-top: 14px;
  color: rgba(255, 249, 239, 0.54);
  font-size: 12px;
  text-decoration: underline;
  text-decoration-color: rgba(255, 249, 239, 0.22);
  text-underline-offset: 4px;
}

.beta-contact:hover {
  color: var(--ivory-50);
}

.beta-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 249, 239, 0.16);
  border-bottom: 1px solid rgba(255, 249, 239, 0.16);
}

.beta-facts article {
  padding: 28px 26px 32px 0;
}

.beta-facts article + article {
  padding-left: 26px;
  border-left: 1px solid rgba(255, 249, 239, 0.16);
}

.beta-facts span {
  margin-bottom: 24px;
  color: var(--gold-300);
}

.beta-facts h3 {
  color: var(--ivory-50);
  font-size: 23px;
}

.beta-facts p {
  color: rgba(255, 249, 239, 0.62);
  font-size: 14px;
}

.faq {
  margin-top: 26px;
}

.faq details {
  border-bottom: 1px solid rgba(255, 249, 239, 0.14);
}

.faq summary {
  padding: 18px 30px 18px 0;
  color: var(--ivory-50);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.faq p {
  max-width: 520px;
  margin: -4px 0 20px;
  color: rgba(255, 249, 239, 0.62);
  font-size: 14px;
}

.faq p a {
  color: var(--ivory-50);
  text-decoration: underline;
  text-decoration-color: rgba(255, 249, 239, 0.32);
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .product-scene {
    min-height: 574px;
  }

  .phone {
    width: 280px;
    height: 574px;
  }

  .journey,
  .principle-strip {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .spotlight,
  .beta {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-top: 82px;
    padding-bottom: 88px;
  }

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

  .spotlight-widget .spotlight-copy {
    order: -1;
  }

  .capture-visual {
    width: min(100%, 720px);
  }

  .product-crop-widget,
  .product-crop-circle,
  .circle-visual {
    justify-self: start;
  }

  .principle-strip-list h3 {
    font-size: 21px;
  }

  .reading-circle-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 82px 0 88px;
  }

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

  .beta-intro,
  .beta-details {
    max-width: 720px;
  }
}

@media (max-width: 700px) {
  .product-scene {
    min-height: 540px;
  }

  .phone {
    width: 264px;
    height: 540px;
  }

  .section-heading h2,
  .spotlight h2,
  .principle-strip h2,
  .reading-circle h2,
  .beta h2 {
    font-size: 36px;
  }

  .journey,
  .principle-strip {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .journey-list,
  .principle-strip-list {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .journey-list li,
  .journey-list li + li,
  .principle-strip-list article,
  .principle-strip-list article + article {
    padding: 26px 0 28px;
    border-left: 0;
  }

  .journey-list li {
    display: block;
  }

  .journey-list h3 {
    margin-top: 18px;
  }

  .journey-list p {
    margin-top: 14px;
  }

  .journey-list li + li,
  .principle-strip-list article + article {
    border-top: 1px solid rgba(6, 46, 36, 0.18);
  }

  .journey-list span,
  .principle-strip-list span {
    margin-bottom: 18px;
  }

  .spotlight,
  .beta {
    gap: 38px;
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .capture-visual {
    min-height: 390px;
  }

  .book-capture {
    right: 26px;
  }

  .book-capture blockquote {
    right: 10%;
    left: 7%;
    padding: 16px;
    font-size: 19px;
  }

  .screen-inset {
    width: 132px;
    height: 282px;
    border-width: 5px;
    border-radius: 29px;
  }

  .product-crop,
  .product-crop-circle {
    width: min(100%, 420px);
    height: 430px;
  }

  .product-crop-widget img {
    transform: translateY(-5.8%);
  }

  .product-crop-circle img {
    transform: translateY(-48px);
  }

  .widget-home-card {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .widget-home-card > span {
    top: 9px;
    right: 12px;
    font-size: 14px;
  }

  .widget-home-card blockquote {
    max-width: 94%;
    font-size: 15px;
    line-height: 1.15;
  }

  .widget-home-card small {
    margin-top: 6px;
    font-size: 9px;
  }

  .circle-visual {
    padding: 26px 22px;
  }

  .circle-shared-thought blockquote {
    font-size: 25px;
  }

  .beta-facts {
    grid-template-columns: 1fr;
  }

  .beta-facts article,
  .beta-facts article + article {
    padding: 24px 0 26px;
    border-left: 0;
  }

  .beta-facts article + article {
    border-top: 1px solid rgba(255, 249, 239, 0.16);
  }
}

@media (max-width: 420px) {
  .product-scene {
    min-height: 512px;
  }

  .phone {
    width: 250px;
    height: 512px;
  }

  .hero-footnote {
    grid-template-columns: 1fr;
  }

  .capture-visual {
    min-height: 342px;
  }

  .recognition-bar {
    top: 12px;
    right: 12px;
    left: 12px;
    min-height: 36px;
    padding: 8px 10px;
    font-size: 9px;
  }

  .book-capture blockquote {
    bottom: 14%;
    font-size: 17px;
  }

  .screen-inset {
    width: 112px;
    height: 240px;
  }

  .capability-line {
    display: grid;
    gap: 8px;
  }

  .widget-styles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .widget-style {
    min-height: 78px;
    padding: 12px;
  }

  .product-crop,
  .product-crop-circle {
    height: 380px;
  }

  .circle-visual-foot {
    display: grid;
    gap: 8px;
  }

  .circle-visual-foot span:last-child {
    max-width: none;
    text-align: left;
  }
}

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

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

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