@font-face {
  font-family: "Bodoni Moda";
  src: url("/assets/fonts/bodoni-moda-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("/assets/fonts/bodoni-moda-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

/* The maker's mark. Archivo is used nowhere else on this site on purpose: the credit reads
   as a signature across every site we produce, not as this site's typography. */
@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-400-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ground: #eee8d8;
  --paper: #fbf8ef;
  --ink: #20251f;
  --ink-soft: #50594f;
  --muted: #626a61;
  --field: #3c4639;
  --field-deep: #222720;
  --action: #f1eadb;
  --action-soft: #d9ddcf;
  --teal: #416979;
  --hairline: rgba(34, 39, 32, 0.17);
  --hairline-light: rgba(238, 232, 216, 0.22);
  --success: #2f7d4f;
  --warning: #a86916;
  --danger: #b9463b;
  --display: "Bodoni Moda", Didot, "Bodoni 72", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 16px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --page: min(1420px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ground);
}

body {
  position: relative; /* the absolute header positions against the page on purpose; say so */
  margin: 0;
  color: var(--ink);
  background: var(--ground);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
.button {
  min-height: 48px;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--paper);
  background: var(--field);
  transition: transform 160ms var(--ease);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  color: var(--ground);
}

.site-header.light {
  position: relative;
  color: var(--ink);
  border-bottom: 1px solid var(--hairline);
}

.nav-shell {
  width: var(--page);
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--hairline-light);
}

.nav-shell,
.hero-inner,
.pathway,
.section-inner,
.page-hero-inner,
.footer-inner {
  max-width: calc(100% - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
}

.light .nav-shell {
  border-bottom: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 8px;
  border-radius: 14px;
  color: var(--ink);
  background: var(--ground);
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 38px);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:not(.nav-cta) {
  padding: 12px 0;
}

.nav-links a:not(.nav-cta):hover {
  text-decoration: underline;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 12px;
  padding: 12px 19px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms var(--ease), background-color 150ms var(--ease), color 150ms var(--ease);
}

.nav-cta {
  min-height: 44px;
}

.nav-cta,
.button.primary {
  color: var(--field);
  background: var(--action);
}

.button.secondary {
  color: var(--ground);
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--hairline-light);
}

.light .nav-cta,
.button.dark {
  color: var(--paper);
  background: var(--field);
}

.button.paper {
  color: var(--field);
  background: var(--paper);
}

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

.nav-cta:active,
.button:active {
  transform: scale(0.97);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 12px;
  color: inherit;
  background: transparent;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  min-height: 940px;
  overflow: hidden;
  color: var(--ground);
  background: var(--field-deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 71% 20%, rgba(65, 105, 121, 0.11), transparent 36%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--page);
  min-height: 900px;
  margin: 0 auto;
  padding: 174px 0 148px;
  display: grid;
  grid-template-columns: minmax(420px, 0.84fr) minmax(620px, 1.16fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: 56px;
}

.hero h1 {
  max-width: 9.6ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 6.2vw, 96px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 55ch;
  margin: 30px 0 0;
  color: rgba(238, 232, 216, 0.8);
  font-size: clamp(17px, 1.3vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  margin-top: 18px !important;
  color: rgba(238, 232, 216, 0.64) !important;
  font-size: 13px !important;
}

.product-stage {
  position: relative;
  min-height: 690px;
  perspective: 1600px;
}

.screen {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(34, 39, 32, 0.14);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(9, 12, 9, 0.36);
  transform-origin: 50% 100%;
}

.screen img {
  width: 100%;
}

.screen.desktop {
  width: 89%;
  top: 26px;
  left: 0;
  transform: rotateY(-7deg) rotateZ(0.8deg);
}

.screen.phone-main {
  width: 29%;
  right: 2%;
  bottom: 26px;
  z-index: 3;
  transform: rotateZ(2.4deg);
}

.screen.phone-privacy {
  width: 25%;
  right: -10%;
  bottom: 58px;
  z-index: 2;
  transform: rotateZ(5.8deg);
}

.demo-label {
  position: absolute;
  z-index: 5;
  right: 4px;
  top: -15px;
  padding: 7px 10px;
  border: 1px solid var(--hairline-light);
  border-radius: 999px;
  color: rgba(238, 232, 216, 0.76);
  background: rgba(34, 39, 32, 0.9);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.fold {
  position: absolute;
  z-index: 1;
  inset: auto -5vw -146px;
  height: 250px;
  border-radius: 50% 48% 0 0 / 38% 48% 0 0;
  background: var(--ground);
  transform: rotate(-1.7deg);
}

.pathway {
  position: relative;
  z-index: 4;
  width: var(--page);
  margin: -96px auto 0;
  padding: 28px clamp(22px, 4vw, 62px) 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--ink);
}

.path-step {
  position: relative;
  min-height: 106px;
  padding-right: 32px;
}

.path-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 12px;
  width: calc(100% - 68px);
  border-top: 1px dashed rgba(34, 39, 32, 0.34);
  transform: translateX(50%);
}

.path-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 39, 32, 0.28);
  border-radius: 50%;
  background: var(--ground);
}

.path-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.path-step.action .path-icon {
  border-color: var(--action-soft);
  background: var(--action-soft);
}

.path-step.result .path-icon {
  color: var(--teal);
  border-color: var(--teal);
}

.path-step strong {
  display: block;
  margin-top: 12px;
  font-size: 14px;
}

.path-step span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: clamp(88px, 11vw, 160px) 0;
}

.section.compact {
  padding: 72px 0;
}

.section.dark {
  color: var(--ground);
  background: var(--field);
}

.section.paper {
  background: var(--paper);
}

.section-inner {
  width: var(--page);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 96px);
}

.section-head h2,
.page-hero h1,
.large-statement {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section-head h2 {
  max-width: 12ch;
  font-size: clamp(48px, 5.7vw, 88px);
}

.section-head p {
  max-width: 56ch;
  margin: 0;
  color: var(--ink-soft);
}

.dark .section-head p {
  color: rgba(238, 232, 216, 0.76);
}

.proof-flow {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(42px, 7vw, 108px);
  align-items: center;
}

.proof-flow.reverse {
  grid-template-columns: 1.15fr 0.85fr;
}

.proof-flow.reverse .proof-media {
  order: 2;
}

.proof-copy h3,
.principle h3,
.price-plan h2,
.article h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.proof-copy h3 {
  max-width: 11ch;
  font-size: clamp(42px, 4.3vw, 68px);
}

.proof-copy p {
  max-width: 58ch;
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.proof-copy .button {
  margin-top: 30px;
}

.proof-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--hairline);
}

.proof-list svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.7;
}

.proof-media {
  position: relative;
}

.proof-media .wide-screen {
  position: relative;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 26px 68px rgba(34, 39, 32, 0.13);
}

.proof-media .wide-screen::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  background: linear-gradient(transparent, rgba(251, 248, 239, 0.96));
  pointer-events: none;
}

.proof-media .phone-screen {
  width: min(44%, 310px);
  height: min(650px, 58vw);
  margin: -38% 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(34, 39, 32, 0.17);
}

.proof-media .phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.image-caption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}

.audience-band {
  overflow: hidden;
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  color: var(--ground);
  background: var(--field);
}

.audience-copy {
  padding: clamp(52px, 7vw, 100px);
}

.audience-copy h2 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 6vw, 86px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.audience-copy p {
  max-width: 54ch;
  margin: 28px 0 0;
  color: rgba(238, 232, 216, 0.78);
}

.audience-mark {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  background: var(--ground);
  border-radius: 28px 0 0 28px;
}

.audience-mark img {
  width: min(74%, 470px);
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: translateY(3px) scale(0.99); }
  50% { transform: translateY(-5px) scale(1.005); }
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
}

.principle {
  padding: 36px 34px 16px 0;
  border-bottom: 1px solid var(--hairline);
}

.principle:not(:nth-child(3n)) {
  border-right: 1px solid var(--hairline);
  padding-left: 34px;
}

.principle:first-child,
.principle:nth-child(4) {
  padding-left: 0;
}

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

.principle p {
  color: var(--ink-soft);
}

.privacy-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.privacy-diagram {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.privacy-orbit {
  position: absolute;
  inset: 4% 7%;
  border: 1px solid rgba(238, 232, 216, 0.24);
  border-radius: 50%;
}

.privacy-orbit::before,
.privacy-orbit::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(238, 232, 216, 0.15);
  border-radius: 50%;
}

.privacy-orbit::after {
  inset: 27%;
}

.privacy-phone {
  position: relative;
  z-index: 2;
  width: 42%;
  height: min(720px, 58vw);
  overflow: hidden;
  object-fit: cover;
  object-position: top;
  border-radius: 28px;
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.38);
}

.privacy-chip {
  position: absolute;
  z-index: 3;
  max-width: 190px;
  padding: 12px 14px;
  border: 1px solid var(--hairline-light);
  border-radius: 12px;
  color: var(--ground);
  background: rgba(60, 70, 57, 0.96);
  font-size: 13px;
}

.privacy-chip.one { top: 9%; left: 0; }
.privacy-chip.two { right: 0; top: 38%; }
.privacy-chip.three { left: 3%; bottom: 8%; }

.trust-list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 16px 0;
  border-top: 1px solid var(--hairline-light);
  color: rgba(238, 232, 216, 0.8);
}

.trust-list strong {
  display: block;
  color: var(--ground);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.price-plan {
  padding: 42px clamp(26px, 3vw, 48px) 46px;
}

.price-plan + .price-plan {
  border-left: 1px solid var(--hairline);
}

.price-plan.featured {
  color: var(--ground);
  background: var(--field);
}

.price-plan h2 {
  font-size: 40px;
}

.price {
  margin: 34px 0 6px;
  font-family: var(--display);
  font-size: 58px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price span {
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0;
}

.price-note,
.price-plan p {
  color: var(--ink-soft);
}

.featured .price-note,
.featured p {
  color: rgba(238, 232, 216, 0.74);
}

.price-plan ul {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.price-plan li {
  padding: 10px 0;
  border-top: 1px solid var(--hairline);
}

.featured li {
  border-color: var(--hairline-light);
}

.pricing-disclaimer {
  max-width: 70ch;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  max-width: 940px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
}

.faq-list details {
  border-bottom: 1px solid var(--hairline);
}

.faq-list summary {
  position: relative;
  padding: 28px 56px 28px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.18;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 28px;
  font-family: var(--sans);
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 72ch;
  padding: 0 64px 30px 0;
  color: var(--ink-soft);
}

.closing {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 13vw, 180px) 0;
  color: var(--ground);
  background: var(--field-deep);
}

.closing .section-inner {
  position: relative;
  z-index: 2;
}

.closing h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 8vw, 96px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.closing p {
  max-width: 54ch;
  margin: 30px 0;
  color: rgba(238, 232, 216, 0.76);
}

.closing-mark {
  position: absolute;
  right: -5%;
  bottom: -42%;
  width: min(52vw, 760px);
  padding: 8%;
  border-radius: 50% 0 0;
  background: var(--ground);
  opacity: 0.96;
}

.site-footer {
  padding: 42px 0;
  color: rgba(238, 232, 216, 0.72);
  background: var(--field-deep);
  border-top: 1px solid var(--hairline-light);
}

.footer-inner {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--ground);
}

.footer-brand img {
  width: 50px;
  height: 50px;
  padding: 5px;
  border-radius: 12px;
  background: var(--ground);
}

.footer-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.footer-brand span {
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 13px;
}

.footer-meta {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--hairline-light);
  font-size: 12px;
}

.pchol-credit {
  font-family: Archivo, system-ui, sans-serif;
  grid-column: 1 / -1;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(238, 232, 216, 0.88);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  line-height: 1;
  text-decoration: none;
}

.pchol-credit strong {
  color: var(--ground);
  font-weight: 650;
}

.pchol-bee {
  width: 48px;
  height: 31px;
  flex: none;
  margin: -7px 0;
  background-image: url("/assets/img/pchol-bee/small/cream-body.webp"), url("/assets/img/pchol-bee/small/cream-antennae.webp"), url("/assets/img/pchol-bee/small/cream-antennaeR.webp"), url("/assets/img/pchol-bee/small/cream-legsL.webp"), url("/assets/img/pchol-bee/small/cream-legsR.webp"), url("/assets/img/pchol-bee/small/cream-wingL.webp"), url("/assets/img/pchol-bee/small/cream-wingR.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-11deg);
  animation: pchol-step 38s ease-in-out infinite;
}

@keyframes pchol-step {
  0%, 100% { transform: translate(0, 0) rotate(-11deg); }
  22% { transform: translate(0.5px, -0.1px) rotate(-11.3deg); }
  47% { transform: translate(1px, 0.1px) rotate(-10.8deg); }
  72% { transform: translate(1.5px, -0.1px) rotate(-10.6deg); }
}

.page-hero {
  padding: clamp(80px, 11vw, 150px) 0;
  border-bottom: 1px solid var(--hairline);
}

.subpage .page-hero {
  padding-top: clamp(170px, 15vw, 220px);
}

.page-hero.dark {
  color: var(--ground);
  background: var(--field-deep);
}

.page-hero-inner {
  width: var(--page);
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(58px, 8vw, 96px);
}

.page-hero p {
  max-width: 64ch;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.8vw, 22px);
}

.page-hero.dark p {
  color: rgba(238, 232, 216, 0.76);
}

.article {
  width: min(820px, calc(100vw - 48px));
  margin: 0 auto;
}

.article.wide {
  width: var(--page);
}

.article h2 {
  margin-top: 72px;
  font-size: clamp(38px, 5vw, 62px);
}

.article h3 {
  margin: 46px 0 12px;
  font-size: 22px;
}

.article p,
.article li {
  color: var(--ink-soft);
}

.article a {
  color: var(--field);
}

.article-lead {
  font-family: var(--display);
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink) !important;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 52px;
  margin-top: 56px;
  border-top: 1px solid var(--hairline);
}

.content-block {
  padding: 32px 0;
  border-bottom: 1px solid var(--hairline);
}

.content-block h2,
.content-block h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.content-block p {
  margin: 0;
  color: var(--ink-soft);
}

.note-panel {
  margin: 56px 0;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 22px;
  color: var(--ground);
  background: var(--field);
}

.note-panel h2 {
  margin-top: 0;
  color: var(--ground);
}

.note-panel p,
.note-panel li {
  color: rgba(238, 232, 216, 0.8);
}

.steps {
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 96px;
  padding: 8px 0 32px 86px;
  border-bottom: 1px solid var(--hairline);
  counter-increment: steps;
}

.steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 24px;
  color: var(--ink);
}

.steps strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 18px;
}

.payment-status {
  min-height: 24px;
  margin-top: 16px;
  color: var(--danger);
  font-size: 13px;
}

.checkout-panel {
  margin: 38px 0;
  padding: 28px;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  background: var(--paper);
}

.checkout-panel[hidden] {
  display: none;
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.checkout-actions .button span {
  margin-left: 6px;
  opacity: 0.72;
  font-size: 12px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.fact-line {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--hairline);
}

.fact-line strong {
  color: var(--ink);
}

.access-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}

.access-copy {
  position: sticky;
  top: 38px;
}

.access-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.access-form {
  position: relative; /* contains the off-screen honeypot */
  padding: clamp(28px, 5vw, 58px);
  border-radius: 24px;
  background: var(--paper);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 20px;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(34, 39, 32, 0.24);
  border-radius: 12px;
  color: var(--ink);
  background: var(--paper);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--field);
}

.form-help {
  color: var(--muted);
  font-size: 12px;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  font-size: 14px;
}

.consent-field label {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 400;
}

.consent-field input {
  width: 20px;
  min-height: 20px;
  margin: 2px 0 0;
}

.confirmation {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
  background: var(--ground);
}

.confirmation-inner {
  width: min(760px, 100%);
  text-align: center;
}

.confirmation-inner > img {
  margin: 0 auto 32px;
}

.confirmation h1 {
  max-width: 11ch;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(54px, 8vw, 96px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.confirmation p {
  max-width: 56ch;
  margin: 28px auto;
  color: var(--ink-soft);
}

.confirmation .hero-actions {
  justify-content: center;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.seo-links a {
  padding: 10px 14px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  text-decoration: none;
}

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

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

.js .screen.desktop {
  opacity: 0;
  transform: translateY(55px) rotateY(-7deg) rotateZ(0.8deg);
  animation: unfold-desktop 950ms 220ms var(--ease) forwards;
}

.js .screen.phone-main,
.js .screen.phone-privacy {
  opacity: 0;
  animation: unfold-phone 820ms 620ms var(--ease) forwards;
}

@keyframes unfold-desktop {
  to { opacity: 1; transform: translateY(0) rotateY(-7deg) rotateZ(0.8deg); }
}

@keyframes unfold-phone {
  to { opacity: 1; }
}

@media (max-width: 1080px) {
  :root { --page: min(100% - 36px, 960px); }

  .hero { min-height: 1050px; }

  .hero-inner {
    min-height: 1000px;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 32px;
    padding-top: 160px;
  }

  .hero h1 { max-width: 12ch; }

  .product-stage { min-height: 520px; }
  .screen.desktop { width: 80%; left: 7%; max-height: 520px; }
  .screen.phone-main { width: 23%; right: 9%; top: 70px; bottom: auto; max-height: 440px; }
  .screen.phone-privacy { width: 20%; right: 0; top: 100px; bottom: auto; max-height: 380px; }

  .proof-flow,
  .proof-flow.reverse,
  .privacy-stage {
    grid-template-columns: 1fr;
  }

  .proof-flow.reverse .proof-media { order: 0; }
  .privacy-stage { gap: 16px; }
  .privacy-copy { max-width: 680px; }
}

@media (max-width: 1120px) {
  .menu-toggle { display: grid; place-items: center; }

  .nav-links {
    position: absolute;
    top: 82px;
    left: max(18px, env(safe-area-inset-left, 0px));
    right: max(18px, env(safe-area-inset-right, 0px));
    display: none;
    align-items: stretch;
    padding: 16px;
    border-radius: 16px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 20px 60px rgba(34, 39, 32, 0.24);
  }

  .nav-links.open { display: grid; }
  .nav-links a { padding: 12px !important; }
}

@media (max-width: 820px) {
  :root { --page: calc(100% - 32px); }

  .nav-shell { min-height: 80px; }
  .brand { padding: 6px 10px 6px 6px; }
  .brand img { width: 40px; height: 40px; }
  .brand span { font-size: 21px; }
  .menu-toggle { display: grid; place-items: center; }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    align-items: stretch;
    padding: 16px;
    border-radius: 16px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 20px 60px rgba(34, 39, 32, 0.24);
  }

  .nav-links.open { display: grid; }
  .nav-links a { padding: 12px !important; }

  .hero {
    min-height: 1030px;
  }

  .hero-inner {
    min-height: 980px;
    padding: 130px 0 130px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(58px, 15vw, 78px);
  }

  .hero-copy p { margin-top: 22px; }
  .product-stage { min-height: 440px; margin-top: 12px; }
  .screen.desktop { width: 92%; left: -8%; }
  .screen.phone-main { width: 34%; right: 3%; bottom: 5px; }
  .screen.phone-privacy { display: none; }
  .demo-label { top: -22px; right: 0; }

  .pathway {
    grid-template-columns: 1fr 1fr;
    gap: 24px 12px;
    margin-top: -58px;
  }

  .path-step:not(:last-child)::after { display: none; }

  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .audience-band { grid-template-columns: 1fr; }
  .audience-mark { min-height: 390px; border-radius: 28px 28px 0 0; order: -1; }
  .principles { grid-template-columns: 1fr; }
  .principle,
  .principle:not(:nth-child(3n)),
  .principle:first-child,
  .principle:nth-child(4) {
    padding: 28px 0;
    border-right: 0;
  }

  .pricing-grid { grid-template-columns: 1fr; }
  .price-plan + .price-plan { border-left: 0; border-top: 1px solid var(--hairline); }
  .featured + .price-plan { border-color: var(--hairline); }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }

  .access-layout { grid-template-columns: 1fr; }
  .access-copy { position: static; }
  .content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --page: calc(100% - 28px); }

  .hero { min-height: 920px; }
  .hero-inner { min-height: 880px; padding: 104px 0 82px; position: relative; }
  .hero-copy { padding-bottom: 0; }
  .hero h1 { font-size: clamp(52px, 16.5vw, 68px); }
  .hero-actions { display: grid; }
  .product-stage { position: absolute; top: 690px; left: 0; right: 0; min-height: 330px; margin: 0; }
  .screen.desktop { width: 112%; left: -35%; top: 16px; max-height: 395px; }
  .screen.phone-main { width: 43%; right: 0; top: 46px; bottom: auto; max-height: 372px; }
  .demo-label { display: none; }
  .fold { top: 780px; bottom: auto; height: 220px; }

  .pathway { padding-inline: 0; }
  .path-step { padding-right: 8px; }
  .path-step span { display: block; max-width: 13ch; }

  .section { padding: 84px 0; }
  .section-head h2 { font-size: 48px; }
  .proof-copy h3 { font-size: 44px; }
  .proof-media .phone-screen { width: 46%; height: min(540px, 132vw); }
  .privacy-diagram { min-height: 430px; }
  .privacy-phone { width: 48%; height: min(600px, 148vw); }
  .privacy-chip { max-width: 145px; font-size: 11px; }
  .price { font-size: 50px; }
  .closing-mark { display: none; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .access-form { padding: 24px 18px; }
  .fact-line { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 560px) and (max-height: 700px) and (orientation: portrait) {
  .hero { min-height: 900px; }
  .hero-inner { min-height: 900px; padding-top: 94px; display: block; }
  .hero-copy { display: flex; flex-direction: column; }
  .hero h1 { order: 1; }
  .hero-actions { order: 2; width: 72%; margin-top: 18px; }
  .hero-actions .secondary { display: none; }
  .hero-copy > p:not(.hero-note) {
    position: absolute;
    top: 568px;
    order: 3;
    max-width: 42ch;
    color: var(--ink);
    font-size: 15px;
  }
  .hero-note {
    position: absolute;
    top: 744px;
    order: 4;
    color: var(--muted) !important;
  }
  .product-stage {
    position: absolute;
    z-index: 2;
    top: 404px;
    right: -3%;
    width: 54%;
    min-height: 250px;
    margin: 0;
  }
  .screen.desktop { width: 128%; left: -20%; top: 0; max-height: 245px; }
  .screen.phone-main { width: 58%; right: 0; top: 28px; max-height: 220px; }
  .demo-label { display: none; }
  .fold { top: 540px; bottom: auto; height: 360px; }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero-inner { padding-top: 118px; }
  .section { padding: 56px 0; }
  .section-head { gap: 20px; margin-bottom: 34px; }
  .proof-media .wide-screen { aspect-ratio: 1.5 / 1; }
  .proof-media .phone-screen { height: 420px; }
  .page-hero { padding-top: 132px; padding-bottom: 64px; }
  .audience-copy { padding-block: 52px; }
  .privacy-stage { grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr); gap: 30px; }
  .privacy-diagram { min-height: 340px; }
  .privacy-phone { width: 38%; max-height: 315px; object-fit: cover; object-position: top; border-radius: 18px; }
  .privacy-chip { max-width: 150px; padding: 9px 11px; font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .audience-mark img,
  .pchol-bee,
  .js .screen.desktop,
  .js .screen.phone-main,
  .js .screen.phone-privacy {
    animation: none;
  }
  .js .screen.desktop,
  .js .screen.phone-main,
  .js .screen.phone-privacy,
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .closing,
  .site-footer,
  .menu-toggle { display: none !important; }
  body { color: #000; background: #fff; }
  .hero,
  .section.dark { color: #000; background: #fff; }
  .hero { min-height: auto; }
  .hero-inner { min-height: auto; padding: 40px 0; }
}

/* Touch targets: footer links and the credit are 20px tall text; 44px is the floor on a phone. */
.footer-links a { display: inline-flex; align-items: center; min-height: 44px; }
.pchol-credit { min-height: 44px; }
/* Spacing that used to be inline style attributes; the CSP forbids inline styles on purpose. */
.mt-36 { margin-top: 36px; }
.mt-48 { margin-top: 48px; }
.mt-80 { margin-top: 80px; }
