:root {
  /* Paper and inks */
  --paper: #fbfcfb;
  --ink: #0b5d45;
  --ink-deep: #084a37;
  --ink-soft: #d0eadf;
  --rule-soft: #bcd3c9;
  --fill: #eef5f1;
  --carbon: #1a1a1a;
  --carbon-2: #4a4f4d;
  --canary: #f8dc5a;
  --canary-deep: #f2d24a;
  --canary-text: #4a400e;

  /* Type */
  --font: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --text-sm: 0.875rem;
  --text-base: 1.0625rem;
  --text-md: 1.25rem;
  --text-lg: clamp(1.4rem, 2.2vw, 1.9rem);
  --text-xl: clamp(2rem, 3.8vw, 3.25rem);
  --text-display: clamp(3rem, 6.2vw, 5.25rem);

  /* Space */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: clamp(4.5rem, 9vw, 7.5rem);

  --max: 1240px;
  --radius: 3px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  scrollbar-color: var(--ink) var(--fill);
}

body {
  margin: 0;
  color: var(--carbon);
  background: var(--paper);
  font-family: var(--font);
  font-size: var(--text-base);
  font-stretch: 100%;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  caret-color: var(--ink);
}

::selection {
  color: var(--carbon);
  background: var(--canary);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--fill);
}

::-webkit-scrollbar-thumb {
  background: var(--ink);
  border: 3px solid var(--fill);
  border-radius: 6px;
}

h1,
h2,
h3 {
  margin: 0;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

.keep {
  white-space: nowrap;
}

a {
  color: inherit;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.22em;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.wrap {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  transform: translateY(-160%);
}

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

/* Buttons and links */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  color: #fff;
  background: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 650;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  background: var(--ink-deep);
  border-color: var(--ink-deep);
}

.btn:active {
  transform: translateY(1px);
}

.btn-compact {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 0.9375rem;
}

.btn-outline {
  color: var(--ink);
  background: transparent;
}

.btn-outline:hover {
  color: #fff;
}

.btn-block {
  width: 100%;
}

.btn-canary {
  color: var(--carbon);
  background: var(--canary);
  border-color: var(--canary);
}

.btn-canary:hover {
  background: #fff;
  border-color: #fff;
}

.text-link {
  color: var(--ink);
  font-weight: 650;
}

.text-link:hover {
  text-decoration-thickness: 3px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-3);
}

/* Masthead */

.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 252, 251, 0.97);
  border-bottom: 2px solid var(--ink);
}

.masthead-row {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--carbon);
  font-size: 1.1875rem;
  font-stretch: 125%;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark-box {
  position: relative;
  flex: none;
  width: 20px;
  height: 20px;
  background: var(--ink);
  border-radius: 2px;
}

.wordmark-box::after {
  position: absolute;
  top: 3px;
  left: 6.5px;
  width: 6px;
  height: 10px;
  content: "";
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a:not(.btn) {
  color: var(--carbon);
  font-size: 0.9375rem;
  font-weight: 550;
  text-decoration: none;
}

.site-nav a:not(.btn):hover {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--ink);
}

.menu-toggle {
  display: none;
  min-height: 42px;
  padding: 8px 14px;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  font: 650 0.9375rem/1 var(--font);
  cursor: pointer;
}

/* Hero */

.hero {
  padding-block: var(--space-5) var(--space-4);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: end;
  gap: var(--space-4) var(--space-5);
}

.hero h1 {
  font-size: var(--text-display);
  hyphens: none;
  font-stretch: 125%;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.hero-side {
  display: grid;
  gap: var(--space-3);
  padding-bottom: 6px;
}

.lede {
  max-width: 46ch;
  color: var(--carbon-2);
  font-size: 1.125rem;
  line-height: 1.55;
}

/* Worksheet */

.worksheet {
  border-top: 2px solid var(--ink);
}

.ws-head {
  padding-block: var(--space-2);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px var(--space-3);
}

.ws-head h2 {
  font-size: var(--text-md);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ws-head p {
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: 500;
}

.ws-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.ws-table thead th {
  padding: 8px 16px 8px 0;
  color: var(--ink);
  font-size: var(--text-sm);
  font-stretch: 80%;
  font-weight: 600;
  text-align: left;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.ws-col-item {
  width: 64px;
}

.ws-col-name {
  width: 27%;
}

.ws-table .ws-col-amt {
  width: 150px;
  padding-right: 0;
  text-align: right;
}

.ws-table tbody tr {
  border-bottom: 1px solid var(--rule-soft);
}

.ws-table tbody td,
.ws-table tbody th {
  padding: 18px 16px 18px 0;
  vertical-align: top;
  text-align: left;
}

.ws-item {
  color: var(--ink);
  font-stretch: 80%;
  font-weight: 600;
}

.ws-name {
  font-size: 1.125rem;
  font-weight: 650;
  line-height: 1.35;
}

.ws-name span {
  display: block;
  max-width: 34ch;
  margin-top: 4px;
  color: var(--carbon-2);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.45;
}

.ws-fig {
  max-width: 62ch;
  font-size: var(--text-base);
  line-height: 2.05;
}

.blank {
  --len: 3;
  width: calc(var(--len) * 1ch + 18px);
  min-width: 3ch;
  margin-inline: 1px;
  padding: 1px 6px 0;
  color: var(--carbon);
  background: var(--fill);
  border: 0;
  border-bottom: 1.5px solid var(--ink);
  border-radius: 2px 2px 0 0;
  font: inherit;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  line-height: 1.5;
  text-align: center;
  transition: background-color 160ms ease;
}

.blank:hover {
  background: var(--ink-soft);
}

.blank:focus-visible {
  outline-offset: 2px;
  background: #fff;
}

.blank[aria-invalid="true"] {
  border-bottom-color: #b3261e;
}

.ws-amt {
  font-size: var(--text-md);
  font-weight: 650;
}

.ws-table tbody .ws-amt {
  padding-right: 0;
  text-align: right;
  white-space: nowrap;
}

.ws-table tfoot td,
.ws-table tfoot th {
  padding: 18px 16px 20px 0;
  border-top: 2px solid var(--ink);
  vertical-align: baseline;
}

.ws-total-label {
  font-size: var(--text-md);
  font-weight: 700;
  text-align: right;
}

.ws-total {
  position: relative;
  padding-right: 0 !important;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-stretch: 125%;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: right;
  white-space: nowrap;
}

/* Accounting double rule under the total */
.ws-total-figure {
  position: relative;
  display: inline-block;
}

.ws-total-figure::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 6px;
  content: "";
  border-top: 2px solid var(--carbon);
  border-bottom: 2px solid var(--carbon);
  transform-origin: right;
  animation: rule-in 900ms var(--ease-out) 350ms backwards;
}

@keyframes rule-in {
  from {
    transform: scaleX(0);
  }
}

.is-updated {
  animation: tally 700ms ease-out;
}

@keyframes tally {
  from {
    background-color: var(--canary);
  }
}

.ws-foot {
  padding-block: var(--space-2) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) auto;
  align-items: center;
  gap: var(--space-2) var(--space-4);
}

.ws-fine {
  color: var(--ink);
  font-size: var(--text-sm);
}

.ws-threshold {
  font-size: 0.9375rem;
  font-weight: 550;
}

/* Shared section intro */

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: end;
  gap: var(--space-3) var(--space-5);
  margin-bottom: var(--space-5);
}

.split-intro h2,
.audit h2,
.systems h2,
.founder h2 {
  font-size: var(--text-xl);
  font-stretch: 112%;
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: -0.028em;
}

.split-intro p {
  max-width: 48ch;
  color: var(--carbon-2);
}

/* Where time goes */

.where {
  padding-block: var(--space-6);
}

.symptoms {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--ink);
}

.symptoms li {
  padding-block: var(--space-4);
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: baseline;
  gap: var(--space-2) var(--space-5);
  border-top: 1px solid var(--ink);
}

.symptom-copy h3 {
  margin-bottom: 8px;
  font-size: var(--text-md);
  font-weight: 700;
}

.symptom-copy p {
  max-width: 44ch;
  color: var(--carbon-2);
}

.symptom-phrase {
  max-width: 28ch;
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: -0.012em;
  text-indent: -0.4em;
}

/* How it works */

.how {
  padding-block: 0 var(--space-6);
}

.steps-head,
.steps li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 160px;
  gap: var(--space-3);
}

.steps-head {
  padding-block: 8px;
  color: var(--ink);
  font-size: var(--text-sm);
  font-stretch: 80%;
  font-weight: 600;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.steps-head span:last-child {
  text-align: right;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding-block: var(--space-3) calc(var(--space-3) + 4px);
  align-items: start;
  border-bottom: 1px solid var(--rule-soft);
}

.step-box {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.steps h3 {
  margin: 6px 0 6px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.steps p {
  max-width: 62ch;
  color: var(--carbon-2);
}

.step-time {
  padding-top: 8px;
  font-weight: 650;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Audit (canary copy) */

.audit {
  padding-block: var(--space-6);
  background: var(--canary);
}

.audit ::selection {
  background: #fff;
}

.audit-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: var(--space-5);
  align-items: start;
}

.audit-lede {
  max-width: 50ch;
  margin-top: var(--space-3);
  color: var(--canary-text);
  font-size: 1.125rem;
}

.audit-copy h3 {
  margin: var(--space-5) 0 var(--space-2);
  font-size: var(--text-md);
  font-weight: 700;
}

.deliverables {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--ink);
}

.deliverables li {
  position: relative;
  padding: 14px 16px 14px 26px;
  font-weight: 550;
  border-bottom: 1px solid var(--ink);
}

.deliverables li::before {
  position: absolute;
  top: 22px;
  left: 2px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--ink);
}

.terms {
  padding-top: 6px;
  border-top: 2px solid var(--ink);
}

.terms-price {
  padding-block: var(--space-2) var(--space-3);
  display: grid;
  gap: 2px;
}

.terms-price span,
.terms-price small {
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: 600;
}

.terms-price strong {
  font-size: clamp(3.4rem, 6vw, 5rem);
  font-stretch: 125%;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}

.terms-list {
  margin: 0 0 var(--space-4);
  border-top: 1px solid var(--ink);
}

.terms-list div {
  padding-block: 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  border-bottom: 1px solid var(--ink);
}

.terms-list dt {
  max-width: 26ch;
  color: var(--canary-text);
}

.terms-list dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.audit .btn:focus-visible {
  outline-color: var(--carbon);
}

/* Systems */

.systems {
  padding-block: var(--space-6) var(--space-5);
}

.systems-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: var(--space-4) var(--space-5);
  align-items: start;
}

.systems-grid > div p {
  max-width: 42ch;
  margin-top: var(--space-3);
  color: var(--carbon-2);
}

.checklist {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.checklist legend {
  margin-bottom: 10px;
  padding: 0;
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: 600;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--space-4);
  border-top: 1px solid var(--ink);
}

.checklist label {
  padding-block: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.125rem;
  font-weight: 600;
  border-bottom: 1px solid var(--rule-soft);
  cursor: pointer;
}

.checklist input {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
  margin: 0;
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  appearance: none;
  cursor: pointer;
  transition: background-color 140ms ease;
}

.checklist input::after {
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 11px;
  content: "";
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 180ms var(--ease-out);
}

.checklist input:checked {
  background: var(--ink);
}

.checklist input:checked::after {
  transform: rotate(45deg) scale(1);
}

.checklist label:hover input:not(:checked) {
  background: var(--fill);
}

/* Founder */

.founder {
  padding-block: var(--space-5) var(--space-6);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: var(--space-4) var(--space-5);
  align-items: stretch;
  padding-top: var(--space-5);
  border-top: 1px solid var(--ink);
}

.founder-photo {
  display: block;
  max-width: 400px;
}

.founder-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--ink);
  border-radius: 2px;
}

.founder-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-4);
}

.founder-copy p {
  max-width: 54ch;
  margin-top: var(--space-3);
  color: var(--carbon-2);
}

.signature {
  max-width: 420px;
}

.signature-label {
  display: block;
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: 600;
}

.founder-copy .signature-name {
  margin-top: var(--space-3);
  padding-bottom: 8px;
  color: var(--carbon);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-stretch: 125%;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  border-bottom: 1.5px solid var(--carbon);
}

.founder-copy .signature-role {
  margin-top: 10px;
  font-size: 0.9375rem;
}

.signature-role a {
  color: var(--ink);
}

/* Close (green field) */

.close {
  position: relative;
  padding-block: var(--space-6);
  color: #fff;
  background: var(--ink);
}

/* Perforation: this part tears off */
.close::before {
  position: absolute;
  top: 18px;
  right: 0;
  left: 0;
  content: "";
  border-top: 2px dashed rgba(255, 255, 255, 0.45);
}

.close ::selection {
  color: var(--carbon);
  background: var(--canary);
}

.close-inner h2 {
  max-width: 17ch;
  font-size: clamp(2.5rem, 5.6vw, 4.75rem);
  font-stretch: 125%;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
}

.close-inner > p {
  max-width: 50ch;
  margin-block: var(--space-3) var(--space-4);
  color: var(--ink-soft);
  font-size: 1.125rem;
}

.close :focus-visible {
  outline-color: var(--canary);
}

.close-email {
  color: #fff;
  font-weight: 600;
}

/* Footer (small print) */

.footer {
  padding-block: var(--space-4) var(--space-5);
  color: var(--carbon-2);
  font-size: 0.9375rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr) minmax(0, 2fr);
  gap: var(--space-3) var(--space-5);
  align-items: start;
}

.footer-grid p {
  max-width: 60ch;
  margin-top: 10px;
}

.footer-heading {
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: 600;
}

.footer-grid .footer-meta {
  margin-top: 0;
  text-align: right;
}

.footer a:not(.wordmark) {
  color: var(--ink);
}

/* Tablet */

@media (max-width: 1020px) {
  .hero,
  .split-intro,
  .audit-grid,
  .systems-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    gap: var(--space-3);
  }

  .ws-foot {
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
  }

  .symptoms li {
    grid-template-columns: minmax(0, 1fr);
  }

  .symptom-phrase {
    order: -1;
  }

  .founder-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .founder-photo {
    max-width: 320px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid .footer-meta {
    text-align: left;
  }
}

/* Worksheet collapses before the nav does */

@media (max-width: 860px) {
  .ws-table,
  .ws-table tbody,
  .ws-table tfoot,
  .ws-table tr,
  .ws-table td,
  .ws-table th {
    display: block;
  }

  .ws-table thead {
    display: none;
  }

  .ws-table tbody tr {
    padding-block: var(--space-3);
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 8px;
  }

  .ws-table tbody tr:first-child {
    border-top: 1px solid var(--ink);
  }

  .ws-table tbody td,
  .ws-table tbody th {
    padding: 0;
  }

  .ws-item {
    padding-top: 2px !important;
  }

  .ws-fig,
  .ws-table tbody .ws-amt {
    grid-column: 2;
  }

  .ws-fig {
    margin-top: 10px;
  }

  .ws-table tbody .ws-amt {
    margin-top: 8px;
    padding-top: 8px !important;
    display: flex;
    justify-content: space-between;
    border-top: 1px dashed var(--rule-soft);
  }

  .ws-table tbody .ws-amt::before {
    content: attr(data-label);
    color: var(--ink);
    font-size: var(--text-sm);
    font-weight: 600;
  }

  .ws-table tfoot tr {
    padding-block: 16px 22px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-2);
    border-top: 2px solid var(--ink);
  }

  .ws-table tfoot td,
  .ws-table tfoot th {
    padding: 0;
    border: 0;
  }

  .ws-table tfoot .ws-item {
    display: none;
  }

  .ws-total-label {
    max-width: 14ch;
    text-align: left;
  }


  .steps-head {
    display: none;
  }

  .steps li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 4px var(--space-2);
  }

  .steps li:first-child {
    border-top: 1px solid var(--ink);
  }

  .step-time {
    grid-column: 2;
    padding-top: 4px;
    color: var(--ink);
    text-align: left;
  }
}

/* Phone */

@media (max-width: 760px) {
  .wrap {
    width: min(calc(100% - 32px), var(--max));
  }

  .masthead-row {
    min-height: 62px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 8px 16px 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
  }

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

  .site-nav a:not(.btn) {
    padding-block: 14px;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--rule-soft);
  }

  .site-nav .btn {
    margin-top: 16px;
    min-height: 50px;
  }

  .hero {
    padding-block: var(--space-4) var(--space-3);
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12.5vw, 3.6rem);
    letter-spacing: -0.03em;
  }

  .hero h1 .keep {
    white-space: normal;
  }

  .actions .btn {
    width: 100%;
  }

  .ws-head {
    display: grid;
  }

  .ws-foot .btn {
    width: 100%;
  }

  .deliverables,
  .checklist-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .terms-list div {
    display: grid;
    gap: 2px;
  }

  .terms-list dd {
    text-align: left;
  }

  .close-inner h2 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .founder-photo {
    max-width: 280px;
  }
}

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

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