@font-face {
  font-family: "QY Display";
  src: url("/assets/fonts/playfair-display-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "QY Mono";
  src: url("/assets/fonts/space-mono-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "QY Mono";
  src: url("/assets/fonts/space-mono-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --paper: #f4f0e7;
  --paper-deep: #ece5d8;
  --ink: #2638b8;
  --ink-deep: #172988;
  --ink-light: #7180d2;
  --rule: rgba(38, 56, 184, 0.42);
  --rule-soft: rgba(38, 56, 184, 0.2);
  --paper-glass: rgba(244, 240, 231, 0.9);
  --display: "QY Display", Georgia, serif;
  --mono: "QY Mono", "Courier New", monospace;
  --gutter: clamp(1.25rem, 4vw, 5rem);
  --section-space: clamp(5rem, 10vw, 10rem);
  --max: 94rem;
  --art-max: 104.5rem;
  --art-height: min(56.28vw, 58.8125rem);
  --join: clamp(3rem, 6vw, 6rem);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: clip;
  color: var(--ink-deep);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.55), transparent 36rem),
    repeating-linear-gradient(0deg, rgba(38, 56, 184, 0.014) 0 1px, transparent 1px 4px),
    var(--paper);
  font-family: var(--mono);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
}

[data-qy-consent-banner] {
  border: 1px solid var(--ink) !important;
  border-radius: 0 !important;
  color: var(--ink-deep) !important;
  background: var(--paper) !important;
  box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px var(--ink) !important;
  font-family: var(--mono) !important;
  font-size: 0.72rem !important;
}

[data-qy-consent-copy] small {
  color: var(--ink-deep) !important;
  opacity: 0.72;
}

[data-qy-consent-banner] button {
  min-height: 2.8rem !important;
  border: 1px solid var(--ink) !important;
  border-radius: 0 !important;
  color: var(--ink-deep) !important;
  background: transparent !important;
  font-family: var(--mono) !important;
  font-size: 0.65rem !important;
}

[data-qy-consent-banner] button[data-qy-consent="granted"] {
  color: var(--paper) !important;
  background: var(--ink-deep) !important;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

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

::selection {
  color: var(--paper);
  background: var(--ink);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 300;
  padding: 0.75rem 1rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--rule-soft);
  background: rgba(244, 240, 231, 0.92);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 0.7rem;
  width: min(100%, var(--max));
  min-height: 7.2rem;
  margin: 0 auto;
  padding: 0.85rem var(--gutter) 1rem;
}

.wordmark {
  justify-self: center;
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.5vw, 2.55rem);
  line-height: 1;
  letter-spacing: 0.17em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.6rem);
}

.site-nav a,
.header-cta,
.site-footer nav a,
.site-footer__legal a {
  position: relative;
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a::after,
.site-footer a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 0.78rem 1rem;
  border: 1px solid var(--ink);
  background: rgba(244, 240, 231, 0.7);
  transition: color 180ms ease, background-color 180ms ease;
}

.header-cta:hover {
  color: var(--paper);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle svg {
  width: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.chapter {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--paper);
}

.chapter:not(.hero):not(.fit) {
  box-shadow:
    0 -0.7rem 2.2rem -1.55rem rgba(23, 41, 136, 0.18),
    0 -3.5rem 6rem -4.4rem rgba(255, 253, 248, 0.94);
}

.portfolio,
.offer,
.process,
.faq,
.contact {
  background-color: transparent;
  background-image: linear-gradient(
    to bottom,
    rgba(244, 240, 231, 0) 0,
    rgba(244, 240, 231, 0) var(--join),
    rgba(244, 240, 231, 0.72) calc(var(--join) + 2rem),
    var(--paper) calc(var(--join) + 4rem)
  );
}

.chapter-art {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: min(100%, var(--art-max));
  height: auto;
  max-width: var(--art-max);
  aspect-ratio: 1672 / 941;
  object-fit: contain;
  object-position: center top;
  transform: translateX(-50%);
  user-select: none;
  pointer-events: none;
}

.chapter-art:not(.chapter-art--hero) {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 var(--join), #000 calc(100% - var(--join)), transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 var(--join), #000 calc(100% - var(--join)), transparent 100%);
}

.hero {
  display: grid;
  place-items: center;
  height: var(--art-height);
  min-height: 43rem;
  padding: 8.5rem var(--gutter) 6rem;
}

.chapter-art--hero {
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - var(--join)), transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - var(--join)), transparent 100%);
}

.hero__content {
  width: min(47rem, 54vw);
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  max-width: 14ch;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5.55vw, 6.2rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: min(18rem, 70%);
  margin: 1.8rem auto 0.8rem;
}

.hero__rule::before,
.hero__rule::after {
  width: 50%;
  height: 1px;
  content: "";
  background: var(--ink);
}

.hero__rule span {
  font-size: 0.8rem;
}

.hero__price {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.hero__included {
  margin: 0.18rem auto 0;
  font-size: clamp(0.65rem, 0.85vw, 0.8rem);
  letter-spacing: 0.02em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.035em;
  text-align: center;
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease;
}

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

.button--primary {
  color: var(--paper);
  background: var(--ink-deep);
  box-shadow: inset 0 0 0 3px var(--paper), inset 0 0 0 4px var(--ink-deep);
}

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

.button--ghost {
  background: rgba(244, 240, 231, 0.72);
}

.button--ghost:hover {
  color: var(--paper);
  background: var(--ink);
}

.scroll-cue {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(0.35rem); }
}

.section-index {
  margin: 0 0 1.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chapter-heading,
.portfolio__head,
.process__head,
.fit__head,
.faq__head,
.system__intro {
  position: relative;
  z-index: 2;
}

.chapter-heading h2,
.portfolio__head h2,
.offer__head h2,
.system__intro h2,
.process__head h2,
.fit__head h2,
.faq__head h2,
.contact__panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.2vw, 6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.chapter-heading > p:last-child,
.portfolio__head > p:last-child,
.offer__head > p:last-child,
.system__intro > p:last-child,
.contact__intro {
  max-width: 46rem;
  margin: 1.5rem 0 0;
  font-size: clamp(0.88rem, 1.2vw, 1.05rem);
}

.problem {
  z-index: 3;
  margin-top: calc(0rem - var(--join));
  padding: calc(var(--section-space) + var(--join)) var(--gutter) var(--section-space);
  background-color: transparent;
  background-image:
    linear-gradient(90deg, transparent 0 13%, var(--rule-soft) 13% calc(13% + 1px), transparent calc(13% + 1px)),
    linear-gradient(
      to bottom,
      rgba(244, 240, 231, 0) 0,
      rgba(244, 240, 231, 0.76) calc(var(--join) - 1rem),
      var(--paper) calc(var(--join) + 2rem)
    );
}

.chapter-heading {
  display: grid;
  grid-template-columns: minmax(12rem, 0.65fr) 1.6fr;
  column-gap: clamp(2rem, 7vw, 8rem);
  width: min(100%, var(--max));
  margin: 0 auto;
}

.chapter-heading .section-index {
  grid-row: 1 / span 2;
}

.chapter-heading h2 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 7.4rem);
}

.chapter-heading > p:last-child {
  max-width: 48rem;
}

.problem__outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, var(--max));
  margin: clamp(4rem, 8vw, 8rem) auto 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.outcome {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: start;
  column-gap: 1rem;
  min-height: 16rem;
  padding: 2rem clamp(1.2rem, 2.5vw, 2.8rem);
}

.outcome + .outcome {
  border-left: 1px solid var(--ink);
}

.outcome > span {
  grid-row: 1 / span 2;
  font-size: 0.65rem;
}

.outcome h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
}

.outcome p {
  margin: 2rem 0 0;
  font-size: 0.8rem;
}

.portfolio {
  z-index: 2;
  min-height: 76rem;
  margin-top: calc(0rem - var(--join));
  padding: calc(2.5rem + var(--join)) var(--gutter) 7rem;
}

.chapter-art--portfolio {
  object-position: center top;
}

.portfolio__head {
  width: min(42rem, 70vw);
  margin: 0 auto;
  padding: 1.5rem;
  text-align: center;
  background: rgba(244, 240, 231, 0.72);
}

.portfolio__head > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.work-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  width: min(100%, var(--max));
  margin: 2rem auto 0;
}

.work-card {
  position: relative;
  min-width: 0;
  padding: 0.7rem;
  border: 1px solid var(--ink);
  background: var(--paper-glass);
  box-shadow: 0 0 0 5px var(--paper), 0 0 0 6px var(--ink);
  transition: transform 280ms ease, background-color 280ms ease;
}

.work-card:nth-child(2) {
  transform: translateY(2.5rem);
}

.work-card:hover {
  transform: translateY(-0.5rem);
  background: var(--paper);
}

.work-card:nth-child(2):hover {
  transform: translateY(2rem);
}

.work-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--ink);
  background: var(--paper-deep);
}

.work-card__media::before,
.work-card__media::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.work-card__media::before {
  inset: 0.45rem;
  border: 1px solid rgba(244, 240, 231, 0.65);
}

.work-card__media::after {
  inset: 0;
  border: 0.55rem double rgba(38, 56, 184, 0.7);
  mix-blend-mode: multiply;
}

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) sepia(1) hue-rotate(176deg) saturate(4.2) contrast(1.08);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1), filter 250ms ease;
}

.work-card:hover .work-card__media img {
  transform: scale(1.045);
  filter: grayscale(1) sepia(1) hue-rotate(176deg) saturate(4.8) contrast(1.12);
}

.work-card__meta {
  padding: 1.35rem 0.5rem 0.7rem;
}

.work-card__meta span,
.work-card__meta p {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-card__meta h3 {
  margin: 0.6rem 0 1.1rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.5vw, 2.65rem);
  font-weight: 400;
  line-height: 1.02;
}

.work-card__meta p {
  margin: 0;
  letter-spacing: 0.05em;
}

.text-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 5rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.text-link svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(0.35rem);
}

.portfolio > .text-link {
  left: 50%;
  transform: translateX(-50%);
}

.offer {
  z-index: 4;
  min-height: 74rem;
  margin-top: calc(0rem - var(--join));
  padding: calc(var(--section-space) + var(--join)) var(--gutter) var(--section-space);
}

.chapter-art--offer {
  object-position: center;
}

.offer__content {
  position: relative;
  z-index: 2;
  width: min(48rem, 48vw);
  margin-left: auto;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: rgba(244, 240, 231, 0.82);
}

.offer__price {
  display: inline-block;
  margin: 0 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.offer__head h2 {
  font-size: clamp(2.8rem, 4.8vw, 5.6rem);
}

.services-list {
  margin-top: 3rem;
  border-top: 1px solid var(--ink);
}

.service-item {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--rule);
}

.service-item > span {
  padding-top: 0.25rem;
  font-size: 0.62rem;
}

.service-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.1;
}

.service-item p {
  margin: 0.4rem 0 0;
  font-size: 0.75rem;
}

.offer__content > .button {
  margin-top: 2.5rem;
}

.system {
  z-index: 5;
  margin-top: calc(0rem - var(--join));
  padding: calc(var(--section-space) + var(--join)) var(--gutter) var(--section-space);
  background-color: transparent;
  background-image:
    radial-gradient(circle at 50% 48%, transparent 0 6rem, var(--rule-soft) 6rem calc(6rem + 1px), transparent calc(6rem + 1px) 12rem, var(--rule-soft) 12rem calc(12rem + 1px), transparent calc(12rem + 1px)),
    linear-gradient(
      to bottom,
      rgba(244, 240, 231, 0) 0,
      rgba(244, 240, 231, 0.76) calc(var(--join) - 1rem),
      var(--paper) calc(var(--join) + 2rem)
    );
}

.system::before,
.system::after {
  position: absolute;
  top: 50%;
  width: 26vw;
  height: 26vw;
  max-width: 30rem;
  max-height: 30rem;
  content: "";
  border: 1px solid var(--rule-soft);
  border-radius: 50%;
  transform: translateY(-50%);
}

.system::before { left: -10vw; }
.system::after { right: -10vw; }

.system__intro {
  width: min(48rem, 75vw);
  margin: 0 auto;
  text-align: center;
}

.system__intro > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.system-path {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 78rem);
  margin: clamp(4rem, 8vw, 7rem) auto 0;
  padding: 0;
  list-style: none;
}

.system-path::before {
  position: absolute;
  top: 3rem;
  right: 16%;
  left: 16%;
  height: 1px;
  content: "";
  background: var(--ink);
}

.system-path li {
  position: relative;
  text-align: center;
}

.system-path__number {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 6rem;
  aspect-ratio: 1;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font-family: var(--display);
  font-size: 2rem;
}

.system-path h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
}

.system-path p {
  max-width: 20rem;
  margin: 1rem auto 0;
  padding: 0 1.5rem;
  font-size: 0.78rem;
}

.process {
  z-index: 6;
  min-height: 70rem;
  margin-top: calc(0rem - var(--join));
  padding: calc(var(--section-space) + var(--join)) var(--gutter) var(--section-space);
}

.chapter-art--process {
  object-position: center;
}

.process__head {
  width: min(58rem, 75vw);
  margin: 0 auto;
  padding: 1.2rem;
  text-align: center;
  background: rgba(244, 240, 231, 0.76);
}

.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.8rem, 2vw, 2rem);
  width: min(100%, var(--max));
  margin: clamp(4rem, 7vw, 7rem) auto 0;
  padding: 0;
  list-style: none;
}

.process-step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 18rem;
  padding: clamp(1.1rem, 2.2vw, 2rem);
  border: 1px solid var(--ink);
  border-radius: 50%;
  text-align: center;
  background: rgba(244, 240, 231, 0.91);
}

.process-step > span {
  font-size: 0.62rem;
}

.process-step h3 {
  margin: 0.8rem 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.35vw, 2.4rem);
  font-weight: 400;
  line-height: 1;
}

.process-step p {
  margin: 0;
  font-size: 0.7rem;
}

.fit {
  z-index: 7;
  margin-top: calc(0rem - var(--join));
  padding: calc(var(--section-space) + var(--join)) var(--gutter) var(--section-space);
  color: var(--paper);
  background: var(--ink-deep);
  clip-path: polygon(0 5rem, 10% 2.5rem, 23% 4.5rem, 38% 0, 53% 3.5rem, 69% 1rem, 84% 4rem, 100% 2rem, 100% 100%, 0 100%);
  filter: drop-shadow(0 -1.1rem 1.6rem rgba(23, 41, 136, 0.18));
}

.fit::before {
  position: absolute;
  inset: 1.2rem;
  z-index: -1;
  content: "";
  border: 1px solid rgba(244, 240, 231, 0.32);
  pointer-events: none;
}

.fit__head {
  width: min(64rem, 85vw);
  margin: 0 auto;
  text-align: center;
}

.fit__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100%, 78rem);
  margin: clamp(4rem, 7vw, 6rem) auto 0;
  border: 1px solid rgba(244, 240, 231, 0.5);
}

.fit-list {
  padding: clamp(2rem, 4vw, 4rem);
}

.fit-list + .fit-list {
  border-left: 1px solid rgba(244, 240, 231, 0.5);
}

.fit-list > p {
  margin: 0 0 2rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.fit-list ul {
  display: grid;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.8rem;
}

.fit-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.75rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.fit > .button {
  position: relative;
  left: 50%;
  margin-top: 3rem;
  color: var(--paper);
  border-color: var(--paper);
  background: transparent;
  transform: translateX(-50%);
}

.fit > .button:hover {
  color: var(--ink-deep);
  background: var(--paper);
  transform: translate(-50%, -3px);
}

.faq {
  z-index: 8;
  min-height: 70rem;
  margin-top: calc(0rem - var(--join));
  padding: calc(var(--section-space) + var(--join)) var(--gutter) var(--section-space);
}

.chapter-art--faq {
  object-position: center;
}

.faq__content {
  position: relative;
  z-index: 2;
  width: min(52rem, 54vw);
  margin-left: auto;
  padding: clamp(1.2rem, 3vw, 3rem);
  background: rgba(244, 240, 231, 0.83);
}

.faq__head h2 {
  font-size: clamp(2.8rem, 4.8vw, 5.4rem);
}

.faq-list {
  margin-top: 3rem;
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-item summary {
  position: relative;
  padding: 1.35rem 3rem 1.35rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  line-height: 1.2;
}

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

.faq-item summary span,
.faq-item summary span::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.15rem;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform 180ms ease;
}

.faq-item summary span::after {
  top: 0;
  transform: rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: rotate(0);
}

.faq-item p {
  max-width: 42rem;
  margin: -0.2rem 0 1.6rem;
  padding-right: 2rem;
  font-size: 0.78rem;
}

.contact {
  z-index: 9;
  min-height: 84rem;
  margin-top: calc(0rem - var(--join));
  padding: calc(var(--section-space) + var(--join)) var(--gutter) 8rem;
}

.chapter-art--contact {
  object-position: center;
}

.contact__panel {
  position: relative;
  z-index: 2;
  width: min(54rem, 54vw);
  margin-left: auto;
  padding: clamp(1.4rem, 3vw, 3.4rem);
  border: 1px solid var(--ink);
  background: rgba(244, 240, 231, 0.94);
  box-shadow: 0 0 0 6px rgba(244, 240, 231, 0.7), 0 0 0 7px var(--ink);
}

.contact__panel h2 {
  font-size: clamp(2.8rem, 4.6vw, 5.1rem);
}

.lead-form {
  margin-top: 2.8rem;
}

.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1rem;
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
}

.lead-form label > span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form label em {
  font-weight: 400;
  opacity: 0.72;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 0.8rem;
}

.lead-form select {
  padding-right: 2rem;
  cursor: pointer;
}

.lead-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-bottom-width: 2px;
}

.lead-form [aria-invalid="true"] {
  border-color: #9c1f38;
}

.lead-form small {
  min-height: 1em;
  color: #8c1630;
  font-size: 0.58rem;
}

.lead-form__wide {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.8rem !important;
  margin-top: 1.2rem;
}

.consent input {
  width: 1rem;
  min-height: 1rem;
  margin: 0.2rem 0 0;
  accent-color: var(--ink);
}

.consent span {
  font-size: 0.66rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.consent-error {
  display: block;
}

.lead-form__footer {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.lead-form__footer p {
  max-width: 18rem;
  margin: 0;
  font-size: 0.58rem;
}

.lead-form button[disabled] {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: #8c1630;
  font-size: 0.68rem;
}

.form-success {
  margin-top: 2rem;
  padding: 2.5rem;
  border: 1px solid var(--ink);
  text-align: center;
}

.form-success > span {
  font-size: 1.5rem;
}

.form-success h3 {
  margin: 1rem 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
}

.form-success .text-link {
  margin-top: 1rem;
}

.noscript-note {
  padding: 1rem;
  border: 1px solid var(--ink);
  font-size: 0.75rem;
}

.site-footer {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 3rem;
  align-items: end;
  margin-top: calc(0rem - var(--join));
  padding: calc(clamp(4rem, 8vw, 7rem) + var(--join)) var(--gutter) 3rem;
  color: var(--paper);
  background: var(--ink-deep);
  clip-path: polygon(0 5rem, 12% 2.5rem, 28% 4.2rem, 43% 0, 58% 3.3rem, 74% 1.4rem, 89% 4rem, 100% 2.2rem, 100% 100%, 0 100%);
  filter: drop-shadow(0 -1.1rem 1.6rem rgba(23, 41, 136, 0.18));
}

.wordmark--footer {
  display: inline-block;
  font-size: clamp(3rem, 7vw, 7rem);
}

.site-footer__brand p {
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: 1.25rem;
}

.site-footer nav {
  display: grid;
  gap: 1.1rem;
  justify-items: start;
}

.site-footer__legal {
  display: grid;
  gap: 0.9rem;
  justify-items: end;
  font-size: 0.62rem;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 700ms ease, transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 74rem) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 0 2rem;
    border-top: 1px solid var(--rule-soft);
  }

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

  .site-nav a {
    padding: 0.75rem 0;
    font-size: 0.85rem;
  }

  .menu-toggle {
    display: flex;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .offer__content,
  .faq__content,
  .contact__panel {
    width: min(42rem, 62vw);
  }

  .work-grid {
    margin-top: 18rem;
  }
}

@media (max-width: 58rem) {
  .hero {
    height: auto;
    min-height: 0;
    padding-top: calc(56.28vw + 4.5rem);
    padding-bottom: 7rem;
  }

  .hero__content {
    width: min(38rem, 78vw);
    padding: 2rem 1rem;
    background: rgba(244, 240, 231, 0.78);
  }

  .chapter-heading {
    grid-template-columns: 1fr;
  }

  .chapter-heading .section-index {
    grid-row: auto;
  }

  .problem__outcomes,
  .work-grid,
  .system-path,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .outcome {
    min-height: 0;
  }

  .outcome + .outcome {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .portfolio {
    min-height: 0;
  }

  .portfolio__head {
    width: min(100%, 38rem);
  }

  .work-grid {
    gap: 2rem;
    margin-top: 16rem;
  }

  .work-card:nth-child(2),
  .work-card:nth-child(2):hover {
    transform: none;
  }

  .offer,
  .faq,
  .contact {
    min-height: 0;
    padding-top: calc(56.28vw + 6rem);
  }

  .offer__content,
  .faq__content,
  .contact__panel {
    width: 100%;
    margin: 0;
  }

  .system-path {
    gap: 0;
  }

  .system-path::before {
    top: 2rem;
    bottom: 2rem;
    left: 3rem;
    width: 1px;
    height: auto;
  }

  .system-path li {
    display: grid;
    grid-template-columns: 6rem 1fr;
    gap: 1.5rem;
    align-items: center;
    text-align: left;
  }

  .system-path__number {
    margin: 0;
  }

  .system-path p {
    margin-left: 0;
    padding: 0;
  }

  .process {
    min-height: 0;
    padding-top: 7rem;
    padding-bottom: var(--section-space);
  }

  .process__head {
    width: 100%;
  }

  .process-grid {
    gap: 1rem;
  }

  .process-step {
    min-height: 0;
    border-radius: 0;
    text-align: left;
  }

  .fit__columns {
    grid-template-columns: 1fr;
  }

  .fit-list + .fit-list {
    border-top: 1px solid rgba(244, 240, 231, 0.5);
    border-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__legal {
    grid-column: 1 / -1;
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 40rem) {
  :root {
    --gutter: 1.1rem;
  }

  .site-header__inner {
    min-height: 4.4rem;
  }

  .wordmark {
    font-size: 1.45rem;
  }

  .hero {
    min-height: 0;
    padding-top: calc(56.28vw + 4.2rem);
    padding-bottom: 6rem;
  }

  .hero__content {
    width: 100%;
    padding: 1.4rem 0.8rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.15rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    bottom: 1rem;
  }

  .chapter-heading h2,
  .portfolio__head h2,
  .offer__head h2,
  .system__intro h2,
  .process__head h2,
  .fit__head h2,
  .faq__head h2,
  .contact__panel h2 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

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

  .portfolio {
    padding-top: calc(var(--join) + 3rem);
  }

  .portfolio__head {
    padding: 1rem 0.5rem;
  }

  .work-grid {
    margin-top: 13rem;
  }

  .work-card {
    box-shadow: 0 0 0 3px var(--paper), 0 0 0 4px var(--ink);
  }

  .offer,
  .faq,
  .contact {
    padding-top: calc(56.28vw + 4.5rem);
  }

  .offer__content,
  .faq__content,
  .contact__panel {
    padding: 1.35rem;
  }

  .system__intro,
  .process__head,
  .fit__head {
    width: 100%;
  }

  .system-path li {
    grid-template-columns: 4rem 1fr;
    gap: 1rem;
    padding-bottom: 2rem;
  }

  .system-path__number {
    width: 4rem;
  }

  .system-path::before {
    left: 2rem;
  }

  .fit {
    padding-right: 1.7rem;
    padding-left: 1.7rem;
  }

  .fit__columns {
    width: 100%;
  }

  .lead-form__grid {
    grid-template-columns: 1fr;
  }

  .lead-form__wide {
    grid-column: auto;
  }

  .lead-form__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer__legal {
    grid-column: auto;
  }
}

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

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

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

/* Universal conversion atlas: exact-copy rebuild */

:root {
  --announcement-h: 2.8rem;
  --panel: rgba(248, 244, 235, 0.9);
  --panel-strong: rgba(248, 244, 235, 0.96);
  --chapter-shadow:
    0 -1.2rem 3.5rem -2.6rem rgba(23, 41, 136, 0.28),
    0 -4.5rem 8rem -5.5rem rgba(255, 253, 248, 0.98);
}

html {
  scroll-padding-top: calc(var(--announcement-h) + 6rem);
}

.universal-page {
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.78), transparent 45rem),
    repeating-linear-gradient(0deg, rgba(38, 56, 184, 0.012) 0 1px, transparent 1px 4px),
    var(--paper);
}

.announcement {
  position: fixed;
  inset: 0 0 auto;
  z-index: 96;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: var(--announcement-h);
  padding: 0.55rem var(--gutter);
  color: var(--paper);
  background: var(--ink-deep);
  box-shadow: 0 1px 0 rgba(244, 240, 231, 0.38);
  font-size: 0.67rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
}

.announcement strong {
  color: #fff;
}

.universal-page .site-header {
  top: var(--announcement-h);
  right: 0;
  bottom: auto;
  left: 0;
  background: linear-gradient(to bottom, rgba(244, 240, 231, 0.86), rgba(244, 240, 231, 0.4), transparent);
}

.universal-page .site-header.is-scrolled {
  background: rgba(244, 240, 231, 0.94);
  box-shadow: 0 1.1rem 2.6rem -2.2rem rgba(23, 41, 136, 0.42);
}

.universal-page .site-header__inner {
  grid-template-columns: 1fr auto 1fr;
  min-height: 6.5rem;
  padding-top: 0.72rem;
  padding-bottom: 0.82rem;
}

.universal-page .site-header .wordmark {
  grid-column: 2;
}

.universal-page .site-header .site-nav {
  grid-column: 2;
}

.universal-page .site-header .header-cta {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.universal-page .chapter {
  overflow: clip;
  background-color: transparent;
  box-shadow: none;
}

.universal-page .chapter-art {
  width: min(100%, var(--art-max));
  max-width: var(--art-max);
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: contain;
  object-position: center top;
  image-rendering: auto;
}

.universal-page .art-chapter {
  z-index: 2;
  min-height: clamp(68rem, 78vw, 82rem);
  margin-top: calc(0rem - var(--join));
  padding: clamp(9rem, 12vw, 13rem) var(--gutter) var(--section-space);
  background-image: linear-gradient(
    to bottom,
    rgba(244, 240, 231, 0) 0,
    rgba(244, 240, 231, 0.04) var(--join),
    rgba(244, 240, 231, 0.78) min(48rem, 46vw),
    var(--paper) min(59rem, 56vw),
    var(--paper) 100%
  );
  box-shadow: var(--chapter-shadow);
}

.universal-page .art-chapter::before,
.universal-page .art-chapter::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.universal-page .art-chapter::before {
  top: 0;
  height: calc(var(--join) * 1.65);
  background:
    radial-gradient(ellipse at 50% 0, rgba(244, 240, 231, 0.04), rgba(244, 240, 231, 0.72) 72%, var(--paper) 100%);
  filter: blur(0.01px);
}

.universal-page .art-chapter::after {
  bottom: 0;
  height: clamp(5rem, 9vw, 9rem);
  background: linear-gradient(to bottom, transparent, var(--paper) 74%);
}

.universal-page .chapter-art:not(.chapter-art--hero) {
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0,
    rgba(0, 0, 0, 0.78) calc(var(--join) * 0.7),
    #000 calc(var(--join) * 1.5),
    #000 calc(100% - var(--join) * 1.8),
    rgba(0, 0, 0, 0.62) calc(100% - var(--join) * 0.8),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0,
    rgba(0, 0, 0, 0.78) calc(var(--join) * 0.7),
    #000 calc(var(--join) * 1.5),
    #000 calc(100% - var(--join) * 1.8),
    rgba(0, 0, 0, 0.62) calc(100% - var(--join) * 0.8),
    transparent 100%
  );
}

.universal-page .hero {
  height: var(--art-height);
  min-height: 48rem;
  padding: calc(var(--announcement-h) + 8rem) var(--gutter) 4rem;
}

.universal-page .hero__content {
  width: min(61rem, 61vw);
  padding: 1.4rem 2rem;
  background: radial-gradient(ellipse at center, rgba(248, 244, 235, 0.94), rgba(248, 244, 235, 0.72) 64%, transparent 82%);
}

.universal-page .hero__eyebrow {
  max-width: 46rem;
  margin: 0 auto 0.9rem;
  font-size: clamp(0.62rem, 0.74vw, 0.76rem);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.universal-page .hero h1 {
  max-width: 17ch;
  font-size: clamp(2.75rem, 4.25vw, 5rem);
  line-height: 0.94;
}

.universal-page .hero__rule {
  margin-top: 1.15rem;
  margin-bottom: 0.7rem;
}

.universal-page .hero__lead {
  max-width: 55rem;
  margin: 0 auto;
  font-size: clamp(0.72rem, 0.83vw, 0.9rem);
  line-height: 1.65;
}

.universal-page .hero__actions {
  margin-top: 1.05rem;
}

.universal-page .trust-line {
  margin: 0.9rem auto 0;
  font-size: clamp(0.58rem, 0.7vw, 0.7rem);
  letter-spacing: 0.045em;
}

.chapter-panel,
.universal-page .contact__panel {
  position: relative;
  z-index: 3;
  width: min(100%, 58rem);
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid rgba(38, 56, 184, 0.58);
  background:
    linear-gradient(rgba(248, 244, 235, 0.86), rgba(248, 244, 235, 0.95)),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(38, 56, 184, 0.02) 3px 4px);
  box-shadow:
    0 0 0 0.4rem rgba(244, 240, 231, 0.72),
    0 0 0 0.46rem rgba(38, 56, 184, 0.34),
    0 2.5rem 5rem -3.7rem rgba(23, 41, 136, 0.5);
  backdrop-filter: blur(2px);
}

.chapter-panel--center {
  width: min(48rem, 52vw);
  margin-top: clamp(2rem, 5vw, 5rem);
  text-align: center;
}

.chapter-panel--problem {
  width: min(51rem, 55vw);
  margin-top: clamp(1rem, 3vw, 3rem);
}

.chapter-panel--wide {
  width: min(100%, 76rem);
}

.chapter-panel--offer {
  width: min(100%, 60rem);
}

.chapter-panel--portfolio {
  width: min(100%, var(--max));
  background: rgba(248, 244, 235, 0.82);
}

.chapter-panel--faq {
  width: min(100%, 60rem);
}

.chapter-panel h2,
.universal-page .contact__panel h2 {
  max-width: 16ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 6rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.043em;
  text-wrap: balance;
}

.chapter-panel--center h2,
.chapter-panel--wide > .reveal h2,
.chapter-panel--wide > h2,
.chapter-panel--portfolio .portfolio__head h2 {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.chapter-panel--wide > .reveal .section-index,
.chapter-panel--wide > .section-index,
.chapter-panel--portfolio .section-index {
  text-align: center;
}

.chapter-panel p,
.chapter-panel li,
.universal-page .contact__panel p {
  overflow-wrap: anywhere;
}

.chapter-panel blockquote {
  margin: 2rem 0 0;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-style: normal;
  line-height: 1.35;
}

.audience__list {
  margin: 1.6rem auto 0;
  font-size: clamp(0.75rem, 1vw, 0.92rem);
  font-weight: 700;
  line-height: 2;
}

.pain-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.pain-list li {
  padding: 0.8rem 1rem;
  border-left: 2px solid var(--ink);
  background: rgba(244, 240, 231, 0.74);
}

.table-shell {
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: rgba(244, 240, 231, 0.9);
}

.comparison-table,
.value-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td,
.value-table th,
.value-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--rule);
  text-align: left;
  vertical-align: top;
}

.comparison-table th + th,
.comparison-table td + td,
.value-table th + th,
.value-table td + td {
  border-left: 1px solid var(--rule);
}

.comparison-table th,
.value-table th {
  color: var(--paper);
  background: var(--ink-deep);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-table td,
.value-table td {
  font-size: clamp(0.7rem, 0.85vw, 0.82rem);
  line-height: 1.5;
}

.value-table th:last-child,
.value-table td:last-child {
  width: 12rem;
  white-space: nowrap;
  text-align: right;
}

.comparison-table tbody tr:last-child td,
.value-table tbody tr:last-child td {
  border-bottom: 0;
}

.value-table__total td {
  background: rgba(38, 56, 184, 0.1);
}

.value-table__price td {
  color: var(--paper);
  background: var(--ink-deep);
  font-size: 0.85rem;
}

.chapter-coda {
  max-width: 58rem;
  margin: 2rem auto 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.35;
  text-align: center;
}

.universal-page .process {
  min-height: clamp(64rem, 72vw, 76rem);
  padding-top: clamp(8rem, 10vw, 11rem);
}

.universal-page .process-grid {
  width: 100%;
  margin-top: 2.5rem;
}

.universal-page .process-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.universal-page .process-step {
  aspect-ratio: 1 / 1;
  align-self: start;
  min-height: 0;
  padding: clamp(1.25rem, 1.8vw, 1.75rem);
  border: 1px solid var(--ink);
  border-radius: 0;
  overflow: hidden;
  background: rgba(244, 240, 231, 0.91);
  text-align: left;
}

.universal-page .process-step h3 {
  margin: clamp(0.65rem, 1vw, 1rem) 0 0;
  font-size: clamp(1.25rem, 1.55vw, 1.75rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.universal-page .process-step p {
  margin: auto 0 0;
  font-size: clamp(0.64rem, 0.72vw, 0.72rem);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.universal-page .offer {
  min-height: 88rem;
}

.chapter-panel--offer > .button,
.universal-page .pricing .button {
  margin-top: 2rem;
}

.universal-page .portfolio {
  min-height: clamp(72rem, 82vw, 86rem);
  padding-top: clamp(8rem, 11vw, 12rem);
}

.universal-page .portfolio__head {
  width: min(52rem, 100%);
  padding: 0;
  background: transparent;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: 2.5rem;
}

.proof-card {
  min-width: 0;
  padding: 0.65rem;
  border: 1px solid var(--ink);
  background: var(--panel-strong);
  box-shadow: 0 0 0 0.35rem var(--paper), 0 0 0 0.42rem var(--ink);
  transition: transform 260ms ease, background-color 260ms ease;
}

.proof-card:nth-child(2) {
  transform: translateY(2rem);
}

.proof-card:hover {
  transform: translateY(-0.45rem);
  background: #fffdf7;
}

.proof-card:nth-child(2):hover {
  transform: translateY(1.55rem);
}

.proof-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--ink);
  object-fit: contain;
  background: #050711;
  filter: grayscale(1) sepia(1) hue-rotate(176deg) saturate(4.2) contrast(1.08);
}

.proof-card > span {
  display: block;
  margin: 1rem 0 0.4rem;
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.1vw, 2.35rem);
  font-weight: 400;
  line-height: 1.05;
}

.proof-card p {
  margin: 1rem 0 0;
  font-size: 0.72rem;
}

.chapter-panel--portfolio > blockquote {
  max-width: 66rem;
  margin: 5rem auto 0;
  text-align: center;
}

.universal-page .guarantees {
  min-height: clamp(66rem, 74vw, 78rem);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.guarantee-card {
  min-height: 17rem;
  padding: 1.6rem;
  border: 1px solid var(--ink);
  background: var(--panel-strong);
}

.guarantee-card > span {
  display: block;
  font-size: 2rem;
}

.guarantee-card p {
  margin: 1.4rem 0 0;
  font-size: 0.78rem;
}

.universal-page .pricing {
  min-height: clamp(72rem, 80vw, 85rem);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.price-card {
  position: relative;
  min-height: 18rem;
  padding: 1.5rem;
  border: 1px solid var(--ink);
  background: var(--panel-strong);
}

.price-card--featured {
  color: var(--paper);
  background: var(--ink-deep);
  transform: translateY(-1.2rem);
  box-shadow: inset 0 0 0 0.4rem var(--paper), inset 0 0 0 0.48rem var(--ink-deep);
}

.price-card--featured > span {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card__name {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 2.4rem 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.price-card p:last-child {
  margin: 0;
  font-size: 0.72rem;
}

.care-plan {
  margin: 2rem 0 0;
  padding: 1.3rem;
  border: 1px solid var(--ink);
  background: var(--panel-strong);
  text-align: center;
}

.universal-page .faq {
  min-height: clamp(72rem, 78vw, 82rem);
  padding-top: clamp(9rem, 12vw, 13rem);
}

.universal-page .faq__head {
  text-align: left;
}

.universal-page .faq__head h2 {
  margin-left: 0;
  text-align: left;
}

.universal-page .faq-list {
  margin-top: 2rem;
}

.universal-page .contact {
  min-height: 98rem;
  padding-top: clamp(9rem, 12vw, 13rem);
}

.universal-page .contact__panel {
  width: min(100%, 60rem);
  margin-left: auto;
}

.scarcity {
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  color: var(--paper);
  background: var(--ink-deep);
}

.scarcity h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.scarcity p {
  margin: 0.8rem 0 0;
  font-size: 0.72rem;
}

.universal-page .contact__intro {
  max-width: 44rem;
}

.form-question {
  min-width: 0;
  margin: 0 0 1.8rem;
  padding: 1.2rem;
  border: 1px solid var(--rule);
}

.form-question legend {
  padding: 0 0.6rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.form-question legend span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-right: 0.45rem;
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.universal-page .lead-form {
  margin-top: 2.2rem;
}

.universal-page .lead-form__footer button {
  max-width: 29rem;
}

.universal-page .site-footer {
  margin-top: calc(0rem - var(--join));
  padding-top: calc(var(--section-space) + var(--join));
  background:
    linear-gradient(to bottom, transparent, rgba(23, 41, 136, 0.94) calc(var(--join) + 4rem)),
    var(--ink-deep);
  clip-path: none;
  box-shadow: 0 -3rem 6rem -4rem rgba(23, 41, 136, 0.5);
}

.universal-page .site-footer__brand p {
  max-width: 37rem;
  margin-top: 0.6rem;
  font-family: var(--mono);
  font-size: 0.75rem;
}

@media (max-width: 74rem) {
  .universal-page .site-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 4.8rem;
  }

  .universal-page .site-header .wordmark {
    grid-column: 1;
    justify-self: start;
  }

  .universal-page .site-header .menu-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .universal-page .site-header .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    background: rgba(244, 240, 231, 0.96);
  }

  .chapter-panel--center,
  .chapter-panel--problem {
    width: min(100%, 52rem);
  }

  .universal-page .hero__content {
    width: min(48rem, 68vw);
  }

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

@media (max-width: 58rem) {
  .universal-page .hero {
    height: auto;
    min-height: 0;
    padding-top: calc(56.28vw + 2rem);
    padding-bottom: 5rem;
  }

  .universal-page .hero__content {
    width: min(100%, 45rem);
    padding: 1.7rem;
    border: 1px solid rgba(38, 56, 184, 0.34);
    background: rgba(248, 244, 235, 0.92);
  }

  .universal-page .art-chapter {
    min-height: 0;
    padding-top: calc(56.28vw + 3rem);
  }

  .chapter-panel {
    width: 100%;
    margin-top: 0;
  }

  .universal-page .process,
  .universal-page .offer,
  .universal-page .portfolio,
  .universal-page .guarantees,
  .universal-page .pricing,
  .universal-page .faq,
  .universal-page .contact {
    min-height: 0;
    padding-top: calc(56.28vw + 3rem);
  }

  .universal-page .process-grid--three,
  .proof-grid,
  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .universal-page .process-step,
  .guarantee-card {
    min-height: 0;
  }

  .proof-card:nth-child(2),
  .proof-card:nth-child(2):hover,
  .price-card--featured {
    transform: none;
  }

  .chapter-panel--portfolio > blockquote {
    margin-top: 2.5rem;
  }

  .universal-page .contact__panel {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 40rem) {
  :root {
    --announcement-h: 4.5rem;
    --join: 2.5rem;
  }

  .announcement {
    align-content: center;
    flex-wrap: wrap;
    gap: 0.15rem 0.4rem;
    padding-right: 0.8rem;
    padding-left: 0.8rem;
    font-size: 0.58rem;
  }

  .universal-page .site-header__inner {
    min-height: 4.15rem;
  }

  .universal-page .hero {
    padding-top: calc(56.28vw + 2rem);
  }

  .universal-page .hero__content {
    padding: 1.35rem 1rem;
  }

  .universal-page .hero h1 {
    font-size: clamp(2.55rem, 12.2vw, 4rem);
  }

  .universal-page .hero__lead {
    font-size: 0.72rem;
  }

  .chapter-panel,
  .universal-page .contact__panel {
    padding: 1.15rem;
    box-shadow:
      0 0 0 0.22rem rgba(244, 240, 231, 0.78),
      0 0 0 0.27rem rgba(38, 56, 184, 0.32);
  }

  .chapter-panel h2,
  .universal-page .contact__panel h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .chapter-panel blockquote {
    padding: 1rem 0.5rem;
    font-size: 1.2rem;
  }

  .comparison-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table tr + tr {
    border-top: 2px solid var(--ink);
  }

  .comparison-table td,
  .comparison-table td + td {
    border-left: 0;
  }

  .comparison-table td::before {
    display: block;
    margin-bottom: 0.4rem;
    content: attr(data-label);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .comparison-table td:last-child {
    color: var(--paper);
    background: var(--ink-deep);
  }

  .value-table {
    table-layout: auto;
  }

  .value-table th,
  .value-table td {
    padding: 0.7rem 0.55rem;
  }

  .value-table th:last-child,
  .value-table td:last-child {
    width: 6.8rem;
    white-space: normal;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 0;
  }

  .proof-card h3 {
    font-size: 1.8rem;
  }

  .form-question {
    padding: 0.85rem;
  }

  .universal-page .site-footer {
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }
}
