@font-face {
  font-family: DM Sans;
  src: url(fonts/dm-sans-latin-400-normal.woff2) format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: DM Sans;
  src: url(fonts/dm-sans-latin-500-normal.woff2) format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: DM Sans;
  src: url(fonts/dm-sans-latin-700-normal.woff2) format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url(fonts/manrope-latin-600-normal.woff2) format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url(fonts/manrope-latin-800-normal.woff2) format("woff2");
  font-weight: 800;
  font-display: swap;
}
:root {
  --ink: #193e35;
  --muted: #68766d;
  --paper: #faf9f5;
  --line: #dfe3d9;
  --sage: #e7eddb;
  --orange: #a65836;
  --yellow: #f1deae;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button {
  font: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #b16b3b;
  outline-offset: 5px;
}
img,
svg {
  max-width: 100%;
}
[hidden] {
  display: none !important;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: Manrope, sans-serif;
  font-weight: 600;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.13;
}
h3 {
  font-size: 24px;
  line-height: 1.28;
}
p {
  line-height: 1.7;
}
em {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--orange);
}
.container {
  width: min(1160px, calc(100% - 80px));
  margin-inline: auto;
}
.section {
  padding-block: 104px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 25px;
  color: #6f7866;
  display: flex;
  align-items: center;
  gap: 10px;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5d7b44;
  flex: none;
}
.fine {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}
.large-copy {
  font-size: 23px;
  line-height: 1.5;
}
.actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 17px 23px;
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  min-height: 48px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #2d5949;
  transform: translateY(-2px);
}
.button-small {
  padding: 12px 18px;
  font-size: 12px;
  min-height: 44px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding-block: 8px;
  border-bottom: 1px solid #aebaa4;
}
.text-link:hover {
  color: var(--orange);
}
.skip {
  position: absolute;
  z-index: 30;
  top: -90px;
  left: 16px;
  background: white;
  padding: 15px;
}
.skip:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  background: #faf9f5f2;
  backdrop-filter: blur(12px);
  z-index: 20;
  border-bottom: 1px solid #e6e7de;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: Manrope, sans-serif;
  font-weight: 800;
  font-size: 25px;
  text-decoration: none;
  letter-spacing: -1px;
  white-space: nowrap;
}
.brand-dot {
  color: var(--orange);
  margin-left: -8px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-header nav > a:not(.button) {
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}
.site-header nav > a:hover {
  color: var(--orange);
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  min-height: 680px;
  align-items: center;
  padding-block: 62px 52px;
}
.hero h1 {
  font-size: clamp(55px, 6vw, 78px);
  line-height: 1.035;
  letter-spacing: -0.065em;
  margin-bottom: 28px;
}
.hero-intro {
  font-size: 16px;
  max-width: 440px;
  color: var(--muted);
  margin-bottom: 30px;
}
.hero-note {
  margin-top: 19px;
  font-size: 11px;
}
.hero-art {
  position: relative;
  height: 565px;
  isolation: isolate;
  min-width: 0;
  background-image: radial-gradient(#c7cebc 1px, transparent 1px);
  background-size: 20px 20px;
  border-radius: 16px;
  overflow: hidden;
}
.hero-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse, transparent 45%, var(--paper) 80%);
  z-index: -1;
}
.art-orbit {
  position: absolute;
  left: 8%;
  top: 15%;
  width: 420px;
  height: 420px;
  background: #edf0e2;
  border: 1px solid #e1e7d5;
  border-radius: 50%;
  z-index: -1;
}
.art-label {
  position: absolute;
  top: 22px;
  left: 32px;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #7a8471;
}
.survey-paper {
  position: absolute;
  left: 26px;
  top: 95px;
  width: 260px;
  background: #fffefb;
  box-shadow: 0 16px 38px #183f341c;
  padding: 25px 23px 20px;
  transform: rotate(-9deg);
  border: 1px solid #dfe0d4;
  border-radius: 3px;
}
.paper-top {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  letter-spacing: 0.14em;
  color: #87917c;
  margin-bottom: 20px;
}
.paper-top strong {
  color: var(--ink);
}
.survey-paper h2 {
  font-size: 25px;
  line-height: 1.2;
}
.paper-rule {
  height: 2px;
  background: var(--ink);
  margin: 15px 0;
}
.paper-small,
.small-label {
  display: block;
  font-size: 7px;
  letter-spacing: 0.09em;
  color: #7b8675;
  font-weight: 700;
}
.written {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: #525b6f;
  padding: 9px;
  border: 1px solid #d2d9c8;
  margin: 8px 0 17px;
  letter-spacing: 2px;
}
.paper-choices {
  font-size: 12px;
  word-spacing: 10px;
  margin-block: 8px 16px;
}
.paper-choices span {
  color: #58704e;
}
.paper-table {
  display: grid;
  grid-template-columns: 1fr 50px;
  font-size: 10px;
  border-top: 1px solid #ced4c6;
  border-left: 1px solid #ced4c6;
}
.paper-table > * {
  padding: 8px;
  border-bottom: 1px solid #ced4c6;
  border-right: 1px solid #ced4c6;
}
.paper-table > b {
  background: #f2f4ea;
  font-size: 7px;
  letter-spacing: 0.12em;
}
.paper-table > span {
  font-family: Georgia, serif;
  font-style: italic;
}
.paper-bottom {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-size: 7px;
  color: #7f867a;
}
.code-mark {
  font-size: 34px;
  line-height: 1;
  color: #193e35;
}
.paper-bottom i {
  margin-left: auto;
  font-size: 26px;
  color: #193e35;
}
.phone {
  position: absolute;
  right: 18px;
  top: 82px;
  width: 237px;
  height: 444px;
  border: 7px solid #1d3931;
  outline: 1px solid #5b6858;
  border-radius: 31px;
  background: #f7f8f3;
  box-shadow: 12px 20px 30px #1d392a22;
  transform: rotate(7deg);
  overflow: hidden;
}
.phone-speaker {
  height: 12px;
  width: 64px;
  background: #1d3931;
  border-radius: 0 0 8px 8px;
  margin: auto;
}
.phone-top {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 15px;
  font-size: 10px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.phone-top > span {
  margin-left: auto;
  color: #8b937e;
}
.phone-content {
  padding: 17px 14px;
}
.phone-content h3 {
  font-size: 21px;
  margin-block: 10px 16px;
  letter-spacing: -0.05em;
}
.phone-progress {
  height: 4px;
  background: #e0e8d7;
  border-radius: 4px;
  overflow: hidden;
}
.phone-progress span {
  display: block;
  background: #77905f;
  width: 26%;
  height: 100%;
}
.phone-count {
  font-size: 7px;
  color: #74806c;
  margin: 7px 0 15px;
}
.answer-card {
  padding: 12px;
  background: #fff;
  border: 1px solid #dfe5d9;
  border-radius: 6px;
  font-size: 9px;
}
.answer-photo {
  background: #f4efe4;
  border: 1px solid #e5ddcc;
  padding: 12px;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 24px;
  letter-spacing: 2px;
  color: #666557;
  margin: 10px 0;
}
.answer-card > strong {
  display: block;
  border: 1px solid #c4d2bb;
  padding: 8px;
  border-radius: 4px;
  font-size: 10px;
}
.answer-card small {
  font-size: 6px;
  display: block;
  margin-top: 8px;
  color: #78886b;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  background: #dfeacd;
  color: #426342;
  font-style: normal;
  margin-right: 3px;
}
.answer-card .check {
  width: 12px;
  height: 12px;
}
.photo-attached {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 13px 0;
  font-size: 7px;
}
.photo-attached > span {
  font-size: 20px;
}
.photo-attached small {
  display: block;
  font-size: 6px;
  color: #7b8773;
  margin-top: 3px;
}
.phone-action {
  display: flex;
  justify-content: space-between;
  background: var(--ink);
  color: white;
  padding: 11px 9px;
  border-radius: 4px;
  font-size: 7px;
}
.phone-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  display: flex;
  justify-content: space-around;
  padding: 6px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.phone-nav span {
  text-align: center;
  color: #86917d;
}
.phone-nav span.active {
  color: var(--ink);
}
.phone-nav small {
  display: block;
  font-size: 5px;
}
.transfer-arrow {
  position: absolute;
  left: 145px;
  top: 26px;
  width: 144px;
  height: 77px;
  z-index: 3;
  transform: rotate(-8deg);
  fill: none;
  stroke: #ae714e;
  stroke-width: 2;
  stroke-linecap: round;
}
.art-stamp {
  position: absolute;
  bottom: 9px;
  left: 37px;
  background: #fffef9;
  border: 1px solid #dce2d2;
  border-radius: 5px;
  padding: 13px 17px;
  box-shadow: 0 5px 14px #233d3010;
  font-size: 11px;
  transform: rotate(-4deg);
}
.art-stamp > span {
  color: #6f844a;
  margin-right: 6px;
}
.art-caption {
  position: absolute;
  bottom: 0;
  right: 6px;
  font-size: 8px;
  color: #8a927f;
}
.principles {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 26px;
  gap: 30px;
}
.principles > div {
  display: flex;
  gap: 16px;
  align-items: center;
}
.mini-icon {
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  flex: none;
  border: 1px solid #d6decb;
  border-radius: 50%;
  color: #758460;
}
.principles b,
.principles p > span {
  display: block;
}
.principles b {
  font-size: 12px;
  font-weight: 500;
}
.principles p > span {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.story .large-copy {
  margin-bottom: 22px;
  color: var(--ink);
}
.story p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}
.story .large-copy {
  font-size: 23px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 42px;
}
.section-heading > p {
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 3px;
}
.workflow-section {
  background: #edf0e6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.workflow-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid #ced7c3;
  gap: 8px;
  margin-bottom: 28px;
}
.workflow-tabs button {
  padding: 18px 8px;
  text-align: left;
  font-size: 13px;
  color: #7f8976;
  border: none;
  border-bottom: 3px solid transparent;
  background: none;
}
.workflow-tabs button > span {
  font-size: 10px;
  margin-right: 16px;
  font-weight: 700;
}
.workflow-tabs [aria-selected="true"] {
  color: var(--ink);
  border-color: var(--ink);
  font-weight: 700;
}
.workflow-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
  border: 1px solid #d8dfce;
  border-radius: 12px;
  overflow: hidden;
  min-height: 350px;
}
.step-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e4ead9;
  padding: 45px;
  overflow: hidden;
}
.step-number {
  position: absolute;
  bottom: -34px;
  left: 15px;
  font-family: Manrope, sans-serif;
  font-weight: 800;
  font-size: 190px;
  line-height: 1;
  color: #d1dcc5;
  letter-spacing: -0.09em;
}
.connection-demo,
.diagram-paper,
.review-example,
.send-diagram {
  position: relative;
  background: #fffefb;
  border: 1px solid #d0dbc3;
  padding: 28px;
  border-radius: 9px;
  width: 290px;
  box-shadow: 0 8px 24px #193e350a;
}
.connection-demo > .small-label {
  font-size: 9px;
  margin-bottom: 20px;
}
.connection-demo > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid #e7eadf;
  padding: 11px 0;
  font-size: 10px;
  color: #819071;
}
.connection-demo b {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.connection-demo p {
  font-size: 9px;
  margin-top: 19px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.step-copy {
  padding: 43px 46px;
}
.pill {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #738063;
  margin-bottom: 18px;
}
.step-copy h3 {
  font-size: 31px;
  line-height: 1.22;
  margin-bottom: 17px;
}
.step-copy p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 15px;
}
.step-copy .fine {
  font-size: 11px;
}
.step-copy .text-link {
  font-size: 12px;
}
.diagram-paper {
  transform: rotate(-6deg);
  border-radius: 2px;
}
.diagram-paper > span {
  font-size: 8px;
  display: block;
  color: #738063;
}
.diagram-paper b {
  font-size: 22px;
  display: block;
  line-height: 1.3;
  margin-top: 20px;
}
.diagram-lines {
  height: 65px;
  background: repeating-linear-gradient(transparent 0 16px, #e5e7dc 16px 17px);
  margin-bottom: 20px;
}
.scan-frame {
  position: relative;
  width: 260px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  font-size: 35px;
  color: #597945;
}
.scan-frame > span:nth-child(even) {
  text-align: right;
}
.scan-frame strong {
  grid-column: 1/3;
  font-size: 32px;
  text-align: center;
  color: var(--ink);
}
.scan-frame small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  margin-top: 15px;
}
.review-example > .small-label {
  font-size: 8px;
}
.review-example > strong {
  display: flex;
  justify-content: space-between;
  padding: 11px;
  border: 1px solid #b9c9ac;
  margin-top: 8px;
}
.review-example p {
  font-size: 10px;
  margin-top: 18px;
}
.send-diagram {
  text-align: center;
}
.send-diagram > span {
  font-size: 9px;
  color: #7b886e;
}
.send-diagram b {
  display: block;
  font-size: 15px;
  margin-top: 16px;
}
.send-diagram i {
  display: block;
  font-size: 35px;
  font-style: normal;
  color: var(--orange);
  margin: 20px;
}
.send-diagram > strong {
  font-size: 17px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.feature-grid article {
  border-top: 1px solid #ced8c7;
  padding-top: 30px;
}
.feature-symbol {
  display: grid;
  place-items: center;
  background: #edf0e4;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 26px;
  color: #758557;
  margin-bottom: 25px;
}
.feature-grid h3 {
  font-size: 24px;
  margin-bottom: 18px;
}
.feature-grid p {
  font-size: 13px;
  color: var(--muted);
  max-width: 290px;
}
.quality-section {
  background: #f2eee5;
  border-block: 1px solid #e9e2d5;
}
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
}
.quality-grid h2 {
  font-size: 43px;
  margin-bottom: 25px;
}
.quality-grid > div > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.support-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.support-list > div {
  display: flex;
  gap: 17px;
  padding: 22px 0;
  border-bottom: 1px solid #dedbce;
}
.support-list > div:first-child {
  padding-top: 0;
}
.support-list > div:last-child {
  border: 0;
  padding-bottom: 0;
}
.support-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dfe7d4;
  color: #4e7047;
  flex: none;
  font-size: 13px;
}
.support-icon.caution {
  background: #eadcc7;
  color: #9a623a;
}
.support-list b,
.support-list p > span {
  display: block;
}
.support-list b {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}
.support-list p > span {
  font-size: 12px;
  color: var(--muted);
}
.data-section {
  text-align: center;
  max-width: 850px;
}
.data-section .eyebrow {
  justify-content: center;
}
.data-section h2 {
  font-size: 43px;
}
.flow-arrow {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  color: #a2ad8e;
  padding: 0 12px;
}
.data-section > p {
  font-size: 14px;
  color: var(--muted);
  max-width: 690px;
  margin: 26px auto;
}
.data-notes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: 11px;
  margin-block: 25px;
}
.data-notes > span:before {
  content: "✓";
  color: #829169;
  margin-right: 7px;
}
.download-section {
  background: var(--ink);
  color: #f9fbf1;
  border-radius: 12px;
  padding: 62px 68px;
  display: grid;
  grid-template-columns: 1fr 235px;
  gap: 55px;
  position: relative;
}
.download-section h2 {
  font-size: 43px;
  line-height: 1.18;
}
.download-section > div > p {
  font-size: 14px;
  color: #bfcfbd;
  max-width: 470px;
  margin-block: 23px 30px;
}
.light {
  color: #c0d2a8;
}
.button-light {
  background: #e9edcc;
  color: var(--ink);
}
.button-light:hover {
  background: #f5f6df;
}
.text-link.light {
  color: #e9edcc;
  border-color: #69816b;
}
.release-card {
  border: 1px solid #5a7462;
  border-radius: 7px;
  padding: 26px;
  background: #ffffff04;
  align-self: center;
}
.release-label {
  font-size: 8px;
  letter-spacing: 0.14em;
  color: #b8c7a3;
}
.release-card > strong {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: -0.04em;
}
.release-card > p {
  font-size: 11px !important;
  margin-block: 13px !important;
  color: #bacbb9 !important;
}
.release-divider {
  height: 1px;
  background: #4c6855;
  margin: 19px 0;
}
.release-card > p.fine {
  font-size: 10px !important;
}
.release-card > a {
  display: block;
  font-size: 10px;
  margin-top: 13px;
  color: #d6e4c3;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}
.faq-section > div > p {
  font-size: 13px;
  color: var(--muted);
  max-width: 260px;
  margin-top: 24px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding: 23px 35px 23px 0;
  position: relative;
  list-style: none;
  line-height: 1.5;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  position: absolute;
  right: 4px;
  font-size: 21px;
  font-weight: 400;
  top: 19px;
  color: #7d8c6d;
}
details[open] summary:after {
  content: "−";
}
details p {
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 24px;
  padding-right: 25px;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: #f1f3eb;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 35px;
  padding-block: 44px;
}
.footer-top > p {
  font-size: 12px;
  color: var(--muted);
}
.footer-top nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 34px;
  font-size: 11px;
}
.footer-top nav a {
  text-decoration: none;
}
.footer-top nav a:hover {
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 10px;
  color: #7c8673;
  border-top: 1px solid #dce1d4;
  padding-block: 20px 26px;
}
.guide-hero {
  padding-block: 68px 48px;
  border-bottom: 1px solid var(--line);
}
.guide-hero h1 {
  font-size: 57px;
  line-height: 1.1;
  margin-bottom: 22px;
}
.guide-hero p {
  color: var(--muted);
  max-width: 600px;
  font-size: 16px;
}
.guide-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 72px;
  padding-block: 55px 100px;
}
.guide-nav {
  align-self: start;
  position: sticky;
  top: 122px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-size: 12px;
}
.guide-nav a {
  text-decoration: none;
  color: var(--muted);
}
.guide-nav a:hover {
  color: var(--ink);
}
.guide-nav strong {
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.guide-article {
  min-width: 0;
  max-width: 770px;
}
.guide-article section {
  padding-bottom: 44px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.guide-article h2 {
  font-size: 31px;
  margin-bottom: 22px;
}
.guide-article h3 {
  font-size: 21px;
  margin: 26px 0 13px;
}
.guide-article p,
.guide-article li {
  font-size: 14px;
  line-height: 1.8;
  color: #627266;
}
.guide-article p {
  margin-bottom: 17px;
}
.guide-article li {
  margin-block: 10px;
  padding-left: 7px;
}
.guide-article ul,
.guide-article ol {
  padding-left: 22px;
}
.guide-article strong {
  color: var(--ink);
}
.callout {
  padding: 22px;
  background: #edf0e2;
  border-left: 3px solid #829168;
  border-radius: 0 6px 6px 0;
  margin: 25px 0;
}
.callout p:last-child {
  margin-bottom: 0;
}
.callout.caution {
  background: #f5ece0;
  border-color: #ae7750;
}
.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-block: 20px;
}
table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  font-size: 12px;
}
th,
td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.6;
}
th {
  background: #edf0e4;
  font-weight: 500;
}
tr:last-child td {
  border-bottom: 0;
}
code {
  font-size: 0.88em;
  background: #eef0e5;
  padding: 3px 5px;
  border-radius: 3px;
  overflow-wrap: anywhere;
}
.guide-article .button {
  color: white;
}
.guide-article .release-meta {
  font-size: 12px;
  color: #7a8770;
}
.not-found {
  padding-block: 100px;
  text-align: center;
  min-height: 65vh;
}
.not-found h1 {
  font-size: 64px;
  margin: 25px;
}
.not-found p {
  margin-bottom: 30px;
}
@media (min-width: 1400px) {
  .hero {
    gap: 60px;
    min-height: 730px;
  }
  .hero-art {
    height: 600px;
  }
  .phone {
    right: 25px;
    top: 105px;
  }
  .survey-paper {
    top: 115px;
  }
  .art-stamp {
    bottom: 22px;
  }
}
@media (max-width: 1050px) {
  .container {
    width: calc(100% - 48px);
  }
  .site-header nav {
    gap: 18px;
  }
  .hero {
    gap: 15px;
  }
  .hero h1 {
    font-size: 61px;
  }
  .hero-art {
    height: 535px;
  }
  .survey-paper {
    left: 10px;
    width: 235px;
    padding: 21px 18px;
  }
  .phone {
    right: 5px;
    width: 216px;
    top: 90px;
    transform: rotate(7deg) scale(0.94);
    transform-origin: bottom right;
  }
  .art-label {
    left: 15px;
    font-size: 8px;
  }
  .art-stamp {
    left: 8px;
    font-size: 10px;
  }
  .art-caption {
    bottom: 0;
  }
  .story {
    gap: 50px;
  }
  .workflow-tabs button > span {
    margin-right: 8px;
  }
  .step-copy {
    padding: 32px;
  }
  .quality-grid {
    gap: 45px;
  }
  .download-section {
    padding: 48px;
    gap: 30px;
  }
  .download-section h2 {
    font-size: 38px;
  }
  .faq-section {
    gap: 45px;
  }
  .guide-layout {
    gap: 40px;
    grid-template-columns: 170px minmax(0, 1fr);
  }
}
@media (max-width: 780px) {
  :root {
    scroll-padding-top: 85px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 72px;
  }
  .brand {
    font-size: 23px;
  }
  .brand img {
    width: 29px;
    height: 34px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    border: 1px solid #d4ddca;
    border-radius: 5px;
    padding: 9px 12px;
    font-size: 12px;
    min-height: 40px;
  }
  .site-header nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: var(--paper);
    padding: 18px 20px 25px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 20px #193e350c;
  }
  .site-header nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .site-header nav > a:not(.button) {
    padding: 14px 4px;
    font-size: 14px;
  }
  .site-header nav .button {
    margin-top: 10px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 42px;
    padding-bottom: 32px;
    gap: 20px;
  }
  .hero h1 {
    font-size: clamp(49px, 10vw, 74px);
  }
  .hero-intro {
    max-width: 490px;
    font-size: 15px;
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 22px;
  }
  .hero-art {
    height: 510px;
    width: min(520px, 100%);
    margin: auto;
  }
  .survey-paper {
    width: 250px;
    top: 85px;
    left: 25px;
  }
  .phone {
    right: 32px;
    top: 65px;
    width: 230px;
    transform: rotate(7deg) scale(0.97);
  }
  .art-orbit {
    width: 370px;
    height: 370px;
  }
  .art-label {
    left: 35px;
  }
  .art-stamp {
    left: 24px;
    bottom: 9px;
  }
  .art-caption {
    right: 20px;
    font-size: 7px;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px 5px;
  }
  .principles b {
    font-size: 13px;
  }
  .principles p > span {
    font-size: 12px;
  }
  .section {
    padding-block: 66px;
  }
  .story {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .story h2 br {
    display: none;
  }
  .story .large-copy {
    font-size: 20px;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading > p {
    margin-top: 22px;
    font-size: 13px;
  }
  .section-heading > p br {
    display: none;
  }
  .workflow-tabs {
    gap: 0;
  }
  .workflow-tabs button {
    font-size: 11px;
    text-align: center;
    padding: 14px 1px;
  }
  .workflow-tabs button > span {
    display: block;
    margin: 0 0 7px;
    font-size: 9px;
  }
  .workflow-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .step-visual {
    min-height: 295px;
    padding: 28px;
  }
  .step-copy {
    padding: 30px 26px;
  }
  .step-copy h3 {
    font-size: 29px;
  }
  .step-number {
    font-size: 160px;
    bottom: -27px;
  }
  .connection-demo,
  .diagram-paper,
  .review-example,
  .send-diagram {
    width: 270px;
    padding: 23px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .feature-grid article {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 5px 20px;
    padding-top: 25px;
  }
  .feature-symbol {
    grid-row: 1/3;
  }
  .feature-grid h3 {
    font-size: 23px;
    margin-bottom: 9px;
  }
  .feature-grid h3 br {
    display: none;
  }
  .feature-grid p {
    max-width: none;
    grid-column: 2;
  }
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .quality-grid h2 {
    font-size: 36px;
  }
  .data-section h2 {
    font-size: 34px;
    line-height: 1.35;
  }
  .flow-arrow {
    padding-inline: 2px;
  }
  .data-notes {
    gap: 12px;
    flex-direction: column;
  }
  .download-section {
    padding: 37px 28px;
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .download-section h2 {
    font-size: 35px;
  }
  .download-section .actions {
    gap: 18px;
  }
  .release-card {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
  }
  .release-card > strong {
    grid-column: 1;
  }
  .release-card > p:first-of-type {
    grid-column: 2;
    grid-row: 1/3;
    align-self: center;
  }
  .release-divider,
  .release-card .fine {
    grid-column: 1/3;
  }
  .release-divider {
    margin: 14px 0;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-section h2 br {
    display: none;
  }
  .faq-section > div > p {
    max-width: none;
  }
  .faq-list summary {
    font-size: 13px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 24px;
    padding-block: 33px;
  }
  .footer-top > .brand {
    width: 100%;
  }
  .footer-top nav {
    gap: 15px 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .guide-hero {
    padding-block: 42px 30px;
  }
  .guide-hero h1 {
    font-size: 43px;
  }
  .guide-hero p {
    font-size: 14px;
  }
  .guide-layout {
    display: block;
    padding-top: 30px;
  }
  .guide-nav {
    position: static;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 38px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .guide-nav strong {
    grid-column: 1/3;
  }
  .guide-article h2 {
    font-size: 28px;
  }
  .guide-article section {
    padding-bottom: 28px;
    margin-bottom: 32px;
  }
  .guide-article li,
  .guide-article p {
    font-size: 13px;
  }
  .callout {
    padding: 17px;
  }
  .guide-article table {
    font-size: 11px;
  }
  th,
  td {
    padding: 10px;
  }
  .guide-article .button {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero-art {
    height: 455px;
  }
  .survey-paper {
    left: 0;
    top: 60px;
    width: 215px;
    transform: rotate(-9deg) scale(0.9);
    transform-origin: top left;
  }
  .phone {
    top: 38px;
    right: 5px;
    transform: rotate(7deg) scale(0.86);
  }
  .transfer-arrow {
    left: 95px;
    top: 13px;
    width: 110px;
  }
  .art-label {
    font-size: 7px;
    top: 5px;
    left: 8px;
  }
  .art-stamp {
    bottom: 7px;
    left: 6px;
    font-size: 9px;
    padding: 10px;
  }
  .art-caption {
    bottom: -1px;
    right: 2px;
    font-size: 6px;
  }
  .actions {
    gap: 16px;
  }
  .hero .button {
    padding: 15px 17px;
    font-size: 12px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-intro {
    font-size: 14px;
  }
  .download-section {
    padding: 32px 22px;
  }
  .release-card {
    padding: 19px;
  }
  .release-card > a {
    font-size: 9px;
  }
  .step-copy {
    padding: 26px 22px;
  }
  .feature-grid article {
    gap: 4px 15px;
  }
  .footer-top nav {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .site-header,
  .site-footer,
  .guide-nav,
  .menu-toggle {
    display: none;
  }
  .container {
    width: 100%;
  }
  .guide-layout {
    display: block;
  }
  .guide-article {
    max-width: none;
  }
  .guide-article section {
    break-inside: avoid;
  }
  .guide-hero {
    padding-top: 0;
  }
}

.phone .answer-photo {
  padding: 8px;
  margin: 8px 0;
}
.phone-content h3 {
  margin-bottom: 12px;
}
.phone-count {
  margin-bottom: 10px;
}
