@font-face {
  font-family: Fraunces;
  src: url('assets/Fraunces_600SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Fraunces;
  src: url('assets/Fraunces_500Medium_Italic.ttf') format('truetype');
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Satoshi;
  src: url('assets/Satoshi-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Satoshi;
  src: url('assets/Satoshi-Medium.otf') format('opentype');
  font-weight: 500 700;
  font-display: swap;
}
:root {
  --paper: #f6f1eb;
  --surface: #fffcf8;
  --plum: #332532;
  --soft: #5c4f5a;
  --mulberry: #874a6a;
  --deep: #673752;
  --rose: #e7d6de;
  --juniper: #355044;
  --mist: #dce3e1;
  --border: #d7d2d6;
  --serif: Fraunces, Georgia, serif;
  --sans: Satoshi, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--plum);
  font: 400 17px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--rose);
  color: var(--plum);
}
h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.05em;
  text-wrap: balance;
}
h2 {
  font-size: clamp(40px, 4.15vw, 60px);
  line-height: 1.13;
}
h3 {
  font-size: 19px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.025em;
}
em {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--mulberry);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button[hidden],
[hidden] {
  display: none !important;
}
button:disabled {
  cursor: default;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a,
button,
summary {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex='0']:focus-visible {
  outline: 3px solid var(--mulberry);
  outline-offset: 6px;
  border-radius: 4px;
}
#main:focus {
  outline: none;
}
.wrap {
  max-width: 1320px;
  width: calc(100% - 112px);
  margin-inline: auto;
}
.section-space {
  padding-block: 112px;
}
.icon-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.17em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--mulberry);
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 12px;
  padding: 12px 20px;
  background: var(--plum);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 56px;
  padding: 15px 25px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--mulberry);
  color: white;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--deep);
  transform: translateY(-2px);
}
.button .icon {
  width: 20px;
  transition: transform 0.25s;
}
.button:hover .icon {
  transform: translateX(3px);
}
.button-small {
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 9px;
  font-size: 14px;
  gap: 16px;
}
.quiet-link {
  font-size: 14px;
  font-weight: 500;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.quiet-link:hover {
  color: var(--deep);
  border-color: var(--mulberry);
}
/* A steady, useful header. Mobile navigation is progressively enhanced. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 241, 235, 0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.site-header.is-scrolled {
  border-color: var(--border);
}
.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  flex-shrink: 0;
}
.brand img {
  width: 172px;
  height: auto;
}
.main-nav {
  display: flex;
  gap: 34px;
  align-items: center;
}
.main-nav > a:not(.button) {
  font-size: 14px;
  font-weight: 500;
  min-height: 48px;
  display: flex;
  align-items: center;
  position: relative;
}
.main-nav > a:not(.button)::after {
  content: '';
  height: 1px;
  position: absolute;
  bottom: 9px;
  left: 0;
  right: 0;
  background: var(--mulberry);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.main-nav > a:hover::after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
}
/* One real product view, surrounded by a quiet source-thread composition. */
.hero {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  align-items: center;
  gap: 34px;
  min-height: 740px;
  padding-block: 48px 60px;
}
.hero-copy {
  padding-bottom: 20px;
}
.hero h1 {
  font-size: clamp(62px, 6.45vw, 94px);
  line-height: 1.06;
  letter-spacing: -0.06em;
  margin: 28px 0;
}
.hero h1 em {
  white-space: nowrap;
}
.hero-description {
  font-size: 23px;
  line-height: 1.5;
  letter-spacing: -0.025em;
  max-width: 465px;
}
.hero-body {
  color: var(--soft);
  max-width: 426px;
  font-size: 17px;
  line-height: 1.7;
  margin-top: 18px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}
.hero-note {
  margin-top: 22px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--soft);
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--juniper);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-visual {
  height: 630px;
  position: relative;
  min-width: 0;
}
.visual-field {
  position: absolute;
  inset: 34px 0 52px 28px;
  background: var(--mist);
  border-radius: 230px 230px 20px 20px;
  overflow: hidden;
}
.field-orbit {
  position: absolute;
  width: 610px;
  height: 400px;
  border: 1px solid rgba(53, 80, 68, 0.17);
  border-radius: 50%;
  transform: rotate(-36deg);
  left: -63px;
  top: 100px;
}
.orbit-two {
  width: 730px;
  height: 460px;
  left: -115px;
  top: 80px;
}
.orbit-three {
  width: 850px;
  height: 540px;
  left: -175px;
  top: 38px;
}
.field-label {
  position: absolute;
  left: 28px;
  bottom: 24px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--juniper);
}
.phone {
  width: 244px;
  position: absolute;
  top: 8px;
  right: 63px;
  border: 6px solid var(--plum);
  border-radius: 35px;
  overflow: hidden;
  box-shadow:
    16px 25px 40px -20px rgba(51, 37, 50, 0.38),
    inset 0 0 0 1px #a397a1;
  transform: rotate(5deg);
  background: var(--paper);
}
.phone img {
  width: 100%;
  height: auto;
}
.voice-note {
  position: absolute;
  left: -20px;
  top: 200px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 23px;
  background: var(--surface);
  border: 1px solid #e0d9d3;
  border-radius: 13px;
  box-shadow: 0 16px 32px -20px rgba(51, 37, 50, 0.3);
  transform: rotate(-6deg);
}
.note-icon {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--deep);
  display: grid;
  place-items: center;
}
.note-title {
  font-size: 13px;
  font-weight: 500;
  display: block;
}
.note-caption {
  font-size: 10px;
  color: var(--soft);
  display: block;
}
.waveform {
  height: 34px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.waveform i {
  width: 3px;
  height: 10px;
  background: var(--mulberry);
  border-radius: 3px;
  transform-origin: center;
}
.waveform i:nth-child(3n) {
  height: 26px;
}
.waveform i:nth-child(4n) {
  height: 20px;
}
.waveform i:nth-child(5n) {
  height: 14px;
}
.source-seal {
  position: absolute;
  right: 5px;
  bottom: 93px;
  background: var(--surface);
  padding: 12px 17px;
  border: 1px solid #bdcbc6;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  border-radius: 9px;
  color: var(--juniper);
  transform: rotate(3deg);
}
.source-seal .icon {
  width: 18px;
}
.hero-visual figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: var(--soft);
  line-height: 1.7;
  letter-spacing: 0.03em;
}
.hero-visual figcaption span {
  font-size: 9px;
}
.trust-strip {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  padding: 27px 0;
  border-block: 1px solid var(--border);
}
.trust-strip p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
}
.trust-strip .icon {
  color: var(--mulberry);
  width: 20px;
}
/* A deliberately paced, keyboard-operable product explanation. */
.section-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 58px;
}
.section-intro .eyebrow {
  justify-content: center;
}
.section-intro > p:last-child {
  margin: 24px auto 0;
  color: var(--soft);
  max-width: 575px;
}
.walkthrough {
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  gap: 64px;
  align-items: center;
}
.steps {
  display: flex;
  flex-direction: column;
}
.step {
  display: grid;
  grid-template-columns: 30px 1fr 20px;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  padding: 27px 20px 27px 0;
  position: relative;
  transition:
    background 0.25s,
    padding 0.25s;
  border-radius: 0;
}
.step:first-child {
  border-top: 1px solid var(--border);
}
.step-index {
  font-size: 12px;
  color: var(--soft);
  padding-top: 6px;
}
.step strong {
  font: 600 26px/1.25 var(--serif);
  letter-spacing: -0.035em;
  display: block;
}
.step strong + span {
  display: block;
  font-size: 14px;
  line-height: 1.65;
  color: var(--soft);
  margin-top: 10px;
}
.step-arrow {
  width: 18px;
  align-self: center;
  color: var(--mulberry);
  opacity: 0;
  transition:
    opacity 0.2s,
    transform 0.2s;
  transform: translateX(-6px);
}
.step[aria-selected='true'] {
  padding-left: 22px;
  background: var(--surface);
  border-color: transparent;
  border-radius: 12px;
}
.step[aria-selected='true']::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: var(--mulberry);
  border-radius: 3px;
}
.step[aria-selected='true'] .step-arrow,
.step:hover .step-arrow {
  opacity: 1;
  transform: none;
}
.step[aria-selected='true'] strong {
  color: var(--deep);
}
.demo-panels {
  min-width: 0;
}
.demo-panel {
  padding: 32px;
  background: #e9e5df;
  border: 1px solid #ded9d3;
  border-radius: 20px;
  min-height: 445px;
  display: flex;
  flex-direction: column;
}
.demo-panel + .demo-panel {
  margin-top: 20px;
}
.tabs-ready .demo-panel + .demo-panel {
  margin-top: 0;
}
.tabs-ready .fallback-title {
  display: none;
}
.demo-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
.demo-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.demo-toolbar .icon {
  color: var(--mulberry);
  width: 20px;
}
.paper-label {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.5;
}
.memory-note {
  background: var(--surface);
  padding: 28px 30px;
  border-radius: 2px;
  border: 1px solid #dcd5d0;
  transform: rotate(-1.5deg);
}
.memory-note > p {
  font: 500 italic 25px/1.48 var(--serif);
  margin: 18px 0;
}
.paper-date {
  font-size: 11px;
  color: var(--soft);
}
.format-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 15px;
  margin-top: 25px;
}
.format-row span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
}
.format-row .icon {
  width: 15px;
  height: 15px;
  color: var(--deep);
}
.demo-caption {
  font-size: 10px;
  line-height: 1.5;
  color: var(--soft);
  text-align: center;
  padding-top: 24px;
  margin-top: auto;
}
.source-excerpt {
  font: 500 italic 24px/1.5 var(--serif);
  margin: 0 0 20px;
}
.source-excerpt mark {
  background: var(--rose);
  color: var(--plum);
  padding-inline: 3px;
}
.connection-list {
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
  padding-inline: 16px;
}
.connection-list > div {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 13px 0;
  font-size: 12px;
}
.connection-list > div + div {
  border-top: 1px solid var(--border);
}
.connection-list > div > span:first-child {
  color: var(--soft);
  font-size: 10px;
}
.connection-list strong {
  font-weight: 500;
}
.suggested {
  font-size: 9px;
  padding: 3px 7px;
  background: var(--rose);
  color: var(--deep);
  border-radius: 4px;
}
.review-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  margin-top: 18px;
  color: var(--juniper);
}
.review-note .icon {
  width: 16px;
}
.chapter-page {
  background: var(--surface);
  padding: 24px 30px;
  border-left: 4px solid var(--mulberry);
}
.chapter-page h3 {
  font: 600 31px/1.3 var(--serif);
  letter-spacing: -0.035em;
  margin: 18px 0 12px;
}
.chapter-page > p {
  font: 600 17px/1.7 var(--serif);
}
.source-reference {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
  font-size: 10px;
  color: var(--soft);
}
.source-reference span {
  margin-right: 6px;
}
.fallback-title {
  font-family: var(--serif);
  margin-bottom: 24px;
}
/* The book is a product object, with physical depth only where layers overlap. */
.living-book-section {
  background: #ece6e0;
  padding-block: 100px;
  overflow: clip;
}
.living-book-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.book-scene {
  height: 590px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-orbit {
  position: absolute;
  inset: 18px 5px 12px;
  background: var(--rose);
  border-radius: 50% 50% 48% 48%;
  transform: rotate(-17deg);
}
.book-orbit::after {
  content: '';
  position: absolute;
  inset: 22px -13px;
  border: 1px solid rgba(135, 74, 106, 0.3);
  border-radius: 50%;
  transform: rotate(23deg);
}
.book-side-note {
  font-size: 11px;
  line-height: 1.5;
  position: absolute;
  top: 18px;
  left: 0;
  color: var(--deep);
  transform: rotate(-7deg);
}
.book-object {
  width: 300px;
  position: relative;
  transform: rotate(-8deg);
  box-shadow: 20px 28px 34px -14px rgba(51, 37, 50, 0.27);
  transition: transform 0.8s var(--ease);
}
.book-scene:hover .book-object {
  transform: rotate(-4deg) translateY(-5px);
}
.book-object::after {
  content: '';
  position: absolute;
  top: 5px;
  bottom: -5px;
  right: -7px;
  width: 11px;
  background: repeating-linear-gradient(90deg, #e7e0d7 0 1px, #fcf7f0 1px 3px);
  border-radius: 0 3px 3px 0;
  z-index: -1;
}
.book-jacket {
  position: relative;
  overflow: hidden;
  border-radius: 2px 5px 5px 2px;
  border-left: 3px solid #bcb1a3;
}
.book-jacket > img {
  width: 100%;
}
.book-jacket::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(51, 37, 50, 0.14),
    transparent 3%,
    rgba(51, 37, 50, 0.07) 4%,
    transparent 6%,
    transparent 97%,
    rgba(255, 252, 248, 0.3)
  );
}
.cover-type {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px 26px;
  background: linear-gradient(
    180deg,
    rgba(246, 241, 235, 0.97),
    rgba(246, 241, 235, 0.91) 36%,
    rgba(246, 241, 235, 0.3) 58%,
    transparent 70%
  );
  color: var(--plum);
}
.cover-kicker {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.cover-title {
  font: 600 46px/1.08 var(--serif);
  letter-spacing: -0.055em;
  margin-top: 32px;
}
.cover-byline {
  font-size: 10px;
  line-height: 1.6;
  margin-top: 19px;
}
.cover-type > img {
  width: 26px;
  margin-top: auto;
}
.book-scene figcaption {
  position: absolute;
  bottom: -12px;
  font-size: 10px;
  color: var(--soft);
  text-align: center;
}
.book-copy > p:not(.eyebrow) {
  margin-top: 25px;
  color: var(--soft);
  max-width: 460px;
}
.benefit-list {
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}
.benefit-list li {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid #d0c8c4;
}
.benefit-number {
  font-size: 11px;
  color: var(--deep);
  padding-top: 4px;
}
.benefit-list p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--soft);
  margin-top: 8px;
}
.benefit-list h3 {
  font-size: 17px;
}
.prompt-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.prompt-copy > p:not(.eyebrow) {
  color: var(--soft);
  margin-top: 24px;
  max-width: 345px;
}
.prompt-copy .prompt-hint {
  font-size: 13px;
}
.prompt-card {
  background: var(--rose);
  padding: 36px 40px;
  border: 1px solid #d2b9c5;
  border-radius: 3px 20px 20px 3px;
  position: relative;
}
.prompt-card::before {
  content: '';
  position: absolute;
  inset: 8px 8px -9px -9px;
  border: 1px solid #d2b9c5;
  border-radius: 3px 20px 20px 3px;
  z-index: -1;
}
.prompt-card > .paper-label {
  display: flex;
  gap: 9px;
  align-items: center;
}
.prompt-text {
  min-height: 260px;
  display: flex;
  align-items: center;
  padding-block: 26px;
}
.prompt-text blockquote {
  font: 500 italic 38px/1.28 var(--serif);
  letter-spacing: -0.03em;
  text-wrap: balance;
  color: var(--deep);
}
.prompt-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #c4aab7;
  padding-top: 16px;
  font-size: 11px;
}
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: 0;
  color: var(--deep);
  font-size: 12px;
  font-weight: 500;
  min-height: 48px;
  padding: 8px 0;
}
.text-button span {
  font-size: 24px;
  transition: transform 0.5s;
}
.text-button:hover span {
  transform: rotate(90deg);
}
.control-section {
  background: var(--plum);
  color: var(--paper);
  padding-block: 100px;
}
.control-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 105px;
}
.control-intro .eyebrow {
  color: #dcbac9;
}
.control-intro em {
  color: #dcbac9;
}
.control-intro > p:not(.eyebrow) {
  color: #d6cbd3;
  max-width: 390px;
  margin-top: 27px;
  font-size: 16px;
}
.light-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  border-bottom: 1px solid #907b8a;
  margin-top: 30px;
  padding-block: 10px;
}
.light-link:hover {
  color: #e2bdce;
}
.light-link .icon {
  width: 18px;
}
.control-list article {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-top: 1px solid #655363;
}
.control-list article > span {
  font-size: 11px;
  color: #dcbac9;
  padding-top: 4px;
}
.control-list h3 {
  font: 600 25px/1.3 var(--serif);
  letter-spacing: -0.035em;
}
.control-list p {
  font-size: 14px;
  line-height: 1.8;
  color: #d6cbd3;
  margin-top: 10px;
}
.control-section a:focus-visible {
  outline-color: #e2bdce;
}
.questions {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}
.questions-list details {
  border-bottom: 1px solid var(--border);
}
.questions-list details:first-child {
  border-top: 1px solid var(--border);
}
.questions-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  padding: 23px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.questions-list summary::-webkit-details-marker {
  display: none;
}
.questions-list summary > span {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  color: var(--mulberry);
  transition: transform 0.25s;
}
.questions-list details[open] summary > span {
  transform: rotate(45deg);
}
.questions-list summary:hover {
  color: var(--deep);
}
.questions-list details > div {
  padding: 0 28px 24px 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--soft);
}
.questions-list p + p {
  margin-top: 12px;
}
.availability-section {
  padding-bottom: 85px;
}
.availability-inner {
  position: relative;
  text-align: center;
  border-radius: 24px;
  background: #e8dfd8;
  padding: 65px 28px;
  overflow: hidden;
  isolation: isolate;
}
.availability-mark {
  margin: 0 auto 20px;
  width: 42px;
}
.availability-inner .eyebrow {
  justify-content: center;
  margin-bottom: 20px;
}
.availability-inner > p:not(.eyebrow) {
  max-width: 440px;
  margin: 24px auto 0;
  color: var(--soft);
  font-size: 15px;
}
.availability-inner .button {
  margin-top: 28px;
}
.availability-inner .tester-note {
  font-size: 11px !important;
}
.availability-decoration {
  position: absolute;
  width: 1250px;
  height: 540px;
  border: 1px solid #d1c0c7;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-22deg);
  z-index: -1;
  pointer-events: none;
}
.availability-decoration::after {
  content: '';
  position: absolute;
  inset: -70px;
  border: 1px solid #d1c0c7;
  border-radius: 50%;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  padding: 15px 0 46px;
}
.footer-top p {
  font: 600 20px/1.4 var(--serif);
  letter-spacing: -0.03em;
}
.back-to-top {
  font-size: 12px;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.back-to-top span {
  font-size: 21px;
  color: var(--mulberry);
}
.footer-bottom {
  padding: 22px 0 28px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 25px;
  justify-content: space-between;
  font-size: 10px;
  color: var(--soft);
}
.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
/* Finite motion only: no autoplay carousel, loops, scroll-jacking or hidden content dependency. */
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes phone-enter {
  from {
    opacity: 0;
    transform: translateY(24px) rotate(1deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(5deg);
  }
}
@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.65);
  }
  50% {
    transform: scaleY(1);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-enter {
    animation: enter 0.9s var(--ease) both;
  }
  .hero-enter:nth-child(2) {
    animation-delay: 0.08s;
  }
  .hero-enter:nth-child(3) {
    animation-delay: 0.16s;
  }
  .hero-enter:nth-child(4) {
    animation-delay: 0.24s;
  }
  .hero-enter:nth-child(5) {
    animation-delay: 0.32s;
  }
  .hero-enter:nth-child(6) {
    animation-delay: 0.4s;
  }
  .phone {
    animation: phone-enter 1.2s 0.12s var(--ease) both;
  }
  .waveform i {
    animation: wave 0.8s ease-in-out 3;
  }
  .waveform i:nth-child(3n) {
    animation-delay: 0.2s;
  }
  .waveform i:nth-child(4n) {
    animation-delay: 0.35s;
  }
  .reveal-ready {
    transition:
      opacity 0.85s var(--ease),
      transform 0.85s var(--ease);
  }
  .reveal-ready:not(.is-visible) {
    opacity: 0;
    transform: translateY(22px);
  }
  .panel-enter {
    animation: enter 0.45s var(--ease);
  }
  .prompt-enter {
    animation: enter 0.4s var(--ease);
  }
}
@media (min-width: 1600px) {
  .hero {
    min-height: 810px;
  }
  .hero-visual {
    height: 675px;
  }
  .phone {
    width: 265px;
    right: 85px;
  }
  .voice-note {
    left: 0;
    top: 230px;
  }
  .source-seal {
    bottom: 83px;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .hero {
    gap: 18px;
    min-height: 680px;
  }
  .hero h1 {
    font-size: 71px;
  }
  .hero-visual {
    height: 590px;
  }
  .phone {
    width: 224px;
    right: 37px;
    top: 12px;
  }
  .voice-note {
    left: 0;
    top: 240px;
    padding: 17px;
    gap: 9px;
  }
  .source-seal {
    right: 0;
    bottom: 100px;
    font-size: 10px;
  }
  .field-label {
    left: 17px;
    font-size: 10px;
  }
  .walkthrough {
    gap: 35px;
  }
  .step strong {
    font-size: 23px;
  }
  .step {
    gap: 9px;
    padding-right: 10px;
  }
  .demo-panel {
    padding: 26px;
    min-height: 460px;
  }
  .living-book-layout {
    gap: 55px;
  }
  .book-object {
    width: 265px;
  }
  .book-scene {
    height: 540px;
  }
  .prompt-section {
    gap: 60px;
  }
  .prompt-card {
    padding: 30px;
  }
  .prompt-text blockquote {
    font-size: 34px;
  }
  .control-layout,
  .questions {
    gap: 65px;
  }
  .main-nav {
    gap: 24px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .button {
    padding-inline: 18px;
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .header-inner {
    min-height: 82px;
  }
  .brand img {
    width: 148px;
  }
  .main-nav {
    gap: 20px;
  }
  .main-nav > a:not(.button) {
    font-size: 12px;
  }
  .button-small {
    font-size: 12px;
    padding-inline: 12px;
  }
  .hero {
    gap: 14px;
    padding-top: 34px;
    min-height: 620px;
  }
  .hero h1 {
    font-size: 59px;
  }
  .hero-description {
    font-size: 20px;
  }
  .hero-body {
    font-size: 15px;
    max-width: 360px;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.12em;
    gap: 8px;
  }
  .hero-visual {
    height: 540px;
  }
  .phone {
    width: 195px;
    right: 20px;
    top: 20px;
    border-width: 5px;
    border-radius: 29px;
  }
  .voice-note {
    left: 0;
    top: 244px;
    padding: 14px 12px;
  }
  .note-icon {
    width: 33px;
    height: 33px;
  }
  .note-title {
    font-size: 11px;
  }
  .note-caption {
    font-size: 9px;
  }
  .waveform {
    height: 28px;
    gap: 3px;
  }
  .waveform i {
    width: 2px;
  }
  .source-seal {
    bottom: 81px;
    font-size: 9px;
    padding: 10px;
  }
  .visual-field {
    inset: 42px 0 45px 9px;
  }
  .field-label {
    bottom: 22px;
    left: 16px;
    font-size: 9px;
  }
  .hero-note {
    font-size: 10px;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero-actions .button {
    padding: 13px 15px;
    gap: 12px;
    font-size: 13px;
    min-height: 51px;
  }
  .quiet-link {
    font-size: 12px;
  }
  .trust-strip {
    gap: 20px;
    justify-content: space-between;
  }
  .trust-strip p {
    font-size: 11px;
    gap: 8px;
  }
  .trust-strip .icon {
    width: 18px;
  }
  .section-space {
    padding-block: 85px;
  }
  .walkthrough {
    gap: 25px;
    grid-template-columns: 0.86fr 1.14fr;
  }
  .step {
    grid-template-columns: 22px 1fr;
    padding-block: 25px;
  }
  .step .step-arrow {
    display: none;
  }
  .step strong {
    font-size: 22px;
  }
  .step strong + span {
    font-size: 13px;
  }
  .step[aria-selected='true'] {
    padding-left: 12px;
  }
  .demo-panel {
    padding: 23px;
    min-height: 435px;
  }
  .memory-note {
    padding: 22px;
  }
  .memory-note > p {
    font-size: 22px;
  }
  .format-row {
    gap: 10px;
  }
  .demo-caption {
    font-size: 9px;
  }
  .living-book-layout {
    gap: 35px;
  }
  .book-scene {
    height: 510px;
  }
  .book-object {
    width: 235px;
  }
  .cover-type {
    padding-inline: 15px;
  }
  .cover-title {
    font-size: 39px;
    margin-top: 24px;
  }
  .book-side-note {
    font-size: 10px;
  }
  .book-copy .eyebrow {
    font-size: 9px;
  }
  .benefit-list {
    margin-top: 25px;
  }
  .benefit-list li {
    padding: 17px 0;
    gap: 13px;
  }
  .benefit-list h3 {
    font-size: 15px;
  }
  .benefit-list p {
    font-size: 13px;
  }
  .prompt-section {
    gap: 40px;
  }
  .prompt-card {
    padding: 27px;
  }
  .prompt-text blockquote {
    font-size: 30px;
  }
  .prompt-bottom {
    gap: 12px;
    font-size: 10px;
  }
  .text-button {
    font-size: 11px;
  }
  .control-layout,
  .questions {
    gap: 45px;
  }
  .control-section {
    padding-block: 80px;
  }
  .control-list p {
    font-size: 13px;
  }
  .control-list h3 {
    font-size: 23px;
  }
  .questions-list summary {
    font-size: 15px;
  }
  .footer-top p {
    font-size: 19px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 94px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 76px;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
  }
  .brand img {
    width: 150px;
  }
  .main-nav {
    width: 100%;
    padding: 0 0 18px;
    flex-wrap: wrap;
    gap: 5px 22px;
  }
  .main-nav > a:not(.button) {
    font-size: 13px;
  }
  .nav-ready .main-nav {
    display: none;
  }
  .nav-ready .main-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 0 22px;
  }
  .nav-ready .main-nav > a {
    padding: 12px 5px;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
  }
  .nav-ready .main-nav .button {
    padding: 13px 18px;
    align-self: flex-start;
    margin-top: 16px;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 78px;
    min-height: 48px;
    padding: 10px 0 10px 12px;
    background: none;
    border: 0;
    font-size: 12px;
  }
  .menu-lines {
    width: 19px;
    height: 11px;
    position: relative;
    border-top: 1px solid var(--plum);
    border-bottom: 1px solid var(--plum);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded='true'] .menu-lines {
    transform: rotate(-15deg);
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 35px 30px;
  }
  .hero-copy {
    text-align: center;
    padding-bottom: 0;
  }
  .hero .eyebrow {
    justify-content: center;
    font-size: 9px;
    letter-spacing: 0.13em;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(52px, 10.8vw, 74px);
    line-height: 1.08;
    margin: 20px 0;
  }
  .hero-description {
    font-size: 20px;
    line-height: 1.5;
    max-width: 450px;
    margin-inline: auto;
  }
  .hero-body {
    font-size: 15px;
    max-width: 390px;
    margin: 18px auto 0;
  }
  .hero-actions {
    justify-content: center;
    gap: 14px 22px;
    margin-top: 26px;
  }
  .hero-actions .button {
    font-size: 14px;
    padding: 15px 20px;
    min-height: 54px;
  }
  .quiet-link {
    font-size: 13px;
  }
  .hero-note {
    justify-content: center;
    font-size: 10px;
    margin-top: 17px;
  }
  .hero-visual {
    width: 100%;
    max-width: 440px;
    margin: 17px auto 0;
    height: 577px;
  }
  .phone {
    width: 224px;
    right: 54px;
    top: 6px;
    border-radius: 33px;
  }
  .voice-note {
    left: 2px;
    top: 200px;
    gap: 10px;
    padding: 17px;
  }
  .note-title {
    font-size: 12px;
  }
  .note-caption {
    font-size: 10px;
  }
  .note-icon {
    width: 35px;
    height: 35px;
  }
  .waveform {
    height: 32px;
    gap: 4px;
  }
  .waveform i {
    width: 3px;
  }
  .source-seal {
    bottom: 95px;
    right: 7px;
    font-size: 10px;
    padding: 12px;
  }
  .visual-field {
    inset: 25px 6px 45px 13px;
  }
  .field-label {
    font-size: 10px;
    bottom: 24px;
    left: 20px;
  }
  .hero-visual figcaption {
    font-size: 9px;
  }
  .trust-strip {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
    padding-block: 22px;
  }
  .trust-strip p {
    font-size: 11px;
  }
  .trust-strip p:last-child {
    flex-basis: 100%;
    justify-content: center;
  }
  .section-space {
    padding-block: 70px;
  }
  h2 {
    font-size: 42px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 0.14em;
    margin-bottom: 19px;
  }
  .section-intro {
    margin-bottom: 34px;
  }
  .section-intro > p:last-child {
    font-size: 15px;
    max-width: 350px;
    margin-top: 20px;
  }
  .desktop-break {
    display: none;
  }
  .walkthrough {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .steps {
    flex-direction: row;
    gap: 8px;
    align-items: stretch;
  }
  .step,
  .step:first-child {
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
    padding: 16px 12px;
    text-align: left;
    min-width: 0;
  }
  .step[aria-selected='true'] {
    padding: 16px 12px;
    border: 1px solid var(--mulberry);
    background: var(--surface);
    border-radius: 10px;
  }
  .step[aria-selected='true']::before {
    top: auto;
    bottom: 0;
    left: 12px;
    right: 12px;
    width: auto;
    height: 2px;
  }
  .step-index {
    padding-top: 0;
    font-size: 10px;
  }
  .step strong {
    font: 500 13px/1.4 var(--sans);
    letter-spacing: -0.02em;
  }
  .step strong + span {
    display: none;
  }
  .demo-panel {
    min-height: 416px;
    padding: 24px;
  }
  .demo-toolbar {
    margin-bottom: 22px;
  }
  .memory-note {
    padding: 25px;
  }
  .memory-note > p {
    font-size: 24px;
  }
  .format-row {
    justify-content: center;
    gap: 10px 14px;
  }
  .demo-caption {
    font-size: 9px;
    padding-top: 23px;
  }
  .chapter-page {
    padding: 23px;
  }
  .source-excerpt {
    font-size: 25px;
  }
  .connection-list > div {
    font-size: 13px;
    padding-block: 14px;
  }
  .connection-list > div > span:first-child {
    font-size: 11px;
  }
  .suggested {
    font-size: 10px;
  }
  .living-book-section {
    padding-block: 65px;
  }
  .living-book-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .book-copy {
    grid-row: 1;
  }
  .book-copy > p:not(.eyebrow) {
    font-size: 15px;
    max-width: 450px;
    margin-top: 22px;
  }
  .book-copy .eyebrow {
    font-size: 9px;
  }
  .benefit-list {
    margin-top: 28px;
  }
  .benefit-list h3 {
    font-size: 16px;
  }
  .benefit-list p {
    font-size: 14px;
  }
  .benefit-list li {
    padding-block: 19px;
  }
  .book-scene {
    height: 480px;
    max-width: 390px;
    width: 100%;
    margin: auto;
  }
  .book-object {
    width: 250px;
  }
  .book-orbit {
    inset: 12px 20px 0;
  }
  .book-side-note {
    left: 0;
    top: 30px;
  }
  .cover-title {
    font-size: 42px;
  }
  .book-scene figcaption {
    font-size: 9px;
    bottom: -18px;
  }
  .prompt-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .prompt-copy > p:not(.eyebrow) {
    font-size: 15px;
    max-width: 390px;
    margin-top: 20px;
  }
  .prompt-copy .prompt-hint {
    font-size: 12px;
  }
  .prompt-card {
    padding: 29px;
  }
  .prompt-text {
    min-height: 234px;
  }
  .prompt-text blockquote {
    font-size: 32px;
  }
  .prompt-bottom {
    font-size: 10px;
  }
  .text-button {
    font-size: 12px;
  }
  .control-section {
    padding-block: 65px;
  }
  .control-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .control-intro > p:not(.eyebrow) {
    font-size: 15px;
  }
  .control-list article {
    padding: 23px 0;
  }
  .control-list article:last-child {
    padding-bottom: 0;
  }
  .control-list p {
    font-size: 14px;
  }
  .control-list h3 {
    font-size: 25px;
  }
  .questions {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .questions-list summary {
    padding: 22px 0;
    font-size: 15px;
  }
  .questions-list details > div {
    padding-right: 15px;
    font-size: 14px;
  }
  .availability-section {
    padding-bottom: 54px;
  }
  .availability-inner {
    padding: 45px 24px;
    border-radius: 16px;
  }
  .availability-inner h2 {
    font-size: 38px;
  }
  .availability-inner .eyebrow {
    font-size: 8px;
    letter-spacing: 0.12em;
  }
  .availability-inner > p:not(.eyebrow) {
    font-size: 14px;
  }
  .availability-inner .tester-note {
    font-size: 10px !important;
    max-width: 240px;
  }
  .availability-mark {
    width: 35px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding-bottom: 28px;
  }
  .footer-top p {
    grid-column: 1;
    font-size: 20px;
  }
  .footer-top .back-to-top {
    grid-column: 2;
    grid-row: 1/3;
  }
  .footer-bottom {
    flex-wrap: wrap;
    font-size: 10px;
    gap: 14px;
  }
  .footer-bottom > span:nth-child(2) {
    order: 3;
    flex-basis: 100%;
  }
}
@media (max-width: 360px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 49px;
  }
  .hero-description {
    font-size: 18px;
  }
  .hero .eyebrow {
    font-size: 8px;
    gap: 6px;
    letter-spacing: 0.09em;
  }
  .hero-actions {
    gap: 8px;
  }
  .hero-actions .quiet-link {
    min-height: 40px;
  }
  .hero-visual {
    height: 520px;
  }
  .phone {
    width: 201px;
    right: 26px;
  }
  .voice-note {
    top: 212px;
    padding: 12px 13px;
    left: 0;
  }
  .note-title {
    font-size: 10px;
  }
  .note-icon {
    width: 30px;
    height: 30px;
  }
  .source-seal {
    bottom: 69px;
    right: 0;
    font-size: 9px;
    padding: 8px;
  }
  .field-label {
    bottom: 48px;
    left: 14px;
    font-size: 9px;
  }
  .hero-visual figcaption {
    font-size: 8px;
  }
  .visual-field {
    bottom: 40px;
    left: 4px;
  }
  .trust-strip {
    gap: 14px 15px;
  }
  .trust-strip p {
    font-size: 10px;
    gap: 6px;
  }
  .trust-strip .icon {
    width: 16px;
  }
  h2 {
    font-size: 37px;
  }
  .step,
  .step[aria-selected='true'] {
    padding: 13px 9px;
  }
  .step strong {
    font-size: 12px;
  }
  .steps {
    gap: 6px;
  }
  .demo-panel {
    padding: 20px;
    min-height: 415px;
  }
  .memory-note {
    padding: 20px;
  }
  .memory-note > p {
    font-size: 22px;
  }
  .paper-label {
    font-size: 9px;
  }
  .format-row {
    gap: 10px 12px;
  }
  .format-row span {
    font-size: 10px;
  }
  .connection-list {
    padding-inline: 11px;
  }
  .connection-list > div {
    grid-template-columns: 42px 1fr auto;
    gap: 6px;
    font-size: 11px;
  }
  .suggested {
    font-size: 8px;
    padding: 3px 5px;
  }
  .connection-list > div > span:first-child {
    font-size: 9px;
  }
  .chapter-page {
    padding: 20px;
  }
  .chapter-page h3 {
    font-size: 27px;
  }
  .chapter-page > p {
    font-size: 15px;
  }
  .source-reference {
    font-size: 9px;
  }
  .prompt-card {
    padding: 24px;
  }
  .prompt-text blockquote {
    font-size: 29px;
  }
  .prompt-bottom {
    gap: 5px;
    font-size: 9px;
  }
  .text-button {
    font-size: 10px;
    gap: 8px;
  }
  .book-object {
    width: 230px;
  }
  .book-scene {
    height: 450px;
  }
  .cover-title {
    font-size: 38px;
  }
  .availability-inner {
    padding-inline: 19px;
  }
  .availability-inner h2 {
    font-size: 32px;
  }
  .availability-inner .eyebrow {
    font-size: 7px;
  }
  .availability-inner .button {
    font-size: 13px;
    padding-inline: 18px;
  }
  .footer-top .brand img {
    width: 135px;
  }
  .back-to-top {
    font-size: 10px;
    gap: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal-ready:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
  .book-scene:hover .book-object {
    transform: rotate(-8deg);
  }
  .button:hover {
    transform: none;
  }
}
@media print {
  .site-header,
  .hero-actions,
  .menu-toggle,
  .steps,
  .text-button,
  .back-to-top {
    display: none !important;
  }
  body {
    font-size: 12px;
  }
  .wrap {
    width: 100%;
  }
  .section-space {
    padding-block: 30px;
  }
  .reveal-ready {
    opacity: 1 !important;
    transform: none !important;
  }
  .tabs-ready .demo-panel[hidden] {
    display: block !important;
  }
  .control-section {
    color: var(--plum);
    background: var(--paper);
  }
  .control-intro em,
  .control-intro > p,
  .control-list p,
  .control-intro .eyebrow {
    color: var(--plum);
  }
}
/* A single, consented conversion path with readable error and success states. */
.waitlist-form {
  max-width: 570px;
  margin: 32px auto 0;
  text-align: left;
}
.email-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 9px;
}
.email-row {
  display: flex;
  gap: 10px;
}
.email-row input {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  padding: 14px 17px;
  border: 1px solid #aea5ad;
  border-radius: 10px;
  background: var(--surface);
  color: var(--plum);
  font: 400 16px/1.5 var(--sans);
}
.email-row input::placeholder {
  color: var(--soft);
  opacity: 1;
}
.email-row .button {
  flex-shrink: 0;
  margin: 0;
  gap: 16px;
  padding-inline: 20px;
}
.email-row input:focus-visible,
.consent-label input:focus-visible {
  outline: 3px solid var(--mulberry);
  outline-offset: 3px;
}
.consent-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 15px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.7;
  color: var(--soft);
  min-height: 48px;
  padding: 8px 0;
}
.consent-label input {
  appearance: auto;
  accent-color: var(--mulberry);
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  flex-shrink: 0;
  cursor: pointer;
}
.consent-label a,
.no-script-note a,
.questions-list p a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--deep);
}
.form-trap {
  display: none;
}
.form-status {
  font-size: 13px;
  color: var(--deep);
  line-height: 1.6;
}
.form-status:not(:empty) {
  padding: 12px 0;
}
.waitlist-note {
  font-size: 11px !important;
  line-height: 1.8 !important;
  margin-top: 22px !important;
}
.form-success {
  max-width: 470px;
  margin: 32px auto;
  padding: 26px;
  background: var(--surface);
  border: 1px solid #b7c7c0;
  border-radius: 14px;
}
.form-success h3 {
  font: 600 31px/1.3 var(--serif);
  margin-top: 10px;
}
.form-success p {
  font-size: 14px;
  color: var(--soft);
  margin-top: 12px;
}
.success-icon {
  display: grid;
  place-items: center;
  background: var(--mist);
  color: var(--juniper);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: auto;
}
.form-success:focus {
  outline: none;
}
.button[disabled] {
  opacity: 0.75;
  transform: none;
}
.no-script-note {
  max-width: 450px;
  margin: 28px auto !important;
  font-size: 14px !important;
}
.privacy-page {
  max-width: 790px;
  padding-block: 70px 100px;
}
.privacy-page h1 {
  font-size: clamp(44px, 6vw, 68px);
  line-height: 1.1;
  margin-bottom: 22px;
}
.privacy-page h2 {
  font-size: 29px;
  margin: 37px 0 13px;
  letter-spacing: -0.035em;
}
.privacy-page p,
.privacy-page li {
  font-size: 16px;
  color: var(--soft);
}
.privacy-page p + p {
  margin-top: 14px;
}
.privacy-page a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--deep);
}
.privacy-date {
  font-size: 12px !important;
  margin-bottom: 28px;
}
.privacy-page ul {
  padding-left: 21px;
}
.privacy-page li {
  margin-block: 8px;
}
.privacy-page .button {
  color: white;
  text-decoration: none;
  margin-top: 35px;
}
.footer-bottom > span:nth-child(2) {
  text-align: center;
}
@media (max-width: 700px) {
  .waitlist-form {
    margin-top: 27px;
  }
  .email-row {
    flex-direction: column;
    gap: 12px;
  }
  .email-row .button {
    width: 100%;
    font-size: 14px;
    min-height: 54px;
  }
  .consent-label {
    font-size: 11px;
    gap: 10px;
  }
  .availability-inner > p.waitlist-note {
    font-size: 10px !important;
  }
  .privacy-page {
    padding-block: 45px 65px;
  }
  .privacy-page h2 {
    font-size: 26px;
  }
  .privacy-page p,
  .privacy-page li {
    font-size: 15px;
  }
  .footer-bottom > span:nth-child(2) {
    text-align: left;
  }
}
