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

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/fonts/bricolage-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/fonts/bricolage-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

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

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

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

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/plex-mono-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --paper: #fbf8f0;
  --paper-deep: #efe9dc;
  --paper-white: #fffdfa;
  --ink: #153440;
  --ink-soft: #45616b;
  --ink-muted: #536b74;
  --raspberry: #cf3655;
  --raspberry-dark: #ad2945;
  --teal: #0f7b76;
  --teal-dark: #075a56;
  --saffron: #f5bc46;
  --sky: #dceff0;
  --line: rgba(21, 52, 64, 0.14);
  --white-line: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 18px 45px rgba(28, 51, 59, 0.09);
  --shadow-lg: 0 32px 90px rgba(22, 44, 52, 0.18);
  --shell: 1320px;
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Manrope", sans-serif;
  --utility: "IBM Plex Mono", monospace;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
}

.shell {
  width: min(var(--shell), calc(100% - 96px));
  margin-inline: auto;
}

.section {
  padding-block: 148px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 17px;
  border-radius: 8px;
  color: white;
  background: var(--ink);
  font-weight: 700;
  transform: translateY(-150%);
}

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

.announcement {
  position: relative;
  z-index: 40;
  min-height: 38px;
  color: white;
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.announcement__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.announcement span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.announcement span:first-child {
  color: #ffe39b;
}

.announcement svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.announcement i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
}

.site-header {
  position: sticky;
  z-index: 35;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(251, 248, 240, 0.82);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 7px 30px rgba(24, 48, 57, 0.06);
}

.site-header__inner {
  display: flex;
  height: 86px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
  line-height: 0.89;
  letter-spacing: -0.045em;
}

.brand__mark {
  width: 45px;
  height: 40px;
  overflow: visible;
  fill: none;
  stroke: var(--raspberry);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.brand__mark .brand__spark {
  fill: var(--saffron);
  stroke: var(--saffron);
  stroke-width: 0.8;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 700;
}

.main-nav > a {
  position: relative;
  padding-block: 12px;
}

.main-nav > a::after {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--raspberry);
  transition: width 180ms ease;
}

.main-nav > a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 27px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.button--small {
  min-height: 42px;
  padding-inline: 20px;
  font-size: 12px;
}

.button--outline {
  border: 1.5px solid var(--ink);
  background: transparent;
}

.button--outline:hover {
  color: white;
  background: var(--ink);
}

.button--primary {
  color: white;
  background: var(--raspberry);
  box-shadow: 0 13px 30px rgba(200, 50, 81, 0.2);
}

.button--primary:hover {
  background: var(--raspberry-dark);
  box-shadow: 0 17px 35px rgba(200, 50, 81, 0.27);
}

.button--primary svg {
  width: 19px;
  margin-left: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  display: grid;
  min-height: 700px;
  padding-block: 55px 88px;
  align-items: center;
  grid-template-columns: minmax(480px, 0.88fr) minmax(610px, 1.12fr);
  gap: 30px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -125px;
  left: -265px;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(15, 123, 118, 0.12);
  border-radius: 50%;
  content: "";
}

.hero__copy {
  position: relative;
  z-index: 5;
}

.eyebrow {
  display: inline-flex;
  margin: 0;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.105em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--raspberry);
}

.hero h1 {
  max-width: 675px;
  margin: 20px 0 26px;
  font-size: clamp(58px, 5.2vw, 82px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.067em;
}

.hero h1 em {
  color: var(--teal);
  font-style: normal;
  font-weight: 400;
}

.hero h1 mark {
  position: relative;
  z-index: 0;
  color: var(--ink);
  background: transparent;
  white-space: nowrap;
}

.hero h1 mark::after {
  position: absolute;
  z-index: -1;
  right: -5px;
  bottom: 5px;
  left: -5px;
  height: 19px;
  border-radius: 50%;
  content: "";
  background: var(--saffron);
  opacity: 0.72;
  transform: rotate(-1.5deg) skewX(-8deg);
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 31px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid rgba(21, 52, 64, 0.33);
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  line-height: 2.15;
}

.text-link span {
  color: var(--raspberry);
}

.assurances {
  display: flex;
  margin: 34px 0 0;
  padding: 0;
  gap: 25px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.assurances li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.assurances svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.hero-stage {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}

.hero-stage__shape {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 500px;
  height: 500px;
  border-radius: 46% 54% 43% 57% / 50% 43% 57% 50%;
  background: var(--sky);
  transform: rotate(-7deg);
}

.hero-stage__shape::before {
  position: absolute;
  top: 39px;
  right: 43px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  content: "";
  background: var(--saffron);
  box-shadow: 0 0 0 18px rgba(245, 188, 70, 0.18);
}

.hero-stage__shape::after {
  position: absolute;
  bottom: 59px;
  left: 35px;
  width: 72px;
  height: 30px;
  border: 2px solid rgba(15, 123, 118, 0.28);
  border-radius: 50%;
  content: "";
  transform: rotate(-20deg);
}

.price-seal {
  position: absolute;
  z-index: 9;
  top: 3px;
  right: -3px;
  display: flex;
  width: 150px;
  height: 150px;
  padding: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-direction: column;
  color: white;
  background: var(--raspberry);
  box-shadow: 0 18px 35px rgba(161, 37, 64, 0.25);
  text-align: center;
  transform: rotate(7deg);
}

.price-seal small,
.price-seal span {
  font-size: 8px;
  line-height: 1.35;
}

.price-seal strong {
  margin-block: 5px;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1;
}

.open-book {
  position: absolute;
  z-index: 3;
  top: 117px;
  right: 6px;
  width: 630px;
  height: 390px;
  transform: rotateY(-4deg) rotateZ(3deg);
  transform-style: preserve-3d;
}

.open-book__pages {
  position: absolute;
  z-index: 1;
  right: 8px;
  bottom: -10px;
  left: 9px;
  height: 27px;
  border-radius: 0 0 20px 20px;
  background: repeating-linear-gradient(0deg, #ddd7c9 0 1px, #faf6ec 1px 3px);
  box-shadow: 0 16px 23px rgba(32, 43, 46, 0.18);
}

.open-book__art {
  position: absolute;
  z-index: 3;
  inset: 0;
  overflow: hidden;
  border: 8px solid var(--paper-white);
  border-radius: 6px 15px 15px 6px;
  background: white;
  box-shadow: var(--shadow-lg);
  clip-path: polygon(1% 3%, 49.4% 0, 50% 2%, 50.6% 0, 99% 3%, 100% 96%, 51% 100%, 50% 97%, 49% 100%, 0 96%);
}

.open-book__art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.open-book__gutter,
.quality-book__gutter {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 27px;
  background: linear-gradient(90deg, rgba(8, 22, 28, 0.15), rgba(255, 255, 255, 0.32) 48%, rgba(8, 22, 28, 0.14));
  transform: translateX(-50%);
}

.page-copy {
  position: absolute;
  z-index: 4;
  top: 49px;
  right: 38px;
  width: 215px;
  padding: 16px 18px;
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 252, 242, 0.91);
  box-shadow: 0 10px 25px rgba(7, 22, 28, 0.14);
}

.page-copy small,
.quality-book__copy small {
  display: block;
  margin-bottom: 6px;
  color: var(--raspberry-dark);
  font-family: var(--utility);
  font-size: 6px;
  letter-spacing: 0.09em;
}

.page-copy p,
.quality-book__copy p {
  margin: 0;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
}

.cover-book {
  position: absolute;
  z-index: 7;
  bottom: -10px;
  left: 3px;
  width: 210px;
  height: 210px;
  overflow: hidden;
  border: 6px solid var(--paper-white);
  border-radius: 4px 10px 10px 4px;
  box-shadow: 0 28px 55px rgba(18, 38, 46, 0.28);
  transform: rotate(-9deg);
}

.cover-book::before {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  content: "";
  background: linear-gradient(90deg, rgba(5, 17, 21, 0.34), transparent);
}

.cover-book img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-book__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 31, 39, 0.09), rgba(8, 24, 30, 0.87));
}

.cover-book__kicker,
.cover-book strong,
.cover-book > small {
  position: absolute;
  z-index: 3;
  right: 16px;
  left: 20px;
}

.cover-book__kicker {
  bottom: 87px;
  color: white;
  font-family: var(--utility);
  font-size: 5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cover-book strong {
  bottom: 39px;
  color: white;
  font-family: var(--display);
  font-size: 22px;
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.cover-book > small {
  bottom: 13px;
  color: #ffe5a2;
  font-size: 6px;
  font-weight: 700;
}

.stage-note {
  position: absolute;
  z-index: 10;
  display: flex;
  min-width: 164px;
  padding: 12px 14px;
  align-items: center;
  border: 1px solid rgba(21, 52, 64, 0.08);
  border-radius: 13px;
  gap: 10px;
  background: rgba(255, 253, 250, 0.94);
  box-shadow: 0 13px 35px rgba(35, 54, 60, 0.13);
  backdrop-filter: blur(8px);
}

.stage-note--one {
  top: 97px;
  left: 0;
}

.stage-note--two {
  right: 18px;
  bottom: 8px;
}

.stage-note span,
.stage-note b,
.stage-note small {
  display: block;
}

.stage-note b {
  margin-bottom: 2px;
  font-family: var(--display);
  font-size: 10px;
}

.stage-note small {
  color: var(--ink-muted);
  font-size: 9px;
}

.dot {
  width: 11px;
  height: 11px;
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 1px currentColor;
}

.dot--pink {
  color: var(--raspberry);
  background: var(--raspberry);
}

.dot--teal {
  color: var(--teal);
  background: var(--teal);
}

.proof {
  position: relative;
  z-index: 8;
  display: grid;
  min-height: 112px;
  margin-top: -22px;
  padding-inline: 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  background: rgba(255, 253, 250, 0.78);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.proof > div {
  padding-inline: 24px;
}

.proof strong,
.proof span {
  display: block;
}

.proof strong {
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: -0.025em;
}

.proof span {
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 600;
}

.proof > i {
  width: 1px;
  height: 45px;
  background: var(--line);
}

.section-heading--center {
  max-width: 780px;
  margin: 0 auto 82px;
  text-align: center;
}

.section-heading h2,
.quality h2,
.pricing h2,
.privacy h2,
.faq h2,
.final-cta h2 {
  margin: 17px 0 20px;
  font-size: clamp(42px, 4vw, 61px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.056em;
}

.section-heading--center > p:last-child {
  max-width: 625px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.72;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 78px;
}

.process-line {
  position: absolute;
  z-index: -1;
  top: 70px;
  right: 12%;
  left: 12%;
  width: 76%;
  height: 120px;
  overflow: visible;
  fill: none;
  stroke: rgba(15, 123, 118, 0.24);
  stroke-dasharray: 5 9;
  stroke-linecap: round;
  stroke-width: 2;
}

.process-card {
  position: relative;
  text-align: center;
}

.step-number {
  position: absolute;
  z-index: 5;
  top: -14px;
  left: calc(50% - 119px);
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid var(--paper);
  border-radius: 50%;
  color: white;
  background: var(--teal);
  font-family: var(--utility);
  font-size: 9px;
}

.step-art {
  position: relative;
  display: flex;
  width: 255px;
  height: 220px;
  margin: 0 auto 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21, 52, 64, 0.08);
  border-radius: 28px;
  background: var(--paper-white);
  box-shadow: 0 24px 55px rgba(34, 58, 67, 0.09);
}

.upload-art {
  transform: rotate(-2deg);
}

.portrait {
  position: relative;
  width: 106px;
  height: 140px;
  overflow: hidden;
  border-radius: 18px;
  background: #dbeae9;
}

.portrait::before,
.portrait::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  background: rgba(15, 123, 118, 0.12);
}

.portrait::before {
  top: -14px;
  right: -19px;
  width: 68px;
  height: 68px;
}

.portrait::after {
  bottom: -28px;
  left: -23px;
  width: 78px;
  height: 78px;
}

.portrait i {
  position: absolute;
  z-index: 2;
  top: 27px;
  left: 34px;
  width: 39px;
  height: 45px;
  border-radius: 44% 44% 47% 47%;
  background: var(--saffron);
  box-shadow: inset 0 8px 0 #6d4632;
}

.portrait b {
  position: absolute;
  z-index: 1;
  right: 19px;
  bottom: -5px;
  left: 19px;
  height: 73px;
  border-radius: 40px 40px 0 0;
  background: var(--raspberry);
}

.upload-copy {
  display: flex;
  width: 66px;
  margin-left: 18px;
  flex-direction: column;
  gap: 9px;
}

.upload-copy i {
  height: 6px;
  border-radius: 4px;
  background: #dce6e7;
}

.upload-copy i:nth-child(2) { width: 72%; }
.upload-copy i:nth-child(3) { width: 48%; background: #f8d0d7; }

.check {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--teal);
  font-size: 14px;
  font-weight: 700;
}

.choices-art {
  gap: 8px;
  transform: rotate(2deg);
}

.choices-art > span {
  width: 62px;
  height: 88px;
  overflow: hidden;
  border: 3px solid white;
  border-radius: 18px;
  box-shadow: 0 0 0 1px #d9e0df;
}

.choices-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 49% 48%;
}

.choices-art > span:first-child img { filter: hue-rotate(-13deg) saturate(0.8); }
.choices-art > span:nth-child(3) img { filter: hue-rotate(22deg) saturate(0.9); }

.choices-art > .is-selected {
  border-color: var(--saffron);
  box-shadow: 0 0 0 2px var(--teal);
  transform: translateY(-12px) scale(1.08);
}

.choices-art small {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  color: var(--ink-muted);
  font-size: 8px;
  font-weight: 700;
}

.approval-art {
  transform: rotate(-1deg);
}

.mini-cover {
  position: relative;
  z-index: 2;
  width: 116px;
  height: 144px;
  overflow: hidden;
  border: 5px solid white;
  border-radius: 4px 10px 10px 4px;
  box-shadow: 0 18px 30px rgba(16, 39, 48, 0.18);
  transform: rotate(-4deg);
}

.mini-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(7, 27, 34, 0.77));
}

.mini-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-cover b {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 13px;
  left: 11px;
  color: white;
  font-family: var(--display);
  font-size: 17px;
  line-height: 0.95;
  text-align: left;
}

.mini-pages {
  position: absolute;
  z-index: 1;
  right: 50px;
  width: 106px;
  height: 134px;
  border-radius: 4px 10px 10px 4px;
  background: repeating-linear-gradient(90deg, #f2eee4 0 2px, white 2px 4px);
  transform: rotate(7deg);
}

.approval-art > small {
  position: absolute;
  z-index: 4;
  right: 16px;
  bottom: 17px;
  padding: 8px 10px;
  border-radius: 9px;
  color: white;
  background: var(--teal);
  font-family: var(--utility);
  font-size: 7px;
  font-weight: 600;
  transform: rotate(-5deg);
}

.process-card h3 {
  margin-bottom: 11px;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.process-card > p {
  max-width: 310px;
  margin: 0 auto;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.7;
}

.story-options {
  margin-top: 88px;
  padding: 27px 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 250, 0.72);
  box-shadow: var(--shadow-sm);
}

.story-options > p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.story-options > p span {
  color: var(--raspberry-dark);
  font-family: var(--utility);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-options ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.story-options li {
  display: grid;
  padding: 0 24px;
  border-left: 1px solid var(--line);
  align-items: center;
  grid-template-columns: 34px 1fr;
}

.story-options li:first-child {
  border-left: 0;
}

.story-options i {
  grid-row: 1 / 3;
  color: var(--teal);
  font-family: var(--utility);
  font-size: 8px;
  font-style: normal;
}

.story-options strong,
.story-options small {
  display: block;
}

.story-options strong {
  margin-bottom: 3px;
  font-family: var(--display);
  font-size: 13px;
}

.story-options small {
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.45;
}

.quality {
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.quality__inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 105px;
}

.quality__visual {
  position: relative;
  min-height: 570px;
}

.quality__visual::before {
  position: absolute;
  top: 22px;
  right: -75px;
  width: 345px;
  height: 345px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.quality-book {
  position: absolute;
  top: 55px;
  left: -95px;
  width: 770px;
  height: 455px;
  overflow: hidden;
  border: 8px solid white;
  border-radius: 6px 14px 14px 6px;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.35);
  clip-path: polygon(1% 3%, 49.5% 0, 50% 2%, 50.5% 0, 99% 3%, 100% 97%, 51% 100%, 50% 97%, 49% 100%, 0 97%);
  transform: rotate(-3deg);
}

.quality-book > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-book__copy {
  position: absolute;
  top: 44px;
  right: 41px;
  width: 238px;
  padding: 18px 20px;
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 252, 242, 0.91);
  box-shadow: 0 10px 30px rgba(7, 22, 28, 0.15);
}

.quality-book__copy p {
  font-size: 11px;
}

.quality-tag {
  position: absolute;
  z-index: 5;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--saffron);
  font-family: var(--utility);
  font-size: 8px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.quality-tag--face {
  top: 28px;
  left: 160px;
  transform: rotate(2deg);
}

.quality-tag--text {
  right: 13px;
  bottom: 35px;
  color: white;
  background: var(--raspberry);
  transform: rotate(-3deg);
}

.eyebrow--light {
  color: #a8d7d3;
}

.quality__copy h2 {
  max-width: 550px;
  color: white;
}

.quality__copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.78;
}

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

.quality-list li {
  display: grid;
  padding: 17px 0;
  border-top: 1px solid var(--white-line);
  align-items: start;
  grid-template-columns: 48px 1fr;
}

.quality-list li:last-child {
  border-bottom: 1px solid var(--white-line);
}

.quality-list li > span {
  color: var(--saffron);
  font-family: var(--utility);
  font-size: 9px;
}

.quality-list strong,
.quality-list small {
  display: block;
}

.quality-list strong {
  margin-bottom: 5px;
  font-size: 13px;
}

.quality-list small {
  color: rgba(255, 255, 255, 0.57);
  font-size: 12px;
  line-height: 1.55;
}

.pricing {
  padding-bottom: 128px;
}

.pricing-heading {
  display: flex;
  margin-bottom: 65px;
  align-items: end;
  justify-content: space-between;
  gap: 80px;
}

.pricing-heading h2 {
  margin-bottom: 0;
}

.pricing-heading > p {
  max-width: 440px;
  margin: 0 0 7px;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.72;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 550px;
  padding: 34px 34px 29px;
  border: 1px solid var(--line);
  border-radius: 28px;
  flex-direction: column;
  background: rgba(255, 253, 250, 0.78);
}

.price-card--featured {
  border-color: var(--ink);
  color: white;
  background: var(--ink);
  box-shadow: 0 28px 70px rgba(18, 45, 56, 0.22);
  transform: translateY(-18px);
}

.popular {
  position: absolute;
  top: -15px;
  right: 29px;
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--saffron);
  font-family: var(--utility);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card__title {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 15px;
}

.price-card__title small,
.price-card__title h3 {
  display: block;
  margin: 0;
}

.price-card__title small {
  margin-bottom: 4px;
  color: #536b74;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-card--featured .price-card__title small {
  color: rgba(255, 255, 255, 0.56);
}

.price-card__title h3 {
  font-size: 19px;
  letter-spacing: -0.03em;
}

.format-icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 16px;
  color: var(--teal-dark);
  background: var(--sky);
  font-family: var(--utility);
  font-size: 10px;
}

.format-icon--soft {
  color: var(--raspberry-dark);
  background: #fbe0e5;
}

.format-icon--hard {
  color: var(--ink);
  background: var(--saffron);
}

.format-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.price {
  display: flex;
  margin: 26px 0 12px;
  align-items: flex-start;
  font-family: var(--display);
  letter-spacing: -0.06em;
}

.price strong {
  font-size: 51px;
  line-height: 1;
}

.price span {
  margin: 7px 0 0 6px;
  font-size: 16px;
  font-weight: 700;
}

.price-card__caption {
  min-height: 58px;
  margin-bottom: 18px;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.65;
}

.price-card--featured .price-card__caption {
  color: rgba(255, 255, 255, 0.62);
}

.price-card ul {
  display: flex;
  margin: 3px 0 27px;
  padding: 19px 0 0;
  border-top: 1px solid var(--line);
  flex: 1;
  flex-direction: column;
  gap: 13px;
  list-style: none;
}

.price-card--featured ul {
  border-color: var(--white-line);
}

.price-card li {
  position: relative;
  padding-left: 23px;
  font-size: 12px;
  font-weight: 700;
}

.price-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border-radius: 50%;
  color: white;
  content: "✓";
  background: var(--teal);
  font-size: 8px;
}

.price-card--featured li::before {
  color: var(--ink);
  background: var(--saffron);
}

.button--price {
  width: 100%;
  min-height: 48px;
  border: 1.5px solid var(--ink);
  background: transparent;
  font-size: 11px;
}

.button--price:hover {
  color: white;
  background: var(--ink);
}

.button--price-featured {
  color: var(--ink);
  border-color: var(--saffron);
  background: var(--saffron);
}

.button--price-featured:hover {
  color: var(--ink);
  background: #ffd473;
}

.pricing-note {
  display: flex;
  margin: 31px 0 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.pricing-note svg {
  width: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.privacy {
  display: grid;
  min-height: 565px;
  margin-bottom: 148px;
  padding: 78px 88px;
  align-items: center;
  border-radius: 36px;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 84px;
  background: var(--sky);
}

.privacy h2 {
  max-width: 630px;
  margin-top: 19px;
  font-size: 47px;
}

.privacy__copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 26px;
  color: #45636d;
  font-size: 13px;
  line-height: 1.77;
}

.privacy__diagram {
  position: relative;
  min-height: 390px;
}

.privacy__diagram::before,
.privacy__diagram::after {
  position: absolute;
  border: 1px dashed rgba(15, 123, 118, 0.4);
  border-radius: 50%;
  content: "";
}

.privacy__diagram::before { inset: 35px 102px; }
.privacy__diagram::after { inset: 82px 148px; }

.privacy__core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: 207px;
  height: 207px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-direction: column;
  color: white;
  background: var(--teal);
  box-shadow: 0 26px 60px rgba(9, 91, 87, 0.24);
  text-align: center;
  transform: translate(-50%, -50%);
}

.privacy__core svg {
  width: 55px;
  margin-bottom: 12px;
  fill: none;
  stroke: var(--saffron);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.privacy__core strong {
  font-family: var(--display);
  font-size: 14px;
}

.privacy__core small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 10px;
}

.privacy-pill {
  position: absolute;
  z-index: 4;
  display: flex;
  min-width: 185px;
  padding: 13px 16px;
  align-items: center;
  border: 1px solid rgba(21, 52, 64, 0.08);
  border-radius: 999px;
  gap: 10px;
  background: var(--paper-white);
  box-shadow: 0 14px 30px rgba(28, 69, 78, 0.09);
  font-size: 10px;
  font-weight: 800;
}

.privacy-pill i {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--raspberry);
  font-family: var(--utility);
  font-size: 7px;
  font-style: normal;
}

.privacy-pill--one { top: 25px; left: 15px; }
.privacy-pill--two { top: 40px; right: -4px; }
.privacy-pill--three { bottom: 38px; left: -3px; }
.privacy-pill--four { right: 13px; bottom: 25px; }

.faq {
  display: grid;
  padding-top: 0;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 115px;
}

.faq h2 {
  max-width: 450px;
  margin-top: 19px;
  font-size: 48px;
}

.faq__heading > p:last-child {
  max-width: 430px;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.75;
}

.faq__list {
  border-top: 1px solid var(--line);
}

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

.faq summary {
  position: relative;
  display: flex;
  min-height: 72px;
  padding: 23px 52px 23px 0;
  align-items: center;
  cursor: pointer;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}

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

.faq summary span,
.faq summary span::after {
  position: absolute;
  width: 16px;
  height: 1.5px;
  content: "";
  background: var(--ink);
  transition: transform 180ms ease;
}

.faq summary span { right: 12px; }
.faq summary span::after { transform: rotate(90deg); }
.faq details[open] summary span::after { transform: rotate(0); }

.faq details p {
  max-width: 680px;
  margin: -4px 55px 24px 0;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.78;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 500px;
  margin-bottom: 88px;
  overflow: hidden;
  padding: 64px 88px;
  align-items: center;
  border-radius: 38px;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 78px;
  background: var(--saffron);
}

.final-cta::before {
  position: absolute;
  right: -150px;
  bottom: -240px;
  width: 510px;
  height: 510px;
  border: 2px solid rgba(21, 52, 64, 0.12);
  border-radius: 50%;
  content: "";
}

.final-cta__art {
  position: relative;
  min-height: 355px;
}

.final-cover {
  position: absolute;
  top: 10px;
  left: 58px;
  width: 285px;
  height: 285px;
  overflow: hidden;
  border: 8px solid var(--paper-white);
  border-radius: 5px 15px 15px 5px;
  box-shadow: 0 32px 60px rgba(84, 52, 14, 0.25);
  transform: rotate(-8deg);
}

.final-cover::before {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: 0;
  width: 13px;
  content: "";
  background: linear-gradient(90deg, rgba(4, 19, 24, 0.35), transparent);
}

.final-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(5, 25, 31, 0.84));
}

.final-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cover span {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 24px;
  left: 28px;
  color: white;
  font-family: var(--display);
  font-size: 35px;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.spark {
  position: absolute;
  fill: var(--raspberry);
}

.spark--one { top: 6px; right: 6px; width: 48px; }
.spark--two { bottom: 7px; left: 12px; width: 28px; fill: var(--teal); }

.final-cta__copy {
  position: relative;
  z-index: 3;
}

.final-cta__copy > small {
  font-family: var(--utility);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 750px;
  margin-block: 18px;
  font-size: 52px;
}

.final-cta__copy p {
  max-width: 600px;
  margin-bottom: 26px;
  color: rgba(21, 52, 64, 0.79);
  font-size: 12px;
  line-height: 1.75;
}

.button--dark {
  color: white;
  background: var(--ink);
}

.button--dark:hover {
  background: #0d2731;
}

.button--dark span {
  margin-left: 18px;
  color: var(--saffron);
  font-size: 17px;
}

.site-footer {
  padding-block: 48px;
  color: white;
  background: var(--ink);
}

.site-footer__inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1.5fr 1fr auto;
  gap: 48px;
}

.brand--footer .brand__mark {
  stroke: #ff91a4;
}

.site-footer__inner > p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 12px;
  line-height: 1.7;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  font-size: 10px;
  font-weight: 700;
}

.site-footer nav a:hover {
  color: var(--saffron);
}

.site-footer__inner > small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  white-space: nowrap;
}

.interest-dialog {
  width: min(560px, calc(100% - 32px));
  padding: 53px;
  border: 0;
  border-radius: 28px;
  color: var(--ink);
  background: var(--paper-white);
  box-shadow: 0 35px 100px rgba(5, 23, 30, 0.36);
}

.interest-dialog::backdrop {
  background: rgba(8, 29, 36, 0.72);
  backdrop-filter: blur(6px);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0 0 3px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  font-size: 25px;
  line-height: 1;
}

.dialog-close:hover {
  color: white;
  background: var(--ink);
}

.dialog-kicker {
  display: block;
  margin-bottom: 15px;
  color: var(--teal-dark);
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.interest-dialog h2 {
  max-width: 430px;
  margin: 0 0 17px;
  font-family: var(--display);
  font-size: 39px;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.interest-dialog p {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.75;
}

.dialog-mail {
  width: 100%;
  padding-inline: 18px;
  text-align: center;
}

.interest-dialog > small {
  display: block;
  margin-top: 14px;
  color: var(--ink-muted);
  font-size: 8px;
  text-align: center;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.js .reveal--delay {
  transition-delay: 100ms;
}

.js .reveal--delay-2 {
  transition-delay: 190ms;
}

@media (max-width: 1180px) {
  .shell {
    width: min(1050px, calc(100% - 48px));
  }

  .main-nav {
    gap: 19px;
  }

  .hero {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .hero h1 {
    font-size: 57px;
  }

  .hero-stage {
    min-height: 520px;
  }

  .hero-stage__shape {
    width: 450px;
    height: 450px;
  }

  .open-book {
    top: 116px;
    width: 520px;
    height: 330px;
  }

  .cover-book {
    width: 176px;
    height: 176px;
  }

  .cover-book__kicker { bottom: 72px; }
  .cover-book strong { bottom: 32px; font-size: 18px; }
  .cover-book > small { bottom: 10px; }

  .quality__inner {
    gap: 50px;
  }

  .quality-book {
    left: -160px;
  }

  .privacy {
    padding-inline: 55px;
  }
}

@media (max-width: 920px) {
  .shell {
    width: min(760px, calc(100% - 40px));
  }

  .section {
    padding-block: 110px;
  }

  .site-header__inner {
    height: 76px;
  }

  .menu-toggle {
    position: relative;
    z-index: 42;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    gap: 6px;
    background: var(--paper-white);
  }

  .menu-toggle i {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] i:first-of-type {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i:last-of-type {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 40;
    top: 0;
    right: 0;
    display: flex;
    width: min(390px, 100%);
    height: 100dvh;
    padding: 112px 34px 40px;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    background: var(--paper-white);
    box-shadow: -24px 0 60px rgba(21, 52, 64, 0.15);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav > a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 22px;
  }

  .main-nav > a::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    min-height: 52px;
    margin-top: 18px;
    color: white;
    border-color: var(--raspberry);
    background: var(--raspberry);
  }

  .hero {
    display: block;
    padding-top: 72px;
  }

  .hero__copy {
    max-width: 690px;
  }

  .hero h1 {
    font-size: clamp(53px, 9vw, 70px);
  }

  .hero-stage {
    min-height: 570px;
    margin-top: 52px;
  }

  .hero-stage__shape {
    right: 7%;
    width: 520px;
    height: 520px;
  }

  .open-book {
    right: 2%;
    width: 640px;
    height: 395px;
  }

  .cover-book {
    left: 4%;
    width: 205px;
    height: 205px;
  }

  .cover-book__kicker { bottom: 84px; }
  .cover-book strong { bottom: 39px; font-size: 22px; }
  .cover-book > small { bottom: 13px; }

  .proof {
    margin-top: 0;
    grid-template-columns: 1fr 1fr;
  }

  .proof > i {
    display: none;
  }

  .proof > div {
    padding-block: 20px;
  }

  .process-grid,
  .pricing-grid,
  .quality__inner,
  .privacy,
  .faq,
  .final-cta,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .process-grid {
    gap: 70px;
  }

  .story-options ul {
    grid-template-columns: 1fr 1fr;
  }

  .story-options li {
    min-height: 72px;
    border-bottom: 1px solid var(--line);
  }

  .story-options li:nth-child(odd) {
    border-left: 0;
  }

  .story-options li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .process-line {
    display: none;
  }

  .quality__copy {
    order: -1;
  }

  .quality__visual {
    min-height: 520px;
  }

  .quality-book {
    left: 50%;
    width: 720px;
    height: 425px;
    transform: translateX(-50%) rotate(-3deg);
  }

  .quality-tag--text {
    right: 4%;
  }

  .pricing-heading {
    display: block;
  }

  .pricing-heading > p {
    margin-top: 18px;
  }

  .pricing-grid {
    gap: 28px;
  }

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

  .price-card--featured {
    transform: none;
  }

  .privacy {
    margin-bottom: 110px;
    padding: 66px 50px;
    gap: 45px;
  }

  .privacy__diagram {
    min-height: 430px;
  }

  .faq {
    gap: 55px;
  }

  .final-cta {
    padding: 58px 52px;
    gap: 25px;
  }

  .final-cta__art {
    min-height: 330px;
  }

  .final-cover {
    left: 50%;
    transform: translateX(-50%) rotate(-8deg);
  }

  .site-footer__inner {
    justify-items: start;
    gap: 26px;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 86px;
  }

  .shell {
    width: calc(100% - 32px);
  }

  .section {
    padding-block: 88px;
  }

  .announcement {
    min-height: 32px;
    font-size: 8px;
  }

  .announcement__inner {
    min-height: 32px;
    gap: 7px;
  }

  .announcement span:first-child,
  .announcement i:first-of-type {
    display: none;
  }

  .announcement svg {
    display: none;
  }

  .site-header__inner {
    height: 68px;
  }

  .brand {
    font-size: 16px;
  }

  .brand__mark {
    width: 38px;
    height: 35px;
  }

  .hero {
    min-height: auto;
    padding-block: 55px 42px;
  }

  .hero::before {
    display: none;
  }

  .eyebrow {
    font-size: 8px;
  }

  .eyebrow > span {
    width: 22px;
  }

  .hero h1 {
    margin-block: 17px 21px;
    font-size: clamp(43px, 13vw, 58px);
    line-height: 0.97;
    letter-spacing: -0.06em;
  }

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

  .hero h1 mark::after {
    bottom: 3px;
    height: 12px;
  }

  .hero__lead {
    margin-bottom: 25px;
    font-size: 13px;
    line-height: 1.72;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    align-self: center;
  }

  .assurances {
    margin-top: 25px;
    flex-direction: column;
    gap: 11px;
  }

  .hero-stage {
    width: 100%;
    min-height: 400px;
    margin-top: 37px;
  }

  .hero-stage__shape {
    top: 12px;
    right: -17%;
    width: 355px;
    height: 355px;
  }

  .hero-stage__shape::before {
    top: 31px;
    right: 33px;
    width: 68px;
    height: 68px;
    box-shadow: 0 0 0 12px rgba(245, 188, 70, 0.18);
  }

  .price-seal {
    top: -4px;
    right: -5px;
    width: 99px;
    height: 99px;
    padding: 12px;
  }

  .price-seal small,
  .price-seal span {
    font-size: 6px;
  }

  .price-seal strong {
    margin-block: 3px;
    font-size: 12px;
  }

  .open-book {
    top: 90px;
    right: -15%;
    width: 440px;
    height: 275px;
  }

  .open-book__art {
    border-width: 5px;
  }

  .page-copy {
    top: 35px;
    right: 27px;
    width: 145px;
    padding: 10px 11px;
  }

  .page-copy p {
    font-size: 7px;
  }

  .cover-book {
    bottom: -2px;
    left: -3px;
    width: 132px;
    height: 132px;
    border-width: 4px;
  }

  .cover-book__kicker {
    right: 10px;
    bottom: 54px;
    left: 13px;
    font-size: 3px;
  }

  .cover-book strong {
    right: 10px;
    bottom: 25px;
    left: 13px;
    font-size: 14px;
  }

  .cover-book > small {
    right: 10px;
    bottom: 8px;
    left: 13px;
    font-size: 4px;
  }

  .stage-note {
    min-width: 125px;
    padding: 9px 10px;
    gap: 8px;
  }

  .stage-note--one {
    top: 74px;
    left: 0;
  }

  .stage-note--two {
    right: 0;
    bottom: -5px;
  }

  .stage-note b { font-size: 8px; }
  .stage-note small { font-size: 6px; }
  .dot { width: 9px; height: 9px; border-width: 2px; }

  .proof {
    min-height: auto;
    padding: 11px;
    border-radius: 18px;
  }

  .proof > div {
    padding: 15px 10px;
  }

  .proof strong {
    font-size: 13px;
  }

  .proof span {
    font-size: 9px;
    line-height: 1.5;
  }

  .section-heading--center {
    margin-bottom: 58px;
  }

  .section-heading h2,
  .quality h2,
  .pricing h2,
  .privacy h2,
  .faq h2,
  .final-cta h2 {
    font-size: 38px;
    letter-spacing: -0.05em;
  }

  .section-heading--center > p:last-child {
    font-size: 12px;
  }

  .process-grid {
    gap: 58px;
  }

  .story-options {
    margin-top: 64px;
    padding: 25px 18px 12px;
  }

  .story-options > p {
    margin-bottom: 14px;
  }

  .story-options ul {
    grid-template-columns: 1fr;
  }

  .story-options li,
  .story-options li:nth-child(odd),
  .story-options li:nth-last-child(-n + 2) {
    min-height: 66px;
    padding-inline: 10px;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .story-options li:last-child {
    border-bottom: 0;
  }

  .quality {
    padding-block: 88px 75px;
  }

  .quality__inner {
    gap: 35px;
  }

  .quality__copy > p:not(.eyebrow) {
    font-size: 12px;
  }

  .quality__visual {
    min-height: 325px;
  }

  .quality-book {
    top: 40px;
    width: 440px;
    height: 275px;
    border-width: 5px;
  }

  .quality-book__copy {
    top: 29px;
    right: 27px;
    width: 145px;
    padding: 10px 11px;
  }

  .quality-book__copy p {
    font-size: 7px;
  }

  .quality-tag {
    padding: 8px 10px;
    font-size: 6px;
  }

  .quality-tag--face {
    top: 17px;
    left: 15%;
  }

  .quality-tag--text {
    right: 2%;
    bottom: 3px;
  }

  .pricing {
    padding-bottom: 84px;
  }

  .pricing-heading {
    margin-bottom: 48px;
  }

  .price-card {
    padding: 30px 26px 25px;
  }

  .price strong {
    font-size: 46px;
  }

  .pricing-note {
    align-items: flex-start;
    line-height: 1.6;
  }

  .privacy {
    width: 100%;
    margin-bottom: 88px;
    padding: 66px 22px 48px;
    border-radius: 0;
  }

  .privacy h2 {
    font-size: 38px;
  }

  .privacy__copy > p:not(.eyebrow) {
    font-size: 12px;
  }

  .privacy__diagram {
    min-height: 410px;
  }

  .privacy__diagram::before { inset: 50px 24px; }
  .privacy__diagram::after { inset: 95px 68px; }

  .privacy__core {
    width: 176px;
    height: 176px;
  }

  .privacy__core svg {
    width: 45px;
  }

  .privacy-pill {
    min-width: 157px;
    padding: 10px 12px;
    font-size: 7px;
  }

  .privacy-pill--one { top: 24px; left: -2px; }
  .privacy-pill--two { top: 63px; right: -2px; }
  .privacy-pill--three { bottom: 52px; left: -2px; }
  .privacy-pill--four { right: -2px; bottom: 12px; }

  .faq {
    gap: 40px;
    padding-bottom: 88px;
  }

  .faq summary {
    min-height: 68px;
    padding-right: 40px;
    font-size: 14px;
  }

  .faq details p {
    margin-right: 35px;
    font-size: 12px;
  }

  .final-cta {
    width: 100%;
    min-height: auto;
    margin-bottom: 0;
    padding: 55px 22px 62px;
    border-radius: 0;
  }

  .final-cta__art {
    min-height: 280px;
  }

  .final-cover {
    width: 235px;
    height: 235px;
  }

  .final-cta h2 {
    font-size: 39px;
  }

  .final-cta__copy p {
    font-size: 12px;
  }

  .button--dark {
    width: 100%;
  }

  .site-footer {
    padding-block: 44px;
  }

  .interest-dialog {
    padding: 48px 24px 29px;
    border-radius: 22px;
  }

  .interest-dialog h2 {
    padding-right: 15px;
    font-size: 32px;
  }

  .interest-dialog p {
    font-size: 11px;
  }

  .dialog-mail {
    font-size: 10px;
  }
}

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

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

/* Supporting pages */
.subpage {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.subpage-header {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 240, 0.9);
}

.subpage-header__inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
}

.legal {
  max-width: 900px;
  padding-block: 100px 130px;
}

.legal h1,
.contact h1 {
  max-width: 830px;
  margin: 19px 0 25px;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.legal__lead {
  margin-bottom: 70px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.legal section {
  margin-bottom: 39px;
}

.legal section h2 {
  margin-bottom: 13px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.legal section p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.85;
}

.legal section a {
  color: var(--raspberry-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal__date {
  margin: 60px 0 0;
  color: var(--ink-muted);
  font-family: var(--utility);
  font-size: 9px;
}

.subpage-footer {
  margin-top: auto;
}

.contact {
  display: grid;
  min-height: 680px;
  padding-block: 80px 100px;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
}

.contact h1 {
  font-size: clamp(50px, 5vw, 72px);
}

.contact__copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 29px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.78;
}

.contact__copy > small {
  display: block;
  max-width: 540px;
  margin-top: 17px;
  color: var(--ink-muted);
  font-size: 9px;
  line-height: 1.6;
}

.contact__art {
  position: relative;
  min-height: 480px;
}

.contact-orbit {
  position: absolute;
  z-index: -1;
  inset: 10px 20px;
  border-radius: 46% 54% 43% 57% / 50% 43% 57% 50%;
  background: var(--sky);
  transform: rotate(-7deg);
}

.contact-orbit::after {
  position: absolute;
  top: 35px;
  right: 39px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  content: "";
  background: var(--saffron);
}

.contact-book {
  position: absolute;
  top: 55px;
  left: 50%;
  width: 360px;
  height: 360px;
  overflow: hidden;
  border: 9px solid var(--paper-white);
  border-radius: 6px 17px 17px 6px;
  box-shadow: var(--shadow-lg);
  transform: translateX(-50%) rotate(-7deg);
}

.contact-book::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 37%, rgba(5, 25, 31, 0.83));
}

.contact-book img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-book span {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 32px;
  left: 35px;
  color: white;
  font-family: var(--display);
  font-size: 44px;
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.05em;
}

@media (max-width: 920px) {
  .contact {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact__art {
    min-height: 470px;
  }
}

@media (max-width: 620px) {
  .subpage-header__inner {
    min-height: 72px;
  }

  .subpage-header .text-link {
    font-size: 9px;
  }

  .legal {
    padding-block: 68px 90px;
  }

  .legal h1,
  .contact h1 {
    font-size: 44px;
  }

  .legal__lead {
    margin-bottom: 50px;
    font-size: 14px;
  }

  .legal section h2 {
    font-size: 21px;
  }

  .legal section p {
    font-size: 12px;
  }

  .contact {
    padding-block: 68px 70px;
  }

  .contact__copy > p:not(.eyebrow) {
    font-size: 12px;
  }

  .contact__copy .button {
    width: 100%;
    padding-inline: 14px;
    font-size: 11px;
  }

  .contact__art {
    min-height: 350px;
  }

  .contact-book {
    width: 275px;
    height: 275px;
  }

  .contact-book span {
    font-size: 34px;
  }
}
