/* ==========================================================================
   Stash — landing page
   Palette, radii and spacing are a direct port of constants/theme.ts.
   Keep them in sync: if the app's theme changes, change it here too.
   ========================================================================== */

/* --- Fonts ---------------------------------------------------------------- */

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/cormorant-garamond.woff2") format("woff2");
  font-weight: 300 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/cormorant-garamond-italic.woff2") format("woff2");
  font-weight: 300 400;
  font-style: italic;
  font-display: swap;
}

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

/* --- Tokens --------------------------------------------------------------- */

:root {
  --bg: #fbf8f5;
  --surface: #ffffff;
  --surface-subtle: #f7f2ee;
  --border: #e8ddd5;
  --text: #261810;
  --text-2: #8c6e5f;
  --muted: #ede5de;
  --accent: #b5541e;
  --accent-contrast: #ffffff;
  --selected: #7b6b9c;
  --shadow: 0 2px 16px rgba(120, 60, 20, 0.1);
  --shadow-lg: 0 12px 40px rgba(120, 60, 20, 0.14);
  --blob-1: 0.12;
  --blob-2: 0.1;
  --blob-3: 0.11;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 12px;
  --r-xl: 20px;

  --s-xs: 4px;
  --s-sm: 8px;
  --s-md: 12px;
  --s-lg: 16px;
  --s-xl: 24px;

  --page: 1100px;
  --section-gap: clamp(80px, 12vw, 132px);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1c1512;
    --surface: #261e1a;
    --surface-subtle: #2e2420;
    --border: #3d2e27;
    --text: #f5edea;
    --text-2: #a88b7c;
    --muted: #332722;
    --accent: #d9733a;
    --accent-contrast: #1c1512;
    --selected: #9b8fc4;
    --shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
    --blob-1: 0.14;
    --blob-2: 0.11;
    --blob-3: 0.13;
  }
}

/* --- Reset ---------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: var(--s-lg);
  background: var(--surface);
  color: var(--text);
  padding: var(--s-md) var(--s-lg);
  border-radius: var(--r-md);
  z-index: 100;
}

.skip-link:focus {
  left: var(--s-lg);
}

/* --- Typography ----------------------------------------------------------- */

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.4rem);
  line-height: 1.06;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
}

h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: 0;
  line-height: 1.4;
}

p {
  margin: 0;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: var(--s-lg);
}

.lede {
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  color: var(--text-2);
  max-width: 46ch;
}

.wordmark {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0.06em;
}

/* --- Layout --------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--page);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

section {
  padding-block: var(--section-gap);
}

/* --- Site header ---------------------------------------------------------- */

.site-header {
  position: relative;
  z-index: 3;
  padding-block: var(--s-xl);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-lg);
}

.site-header .wordmark {
  font-size: 1.6rem;
  color: var(--text);
  text-decoration: none;
}

.site-header nav {
  display: flex;
  gap: clamp(var(--s-lg), 3vw, 32px);
  font-size: 0.94rem;
}

.site-header nav a {
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-header nav a:hover {
  color: var(--text);
}

@media (max-width: 640px) {
  .site-header nav {
    display: none;
  }
}

/* --- Background blobs ----------------------------------------------------- */
/* Port of components/BackgroundBlobs.tsx — same colours, opacities and drift
   durations, plus a blur that the native version doesn't need at phone size. */

.blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
  will-change: transform;
}

.blob-1 {
  width: 460px;
  height: 460px;
  top: -160px;
  right: -110px;
  background: var(--accent);
  opacity: var(--blob-1);
  animation: drift-1 19s ease-in-out infinite alternate;
}

.blob-2 {
  width: 380px;
  height: 380px;
  bottom: -60px;
  left: -130px;
  background: var(--accent);
  opacity: var(--blob-2);
  animation: drift-2 21s ease-in-out infinite alternate;
}

.blob-3 {
  width: 300px;
  height: 300px;
  top: 42%;
  right: -80px;
  background: var(--selected);
  opacity: var(--blob-3);
  animation: drift-3 24s ease-in-out infinite alternate;
}

@keyframes drift-1 {
  to {
    transform: translate(38px, -28px);
  }
}

@keyframes drift-2 {
  to {
    transform: translate(-32px, 22px);
  }
}

@keyframes drift-3 {
  to {
    transform: translate(24px, -36px);
  }
}

/* --- Hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  padding-top: clamp(24px, 5vw, 56px);
  padding-bottom: var(--section-gap);
  overflow: hidden;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.hero-copy {
  max-width: 34rem;
}

.hero h1 {
  margin-bottom: var(--s-xl);
}

.hero h1 .muted-line {
  color: var(--text-2);
}

/* --- Waitlist form -------------------------------------------------------- */

.waitlist {
  margin-top: clamp(28px, 4vw, 40px);
  max-width: 30rem;
}

.waitlist-row {
  display: flex;
  gap: var(--s-md);
  flex-wrap: wrap;
}

.waitlist input[type="email"] {
  flex: 1 1 15rem;
  min-width: 0;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px var(--s-lg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist input[type="email"]::placeholder {
  color: var(--text-2);
  opacity: 0.75;
}

.waitlist input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

/* Honeypot — hidden from humans, visible to naive bots. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.btn {
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  border-radius: var(--r-lg);
  padding: 14px var(--s-xl);
  cursor: pointer;
  background: var(--accent);
  color: var(--accent-contrast);
  transition: transform 0.12s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.92;
}

/* Matches AppAnimatedButton's press feel in the app. */
.btn:active {
  transform: scale(0.98);
}

.btn[disabled] {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.form-note {
  margin-top: var(--s-md);
  font-size: 0.86rem;
  color: var(--text-2);
}

.form-status {
  margin-top: var(--s-md);
  font-size: 0.94rem;
  min-height: 1.5em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-status.is-shown {
  opacity: 1;
  transform: none;
}

.form-status.is-error {
  color: var(--accent);
}

.waitlist.is-done .waitlist-row,
.waitlist.is-done .form-note {
  display: none;
}

/* --- Store badges --------------------------------------------------------- */

.badges {
  display: flex;
  gap: var(--s-md);
  flex-wrap: wrap;
  margin-top: var(--s-xl);
}

.badge {
  display: flex;
  align-items: center;
  gap: var(--s-md);
  padding: 10px var(--s-lg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  color: var(--text-2);
  font-size: 0.86rem;
  line-height: 1.25;
  text-decoration: none;
}

/* Neither store is live yet — badges are inert until the listings ship.
   To go live: swap the <span class="badge"> for an <a class="badge is-live"> . */
.badge[aria-disabled="true"] {
  opacity: 0.55;
  cursor: default;
}

.badge svg {
  width: 22px;
  height: 22px;
  flex: none;
  fill: currentColor;
}

.badge b {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.badge[aria-disabled="true"] b {
  color: var(--text-2);
}

/* --- Hero stage (the wardrobe → outfit animation) ------------------------- */
/* Coordinates inside .stage-inner are authored in px against a fixed
   460 × 470 design box, then scaled as a whole for smaller viewports. */

.hero-stage {
  --stage-scale: 1;
  width: calc(460px * var(--stage-scale));
  height: calc(400px * var(--stage-scale));
  flex: none;
}

.stage-inner {
  position: relative;
  width: 460px;
  height: 400px;
  transform: scale(var(--stage-scale));
  transform-origin: top left;
}

.item {
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 108px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-origin: top left;
  transform: translate(var(--x), var(--y));
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.5s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  will-change: transform, opacity;
}

.item-swatch {
  display: block;
  height: 74px;
  background: var(--c, var(--muted));
}

.item img {
  height: 74px;
  width: 100%;
  object-fit: cover;
}

.item-label {
  display: block;
  padding: 6px var(--s-sm) 0;
  font-size: 0.62rem;
  line-height: 1.25;
  color: var(--text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Stage 1 — items stagger in, fade + rise. Mirrors useEntranceAnimation. */
[data-stage="1"] .item,
[data-stage="2"] .item,
[data-stage="3"] .item {
  opacity: 1;
}

[data-stage="0"] .item {
  transform: translate(var(--x), calc(var(--y) + 12px));
}

.item {
  transition-delay: calc(var(--i) * 60ms);
}

/* Stage 2 — the four picked pieces ring up, the rest recede. */
[data-stage="2"] .item:not(.pick),
[data-stage="3"] .item:not(.pick) {
  opacity: 0.25;
}

[data-stage="2"] .item.pick,
[data-stage="3"] .item.pick {
  border-color: var(--selected);
  box-shadow: 0 0 0 2px var(--selected), var(--shadow);
}

/* Stage 3 — picked pieces fly into the outfit card. */
[data-stage="3"] .item.pick {
  transform: translate(var(--sx), var(--sy)) scale(0.78);
  transition-delay: calc(var(--i) * 45ms);
}

.outfit-card {
  position: absolute;
  left: 122px;
  top: 60px;
  width: 216px;
  height: 300px;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

[data-stage="3"] .outfit-card {
  opacity: 1;
  transform: none;
  transition-delay: 0.28s;
}

.outfit-card-head {
  padding: var(--s-md) var(--s-lg) 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}

.outfit-card-foot {
  position: absolute;
  left: var(--s-lg);
  right: var(--s-lg);
  bottom: var(--s-lg);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-sm);
}

/* The rationale the app returns with a suggestion — serif italic, matching
   how result.tsx renders it. */
.verdict {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-2);
  text-align: left;
}

/* The picked item cards land on top of the card, so lift them above it. */
.item.pick {
  z-index: 2;
}

.outfit-card {
  z-index: 1;
}

@media (max-width: 1040px) {
  .hero .wrap {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-stage {
    --stage-scale: 0.9;
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .hero-stage {
    --stage-scale: 0.72;
  }
}

@media (max-width: 400px) {
  .hero-stage {
    --stage-scale: 0.6;
  }
}

/* --- Statement section ---------------------------------------------------- */

.statement {
  text-align: center;
}

.statement p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
  line-height: 1.28;
  max-width: 20ch;
  margin-inline: auto;
}

.statement .quiet {
  color: var(--text-2);
}

/* --- Steps ---------------------------------------------------------------- */

.steps {
  display: grid;
  gap: clamp(48px, 7vw, 88px);
  margin-top: clamp(48px, 6vw, 72px);
}

.step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.step:nth-child(even) .step-text {
  order: 2;
}

.step-num {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: var(--s-md);
}

.step h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: var(--s-md);
}

.step p {
  color: var(--text-2);
  max-width: 42ch;
}

@media (max-width: 800px) {
  .step,
  .step:nth-child(even) .step-text {
    grid-template-columns: minmax(0, 1fr);
    order: 0;
  }
}

/* --- Phone frame ---------------------------------------------------------- */

.phone {
  --phone-w: 268px;
  width: var(--phone-w);
  aspect-ratio: 9 / 19.5;
  flex: none;
  margin-inline: auto;
  border-radius: 38px;
  border: 1px solid var(--border);
  background: var(--surface-subtle);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  overflow: hidden;
  animation: float 6s ease-in-out infinite alternate;
  animation-delay: var(--float-delay, 0s);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

/* Shown until real screenshots are dropped into assets/img/screens/. */
.phone-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: var(--muted);
  display: grid;
  place-content: center;
  text-align: center;
  padding: var(--s-lg);
  font-size: 0.8rem;
  color: var(--text-2);
}

@keyframes float {
  to {
    transform: translateY(-6px);
  }
}

/* --- Feature grid --------------------------------------------------------- */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-xl);
  margin-top: clamp(40px, 5vw, 56px);
}

.feature {
  padding: var(--s-xl);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--surface);
}

.feature-icon {
  width: 34px;
  height: 34px;
  margin-bottom: var(--s-lg);
  color: var(--accent);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3 {
  margin-bottom: var(--s-sm);
}

/* Marks a feature that needs Premium, so the grid can't be read as a list of
   things you get for free. */
.tag {
  display: inline-block;
  vertical-align: 2px;
  margin-left: var(--s-sm);
  padding: 2px var(--s-sm);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.feature p {
  color: var(--text-2);
  font-size: 0.96rem;
}

/* --- Pricing -------------------------------------------------------------- */

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-xl);
  margin-top: clamp(40px, 5vw, 56px);
}

.plan {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.plan.is-featured {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.plan-name {
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1.1;
}

.plan-price {
  margin-top: var(--s-xs);
  color: var(--text-2);
  font-size: 0.94rem;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: var(--s-xl) 0 0;
  display: grid;
  gap: var(--s-md);
  font-size: 0.96rem;
}

.plan li {
  display: flex;
  gap: var(--s-md);
  align-items: flex-start;
  color: var(--text-2);
}

.plan li::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  margin-top: 0.62em;
  border-radius: 999px;
  background: var(--accent);
}

.plan.is-free li::before {
  background: var(--border);
}

/* --- FAQ ------------------------------------------------------------------ */

.faq {
  margin-top: clamp(40px, 5vw, 56px);
  max-width: 46rem;
  border-top: 1px solid var(--border);
}

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

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: var(--s-xl) 0;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  gap: var(--s-lg);
  align-items: center;
}

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

.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.35rem;
  line-height: 1;
  flex: none;
  transition: transform 0.25s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  color: var(--text-2);
  padding-bottom: var(--s-xl);
  max-width: 60ch;
}

/* --- Closing CTA ---------------------------------------------------------- */

.closing {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.closing .wrap {
  position: relative;
  z-index: 1;
}

.closing .waitlist {
  margin-inline: auto;
}

.closing .waitlist-row {
  justify-content: center;
}

.closing .badges {
  justify-content: center;
}

/* --- Footer --------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding-block: var(--s-xl) clamp(32px, 5vw, 48px);
  font-size: 0.9rem;
  color: var(--text-2);
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-lg) var(--s-xl);
  align-items: center;
  justify-content: space-between;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-lg) var(--s-xl);
}

.site-footer a {
  color: var(--text-2);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--text);
  text-decoration: underline;
}

/* --- Scroll reveals ------------------------------------------------------- */

.reveal > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.in-view > * {
  opacity: 1;
  transform: none;
}

.reveal.in-view > *:nth-child(1) {
  transition-delay: 0s;
}
.reveal.in-view > *:nth-child(2) {
  transition-delay: 0.08s;
}
.reveal.in-view > *:nth-child(3) {
  transition-delay: 0.16s;
}
.reveal.in-view > *:nth-child(4) {
  transition-delay: 0.24s;
}
.reveal.in-view > *:nth-child(5) {
  transition-delay: 0.32s;
}
.reveal.in-view > *:nth-child(6) {
  transition-delay: 0.4s;
}

/* --- Legal / prose pages -------------------------------------------------- */

.prose {
  max-width: 44rem;
  padding-block: clamp(32px, 6vw, 64px) var(--section-gap);
}

.prose h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: var(--s-sm);
}

.prose .updated {
  color: var(--text-2);
  font-size: 0.9rem;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.prose h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.75rem);
  margin-top: clamp(40px, 5vw, 56px);
  margin-bottom: var(--s-md);
}

.prose h3 {
  margin-top: var(--s-xl);
  margin-bottom: var(--s-sm);
}

.prose p,
.prose li {
  color: var(--text-2);
  margin-bottom: var(--s-md);
}

.prose ul {
  padding-left: 1.2em;
  margin-bottom: var(--s-lg);
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

.prose hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin-block: var(--s-xl);
}

/* --- Reduced motion ------------------------------------------------------- */
/* Everything settles into its final state: the hero shows the assembled
   outfit, reveals are already visible, nothing drifts. */

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
  }

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