:root {
  --ink: #211538;
  --ink-2: #3a285a;
  --paper: #fffdf8;
  --cream: #fff5e7;
  --lavender: #8e78ee;
  --lavender-soft: #eee8ff;
  --lavender-deep: #5f48cf;
  --cherry: #d93667;
  --cherry-soft: #ffd7e4;
  --lime: #dfff70;
  --green: #0c7346;
  --white: #fff;
  --shadow: 0 30px 70px rgba(49, 29, 83, .16);
  --radius-lg: 38px;
  --radius-md: 26px;
  --font-display: "Arial Rounded MT Bold", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

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

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 4px;
  z-index: 1000;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cherry), var(--lavender), var(--lime));
  box-shadow: 0 0 18px rgba(142, 120, 238, .8);
}

.site-header {
  position: fixed;
  z-index: 990;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 20px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 999px;
  background: rgba(255, 253, 248, .78);
  box-shadow: 0 15px 50px rgba(40, 23, 67, .11);
  backdrop-filter: blur(18px);
  transition: background .3s ease, top .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  top: 9px;
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 12px 35px rgba(40, 23, 67, .16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: .96rem;
  font-weight: 700;
  letter-spacing: -.04em;
}

.brand b {
  color: var(--lavender-deep);
}

.brand-moon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--lime);
  background: var(--ink);
  font-size: 1.3rem;
  transform: rotate(-16deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .82rem;
  font-weight: 750;
}

.main-nav > a:not(.mini-buy) {
  position: relative;
}

.main-nav > a:not(.mini-buy)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--cherry);
  transition: transform .25s ease;
}

.main-nav > a:not(.mini-buy):hover::after,
.main-nav > a:not(.mini-buy):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mini-buy {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding: 0 19px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  transition: transform .25s ease, background .25s ease;
}

.mini-buy:hover {
  transform: translateY(-2px);
  background: var(--lavender-deep);
}

.mini-buy span {
  color: var(--lime);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--white);
  transition: transform .3s ease, opacity .3s ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: 142px max(5vw, 28px) 72px;
  align-items: center;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: clamp(30px, 5vw, 86px);
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 26%, rgba(223, 255, 112, .5), transparent 26%),
    radial-gradient(circle at 80% 16%, rgba(217, 54, 103, .14), transparent 24%),
    linear-gradient(135deg, #fffdf8 8%, #f5efff 52%, #efe8ff 100%);
}

.hero::before {
  position: absolute;
  z-index: 0;
  width: 620px;
  height: 620px;
  right: -180px;
  top: -230px;
  border: 1px solid rgba(95, 72, 207, .18);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: 0;
  width: 140px;
  height: 140px;
  right: 46%;
  bottom: 5%;
  border-radius: 38% 62% 66% 34% / 46% 41% 59% 54%;
  content: "";
  background: var(--cherry-soft);
  filter: blur(2px);
  opacity: .7;
  animation: morph 10s ease-in-out infinite;
}

.hero-orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.orb-one {
  top: 19%;
  left: 44%;
  width: 76px;
  height: 76px;
  background: var(--lime);
  box-shadow: 0 0 70px rgba(223, 255, 112, .8);
}

.orb-two {
  bottom: 12%;
  left: 9%;
  width: 34px;
  height: 34px;
  background: var(--cherry);
  box-shadow: 0 0 44px rgba(217, 54, 103, .45);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--lavender-deep);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 10px;
  border-radius: 999px;
  background: var(--cherry);
  box-shadow: 12px 0 0 var(--lavender);
}

.hero h1,
.section-head h2,
.final-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 850;
  letter-spacing: -.075em;
  line-height: .94;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4rem, 7.2vw, 7.6rem);
}

.hero h1 em {
  display: inline-block;
  color: var(--cherry);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.08em;
}

.hero-intro {
  max-width: 600px;
  margin: 28px 0 22px;
  color: var(--ink-2);
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
}

.hero-intro strong {
  color: var(--lavender-deep);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
}

.hero-pills span {
  padding: 8px 13px;
  border: 1px solid rgba(33, 21, 56, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 7px 20px rgba(49, 29, 83, .08);
  font-size: .79rem;
  font-weight: 760;
}

.cta {
  position: relative;
  display: inline-flex;
  min-width: min(100%, 290px);
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 7px 8px 7px 27px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: -.02em;
  box-shadow: 0 16px 34px rgba(49, 29, 83, .18);
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease;
}

.cta::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  content: "";
  opacity: 0;
  transform: scale(.8);
  background: rgba(255, 255, 255, .16);
  transition: opacity .3s ease, transform .3s ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 23px 46px rgba(49, 29, 83, .23);
}

.cta:hover::before {
  opacity: 1;
  transform: scale(1);
}

.cta b {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: transform .3s ease;
}

.cta:hover b {
  transform: rotate(45deg);
}

.cta-primary {
  color: var(--white);
  background: var(--lavender-deep);
}

.cta-primary b {
  color: var(--ink);
  background: var(--lime);
}

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

.cta-dark b {
  color: var(--white);
  background: var(--cherry);
}

.cta-lime {
  color: var(--ink);
  background: var(--lime);
}

.cta-lime b {
  color: var(--white);
  background: var(--ink);
}

.microcopy {
  margin: 12px 0 0 17px;
  color: rgba(33, 21, 56, .62);
  font-size: .73rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: min(680px, 69vw);
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  inset: 0 2% 6% 2%;
  border: 8px solid rgba(255, 255, 255, .85);
  border-radius: 48% 48% 34% 34% / 42% 42% 30% 30%;
  background: var(--lavender-soft);
  box-shadow: var(--shadow);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(33, 21, 56, .18));
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transition: transform .9s cubic-bezier(.2, .65, .22, 1);
}

.hero-visual:hover .hero-photo img {
  transform: scale(1.035);
}

.product-stage {
  position: absolute;
  z-index: 4;
  right: -2%;
  bottom: 1%;
  display: grid;
  width: clamp(170px, 20vw, 290px);
  aspect-ratio: 1;
  place-items: center;
}

.product-bottle {
  position: relative;
  z-index: 2;
  width: 112%;
  height: auto;
  filter: drop-shadow(0 30px 22px rgba(36, 20, 60, .28));
  animation: bottle-float 5s ease-in-out infinite;
}

.pulse-ring {
  position: absolute;
  inset: 6%;
  border: 2px dashed rgba(255, 255, 255, .78);
  border-radius: 50%;
  background: rgba(217, 54, 103, .8);
  box-shadow: 0 20px 60px rgba(217, 54, 103, .35);
  animation: slow-spin 18s linear infinite;
}

.fact-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  width: 112px;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 18px 34px rgba(49, 29, 83, .18);
  backdrop-filter: blur(13px);
  animation: bob 5s ease-in-out infinite;
}

.fact-chip b {
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1;
}

.fact-chip span {
  margin-top: 5px;
  font-size: .66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.chip-one {
  top: 14%;
  left: -5%;
  color: var(--white);
  background: rgba(95, 72, 207, .87);
}

.chip-two {
  top: 5%;
  right: -3%;
  color: var(--ink);
  background: rgba(223, 255, 112, .9);
  animation-delay: -2s;
}

.night-sticker {
  position: absolute;
  z-index: 5;
  bottom: 9%;
  left: -2%;
  display: grid;
  width: 128px;
  height: 92px;
  place-content: center;
  transform: rotate(-9deg);
  border-radius: 20px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 30px rgba(49, 29, 83, .16);
  text-align: center;
  line-height: .8;
}

.night-sticker span {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.night-sticker b {
  color: var(--cherry);
  font-family: Georgia, serif;
  font-size: 1.65rem;
  font-style: italic;
}

.night-sticker i {
  position: absolute;
  top: 8px;
  right: 11px;
  color: var(--lavender);
  font-style: normal;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 25px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-style: normal;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

.section {
  position: relative;
  padding: clamp(88px, 10vw, 150px) max(5vw, 28px);
  overflow: hidden;
}

.section-head {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.section-head.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.centered .kicker {
  justify-content: center;
}

.section-head h2,
.final-copy h2 {
  font-size: clamp(3.1rem, 6.3vw, 6.4rem);
}

.section-head h2 span,
.final-copy h2 span {
  color: var(--lavender-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-style: italic;
}

.section-head > p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(33, 21, 56, .72);
  font-size: 1.08rem;
}

.section-head.centered > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.kicker::before {
  width: 24px;
  height: 3px;
  border-radius: 3px;
  content: "";
  background: currentColor;
}

.kicker.light {
  color: var(--lime);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(38px, 5vw, 68px);
}

.section-cta.align-left {
  justify-content: center;
}

.benefits-section {
  background: var(--paper);
}

.benefits-section::after {
  position: absolute;
  z-index: 0;
  top: 5%;
  right: -11%;
  width: 38vw;
  height: 38vw;
  border: 1px dashed rgba(95, 72, 207, .2);
  border-radius: 50%;
  content: "";
  animation: slow-spin 40s linear infinite;
}

.benefits-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(320px, .78fr) minmax(500px, 1.22fr);
  gap: 24px;
}

.editorial-card {
  position: relative;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--lavender-soft);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
}

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

.editorial-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 60%, rgba(33, 21, 56, .48));
}

.editorial-card figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: var(--white);
}

.editorial-card figcaption span {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
}

.editorial-card figcaption b {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.benefit-card {
  position: relative;
  display: flex;
  min-height: 310px;
  padding: 29px;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: transform .35s cubic-bezier(.22, .7, .3, 1), box-shadow .35s ease;
}

.benefit-card::before {
  position: absolute;
  top: -45px;
  right: -42px;
  width: 150px;
  height: 150px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: .2;
  transition: transform .5s ease;
}

.benefit-card:hover {
  z-index: 3;
  transform: translateY(-9px) rotate(-1deg);
  box-shadow: 0 22px 40px rgba(49, 29, 83, .16);
}

.benefit-card:hover::before {
  transform: scale(1.35);
}

.benefit-card.lavender {
  color: var(--white);
  background: var(--lavender-deep);
}

.benefit-card.cherry {
  color: var(--white);
  background: var(--cherry);
}

.benefit-card.lime {
  color: var(--ink);
  background: var(--lime);
}

.benefit-card.cream {
  color: var(--ink);
  background: var(--cream);
}

.card-icon {
  position: absolute;
  top: 25px;
  left: 25px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 18px;
  background: rgba(255, 255, 255, .1);
  font-size: 1.55rem;
}

.benefit-card small {
  margin-bottom: 8px;
  opacity: .72;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.benefit-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.1vw, 2.25rem);
  letter-spacing: -.045em;
  line-height: 1;
}

.benefit-card p {
  max-width: 300px;
  margin: 13px 0 0;
  opacity: .82;
  font-size: .9rem;
}

.claim-note {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin: 28px auto 0;
  color: rgba(33, 21, 56, .6);
  font-size: .75rem;
  text-align: center;
}

.ritual-section {
  display: grid;
  min-height: 950px;
  align-items: center;
  grid-template-columns: minmax(400px, .95fr) minmax(500px, 1.05fr);
  gap: clamp(44px, 7vw, 100px);
  color: var(--white);
  background: var(--ink);
}

.ritual-backdrop {
  position: absolute;
  top: -30%;
  right: -12%;
  width: 65vw;
  height: 65vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 120, 238, .48), transparent 67%);
  filter: blur(10px);
}

.ritual-media {
  position: relative;
  z-index: 1;
  height: min(72vw, 760px);
  max-height: 760px;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, .12);
  border-radius: 48% 48% 28px 28px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .32);
}

.ritual-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
}

.time-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 148px;
  height: 148px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  flex-direction: column;
  color: var(--ink);
  background: rgba(223, 255, 112, .92);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);
  animation: bob 5s ease-in-out infinite;
}

.time-badge span,
.time-badge small {
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.time-badge strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
}

.ritual-copy {
  position: relative;
  z-index: 2;
}

.ritual-copy .section-head {
  margin-bottom: 42px;
}

.ritual-copy .section-head h2 span,
.lifestyle-section .section-head h2 span {
  color: var(--lime);
}

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

.timeline li {
  display: grid;
  padding: 21px 0;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .16);
  grid-template-columns: 66px 1fr;
  transition: padding-left .3s ease, background .3s ease;
}

.timeline li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.timeline li:hover {
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(142, 120, 238, .15), transparent);
}

.timeline li > span {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: .9rem;
}

.timeline h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -.04em;
}

.timeline p {
  max-width: 580px;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .64);
  font-size: .9rem;
}

.formula-section {
  background:
    radial-gradient(circle at 18% 15%, rgba(217, 54, 103, .11), transparent 28%),
    linear-gradient(180deg, #fffdf8, #f8f4ff);
}

.formula-stage {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 1180px;
  min-height: 670px;
  margin: 0 auto;
  padding: 28px;
  align-items: center;
  border: 1px solid rgba(95, 72, 207, .12);
  border-radius: 52px;
  background: rgba(255, 255, 255, .66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
}

.ingredient-photo {
  position: relative;
  height: 100%;
  min-height: 610px;
  overflow: hidden;
  border-radius: 36px;
}

.ingredient-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, transparent 55%, rgba(33, 21, 56, .24));
}

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

.orbit {
  position: relative;
  width: min(100%, 590px);
  aspect-ratio: 1;
  margin: auto;
}

.orbit::before,
.orbit::after {
  position: absolute;
  inset: 10%;
  border: 1px dashed rgba(95, 72, 207, .28);
  border-radius: 50%;
  content: "";
  animation: slow-spin 24s linear infinite;
}

.orbit::after {
  inset: 22%;
  animation-direction: reverse;
  animation-duration: 17s;
}

.formula-core {
  position: absolute;
  z-index: 3;
  inset: 31%;
  display: flex;
  padding: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-direction: column;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 25px 70px rgba(49, 29, 83, .3);
  text-align: center;
}

.formula-core::after {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(217, 54, 103, .34);
  border-radius: 50%;
  content: "";
  animation: pulse 2.4s ease-out infinite;
}

.formula-core small {
  color: var(--lime);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.formula-core strong {
  margin: 7px 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.formula-core p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(.66rem, .9vw, .82rem);
}

.ingredient-dot {
  position: absolute;
  z-index: 4;
  display: flex;
  width: 126px;
  min-height: 118px;
  padding: 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(95, 72, 207, .14);
  border-radius: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 15px 35px rgba(49, 29, 83, .12);
  cursor: pointer;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.22, .7, .3, 1), color .3s ease, background .3s ease;
}

.ingredient-dot:hover,
.ingredient-dot:focus-visible {
  transform: translateY(-6px) rotate(-2deg);
}

.ingredient-dot.active {
  color: var(--white);
  background: var(--cherry);
  transform: scale(1.06);
}

.ingredient-dot b {
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.ingredient-dot span {
  margin-top: 7px;
  font-size: .68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.dot-a {
  top: 1%;
  left: 50%;
  transform: translateX(-50%);
}

.dot-a.active {
  transform: translateX(-50%) scale(1.06);
}

.dot-b {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.dot-b.active {
  transform: translateY(-50%) scale(1.06);
}

.dot-c {
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
}

.dot-c.active {
  transform: translateX(-50%) scale(1.06);
}

.dot-d {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.dot-d.active {
  transform: translateY(-50%) scale(1.06);
}

.lifestyle-section {
  color: var(--white);
  background:
    radial-gradient(circle at 75% 10%, rgba(217, 54, 103, .3), transparent 24%),
    linear-gradient(160deg, #3a2672, #211538 58%);
}

.lifestyle-section::before {
  position: absolute;
  top: 8%;
  right: 5%;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(223, 255, 112, .36);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 28px rgba(223, 255, 112, .03), 0 0 0 56px rgba(223, 255, 112, .025);
}

.lifestyle-section .section-head > p:last-child {
  color: rgba(255, 255, 255, .67);
}

.lifestyle-scene {
  position: relative;
  z-index: 2;
  height: clamp(530px, 67vw, 790px);
  max-width: 1240px;
  margin: 0 auto;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, .15);
  border-radius: 54px;
  background: #5c4f89;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .3);
}

.lifestyle-scene::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(33, 21, 56, .42));
}

.lifestyle-scene > img {
  width: 100%;
  height: 112%;
  object-fit: cover;
}

.lifestyle-tag {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 170px;
  padding: 12px 17px;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 16px 35px rgba(0, 0, 0, .2);
  backdrop-filter: blur(12px);
  animation: bob 5s ease-in-out infinite;
}

.lifestyle-tag span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--cherry);
  font-size: .67rem;
  font-weight: 850;
}

.lifestyle-tag b {
  font-size: .82rem;
}

.tag-one {
  top: 14%;
  left: 4%;
}

.tag-two {
  top: 48%;
  right: 4%;
  animation-delay: -1.7s;
}

.tag-three {
  bottom: 10%;
  left: 7%;
  animation-delay: -3s;
}

.lifestyle-stats {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 1100px;
  margin: 42px auto 0;
  grid-template-columns: repeat(4, 1fr);
}

.lifestyle-stats > div {
  display: flex;
  min-height: 145px;
  padding: 20px;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, .16);
  flex-direction: column;
  text-align: center;
}

.lifestyle-stats > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.lifestyle-stats strong {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
}

.lifestyle-stats span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .65);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.inside-section {
  display: grid;
  align-items: start;
  background: var(--cream);
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(42px, 6vw, 90px);
}

.inside-copy,
.inside-visual {
  position: relative;
  z-index: 2;
}

.inside-copy .section-head {
  margin-bottom: 34px;
}

.free-from {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.free-from span {
  padding: 9px 14px;
  border: 1px solid rgba(33, 21, 56, .12);
  border-radius: 999px;
  color: var(--lavender-deep);
  background: rgba(255, 255, 255, .75);
  font-size: .75rem;
  font-weight: 820;
}

.nutrition {
  overflow: hidden;
  border: 1px solid rgba(33, 21, 56, .1);
  border-radius: 25px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 44px rgba(49, 29, 83, .08);
}

.nutrition > div {
  display: grid;
  min-height: 58px;
  padding: 14px 18px;
  align-items: center;
  border-top: 1px solid rgba(33, 21, 56, .08);
  grid-template-columns: 1fr 130px 90px;
}

.nutrition > div:first-child {
  border-top: 0;
}

.nutrition-head {
  color: var(--white);
  background: var(--lavender-deep);
}

.nutrition b {
  font-family: var(--font-display);
  font-size: .92rem;
}

.nutrition small {
  color: rgba(33, 21, 56, .58);
  text-align: right;
}

.nutrition-head small {
  color: rgba(255, 255, 255, .7);
}

.inside-visual {
  min-height: 720px;
  overflow: hidden;
  border-radius: 48% 48% 36px 36px;
  background: var(--lavender-soft);
  box-shadow: var(--shadow);
}

.inside-visual > img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.inside-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(33, 21, 56, .28));
}

.bottle-float {
  position: absolute;
  z-index: 3;
  right: -2%;
  bottom: -3%;
  display: grid;
  width: 48%;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: rgba(217, 54, 103, .88);
}

.bottle-float img {
  width: 108%;
  filter: drop-shadow(0 26px 20px rgba(33, 21, 56, .3));
}

.quality-seal {
  position: absolute;
  z-index: 4;
  top: 30px;
  left: 30px;
  display: grid;
  width: 110px;
  height: 110px;
  place-content: center;
  transform: rotate(-8deg);
  border: 2px dashed var(--ink);
  border-radius: 50%;
  background: var(--lime);
  font-family: var(--font-display);
  font-size: 2rem;
  text-align: center;
  line-height: .7;
}

.quality-seal small {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.safety-card {
  position: relative;
  z-index: 3;
  display: grid;
  padding: 28px;
  align-items: start;
  border-radius: 26px;
  color: var(--white);
  background: var(--ink);
  grid-column: 1 / -1;
  grid-template-columns: 54px 1fr;
  gap: 20px;
}

.safety-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.safety-card h3 {
  margin: 0 0 7px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -.03em;
}

.safety-card p {
  max-width: 950px;
  margin: 0;
  color: rgba(255, 255, 255, .67);
  font-size: .87rem;
}

.inside-section > .section-cta {
  margin-top: 0;
  grid-column: 1 / -1;
}

.faq-section {
  display: grid;
  align-items: start;
  background: var(--paper);
  grid-template-columns: minmax(380px, .85fr) minmax(520px, 1.15fr);
  gap: clamp(45px, 7vw, 100px);
}

.faq-visual {
  position: sticky;
  top: 105px;
  height: calc(100vh - 140px);
  min-height: 650px;
  max-height: 820px;
  overflow: hidden;
  border-radius: 42px;
  background: var(--lavender-soft);
  box-shadow: var(--shadow);
}

.faq-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 56%, rgba(33, 21, 56, .32));
}

.faq-visual img {
  width: 100%;
  height: 108%;
  object-fit: cover;
}

.faq-sticker {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  display: flex;
  width: 155px;
  height: 155px;
  align-items: center;
  justify-content: center;
  transform: rotate(7deg);
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 20px 46px rgba(33, 21, 56, .22);
  flex-direction: column;
  line-height: .9;
}

.faq-sticker b {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
}

.faq-sticker span {
  color: var(--cherry);
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-style: italic;
}

.faq-sticker i {
  position: absolute;
  top: 20px;
  right: 26px;
  font-style: normal;
}

.faq-content {
  position: relative;
  z-index: 2;
}

.faq-content .section-head {
  margin-bottom: 34px;
}

.faq-list {
  border-top: 1px solid rgba(33, 21, 56, .14);
}

.faq-list details {
  border-bottom: 1px solid rgba(33, 21, 56, .14);
}

.faq-list summary {
  display: flex;
  min-height: 82px;
  padding: 22px 0;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.27rem);
  font-weight: 780;
  letter-spacing: -.025em;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--lavender-deep);
  font-size: 1.2rem;
  transition: transform .3s ease, background .3s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
  background: var(--cherry);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 60px 25px 0;
  margin: -5px 0 0;
  color: rgba(33, 21, 56, .7);
  font-size: .93rem;
}

.final-cta-section {
  display: grid;
  min-height: 720px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--cherry), #a52b65 42%, var(--lavender-deep));
  grid-template-columns: 1fr .72fr;
  gap: 60px;
}

.final-cta-section::before {
  position: absolute;
  top: 8%;
  left: 4%;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 30px rgba(255, 255, 255, .025), 0 0 0 60px rgba(255, 255, 255, .02);
}

.final-glow {
  position: absolute;
  right: 8%;
  bottom: -30%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 255, 112, .5), transparent 67%);
  filter: blur(15px);
}

.final-copy {
  position: relative;
  z-index: 2;
}

.final-copy h2 span {
  color: var(--lime);
}

.final-copy p:not(.kicker) {
  max-width: 560px;
  margin: 25px 0 32px;
  color: rgba(255, 255, 255, .75);
  font-size: 1.05rem;
}

.final-product {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 520px);
  aspect-ratio: 1;
  margin: auto;
  place-items: center;
}

.final-product img {
  position: relative;
  z-index: 2;
  width: 92%;
  filter: drop-shadow(0 45px 30px rgba(33, 21, 56, .36));
  animation: bottle-float 5s ease-in-out infinite;
}

.final-ring {
  position: absolute;
  inset: 5%;
  border: 2px dashed rgba(255, 255, 255, .64);
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  animation: slow-spin 24s linear infinite;
}

.marquee {
  overflow: hidden;
  padding: 17px 0;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.55rem);
  font-weight: 850;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.marquee > div {
  display: inline-flex;
  min-width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee span {
  padding: 0 35px;
}

footer {
  padding: 58px max(5vw, 28px) 42px;
  color: rgba(255, 255, 255, .7);
  background: #130d20;
}

.footer-top {
  display: flex;
  padding-bottom: 30px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-brand {
  color: var(--white);
}

.footer-buy {
  color: var(--lime);
  font-weight: 850;
}

footer > p {
  max-width: 1080px;
  margin: 25px 0 0;
  font-size: .73rem;
}

.footer-meta {
  color: rgba(255, 255, 255, .4);
}

.floating-buy {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  display: none;
  min-height: 54px;
  padding: 6px 7px 6px 19px;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 36px rgba(33, 21, 56, .35);
  font-size: .82rem;
  font-weight: 850;
}

.floating-buy b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .72, .22, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.domino > * {
  opacity: 0;
  transform: translateY(28px) scale(.98);
}

.domino.in-view > * {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2, .72, .22, 1);
}

.domino.in-view > *:nth-child(2) { transition-delay: .09s; }
.domino.in-view > *:nth-child(3) { transition-delay: .18s; }
.domino.in-view > *:nth-child(4) { transition-delay: .27s; }
.domino.in-view > *:nth-child(5) { transition-delay: .36s; }
.domino.in-view > *:nth-child(6) { transition-delay: .45s; }

@keyframes bottle-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-13px) rotate(1deg); }
}

@keyframes bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes morph {
  0%, 100% { border-radius: 38% 62% 66% 34% / 46% 41% 59% 54%; transform: rotate(0); }
  50% { border-radius: 62% 38% 40% 60% / 59% 62% 38% 41%; transform: rotate(14deg); }
}

@keyframes pulse {
  0% { opacity: .7; transform: scale(.95); }
  100% { opacity: 0; transform: scale(1.22); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: .9fr 1.1fr;
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
  }

  .hero-visual {
    min-height: 620px;
  }

  .benefits-layout {
    grid-template-columns: .8fr 1.2fr;
  }

  .benefit-grid {
    gap: 15px;
  }

  .benefit-card {
    min-height: 285px;
    padding: 23px;
  }

  .ritual-section {
    grid-template-columns: .86fr 1.14fr;
  }

  .inside-section {
    gap: 42px;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 62px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: -18px -16px auto;
    display: flex;
    min-height: 100svh;
    padding: 120px 35px 40px;
    align-items: stretch;
    justify-content: flex-start;
    transform: translateY(-105%);
    border-radius: 0;
    background: rgba(255, 253, 248, .98);
    flex-direction: column;
    gap: 0;
    opacity: 0;
    transition: transform .4s cubic-bezier(.2, .72, .22, 1), opacity .3s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .main-nav > a:not(.mini-buy) {
    padding: 16px 0;
    border-bottom: 1px solid rgba(33, 21, 56, .1);
    font-family: var(--font-display);
    font-size: 1.75rem;
  }

  .mini-buy {
    min-height: 58px;
    margin-top: 25px;
    justify-content: center;
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 125px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 11vw, 6.3rem);
  }

  .hero-visual {
    width: min(100%, 680px);
    min-height: 700px;
    margin: 10px auto 20px;
  }

  .scroll-cue {
    display: none;
  }

  .benefits-layout {
    grid-template-columns: 1fr;
  }

  .editorial-card {
    min-height: 700px;
  }

  .ritual-section,
  .inside-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .ritual-media {
    width: min(100%, 650px);
    height: 760px;
    margin: auto;
  }

  .formula-stage {
    grid-template-columns: 1fr;
  }

  .ingredient-photo {
    min-height: 520px;
  }

  .orbit {
    width: min(100%, 600px);
  }

  .inside-visual {
    order: -1;
    width: min(100%, 650px);
    margin: auto;
  }

  .inside-copy {
    max-width: 760px;
    margin: auto;
  }

  .faq-visual {
    position: relative;
    top: 0;
    width: min(100%, 680px);
    height: 760px;
    margin: auto;
  }

  .final-cta-section {
    grid-template-columns: 1fr;
  }

  .final-product {
    width: min(100%, 480px);
  }
}

@media (max-width: 650px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding-left: 14px;
  }

  .brand {
    font-size: .84rem;
  }

  .brand-moon {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding: 108px 18px 55px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 16vw, 5rem);
  }

  .hero-intro {
    margin-top: 21px;
    font-size: .98rem;
  }

  .hero-pills {
    gap: 6px;
  }

  .hero-pills span {
    padding: 7px 10px;
    font-size: .69rem;
  }

  .cta {
    width: 100%;
    min-height: 62px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-photo {
    inset: 0 0 6%;
    border-width: 5px;
  }

  .product-stage {
    right: -8%;
    width: 205px;
  }

  .fact-chip {
    width: 88px;
  }

  .fact-chip b {
    font-size: 1.08rem;
  }

  .chip-one {
    left: -2%;
  }

  .chip-two {
    right: -2%;
  }

  .night-sticker {
    bottom: 4%;
    left: 1%;
    transform: rotate(-6deg) scale(.82);
    transform-origin: left bottom;
  }

  .section {
    padding: 82px 18px;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .section-head h2,
  .final-copy h2 {
    font-size: clamp(3rem, 14.5vw, 4.3rem);
  }

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

  .benefit-card {
    min-height: 265px;
  }

  .editorial-card {
    min-height: 560px;
  }

  .ritual-media {
    height: 610px;
  }

  .time-badge {
    right: 15px;
    bottom: 15px;
    width: 116px;
    height: 116px;
  }

  .time-badge strong {
    font-size: 2rem;
  }

  .timeline li {
    grid-template-columns: 48px 1fr;
  }

  .section-cta.align-left {
    justify-content: center;
  }

  .formula-stage {
    min-height: 0;
    padding: 12px;
    border-radius: 34px;
  }

  .ingredient-photo {
    min-height: 420px;
    border-radius: 25px;
  }

  .orbit {
    width: 100%;
    min-height: 520px;
    aspect-ratio: auto;
  }

  .formula-core {
    inset: 31% 28%;
  }

  .ingredient-dot {
    width: 104px;
    min-height: 96px;
    border-radius: 18px;
  }

  .dot-b {
    right: -2px;
  }

  .dot-d {
    left: -2px;
  }

  .lifestyle-scene {
    height: 600px;
    border-radius: 34px;
  }

  .lifestyle-tag {
    min-width: 0;
    padding-right: 13px;
  }

  .lifestyle-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .lifestyle-stats > div:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, .16);
  }

  .lifestyle-stats > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-right: 1px solid rgba(255, 255, 255, .16);
  }

  .inside-visual,
  .inside-visual > img {
    min-height: 570px;
  }

  .nutrition > div {
    padding: 13px;
    grid-template-columns: 1fr 90px 66px;
    font-size: .8rem;
  }

  .safety-card {
    grid-template-columns: 1fr;
  }

  .faq-visual {
    height: 640px;
    min-height: 0;
  }

  .faq-list summary {
    min-height: 74px;
    font-size: 1rem;
  }

  .faq-list details p {
    padding-right: 5px;
  }

  .final-cta-section {
    min-height: 0;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .floating-buy {
    display: flex;
  }
}

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

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

  .reveal,
  .domino > * {
    opacity: 1;
    transform: none;
  }
}
