:root {
  --hero-bg: #14121e;
  --hero-bg-light: #331933;
  --hero-bg-dark: #221f2f;
  --page-bg: #11101a;
  --ink: #f4e6ea;
  --ink-soft: rgba(244, 230, 234, 0.72);
  --blush: #ffd6e2;
  --blush-deep: #e8a0b8;
  --line: rgba(255, 214, 226, 0.18);
  --card: #1c1a2b;
  --cta-light: #a4157a;
  --cta-mid: #ff52cb;
  --cta-deep: #930769;
  --cta-ink: #fff2f6;
  --serif: "Libre Baskerville", "Times New Roman", serif;
  --sans: "Poppins", system-ui, sans-serif;
  --hero-max: 1920px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
}

.page-glow {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 50vh;
  height: 50dvh;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  animation: page-glow-reveal linear both;
  animation-timeline: scroll();
  mix-blend-mode: screen;
  background:
    radial-gradient(
      ellipse 80% 70% at 50% 108%,
      rgba(255, 226, 220, 0.28) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 180% 130% at 50% 108%,
      rgba(255, 130, 196, 0.55) 0%,
      rgba(255, 82, 203, 0.28) 36%,
      rgba(255, 170, 210, 0.1) 62%,
      transparent 84%
    );
}

@keyframes page-glow-reveal {
  to {
    opacity: 0.5;
  }
}

.page-glow__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  -webkit-mask-image: radial-gradient(
    ellipse 180% 130% at 50% 108%,
    #000 0%,
    rgba(0, 0, 0, 0.7) 40%,
    transparent 84%
  );
  mask-image: radial-gradient(
    ellipse 180% 130% at 50% 108%,
    #000 0%,
    rgba(0, 0, 0, 0.7) 40%,
    transparent 84%
  );
}

img {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.center {
  text-align: center!important;
}
.stage,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.stage {
  height: 100vh;
  height: 100dvh;
  min-height: 32rem;
}

.hero {
  --emitter-x: 22%;
  --emitter-y: 23%;
  position: relative;
  height: 100%;
  min-height: 0;
  background: radial-gradient(
    ellipse at var(--emitter-x) var(--emitter-y),
    var(--hero-bg-light) 0%,
    var(--hero-bg-dark) 62%
  );
  overflow: hidden;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: overlay;
}

.hero-frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: stretch;
  width: 100%;
  max-width: var(--hero-max);
  height: 100%;
  margin-inline: auto;
}

.hero-inner {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: stretch;
  height: 100%;
  min-width: 0;
  padding: 0 clamp(0.5rem, 2vw, 2rem);
}

.portrait {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  min-width: 0;
}

.laura {
  position: relative;
  z-index: 3;
  display: block;
  height: 100%;
  width: auto;
  max-width: min(52vw, 37rem);
  object-fit: contain;
  object-position: bottom center;
  pointer-events: none;
  user-select: none;
}

.starfield {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}

.starfield canvas {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 2px rgba(255, 214, 226, 0.45));
}

.lotus {
  position: absolute;
  left: 50%;
  bottom: -20%;
  z-index: 1;
  display: block;
  width: min(78vw, 70rem);
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

/* Absolute rather than grid-placed: the portrait makes the hero row taller than
   the viewport, and this column has to stay inside the visible, unclipped area. */
.logo-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3.5vh, 2.5rem);
  width: 40%;
  padding: 5vh 4vw 4vh 0;
  min-width: 0;
}

.logo {
  --logo-title: clamp(2.35rem, 4.5vw, 3.75rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(66%, 28rem);
  text-align: center;
  color: var(--ink);
  user-select: none;
}

@property --logo-breathe {
  syntax: "<percentage>";
  inherits: true;
  initial-value: -32%;
}

.logo__title {
  --logo-flow-angle: 105deg;
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--logo-title);
  line-height: 1.22;
  letter-spacing: 0.01em;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.016em var(--hero-bg);
  background-image:
    linear-gradient(
      var(--logo-flow-angle),
      color-mix(in srgb, var(--cta-light) 25%, transparent) 0%,
      color-mix(in srgb, var(--cta-light) 25%, transparent) calc(var(--logo-breathe) - 32%),
      color-mix(in srgb, var(--cta-mid) 50%, transparent) var(--logo-breathe),
      color-mix(in srgb, var(--cta-light) 25%, transparent) calc(var(--logo-breathe) + 32%),
      color-mix(in srgb, var(--cta-light) 25%, transparent) 100%
    ),
    linear-gradient(var(--ink), var(--ink));
  background-clip: text, text;
  -webkit-background-clip: text;
  animation: logo-title-flow 8s linear infinite;
}

@keyframes logo-title-flow {
  from {
    --logo-breathe: -32%;
  }

  to {
    --logo-breathe: 132%;
  }
}

.logo__title span {
  display: block;
  white-space: nowrap;
}

.logo__sans {
  font-family: var(--sans);
  font-weight: 200;
  line-height: 1;
  text-transform: uppercase;
}

.logo__meditation {
  margin: calc(var(--logo-title) * 0.42) 0 0;
  font-size: calc(var(--logo-title) * 0.46);
  letter-spacing: 0.46em;
  text-indent: 0.46em;
}

.logo__with {
  margin: calc(var(--logo-title) * 0.28) 0 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: calc(var(--logo-title) * 0.28);
  line-height: 1;
  -webkit-text-stroke: 0.016em var(--hero-bg);
}

.logo__name {
  margin: calc(var(--logo-title) * 0.24) 0 0;
  font-size: calc(var(--logo-title) * 0.37);
  letter-spacing: 0.4em;
  text-indent: 0.4em;
}

.hero-offer {
  width: min(100%, 25rem);
  text-align: center;
}

.hero-offer__badge {
  margin: 0 0 0.6rem;
  color: var(--blush-deep);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-offer__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 0 0.55rem;
  font-family: var(--serif);
  line-height: 1;
}

.hero-offer__was,
.price__was {
  position: relative;
  color: rgba(244, 230, 234, 0.45);
  font-size: 1.05rem;
  font-weight: 400;
}

.hero-offer__was::after,
.price__was::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  top: 52%;
  height: 1px;
  background: currentColor;
  transform: rotate(-8deg);
}

.hero-offer__now {
  font-size: clamp(2.1rem, 3.4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem 0.55rem;
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.countdown__clock {
  display: flex;
  gap: 0.5rem;
  color: var(--blush);
  font-variant-numeric: tabular-nums;
}

.countdown__unit {
  display: inline-flex;
  align-items: baseline;
  gap: 0.08em;
}

.countdown__value {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.countdown__label {
  font-size: 0.62rem;
  opacity: 0.6;
}

.countdown[data-expired] {
  display: none;
}

.cta {
  display: block;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--cta-light) 0%,
    var(--cta-mid) 52%,
    var(--cta-deep) 100%
  );
  color: var(--cta-ink);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.cta:active {
  transform: translateY(0);
}

.cta:focus-visible {
  outline: 2px solid var(--blush);
  outline-offset: 3px;
}

.hero-offer__fine {
  margin: 0.75rem 0 0;
  color: rgba(244, 230, 234, 0.5);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.hero-thanks {
  width: min(100%, 26.5rem);
  text-align: center;
}

.hero-thanks__title {
  margin: 0 0 0.85rem;
  color: var(--blush-deep);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-thanks__lead {
  margin: 0 0 1.5rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(0.98rem, 1.55vw, 1.12rem);
  font-weight: 400;
  line-height: 1.65;
}

.hero-thanks__subhead {
  margin: 0 0 0.7rem;
  color: var(--blush);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
}

.hero-thanks p {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-size: 1.2rem;
  line-height: 1.7;
}

.hero-thanks p:last-child {
  margin-bottom: 0;
}

.hero-thanks a {
  color: var(--blush);
  text-underline-offset: 0.18em;
}

.hero-thanks a:hover {
  color: var(--ink);
}

.hero-thanks a:focus-visible {
  outline: 2px solid var(--blush);
  outline-offset: 3px;
}

.hero-thanks__support {
  margin-top: 1.15rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.page-thanks .page-glow {
  display: none;
}

.page-thanks .stage {
  height: auto;
  min-height: 64rem;
}

.page-thanks .hero,
.page-thanks .hero-frame,
.page-thanks .hero-inner,
.page-thanks .portrait {
  height: max(64rem, 100vh);
  height: max(64rem, 100dvh);
  min-height: 64rem;
}

.page-thanks .logo-panel {
  justify-content: flex-start;
  gap: clamp(1.1rem, 2.8vh, 2rem);
  overflow: visible;
  padding: clamp(1.5rem, 4vh, 3rem) 3vw clamp(1.5rem, 4vh, 3rem) 0;
}

.page-thanks .logo {
  --logo-title: clamp(2.1rem, 3.8vw, 3.15rem);
  flex-shrink: 0;
}

@media (min-height: 50rem) {
  .page-thanks .logo-panel {
    justify-content: center;
  }
}

@media (min-width: 1920px) {
  .laura {
    max-width: min(60vw, 52rem);
  }

  .logo-panel {
    left: 54%;
    right: auto;
    width: min(42%, 38rem);
    padding-left: 2vw;
    padding-right: 3vw;
  }

  .logo-panel .logo {
    width: min(80%, 32rem);
  }

  .hero-offer {
    width: min(100%, 28rem);
  }

  .page-thanks .logo {
    width: min(80%, 34rem);
    --logo-title: clamp(2.2rem, 3.2vw, 3.45rem);
  }

  .page-thanks .logo-panel {
    padding-left: 2vw;
    padding-right: 3vw;
  }

  .page-thanks .hero-thanks {
    width: min(100%, 34rem);
  }
}

.offer {
  width: min(50rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5.5rem 0 4rem;
  scroll-margin-top: 1.5rem;
  text-align: center;
}

.offer__eyebrow {
  margin: 0 0 1.5rem;
  color: var(--blush-deep);
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-weight: 200;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.offer__title {
  margin: 0 0 3.35rem;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 2vw, 2.85rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.offer__blurb {
  margin: 0 auto 4.25rem;
  max-width: 36rem;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 2.2vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
}
.offer__blurb p {
  margin-bottom:0.5rem!important;
}
.checkout {
  --checkout-ink: #3d1e2e;
  --checkout-ink-soft: rgba(61, 30, 46, 0.88);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 2.25rem 1.75rem 1.85rem;
  border: 1px solid rgba(255, 214, 226, 0.45);
  border-radius: 1.35rem;
  background:
    radial-gradient(ellipse 90% 62% at 18% -6%, #fff7f1 0%, rgba(255, 236, 226, 0.55) 24%, transparent 50%),
    radial-gradient(ellipse 78% 58% at 100% 0%, rgba(250, 187, 231, 0.62) 0%, rgba(255, 82, 203, 0.2) 40%, transparent 60%),
    radial-gradient(ellipse 92% 70% at -4% 104%, #f6c4b0 0%, rgba(246, 196, 176, 0.62) 38%, transparent 62%),
    radial-gradient(ellipse 72% 52% at 90% 96%, rgba(255, 181, 218, 0.52) 0%, transparent 52%),
    radial-gradient(ellipse 48% 38% at 46% 40%, rgba(255, 214, 200, 0.42) 0%, transparent 56%),
    linear-gradient(156deg, #fde4d8 0%, #f5c2bc 34%, #ffd1d0 70%, #ffefe3 100%);
  color: var(--checkout-ink);
  text-align: left;
  box-shadow:
    0 22px 48px rgba(147, 7, 105, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.checkout-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: soft-light;
}

.checkout > *:not(.checkout-grain) {
  position: relative;
  z-index: 1;
}

.checkout__intro {
  margin-bottom: 1.75rem;
  text-align: center;
}

.logo--checkout {
  --logo-title: clamp(3.05rem, 4vw, 3.05rem);
  width: 100%;
  margin: 0 0 1.5rem;
  color: var(--checkout-ink);
}

.logo--checkout .logo__title {
  color: inherit;
  -webkit-text-fill-color: currentColor;
  -webkit-text-stroke: 0;
  background-image: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  animation: none;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.65rem;
  margin: 0.35rem 0 0.55rem;
  font-family: var(--serif);
  line-height: 1;
  letter-spacing: 0.02em;
}

.price__was {
  font-size: 1.2rem;
}

.price__now {
  font-size: 2.6rem;
  font-weight: 500;
}

.price__currency {
  margin-right: 0.1rem;
  font-size: 0.58em;
  vertical-align: super;
}

.countdown--card {
  margin-bottom: 0.85rem;
}

.checkout__note {
  margin: 0;
  color: var(--checkout-ink-soft);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.checkout__secure {
  display: block;
  width: 100%;
  max-width: 26rem;
  height: auto;
  margin: 1.15rem auto 1rem;
  border-radius: 0.4rem;
}

.checkout .price__was {
  color: rgba(61, 30, 46, 0.42);
}

.checkout .countdown--card {
  color: var(--checkout-ink-soft);
}

.checkout .countdown--card .countdown__clock {
  color: var(--cta-deep);
}

.site-footer {
  padding: 2.25rem 1.25rem 2.5rem;
  background: var(--page-bg);
  color: rgba(244, 230, 234, 0.38);
  font-size: 0.78rem;
  text-align: center;
  max-width: 1920px;
  margin:0 auto;
}

.site-footer p {
  margin: 0;
}
.site-footer a {
  color: var(--ink-soft);
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}
/* Two-column: don't let a tall viewport outgrow Laura and leave a void above her. */
@media (min-width: 861px) {
  .stage {
    --laura-max-width: min(52vw, 37rem);
    --laura-height: calc(var(--laura-max-width) * 1500 / 892);
  }

  body:not(.page-thanks) .stage {
    max-height: var(--laura-height);
  }

  .page-thanks .stage {
    min-height: 0;
  }

  .page-thanks .hero,
  .page-thanks .hero-frame {
    height: auto;
    min-height: 0;
  }

  .page-thanks .hero-inner {
    grid-column: 1;
    grid-template-columns: 1fr;
    height: auto;
    min-height: min(100vh, var(--laura-height));
    min-height: min(100dvh, var(--laura-height));
  }

  .page-thanks .portrait {
    height: 100%;
    min-height: min(100vh, var(--laura-height));
    min-height: min(100dvh, var(--laura-height));
    justify-content: flex-end;
  }

  .page-thanks .laura {
    height: auto;
    max-height: min(100vh, var(--laura-height));
    max-height: min(100dvh, var(--laura-height));
    max-width: var(--laura-max-width);
  }

  .page-thanks .logo-panel {
    position: static;
    width: auto;
    height: auto;
  }
}

@media (min-width: 861px) and (max-width: 1200px) {
  .portrait {
    justify-content: flex-end;
  }
}

@media (min-width: 1920px) {
  .stage {
    --laura-max-width: min(60vw, 52rem);
  }
}

@media (max-width: 860px) {
  .stage {
    height: auto;
    min-height: 0;
  }

  .hero {
    --laura-max-width: min(92vw, 26rem);
    --laura-height: calc(var(--laura-max-width) * 1500 / 892);
    --portrait-height: min(80vh, max(32rem, var(--laura-height)));
    --portrait-height: min(80dvh, max(32rem, var(--laura-height)));
    height: auto;
  }

  .hero-frame {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-inner {
    grid-column: 1;
    grid-template-columns: 1fr;
    height: var(--portrait-height);
    min-height: 32rem;
    padding: 0.5rem 0.75rem 0;
  }

  .starfield {
    bottom: auto;
    height: var(--portrait-height);
    min-height: 32rem;
  }

  .laura {
    height: 100%;
    max-width: var(--laura-max-width);
  }

  .lotus {
    width: min(120vw, 38rem);
  }

  .logo-panel {
    position: static;
    grid-column: 1;
    grid-row: auto;
    gap: 1.75rem;
    width: auto;
    padding: 2.25rem 1.25rem 0;
    background: var(--page-bg);
  }

  .logo-panel .logo {
    --logo-title: clamp(2.15rem, 9.2vw, 3.4rem);
    width: min(72vw, 30rem);
  }

  .hero-offer {
    width: min(100%, 26rem);
  }

  .page-thanks .stage {
    min-height: 0;
  }

  .page-thanks .hero,
  .page-thanks .hero-frame,
  .page-thanks .portrait {
    height: auto;
    min-height: 0;
  }

  .page-thanks .hero-inner,
  .page-thanks .starfield {
    height: var(--portrait-height);
    min-height: 32rem;
  }

  .page-thanks .logo {
    --logo-title: clamp(2.15rem, 9.2vw, 3.4rem);
  }

  .page-thanks .logo-panel {
    padding-top: 2.25rem;
    padding-bottom: 3rem;
  }

  .hero-thanks {
    width: min(100%, 28rem);
  }

  .offer {
    padding-top: 3.25rem;
  }
}

@media (max-width: 520px) {
  .checkout {
    padding: 1.6rem 1.1rem 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cta {
    transition: none;
  }
}
