@font-face {
  font-family: Manrope;
  src: url("assets/manrope-regular.ttf") format("truetype");
  font-weight: 200 500;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/manrope-bold.ttf") format("truetype");
  font-weight: 600 800;
  font-display: swap;
}
:root {
  --pink: #f4a7bf;
  --pink-light: #fbd0dc;
  --ink: #510e28;
  --berry: #85143c;
  --hot: #f32978;
  --lime: #ddf692;
  --line: rgba(81, 14, 40, 0.22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Manrope, "Arial", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background: var(--pink);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
button,
a,
input {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--hot);
  outline-offset: 6px;
}
button {
  color: inherit;
}
::selection {
  background: var(--berry);
  color: var(--pink-light);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--lime);
  padding: 12px;
  z-index: 100;
}
.skip-link:focus {
  top: 15px;
}
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--berry);
  z-index: 80;
}
.header {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-size: 64px;
  letter-spacing: -6px;
  font-weight: 800;
  line-height: 1;
}
.wordmark span {
  font-size: 16px;
  letter-spacing: 0;
  vertical-align: top;
  display: inline-block;
  margin: 10px 0 0 8px;
}
.header nav {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 600;
}
.header nav a {
  position: relative;
}
.header nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transition: right 0.25s;
}
.header nav a:hover:after {
  right: 0;
}
.header-cta {
  border: 1px solid var(--ink);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
}
.header-cta span {
  margin-left: 28px;
  font-size: 20px;
}
.hero {
  padding: 0 5%;
}
.hero-topline {
  display: flex;
  justify-content: space-between;
  padding: 24px 0 16px;
  font-size: 11px;
  letter-spacing: 0.13em;
  font-weight: 700;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 5%;
  align-items: center;
  min-height: 665px;
  padding: 16px 0 36px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.09em;
  font-weight: 700;
  display: flex;
  gap: 10px;
  align-items: center;
}
.tiny-star {
  font-size: 26px;
  line-height: 1;
}
h1 {
  font-size: clamp(76px, 7.8vw, 128px);
  letter-spacing: -0.075em;
  line-height: 0.97;
  margin: 25px 0 28px;
  font-weight: 600;
}
h1 em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.07em;
}
.hero-description {
  max-width: 460px;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
  min-height: 58px;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px #510e281c;
}
.button span {
  font-size: 23px;
  line-height: 1;
}
.button-dark {
  background: var(--ink);
  color: var(--pink-light);
}
.text-button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  padding: 8px 0;
}
.text-button span {
  margin-left: 10px;
}
.micro {
  font-size: 12px;
  opacity: 0.75;
  margin-top: 20px;
}
.hero-art {
  position: relative;
  min-height: 580px;
  border-radius: 240px 240px 16px 16px;
  background: var(--hot);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art-title {
  font-size: clamp(50px, 6vw, 100px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-align: center;
  color: var(--pink-light);
  transform: rotate(-8deg);
}
.hero-art-title em {
  font-family: var(--serif);
}
.orbit-badge {
  position: absolute;
  right: 22px;
  top: 32px;
  border-radius: 50%;
  width: 126px;
  height: 126px;
  background: var(--lime);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(12deg);
  box-shadow: 0 6px 30px #510e281a;
}
.orbit-badge span {
  font-size: 9px;
  letter-spacing: 0.05em;
  font-weight: 800;
}
.orbit-badge b {
  font-size: 44px;
  line-height: 1.3;
  animation: rotate 24s linear infinite;
}
.image-note {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--pink-light);
  font-size: 11px;
}
.image-note span:last-child {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 24px 0;
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.hero-bottom a {
  font-size: 12px;
  letter-spacing: 0;
}
.hero-bottom a span {
  margin-left: 20px;
}
.ticker {
  background: var(--berry);
  color: var(--pink-light);
  overflow: hidden;
  padding: 20px 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.ticker div {
  width: max-content;
  animation: ticker 40s linear infinite;
}
.ticker span {
  padding: 0 40px;
  color: var(--lime);
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 44px 5%;
  border-top: 1px solid var(--line);
}
.footer .wordmark {
  font-size: 50px;
}
.footer p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
}
.footer small {
  font-size: 11px;
}
.hero-copy {
  animation: arrive 0.8s both;
}
.hero-art {
  animation: arrive 1s 0.15s both;
}
@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
@media (min-width: 1600px) {
  .header,
  .hero,
  .footer {
    padding-left: max(5%, calc((100vw - 1500px) / 2));
    padding-right: max(5%, calc((100vw - 1500px) / 2));
  }
}
@media (max-width: 900px) {
  .header {
    height: 80px;
  }
  .wordmark {
    font-size: 52px;
  }
  .header nav {
    gap: 20px;
  }
  .hero-grid {
    gap: 3%;
    min-height: 580px;
  }
  h1 {
    font-size: 76px;
  }
  .hero-art {
    min-height: 500px;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero-description {
    font-size: 15px;
  }
  .image-note {
    flex-direction: column;
    align-items: start;
  }
  .hero-topline {
    font-size: 9px;
  }
  .footer {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 25px;
  }
  .header {
    height: 76px;
    padding: 0 6%;
  }
  .header nav {
    display: none;
  }
  .header-cta {
    padding: 7px 16px;
    font-size: 12px;
  }
  .header-cta span {
    margin-left: 16px;
  }
  .hero {
    padding: 0 6%;
  }
  .hero-topline {
    padding: 20px 0 0;
    font-size: 9px;
  }
  .hero-topline span:last-child {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 14px;
  }
  .eyebrow {
    font-size: 10px;
  }
  h1 {
    font-size: clamp(64px, 17vw, 100px);
    margin: 18px 0 24px;
  }
  .hero-description {
    font-size: 15px;
    max-width: 360px;
  }
  .hero-actions {
    gap: 20px;
  }
  .button {
    padding: 16px 22px;
    font-size: 13px;
    gap: 23px;
  }
  .text-button {
    font-size: 12px;
  }
  .micro {
    font-size: 10px;
  }
  .hero-art {
    min-height: 450px;
    max-height: 550px;
    border-radius: 180px 180px 14px 14px;
  }
  .hero-art-title {
    font-size: 80px;
  }
  .orbit-badge {
    width: 110px;
    height: 110px;
    right: 12px;
    top: 18px;
  }
  .orbit-badge span {
    font-size: 8px;
  }
  .hero-bottom > span {
    display: none;
  }
  .hero-bottom {
    justify-content: center;
    padding: 18px;
  }
  .ticker {
    font-size: 17px;
    padding: 16px 0;
  }
  .ticker span {
    padding: 0 20px;
  }
  .footer {
    padding: 30px 6%;
    gap: 12px;
  }
  .footer p {
    font-size: 20px;
  }
  .footer small {
    width: 100%;
  }
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  z-index: -2;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #570c2d30, transparent 50%, #510e2880);
  z-index: -1;
  pointer-events: none;
}
.hero-art:hover .hero-photo {
  transform: scale(1.04);
}
.photo-script {
  position: absolute;
  top: 90px;
  left: 35px;
  font-family: var(--serif);
  font-size: 34px;
  color: #ffdcdf;
  line-height: 1.1;
  transform: rotate(-8deg);
}
.photo-script em {
  font-size: 74px;
  line-height: 0.9;
}
.section {
  padding: 95px 7%;
}
.section-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.09em;
  font-weight: 700;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-bottom: 65px;
}
h2 {
  font-size: clamp(40px, 4.5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1.08;
  margin: 0;
}
h2 em,
h3 em {
  font-family: var(--serif);
  font-weight: 400;
}
h3 {
  letter-spacing: -0.035em;
}
.approach {
  background: var(--pink-light);
}
.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 9%;
}
.section-intro > p {
  max-width: 340px;
  margin: 30px 0 20px;
}
.hand-note {
  font-family: var(--serif);
  font-size: 27px;
  font-style: italic;
  display: block;
  transform: rotate(-6deg);
  margin: 24px 0;
}
.belief {
  display: flex;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.belief:first-child {
  padding-top: 5px;
}
.belief-number {
  font-size: 12px;
  opacity: 0.65;
  padding-top: 4px;
}
.belief h3 {
  font-size: 24px;
  line-height: 1.3;
  margin: 6px 0 12px;
  font-weight: 600;
}
.belief p {
  font-size: 14px;
  margin: 0;
  max-width: 360px;
  line-height: 1.8;
}
.belief p.old-belief {
  font-size: 12px;
  opacity: 0.7;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.belief-mark {
  font-size: 26px;
  margin-left: auto;
  align-self: center;
  transition: transform 0.3s;
}
.belief:hover .belief-mark {
  transform: translate(3px, -3px);
}
.manifesto {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--berry);
  color: var(--pink-light);
  position: relative;
  overflow: hidden;
}
.manifesto-photo {
  position: relative;
  min-height: 700px;
}
.manifesto-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: 50% 32%;
}
.manifesto-photo:after {
  content: "";
  position: absolute;
  inset: 70% 0 0;
  background: linear-gradient(transparent, #2709178c);
}
.manifesto-photo > span {
  position: absolute;
  bottom: 28px;
  left: 35px;
  font-size: 12px;
  letter-spacing: 0.07em;
  z-index: 1;
  color: #fff;
}
.manifesto-copy {
  padding: 85px 13%;
  align-self: center;
}
.manifesto-copy .eyebrow {
  margin-bottom: 30px;
  line-height: 1.6;
}
.manifesto-copy h2 {
  font-size: clamp(40px, 4.8vw, 78px);
  position: relative;
  z-index: 2;
}
.manifesto-copy > p:not(.eyebrow) {
  max-width: 360px;
  font-size: 16px;
  opacity: 0.88;
  margin: 30px 0;
}
.button-lime {
  background: var(--lime);
  color: var(--ink);
}
.manifesto-copy .button {
  font-size: 13px;
  padding: 18px 22px;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.manifesto-star {
  position: absolute;
  right: -60px;
  bottom: -110px;
  font-size: 390px;
  line-height: 1;
  opacity: 0.1;
  pointer-events: none;
  animation: rotate 100s linear infinite;
}
.inside {
  background: #f5bbcc;
  padding-bottom: 110px;
}
.inside-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 55px;
}
.inside-heading > p {
  font-size: 15px;
  max-width: 280px;
  margin: 0 0 5px;
  line-height: 1.8;
}
.program-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: center;
}
.program-tabs {
  border-top: 1px solid var(--line);
}
.program-tab {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 27px 18px;
  text-align: left;
  transition:
    background 0.3s,
    border-radius 0.3s;
  color: var(--ink);
}
.program-tab > span:first-child {
  font-size: 12px;
  opacity: 0.7;
}
.program-tab > span:nth-child(2) {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.3;
}
.program-tab small {
  font-size: 12px;
  display: block;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 5px;
}
.program-tab > b {
  margin-left: auto;
  font-size: 23px;
  font-weight: 400;
}
.program-tab.active {
  background: var(--berry);
  color: var(--pink-light);
  border-radius: 10px;
  border-color: transparent;
}
.program-tab:hover:not(.active) {
  background: #f4a7bf80;
}
.program-note {
  font-size: 12px;
  margin-top: 24px;
}
.program-stage {
  background: var(--hot);
  border-radius: 16px;
  padding: 40px 50px 25px;
  position: relative;
  perspective: 900px;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sample-page {
  background: #ffdbe4;
  color: var(--ink);
  padding: 27px 30px 24px;
  box-shadow:
    10px 20px 0 #85143c33,
    0 25px 35px #510e2820;
  transform: rotate(3deg);
  transition:
    transform 0.4s,
    opacity 0.2s;
  min-height: 455px;
  width: 100%;
  max-width: 380px;
  position: relative;
}
.program-stage:hover .sample-page {
  transform: rotate(0deg) translateY(-4px);
}
.sample-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
  margin-bottom: 26px;
}
.sample-top > span:first-child {
  font-size: 25px;
  letter-spacing: -2px;
  font-weight: 800;
}
.sample-top > span:last-child {
  font-size: 9px;
  letter-spacing: 0.06em;
}
.sample-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.sample-page h3 {
  font-size: 39px;
  line-height: 1.1;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin: 16px 0;
}
.sample-page > p:not(.sample-kicker) {
  font-size: 12px;
  line-height: 1.7;
}
.sample-exercise {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 23px;
}
.sample-exercise > span {
  font-size: 9px;
  letter-spacing: 0.07em;
  font-weight: 700;
}
.sample-exercise p {
  font-size: 11px;
  line-height: 1.7;
}
.writing-lines {
  height: 35px;
  background: repeating-linear-gradient(
    transparent 0 16px,
    var(--line) 16px 17px
  );
}
.sample-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 27px;
  font-size: 8px;
  letter-spacing: 0.04em;
}
.stage-caption {
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
  color: var(--pink-light);
  margin-top: 30px;
  transform: rotate(-5deg);
}
.ritual {
  background: var(--lime);
  color: var(--ink);
  padding-top: 85px;
  padding-bottom: 85px;
}
.ritual-title .eyebrow {
  margin-bottom: 25px;
}
.ritual-title h2 {
  font-size: clamp(36px, 4.2vw, 66px);
}
.ritual-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 60px;
}
.ritual-steps article {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.ritual-steps article > span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.ritual-steps h3 {
  font-size: 27px;
  line-height: 1.25;
  font-weight: 500;
  margin: 22px 0 15px;
}
.ritual-steps p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 300px;
}
.offer {
  background: var(--pink);
  position: relative;
}
.offer-heading {
  text-align: center;
  margin: 0 auto 55px;
}
.offer-heading .eyebrow {
  justify-content: center;
  margin-bottom: 25px;
}
.offer-heading h2 {
  font-size: clamp(45px, 5.5vw, 85px);
}
.offer-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  max-width: 1040px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  background: var(--pink-light);
  box-shadow: 0 24px 70px #85143c14;
}
.offer-product {
  background: var(--berry);
  color: var(--pink-light);
  padding: 45px 48px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.offer-label {
  font-size: 12px;
  letter-spacing: 0.06em;
}
.offer-product h3 {
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.065em;
  font-weight: 500;
  margin: 45px 0 35px;
}
.offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.offer-tags span {
  border: 1px solid #fbd0dc66;
  border-radius: 50px;
  font-size: 9px;
  padding: 6px 10px;
  letter-spacing: 0.04em;
}
.offer-product > p {
  font-size: 13px;
  line-height: 1.8;
  margin: 20px 0 0;
}
.offer-purchase {
  padding: 45px 48px;
  align-self: center;
}
.offer-purchase .eyebrow {
  font-size: 10px;
  letter-spacing: 0.07em;
}
.price {
  font-size: 76px;
  line-height: 1.2;
  letter-spacing: -0.075em;
  font-weight: 500;
  margin: 20px 0;
}
.price span {
  display: block;
  font-size: 12px;
  letter-spacing: 0;
  opacity: 0.7;
  margin-top: 3px;
}
.offer-purchase ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  font-size: 14px;
}
.offer-purchase li {
  padding: 7px 0;
  display: flex;
  gap: 12px;
}
.offer-purchase li:before {
  content: "✓";
  font-weight: 700;
}
.offer-purchase .button {
  width: 100%;
}
.purchase-note {
  font-size: 11px;
  text-align: center;
  line-height: 1.7;
  margin: 13px 0 0;
  opacity: 0.8;
}
.offer-footnote {
  font-size: 12px;
  text-align: center;
  max-width: 790px;
  margin: 28px auto 0;
  opacity: 0.7;
  line-height: 1.8;
}
.faq {
  background: var(--pink-light);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8%;
  padding-top: 85px;
  padding-bottom: 95px;
}
.faq-heading .eyebrow {
  margin-bottom: 23px;
}
.faq-items details {
  border-bottom: 1px solid var(--line);
}
.faq-items details:first-child {
  border-top: 1px solid var(--line);
}
.faq-items summary {
  list-style: none;
  cursor: pointer;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}
.faq-items summary::-webkit-details-marker {
  display: none;
}
.faq-items summary > span {
  font-size: 27px;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-items details[open] summary > span {
  transform: rotate(45deg);
}
.faq-items details p {
  font-size: 14px;
  margin: 0 32px 25px 0;
  line-height: 1.9;
}
.closing {
  background: var(--hot);
  color: var(--ink);
  padding: 55px 7% 50px;
  overflow: hidden;
}
.closing > span {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.closing > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(76px, 13vw, 200px);
  letter-spacing: -0.075em;
  font-weight: 500;
  line-height: 1.3;
}
.closing > a em {
  font-style: normal;
  font-size: 0.8em;
  transition: transform 0.4s;
}
.closing > a:hover em {
  transform: translate(10px, -10px);
}
.footer {
  background: var(--pink);
}
.footer small {
  max-width: 190px;
}
.motion-toggle {
  background: none;
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 8px 12px;
  font-size: 12px;
}
.mobile-purchase {
  display: none;
}
.reveal {
  opacity: 1;
  transform: none;
}
.js-motion .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(26px);
}
.js-motion .reveal {
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
dialog {
  border: 0;
  padding: 0;
  border-radius: 20px;
  background: var(--pink-light);
  color: var(--ink);
  max-height: 90dvh;
  width: min(650px, calc(100% - 28px));
  max-width: 650px;
  box-shadow: 0 40px 150px #280c2299;
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: #350c26b3;
  backdrop-filter: blur(10px);
}
dialog[open] {
  animation: arrive 0.3s ease both;
}
.dialog-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 32px 20px;
}
.dialog-header .eyebrow {
  font-size: 10px;
  margin: 0 0 12px;
}
.dialog-header h2 {
  font-size: 36px;
  letter-spacing: -0.05em;
}
.close-button {
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 27px;
  line-height: 1;
  flex: none;
}
.preview-content {
  padding: 0 32px 25px;
}
.preview-disclaimer {
  font-size: 12px;
  margin: 0 0 18px;
}
.preview-page {
  background: var(--berry);
  color: var(--pink-light);
  padding: 30px;
  border-radius: 8px;
  min-height: 420px;
}
.preview-page h3 {
  font-size: 46px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.05em;
  margin: 20px 0;
}
.preview-page > p {
  font-size: 16px;
  line-height: 1.8;
}
.preview-page .eyebrow {
  font-size: 11px;
}
.preview-practice {
  border-top: 1px solid #fbd0dc50;
  padding-top: 20px;
  margin-top: 28px;
}
.preview-practice p {
  font-size: 15px;
  line-height: 1.8;
}
.preview-page .preview-bottom {
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  margin: 28px 0 0;
}
.preview-controls {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
  margin-top: 22px;
}
.preview-controls > span {
  font-size: 12px;
  min-width: 50px;
  text-align: center;
}
.round-button {
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 21px;
}
.round-button:disabled {
  opacity: 0.3;
  cursor: default;
}
.checkout-content {
  padding: 0 32px 30px;
}
.demo-note {
  padding: 13px 16px;
  border-radius: 8px;
  background: #f4a7bf80;
  font-size: 12px;
  line-height: 1.8;
}
.order-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-block: 1px solid var(--line);
  padding: 24px 0;
  gap: 15px;
  margin: 24px 0;
}
.order-line b {
  font-size: 15px;
  font-weight: 600;
}
.order-line span {
  display: block;
  font-size: 12px;
  margin-top: 7px;
}
.order-line strong {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.06em;
}
.checkout-content fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 25px;
}
.checkout-content legend {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}
.payment-option {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 15px;
  border: 1px solid var(--line);
  border-radius: 9px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}
.payment-option:has(input:checked) {
  background: #f4a7bf88;
  border-color: var(--berry);
}
.payment-option input {
  accent-color: var(--berry);
  width: 18px;
  height: 18px;
  flex: none;
}
.payment-option small {
  display: block;
  font-size: 11px;
  margin-top: 4px;
}
.payment-option b {
  font-weight: 400;
  font-size: 28px;
  margin-left: auto;
}
.checkout-next {
  width: 100%;
  font-size: 13px;
}
.delivery-star {
  font-size: 64px;
  color: var(--berry);
  display: block;
  line-height: 1.3;
  margin-bottom: 15px;
}
.checkout-content [hidden] {
  display: none !important;
}
#checkout-delivery {
  text-align: center;
  padding: 20px 0 10px;
}
#checkout-delivery .eyebrow {
  justify-content: center;
  font-size: 11px;
}
#checkout-delivery h3 {
  font-size: 65px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.065em;
  margin: 20px 0;
}
#checkout-delivery > p {
  font-size: 15px;
  max-width: 380px;
  margin: 0 auto 25px;
  line-height: 1.9;
}
#checkout-delivery .text-button {
  display: block;
  margin: 18px auto 0;
}
body.modal-open {
  overflow: hidden;
}
.motion-paused *,
.motion-paused *:before,
.motion-paused *:after {
  animation-play-state: paused !important;
  transition: none !important;
}
.motion-paused .reveal {
  opacity: 1 !important;
  transform: none !important;
}
.motion-paused {
  scroll-behavior: auto;
}
/* Comfortable sizes for Cyrillic and small screens. */
.hero-topline,
.hero-bottom,
.eyebrow,
.micro,
.image-note,
.footer small,
.orbit-badge span {
  font-size: 12px;
}
.orbit-badge {
  width: 138px;
  height: 138px;
  right: 12px;
  top: 25px;
}
.orbit-badge span {
  font-size: 10px;
  letter-spacing: 0;
}
.hero-description {
  font-size: 16px;
}
.section-intro > p,
.belief p,
.inside-heading > p,
.ritual-steps p,
.offer-product > p,
.faq-items details p {
  font-size: 16px;
}
.sample-top > span:last-child,
.sample-kicker,
.sample-exercise > span,
.sample-exercise p,
.sample-bottom {
  font-size: 12px;
}
.sample-page > p:not(.sample-kicker) {
  font-size: 14px;
}
.sample-page {
  min-height: 515px;
}
.sample-page h3 {
  font-size: 37px;
}
.sample-bottom {
  font-size: 10px;
}
.program-stage {
  min-height: 635px;
}
.offer-tags span,
.offer-purchase .eyebrow,
.purchase-note,
.dialog-header .eyebrow,
.payment-option small {
  font-size: 12px;
}
.hero-bottom > span {
  font-size: 10px;
}
.hero-topline > span {
  font-size: 10px;
}
@media (min-width: 1600px) {
  .section {
    padding-left: max(7%, calc((100vw - 1420px) / 2));
    padding-right: max(7%, calc((100vw - 1420px) / 2));
  }
  .manifesto {
    max-width: 1900px;
    margin: auto;
  }
}
@media (max-width: 1100px) {
  .section {
    padding: 75px 6%;
  }
  .hero-grid {
    gap: 3%;
  }
  .approach-layout {
    gap: 6%;
  }
  .manifesto-photo {
    min-height: 640px;
  }
  .manifesto-copy {
    padding: 60px 9%;
  }
  .program-layout {
    gap: 5%;
  }
  .program-stage {
    padding: 35px 30px 25px;
  }
  .program-tab {
    gap: 15px;
    padding: 25px 12px;
  }
  .program-tab > span:nth-child(2) {
    font-size: 21px;
  }
  .offer-purchase,
  .offer-product {
    padding: 35px;
  }
  .offer-product h3 {
    font-size: 63px;
  }
  .offer-tags {
    max-width: 300px;
  }
  .ritual-steps {
    gap: 30px;
  }
  .footer {
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer small {
    max-width: none;
  }
  .inside-heading h2 {
    font-size: 48px;
  }
  .inside-heading > p {
    font-size: 14px;
  }
}
@media (max-width: 800px) {
  .hero-grid {
    gap: 3%;
  }
  .hero-art {
    min-height: 520px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding: 16px 18px;
  }
  .hero-topline > span:last-child {
    display: none;
  }
  .hero-bottom > span {
    font-size: 8px;
  }
  .photo-script {
    left: 25px;
    font-size: 26px;
    top: 110px;
  }
  .photo-script em {
    font-size: 58px;
  }
  .orbit-badge {
    width: 110px;
    height: 110px;
  }
  .orbit-badge span {
    font-size: 8px;
  }
  .approach-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .section-intro h2 br:nth-child(2) {
    display: none;
  }
  .section-intro > p {
    max-width: 470px;
  }
  .hand-note {
    display: none;
  }
  .belief {
    padding: 25px 0;
  }
  .belief p {
    max-width: none;
  }
  .manifesto {
    grid-template-columns: 1fr 1fr;
  }
  .manifesto-photo {
    min-height: 570px;
  }
  .manifesto-copy {
    padding: 45px 9%;
  }
  .manifesto-copy h2 {
    font-size: 44px;
  }
  .manifesto-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .manifesto-copy .button {
    font-size: 12px;
    gap: 10px;
    padding: 14px 17px;
  }
  .manifesto-photo > span {
    left: 20px;
    font-size: 10px;
  }
  .inside-heading {
    align-items: start;
    gap: 20px;
  }
  .inside-heading h2 {
    font-size: 43px;
  }
  .inside-heading > p {
    max-width: 210px;
    font-size: 14px;
  }
  .program-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .program-stage {
    min-height: 640px;
  }
  .program-menu .text-button {
    margin-top: 5px;
  }
  .program-tab > span:nth-child(2) {
    font-size: 24px;
  }
  .program-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 0;
    gap: 6px;
  }
  .program-tab {
    padding: 20px 14px;
  }
  .program-tab > span:nth-child(2) {
    font-size: 18px;
  }
  .program-tab small {
    font-size: 11px;
  }
  .program-tab > b {
    font-size: 20px;
  }
  .ritual-steps {
    gap: 24px;
  }
  .ritual-steps h3 {
    font-size: 23px;
  }
  .ritual-steps p {
    font-size: 14px;
  }
  .offer-card {
    grid-template-columns: 1fr 1fr;
  }
  .offer-product,
  .offer-purchase {
    padding: 32px 26px;
  }
  .offer-product h3 {
    font-size: 58px;
  }
  .offer-product > p {
    font-size: 14px;
  }
  .offer-purchase li {
    font-size: 12px;
  }
  .offer-purchase .eyebrow {
    font-size: 10px;
  }
  .offer-purchase .button {
    padding: 15px 18px;
    gap: 15px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .faq-heading h2 br {
    display: none;
  }
  .section-meta {
    margin-bottom: 45px;
  }
  .section-meta span {
    font-size: 10px;
  }
}
@media (max-width: 640px) {
  .hero-art {
    min-height: 460px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-actions .button {
    font-size: 13px;
    padding: 16px 22px;
  }
  .hero-actions .text-button {
    font-size: 13px;
  }
  .hero-topline > span {
    font-size: 10px;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  .micro {
    font-size: 12px;
  }
  .hero-description {
    max-width: 100%;
  }
  .photo-script {
    left: 30px;
    top: 70px;
    font-size: 29px;
  }
  .photo-script em {
    font-size: 65px;
  }
  .orbit-badge {
    right: 14px;
    top: 20px;
    width: 122px;
    height: 122px;
  }
  .orbit-badge span {
    font-size: 9px;
  }
  .image-note {
    font-size: 10px;
    flex-direction: row;
    align-items: center;
  }
  .image-note span:last-child {
    font-size: 16px;
  }
  .section {
    padding: 60px 6%;
  }
  .section-meta {
    margin-bottom: 35px;
    padding-top: 15px;
  }
  .section-meta span:last-child {
    display: none;
  }
  .section-meta span:first-child {
    font-size: 11px;
  }
  h2 {
    font-size: 44px;
  }
  .section-intro h2 br:nth-child(2) {
    display: initial;
  }
  .section-intro > p {
    font-size: 16px;
    margin-top: 24px;
  }
  .approach-layout {
    gap: 15px;
  }
  .belief {
    gap: 14px;
    padding: 24px 0;
  }
  .belief h3 {
    font-size: 22px;
  }
  .belief p {
    font-size: 15px;
  }
  .belief p.old-belief {
    font-size: 12px;
  }
  .belief-mark {
    display: none;
  }
  .manifesto {
    grid-template-columns: 1fr;
  }
  .manifesto-photo {
    min-height: 450px;
    max-height: 600px;
    aspect-ratio: 1/1.1;
  }
  .manifesto-photo img {
    object-position: 50% 25%;
  }
  .manifesto-photo > span {
    font-size: 11px;
    left: 6%;
    bottom: 20px;
  }
  .manifesto-copy {
    padding: 45px 6% 60px;
  }
  .manifesto-copy h2 {
    font-size: clamp(47px, 12vw, 65px);
  }
  .manifesto-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .manifesto-copy .eyebrow {
    font-size: 10px;
  }
  .manifesto-copy .button {
    font-size: 13px;
    padding: 17px 22px;
    gap: 25px;
  }
  .manifesto-star {
    font-size: 270px;
    bottom: -60px;
    right: -40px;
  }
  .inside-heading {
    display: block;
    margin-bottom: 30px;
  }
  .inside-heading h2 {
    font-size: 40px;
  }
  .inside-heading > p {
    font-size: 16px;
    max-width: 100%;
    margin-top: 23px;
  }
  .inside-heading > p br {
    display: none;
  }
  .program-tabs {
    gap: 0;
    display: block;
    border-top: 1px solid var(--line);
  }
  .program-tab {
    padding: 19px 14px;
  }
  .program-tab > span:nth-child(2) {
    font-size: 20px;
  }
  .program-tab small {
    font-size: 12px;
  }
  .program-note {
    line-height: 1.8;
  }
  .program-stage {
    padding: 28px 22px 20px;
    min-height: 600px;
    border-radius: 12px;
  }
  .sample-page {
    padding: 24px 23px;
    min-height: 500px;
  }
  .sample-page h3 {
    font-size: 35px;
  }
  .sample-page > p:not(.sample-kicker) {
    font-size: 14px;
  }
  .sample-top > span:last-child {
    font-size: 9px;
  }
  .sample-kicker {
    font-size: 10px;
  }
  .sample-exercise > span {
    font-size: 10px;
  }
  .sample-exercise p {
    font-size: 12px;
  }
  .sample-bottom {
    font-size: 8px;
  }
  .stage-caption {
    font-size: 22px;
    margin-top: 27px;
  }
  .ritual-title .eyebrow {
    font-size: 11px;
  }
  .ritual-title h2 {
    font-size: 39px;
  }
  .ritual-steps {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 35px;
  }
  .ritual-steps article {
    padding-top: 20px;
  }
  .ritual-steps h3 {
    font-size: 26px;
    margin: 15px 0 12px;
  }
  .ritual-steps h3 br {
    display: none;
  }
  .ritual-steps p {
    font-size: 16px;
    max-width: none;
    margin-bottom: 0;
  }
  .offer-heading h2 {
    font-size: 47px;
  }
  .offer-heading .eyebrow {
    font-size: 10px;
  }
  .offer-heading {
    margin-bottom: 35px;
  }
  .offer-card {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }
  .offer-product,
  .offer-purchase {
    padding: 32px 28px;
  }
  .offer-product h3 {
    font-size: 68px;
    margin: 30px 0;
  }
  .offer-tags span {
    font-size: 10px;
  }
  .offer-product > p {
    font-size: 15px;
  }
  .offer-purchase .eyebrow {
    font-size: 12px;
  }
  .offer-purchase li {
    font-size: 14px;
  }
  .offer-purchase .button {
    font-size: 14px;
    padding: 18px 23px;
  }
  .price {
    font-size: 75px;
  }
  .offer-footnote {
    font-size: 12px;
    text-align: left;
  }
  .faq-heading h2 {
    font-size: 44px;
  }
  .faq-heading .eyebrow {
    font-size: 11px;
  }
  .faq-items summary {
    font-size: 15px;
    padding: 23px 0;
  }
  .faq-items details p {
    font-size: 15px;
    margin-right: 18px;
  }
  .closing {
    padding: 42px 6% 38px;
  }
  .closing > span {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .closing > a {
    font-size: clamp(62px, 17vw, 100px);
    margin-top: 10px;
  }
  .footer {
    padding: 32px 6% 110px;
  }
  .footer p {
    font-size: 18px;
  }
  .footer small {
    font-size: 11px;
    max-width: 100%;
    width: 100%;
  }
  .motion-toggle {
    font-size: 12px;
    margin-top: 5px;
  }
  .mobile-purchase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 15;
    border: 1px solid #510e2830;
    background: #fbd0dcf2;
    backdrop-filter: blur(16px);
    border-radius: 50px;
    padding: 9px 10px 9px 22px;
    box-shadow: 0 5px 30px #510e2820;
    transform: translateY(150%);
    transition: transform 0.35s;
  }
  .mobile-purchase.show {
    transform: translateY(0);
  }
  .mobile-purchase > span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
  }
  .mobile-purchase small {
    display: block;
    font-size: 10px;
    font-weight: 400;
  }
  .mobile-purchase .button {
    min-height: 45px;
    padding: 12px 21px;
    gap: 20px;
  }
  .dialog-header {
    padding: 24px 22px 18px;
  }
  .dialog-header h2 {
    font-size: 30px;
  }
  .dialog-header .eyebrow {
    font-size: 9px;
  }
  .close-button {
    width: 35px;
    height: 35px;
    font-size: 24px;
  }
  .preview-content,
  .checkout-content {
    padding: 0 22px 24px;
  }
  .preview-disclaimer {
    font-size: 11px;
  }
  .preview-page {
    padding: 24px 22px;
    min-height: 430px;
  }
  .preview-page h3 {
    font-size: 39px;
  }
  .preview-page > p {
    font-size: 15px;
  }
  .preview-page .eyebrow {
    font-size: 10px;
  }
  .preview-practice p {
    font-size: 14px;
  }
  .preview-page .preview-bottom {
    font-size: 20px;
  }
  .demo-note {
    font-size: 12px;
    padding: 12px;
  }
  .order-line b {
    font-size: 14px;
  }
  .order-line span {
    font-size: 11px;
  }
  .order-line strong {
    font-size: 28px;
  }
  .payment-option {
    padding: 15px 10px;
    gap: 9px;
    font-size: 13px;
  }
  .payment-option small {
    font-size: 11px;
  }
  .payment-option b {
    display: none;
  }
  .checkout-next {
    font-size: 12px;
    padding: 17px 18px;
    gap: 15px;
  }
  .purchase-note {
    font-size: 11px;
  }
  #checkout-delivery h3 {
    font-size: 55px;
  }
  #checkout-delivery > p {
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .hero-actions {
    gap: 12px;
  }
  .hero-actions .button {
    font-size: 12px;
    gap: 15px;
    padding: 15px 18px;
  }
  .hero-actions .text-button {
    font-size: 11px;
  }
  .hero-description {
    font-size: 15px;
  }
  .offer-product,
  .offer-purchase {
    padding: 28px 22px;
  }
  .sample-page {
    padding: 20px;
  }
  .sample-top > span:last-child {
    font-size: 8px;
  }
}
.hero-art {
  overflow: visible;
}
.hero-photo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  z-index: -2;
}
.hero-art:after {
  border-radius: inherit;
}
.hero-photo {
  z-index: auto;
}
.orbit-badge {
  top: 62px;
  right: -18px;
  width: 154px;
  height: 154px;
}
.orbit-badge span {
  font-size: 11px;
}
.photo-script {
  top: 105px;
  left: 42px;
}
.hero-topline > span,
.hero-bottom > span,
.sample-top > span:last-child,
.sample-kicker,
.sample-exercise > span,
.sample-exercise p,
.sample-bottom,
.offer-tags span,
.offer-purchase .eyebrow,
.dialog-header .eyebrow,
.preview-page .eyebrow,
.payment-option small,
.order-line span,
.purchase-note,
.preview-disclaimer,
.section-meta span,
.manifesto-photo > span,
.closing > span,
.footer small,
.mobile-purchase small,
.program-tab small {
  font-size: 12px;
}
.sample-top > span:last-child {
  max-width: 150px;
  text-align: right;
}
.sample-bottom {
  gap: 12px;
  align-items: end;
}
.sample-bottom > span:last-child {
  white-space: nowrap;
}
.hero-description,
.belief p,
.inside-heading > p,
.ritual-steps p,
.offer-product > p,
.faq-items details p,
.manifesto-copy > p:not(.eyebrow) {
  font-size: 16px;
}
.sample-page {
  height: auto;
}
.hero-topline {
  gap: 20px;
}
.hero-bottom {
  gap: 25px;
}
.header nav,
.header-cta,
.text-button {
  font-size: 14px;
}
@media (max-width: 900px) {
  .orbit-badge {
    width: 128px;
    height: 128px;
    right: -10px;
    top: 42px;
  }
  .orbit-badge span {
    font-size: 9px;
  }
  .photo-script {
    left: 24px;
    top: 145px;
  }
  .hero-bottom > span {
    font-size: 12px;
    max-width: 360px;
  }
  .manifesto-copy .button {
    white-space: normal;
  }
  .hero-actions .text-button {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .orbit-badge {
    top: 36px;
    right: -6px;
    width: 142px;
    height: 142px;
  }
  .orbit-badge span {
    font-size: 10px;
  }
  .photo-script {
    left: 28px;
    top: 130px;
  }
  .hero .eyebrow,
  .manifesto-copy .eyebrow,
  .offer-heading .eyebrow,
  .ritual-title .eyebrow,
  .faq-heading .eyebrow,
  .image-note {
    font-size: 12px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .text-button {
    font-size: 14px;
  }
  .sample-page {
    transform: rotate(2deg);
    padding: 24px 20px;
  }
  .sample-top > span:last-child {
    font-size: 12px;
    max-width: 130px;
  }
  .sample-kicker {
    font-size: 12px;
  }
  .sample-bottom {
    font-size: 12px;
  }
  .program-stage {
    min-height: 630px;
  }
  .offer-tags {
    gap: 8px;
  }
  .offer-tags span {
    font-size: 12px;
  }
  .header-cta {
    font-size: 12px;
  }
  .mobile-purchase > span {
    font-size: 13px;
  }
  .mobile-purchase small {
    font-size: 12px;
  }
  .dialog-header .eyebrow {
    font-size: 12px;
  }
  .preview-page .eyebrow {
    font-size: 12px;
  }
  .preview-practice p,
  #checkout-delivery > p {
    font-size: 16px;
  }
  .payment-option {
    font-size: 14px;
  }
  .purchase-note,
  .payment-option small,
  .order-line span {
    font-size: 12px;
  }
  .footer p {
    font-size: 20px;
  }
}
.motion-paused *,
.motion-paused *:before,
.motion-paused *:after {
  animation: none !important;
  transition: none !important;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .js-motion .reveal:not(.visible) {
    opacity: 1;
    transform: none;
  }
}
