@font-face {
  font-family: Instrument Sans;
  src: url("assets/instrument-sans-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}
:root {
  --canvas: #f6f8f5;
  --paper: #fff;
  --ink: #173b34;
  --muted: #51665f;
  --teal: #077460;
  --mint: #dfede5;
  --line: #cddbd2;
  --dark: #173d35;
  --on-dark: #edf5ef;
  --dark-muted: #bbd1c5;
  --radius: 14px;
  --gutter: clamp(22px, 4.25vw, 72px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family:
    Instrument Sans,
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: #b6dfd1;
  color: var(--ink);
}
a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 5px;
}
button {
  font: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 5px;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: 500;
  text-wrap: balance;
}
svg {
  display: block;
}
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.wrap {
  max-width: 1552px;
  padding-inline: var(--gutter);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 12px 20px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  height: 100px;
  display: flex;
  align-items: center;
  gap: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.brand img {
  width: 35px;
  height: 35px;
}
.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 24px;
}
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-header nav a:not(.button) {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.site-header nav a:not(.button):hover {
  color: var(--teal);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  min-height: 56px;
  padding: 16px 22px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 500;
  font-size: 15px;
  transition:
    background 180ms,
    color 180ms,
    transform 180ms var(--ease);
}
.button:hover {
  background: var(--teal);
}
.button:active {
  transform: scale(0.98);
}
.button-small {
  min-height: 46px;
  padding: 12px 18px;
  font-size: 14px;
  gap: 20px;
}
.button .icon {
  width: 18px;
  height: 18px;
}
.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  min-height: 48px;
  font-size: 15px;
  font-weight: 500;
}
.text-link:hover {
  text-decoration: underline;
}
.text-link .icon {
  width: 19px;
  height: 19px;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding-top: 32px;
  padding-bottom: 66px;
  align-items: center;
}
.hero-copy {
  padding: 28px 0 22px;
}
.hero h1 {
  font-size: clamp(54px, 6.3vw, 96px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  font-weight: 500;
  white-space: nowrap;
}
.hero h1 span {
  color: #608577;
}
.hero-copy > p {
  font-size: 19px;
  line-height: 1.6;
  max-width: 430px;
  color: var(--muted);
  margin-top: 28px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 31px;
}
.small-symbol {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid #9caf9f;
  border-radius: 50%;
}
.small-symbol .icon {
  width: 12px;
  height: 12px;
}
.hero-art {
  height: 495px;
  position: relative;
  margin-left: 16px;
}
.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
  border-radius: var(--radius);
}
.linen-label {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #234c40;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
}
.linen-label .icon {
  width: 28px;
  height: 28px;
}
.dispatch-slip {
  position: absolute;
  left: -32px;
  bottom: 24px;
  width: 300px;
  padding: 20px;
  background: var(--paper);
  border-radius: 10px;
  box-shadow: 0 8px 36px #102d2421;
}
.slip-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.slip-heading span:last-child {
  letter-spacing: 0;
}
.dispatch-status {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}
.status-icon {
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--teal);
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.status-icon .icon {
  width: 20px;
  height: 20px;
}
.dispatch-status strong {
  font-size: 16px;
  font-weight: 600;
  display: block;
}
.dispatch-status div > span {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}
.mini-journey {
  display: flex;
  align-items: center;
  margin-top: 18px;
}
.mini-journey span {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: var(--teal);
}
.mini-journey i {
  height: 1px;
  background: var(--teal);
  flex: 1;
}
.mini-journey .pending {
  background: var(--line);
}
.operation-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 27px;
  position: relative;
}
.operation-strip:before,
.operation-strip:after {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: var(--line);
}
.operation-strip:before {
  top: 0;
}
.operation-strip:after {
  bottom: 0;
}
.operation-strip p {
  font-size: 14px;
  color: var(--muted);
}
.operation-strip > span {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}
.operation-strip .icon {
  color: #658678;
  width: 21px;
  height: 21px;
}
.section {
  padding-block: 100px;
}
.section-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 56px;
  margin-bottom: 44px;
}
.section-intro h2,
h2 {
  font-size: clamp(36px, 3.9vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.section-intro > p {
  max-width: 395px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  padding-bottom: 3px;
}
.workflow {
  background: var(--dark);
  color: var(--on-dark);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 58px;
}
.workflow-controls {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.workflow-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border-bottom: 1px solid #567669;
  padding-bottom: 12px;
}
.workflow-tabs button {
  color: var(--dark-muted);
  font-size: 13px;
  padding: 8px 4px 8px 0;
  text-align: left;
  background: none;
  border: 0;
  min-height: 54px;
}
.workflow-tabs button span {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
  opacity: 0.8;
}
.workflow-tabs button[aria-selected="true"] {
  color: white;
  position: relative;
}
.workflow-tabs button[aria-selected="true"]:after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 14px;
  background: #a5dabf;
  height: 2px;
}
.workflow-tabs button:hover {
  color: white;
}
.workflow-tabs button:focus-visible,
.workflow a:focus-visible,
.workflow [tabindex]:focus-visible {
  outline-color: #a5dabf;
}
.workflow-description {
  padding-top: 48px;
}
.workflow-description h3 {
  font-size: 32px;
  line-height: 1.18;
  letter-spacing: -0.025em;
  min-height: 77px;
  max-width: 340px;
}
.workflow-description p {
  font-size: 15px;
  color: var(--dark-muted);
  line-height: 1.7;
  max-width: 340px;
  margin-top: 20px;
  min-height: 102px;
}
.light-link {
  color: var(--on-dark);
  font-size: 13px;
  margin-top: 16px;
}
.workflow-instruction {
  margin-top: auto;
  padding-top: 32px;
  font-size: 12px;
  color: var(--dark-muted);
}
.workflow-visual {
  padding: 5px 0 0;
  min-width: 0;
  align-self: center;
}
.order-sheet {
  padding: 24px 26px 20px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 10px;
  position: relative;
}
.order-sheet:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 10px;
  right: 10px;
  height: 6px;
  border-radius: 0 0 6px 6px;
  background: #c1d8cb;
}
.order-sheet-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.sheet-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}
.sheet-brand img {
  width: 24px;
  height: 24px;
}
.example-tag {
  font-size: 12px;
  color: var(--muted);
}
.order-title-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}
.sheet-label {
  color: var(--muted);
  letter-spacing: 0.05em;
  font-size: 12px;
}
.order-title-row h4 {
  font-size: 22px;
  margin-top: 4px;
  letter-spacing: -0.025em;
}
.sheet-status {
  font-size: 12px;
  background: var(--mint);
  color: var(--ink);
  border-radius: 5px;
  padding: 6px 10px;
  white-space: nowrap;
}
.order-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  gap: 12px;
}
.order-items {
  margin-top: 26px;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.order-items th,
.order-items td {
  padding: 10px 0;
  border-bottom: 1px solid #e4ebe4;
  font-size: 12px;
}
.order-items th {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  padding-top: 0;
}
.order-items th:last-child,
.order-items td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.sheet-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}
.sheet-total strong {
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}
.sheet-total strong span {
  font-size: 12px;
  color: var(--muted);
}
.sheet-event {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 20px;
}
.event-icon {
  color: var(--teal);
}
.event-icon .icon {
  width: 22px;
  height: 22px;
}
.sheet-event div {
  flex: 1;
}
.sheet-event strong {
  font-size: 12px;
  font-weight: 600;
  display: block;
}
.sheet-event div > span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
.sheet-event > .icon {
  width: 16px;
  height: 16px;
  color: var(--teal);
}
.visual-caption {
  font-size: 12px;
  margin-top: 18px;
  color: var(--dark-muted);
  text-align: center;
}
.panel-change {
  animation: panel-settle 240ms var(--ease);
}
@keyframes panel-settle {
  from {
    transform: translateY(4px);
  }
  to {
    transform: translateY(0);
  }
}
[hidden] {
  display: none !important;
}
@media (min-width: 1450px) {
  .hero-art {
    height: 560px;
  }
  .hero {
    gap: 48px;
  }
  .site-header {
    gap: 90px;
  }
}
@media (max-width: 1100px) {
  .site-header {
    gap: 32px;
  }
  .nav-links,
  .nav-actions {
    gap: 18px;
  }
  .hero h1 {
    font-size: 6.4vw;
  }
  .hero-copy > p {
    font-size: 17px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .text-link {
    font-size: 14px;
  }
  .hero-art {
    height: 460px;
  }
  .workflow {
    padding: 32px;
    gap: 32px;
  }
  .workflow-description h3 {
    font-size: 28px;
  }
  .order-sheet {
    padding: 22px 20px;
  }
  .order-title-row h4 {
    font-size: 19px;
  }
  .operation-strip {
    gap: 18px;
  }
}
@media (max-width: 900px) and (min-width: 761px) {
  .site-header {
    gap: 22px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-links a:last-child {
    display: none;
  }
  .nav-actions {
    gap: 16px;
  }
  .site-header nav a:not(.button) {
    font-size: 12px;
  }
  .button-small {
    font-size: 12px;
    padding: 12px;
    gap: 12px;
  }
  .hero-actions {
    gap: 6px;
  }
  .hero-actions .button {
    font-size: 13px;
    gap: 15px;
  }
  .hero-art {
    height: 450px;
  }
  .hero-note {
    font-size: 12px;
  }
  .workflow {
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    padding: 28px;
  }
  .workflow-description h3 {
    font-size: 25px;
  }
  .workflow-description p {
    font-size: 13px;
  }
  .order-title-row {
    align-items: start;
    flex-direction: column;
  }
  .example-tag {
    max-width: 70px;
    text-align: right;
  }
  .operation-strip p {
    max-width: 100px;
  }
  .operation-strip > span {
    gap: 7px;
    font-size: 12px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 22px;
  }
  .site-header {
    height: auto;
    min-height: 82px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    position: relative;
    z-index: 5;
  }
  .brand {
    font-size: 27px;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 10px 0 10px 14px;
    border: 0;
    background: none;
    color: var(--ink);
    font-size: 14px;
  }
  .menu-lines {
    width: 20px;
    height: 10px;
    border-block: 1.5px solid currentColor;
    transition: transform 180ms;
  }
  .menu-toggle[aria-expanded="true"] .menu-lines {
    transform: rotate(90deg);
  }
  .site-header nav {
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0 26px;
    gap: 16px;
  }
  .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  .nav-actions {
    justify-content: space-between;
    gap: 16px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 30px;
    padding-bottom: 36px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero h1 {
    font-size: clamp(51px, 10.5vw, 76px);
    line-height: 1.04;
  }
  .hero-copy > p {
    font-size: 17px;
    line-height: 1.6;
    margin-top: 22px;
    max-width: 450px;
  }
  .hero-actions {
    gap: 20px;
    margin-top: 25px;
  }
  .hero-actions .button {
    min-height: 52px;
    padding: 14px 18px;
    gap: 18px;
  }
  .hero-actions .text-link {
    font-size: 13px;
    gap: 8px;
  }
  .hero-note {
    margin-top: 22px;
    font-size: 12px;
  }
  .hero-art {
    height: 380px;
    margin-left: 0;
  }
  .hero-photo {
    object-position: 65% center;
  }
  .linen-label {
    left: 20px;
    top: 20px;
    font-size: 12px;
  }
  .dispatch-slip {
    left: 16px;
    bottom: 16px;
    width: 280px;
    padding: 17px;
  }
  .operation-strip {
    flex-wrap: wrap;
    justify-content: start;
    gap: 18px 0;
    padding-block: 24px;
  }
  .operation-strip p {
    flex-basis: 100%;
    font-size: 12px;
  }
  .operation-strip > span {
    width: 25%;
    gap: 7px;
    font-size: 12px;
  }
  .operation-strip .icon {
    width: 17px;
    height: 17px;
  }
  .section {
    padding-block: 66px;
  }
  .section-intro {
    display: block;
    margin-bottom: 28px;
  }
  .section-intro h2,
  h2 {
    font-size: 36px;
    letter-spacing: -0.035em;
  }
  .section-intro > p {
    font-size: 16px;
    margin-top: 22px;
    max-width: 460px;
    line-height: 1.6;
  }
  .workflow {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 24px 20px;
    border-radius: 12px;
  }
  .workflow-tabs {
    gap: 12px;
  }
  .workflow-tabs button {
    font-size: 13px;
  }
  .workflow-description {
    padding-top: 28px;
  }
  .workflow-description h3 {
    font-size: 29px;
    min-height: 69px;
  }
  .workflow-description p {
    font-size: 14px;
    min-height: 72px;
    max-width: 450px;
    margin-top: 16px;
  }
  .light-link {
    margin-top: 8px;
  }
  .workflow-instruction {
    display: none;
  }
  .workflow-visual {
    padding-top: 0;
  }
  .order-sheet {
    padding: 20px 18px;
  }
  .order-sheet-top {
    padding-bottom: 20px;
  }
  .example-tag {
    font-size: 12px;
    max-width: 62px;
    text-align: right;
  }
  .order-title-row {
    margin-top: 20px;
    gap: 8px;
  }
  .order-title-row h4 {
    font-size: 18px;
  }
  .sheet-status {
    font-size: 12px;
    padding: 5px 7px;
  }
  .order-items {
    margin-top: 20px;
  }
  .order-detail-row {
    font-size: 12px;
  }
  .visual-caption {
    font-size: 12px;
    max-width: 270px;
    margin-inline: auto;
  }
  .sheet-event div > span {
    font-size: 12px;
  }
}
@media (max-width: 380px) {
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .hero-note {
    font-size: 12px;
  }
  .hero h1 {
    font-size: 49px;
  }
  .operation-strip > span {
    font-size: 12px;
  }
  .workflow {
    padding: 22px 16px;
  }
  .order-title-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-art {
    height: 340px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
.clarity {
  padding-top: 8px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.clarity-heading {
  padding-top: 16px;
}
.clarity-heading > p {
  max-width: 380px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-top: 25px;
}
.clarity-heading > .text-link {
  margin-top: 20px;
}
.folded-linen {
  position: relative;
  width: 230px;
  height: 128px;
  margin-top: 40px;
  isolation: isolate;
}
.folded-linen span {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 60px;
  border: 1px solid #85ac9a;
  border-radius: 10px 36px 10px 36px;
  transform: skewY(-8deg);
  background: #e7f0e9;
  z-index: 3;
}
.folded-linen span:nth-child(2) {
  top: 25px;
  left: 12px;
  background: #d8e8de;
  z-index: 2;
}
.folded-linen span:nth-child(3) {
  top: 50px;
  left: 24px;
  background: #c6decf;
  z-index: 1;
}
.feature-list {
  border-top: 1px solid var(--line);
}
.feature-list > a {
  display: flex;
  align-items: start;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.feature-list > a > .icon:first-child {
  color: var(--teal);
  margin-top: 3px;
  width: 24px;
  height: 24px;
}
.feature-list h3 {
  font-size: 23px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.feature-list p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 12px;
  max-width: 380px;
}
.feature-arrow {
  width: 18px;
  height: 18px;
  margin-left: auto;
  margin-top: 5px;
  transition: transform 180ms var(--ease);
}
.feature-list a:hover h3 {
  color: var(--teal);
}
.feature-list a:hover .feature-arrow {
  transform: translateX(4px);
}
.getting-started {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  background: #e9f0e9;
  max-width: none;
  padding-block: 80px;
  padding-inline: max(var(--gutter), calc((100vw - 1408px) / 2));
}
.start-copy > p {
  max-width: 355px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 24px;
}
.starting-price {
  margin-top: 32px;
}
.starting-price > span {
  font-size: 13px;
}
.starting-price > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0;
}
.starting-price strong {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
.starting-price > div > span {
  font-size: 15px;
  color: var(--muted);
}
.starting-price > p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 12px;
}
.start-copy > .text-link {
  margin-top: 13px;
}
.faq-list {
  padding-top: 10px;
}
.faq-list > h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.faq-list details {
  border-bottom: 1px solid #becfc1;
}
.faq-list details:first-of-type {
  border-top: 1px solid #becfc1;
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 26px;
  min-height: 72px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary .icon {
  width: 18px;
  height: 18px;
  transition: transform 180ms var(--ease);
}
.faq-list details[open] summary .icon {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  padding-bottom: 24px;
  max-width: 460px;
}
.faq-list p a {
  text-decoration: underline;
  color: var(--ink);
}
.faq-list summary:hover {
  color: var(--teal);
}
.closing {
  background: var(--dark);
  color: var(--on-dark);
}
.closing-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding-block: 80px;
  overflow: hidden;
}
.closing h2 {
  font-size: clamp(38px, 4.6vw, 68px);
  letter-spacing: -0.035em;
}
.closing p {
  font-size: 16px;
  color: var(--dark-muted);
  margin-top: 23px;
}
.button-light {
  background: #e4f0e7;
  color: var(--ink);
  margin-top: 30px;
}
.button-light:hover {
  background: #bce2cc;
  color: var(--ink);
}
.closing .button:focus-visible {
  outline-color: white;
}
.closing-mark {
  width: 260px;
  height: 260px;
  flex-shrink: 0;
  stroke: #6c9e88;
  stroke-width: 1.2;
  margin-right: 20px;
}
.site-footer {
  padding-top: 60px;
  padding-bottom: 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-top > div > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 18px;
}
.footer-top nav {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0;
}
.footer-top nav > span {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 13px;
}
.footer-top nav > a {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
}
.footer-top nav > a:hover,
.footer-bottom a:hover {
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 54px;
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom > div {
  display: flex;
  gap: 24px;
}
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}
@media (max-width: 1100px) {
  .clarity,
  .getting-started {
    gap: 64px;
  }
  .feature-list h3 {
    font-size: 21px;
  }
  .closing-mark {
    width: 220px;
    height: 220px;
    margin-right: 0;
  }
}
@media (max-width: 760px) {
  .clarity {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 0;
    padding-bottom: 60px;
  }
  .clarity-heading {
    padding-top: 0;
  }
  .clarity-heading > p {
    font-size: 16px;
    margin-top: 20px;
    max-width: 450px;
  }
  .clarity-heading > .text-link {
    margin-top: 12px;
  }
  .folded-linen {
    display: none;
  }
  .feature-list > a {
    padding-block: 24px;
    gap: 14px;
  }
  .feature-list h3 {
    font-size: 21px;
  }
  .feature-list p {
    font-size: 14px;
    margin-top: 10px;
  }
  .feature-arrow {
    display: none;
  }
  .getting-started {
    grid-template-columns: 1fr;
    padding-block: 56px;
    gap: 44px;
  }
  .start-copy > p {
    font-size: 16px;
    margin-top: 20px;
  }
  .starting-price {
    margin-top: 26px;
  }
  .starting-price strong {
    font-size: 50px;
  }
  .faq-list {
    padding-top: 0;
  }
  .faq-list > h3 {
    font-size: 19px;
    margin-bottom: 22px;
  }
  .faq-list summary {
    font-size: 14px;
    min-height: 74px;
    padding-block: 23px;
  }
  .closing-inner {
    padding-block: 56px;
    position: relative;
  }
  .closing-inner > div {
    position: relative;
    z-index: 1;
  }
  .closing h2 {
    font-size: 39px;
  }
  .closing p {
    font-size: 15px;
    max-width: 290px;
    margin-top: 22px;
  }
  .closing-mark {
    display: none;
  }
  .button-light {
    margin-top: 27px;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr 1.4fr;
    gap: 32px 24px;
  }
  .footer-top > div {
    grid-column: 1/-1;
  }
  .footer-top > div > p {
    margin-top: 12px;
    font-size: 13px;
  }
  .footer-top nav > a {
    min-height: 40px;
    font-size: 12px;
  }
  .footer-bottom {
    align-items: start;
    flex-direction: column;
    margin-top: 30px;
    padding-top: 20px;
    gap: 10px;
    font-size: 12px;
  }
  .footer-bottom > span {
    max-width: 250px;
  }
  .footer-bottom > div {
    gap: 24px;
  }
}

/* Keep informative labels legible and the photograph inset intact on small screens. */
@media (max-width: 760px) {
  .dispatch-slip {
    width: min(280px, calc(100% - 32px));
  }
  .example-tag {
    max-width: 100px;
    font-size: 12px;
  }
  .visual-caption {
    font-size: 12px;
    max-width: 300px;
  }
  .order-sheet-top {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .operation-strip > span {
    width: 50%;
    font-size: 13px;
  }
}
