/* =========================================================
   Hey Nouri — v1 "BLOOM"
   Warm & human, parent-reassuring, optimistic.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --green-deep: #172613;
  --green-olive: #3a4c34;
  --carrot: #f0710c;
  --carrot-hover: #ff8b1a;
  --mint: #ceebc2;
  --sky: #bae8ef;
  --blue: #aec8e1;
  --sun: #fae899;
  --teal: #005f6e;
  --off-white: #f5f5f5;
  --white: #ffffff;

  --glass: rgba(255, 255, 255, 0.62);

  --shadow-sm: 0 4px 16px rgba(23, 38, 19, 0.06);
  --shadow-md: 0 16px 40px rgba(23, 38, 19, 0.10);
  --shadow-lg: 0 28px 70px rgba(23, 38, 19, 0.14);
  --carrot-glow: 0 10px 28px rgba(240, 113, 12, 0.34);

  --r-pill: 999px;
  --r-xl: 32px;
  --r-lg: 24px;
  --r-md: 18px;
  --r-sm: 12px;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --rhythm: clamp(72px, 9vw, 128px);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

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

body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--green-deep);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.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;
}

/* ---------- Focus ---------- */
:where(a, button, [tabindex]):focus-visible {
  outline: 2px solid var(--carrot);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--carrot);
  margin-bottom: 18px;
}
.eyebrow .dash {
  width: 24px; height: 2px; background: var(--carrot); border-radius: 2px;
}
.eyebrow--center { justify-content: center; }
.eyebrow--mint { color: var(--mint); }
.dash--mint { background: var(--mint); }

.h2 {
  font-size: clamp(1.875rem, 1.2rem + 2.4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--green-deep);
}

.lead {
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  font-weight: 500;
  color: var(--green-olive);
  margin-top: 18px;
  max-width: 600px;
}
.lead--center { margin-inline: auto; max-width: 560px; }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-radius: var(--r-pill);
  padding: 12px 24px;
  cursor: pointer;
  border: none;
  transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn--lg { padding: 15px 30px; }
.btn--xl { padding: 17px 36px; font-size: 1.0625rem; }

.btn--carrot { background: var(--carrot); color: #fff; box-shadow: var(--shadow-sm); }
.btn--carrot:hover { background: var(--carrot-hover); transform: translateY(-2px); box-shadow: var(--carrot-glow); }

.btn--ghost {
  background: transparent; color: var(--green-deep);
  border: 1.5px solid rgba(23, 38, 19, 0.18);
}
.btn--ghost:hover { border-color: var(--carrot); color: var(--carrot); transform: translateY(-2px); }

.btn--ghost-dark {
  background: rgba(255,255,255,0.4); color: var(--green-deep);
  border: 1.5px solid var(--green-deep);
}
.btn--ghost-dark:hover { background: var(--carrot); border-color: var(--carrot); color: #fff; transform: translateY(-2px); }

/* ---------- Blobs ---------- */
.blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 42% 58% 63% 37% / 45% 38% 62% 55%;
}
.blob--mint { background: var(--mint); opacity: 0.7; }
.blob--sun { background: var(--sun); opacity: 0.6; }
.blob--sky { background: var(--sky); opacity: 0.65; }

/* ---------- Float animations ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
.float { animation: float 7.5s ease-in-out infinite; }
.float-slow { animation: floatSlow 9s ease-in-out infinite; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(23, 38, 19, 0.06);
  transition: box-shadow .25s ease;
}
.nav.is-scrolled { box-shadow: var(--shadow-sm); }
.nav__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 32px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--green-deep);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--carrot);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.nav__links a:hover { color: var(--carrot); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { margin-left: 0; }

.nav__burger {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--green-deep); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s;
  padding: 24px;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu__close {
  position: absolute; top: 18px; right: 22px;
  background: none; border: none; font-size: 2.5rem; line-height: 1;
  color: var(--green-deep); cursor: pointer;
}
.mobile-menu__links { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-menu__links a { font-size: 1.5rem; font-weight: 700; color: var(--green-deep); }
.mobile-menu__cta { width: min(320px, 80vw); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, rgba(206, 235, 194, 0.18) 100%);
  padding-top: 56px;
  padding-bottom: 96px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__blob1 { width: 340px; height: 340px; top: -60px; right: -40px; }
.hero__blob2 { width: 200px; height: 200px; bottom: 20px; left: -60px; }

.hero__text { position: relative; z-index: 2; }
.hero__title {
  font-size: clamp(2.375rem, 1.4rem + 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--green-deep);
}
.hero__title .accent { color: var(--carrot); }

.hero__sub {
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  font-weight: 500;
  color: var(--green-olive);
  margin-top: 22px;
  max-width: 520px;
}
.hero__cta { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.hero__trust {
  margin-top: 28px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-olive);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--carrot); display: inline-block; }
.hero__heart {
  width: 80px; margin-top: 24px; opacity: 0.9;
}

/* media */
.hero__media { position: relative; justify-self: center; width: 100%; max-width: 480px; z-index: 1; }
.hero__curve {
  position: absolute; top: -46px; right: -30px;
  width: 220px; opacity: 0.85; transform: rotate(-8deg); z-index: 0;
}
.hero__photo {
  position: relative;
  z-index: 1;
  border-radius: 58% 42% 47% 53% / 55% 48% 52% 45%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.chip {
  position: absolute;
  z-index: 3;
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.chip__num { font-size: 1.375rem; font-weight: 800; color: var(--green-deep); letter-spacing: -0.02em; }
.chip__num--carrot { color: var(--carrot); }
.chip__cap { font-size: 0.75rem; font-weight: 500; color: var(--green-olive); }
.chip--tl { top: 6%; left: -18px; }
.chip--br { bottom: 8%; right: -14px; }

/* =========================================================
   STATS / PROOF
   ========================================================= */
.stats {
  position: relative;
  background: var(--off-white);
  padding-block: clamp(56px, 7vw, 88px);
  overflow: hidden;
}
.stats__bubble { position: absolute; width: 140px; opacity: 0.4; pointer-events: none; }
.stats__bubble--l { top: 10%; left: -30px; }
.stats__bubble--r { bottom: 6%; right: -20px; }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.stat-card {
  position: relative;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 28px 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-card__strip {
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
}
.strip--mint { background: var(--mint); }
.strip--sky { background: var(--sky); }
.strip--sun { background: var(--sun); }

.stat-card__num {
  display: block;
  font-size: clamp(2.5rem, 1.6rem + 3vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  line-height: 1;
}
.stat-card__label { display: block; font-size: 1rem; color: var(--green-olive); margin-top: 12px; }

/* =========================================================
   OFFER
   ========================================================= */
.offer { position: relative; background: var(--white); padding-block: var(--rhythm); overflow: hidden; }
.offer__curve { position: absolute; top: 90px; right: -90px; width: 260px; opacity: 0.5; pointer-events: none; }
.offer__bubble { position: absolute; bottom: 40px; left: -40px; width: 130px; opacity: 0.4; pointer-events: none; }

.offer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.offer-card {
  background: var(--white);
  border: 1px solid rgba(23, 38, 19, 0.06);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.offer-card:hover .icon-tile { transform: scale(1.04); }
.offer-card__title { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em; margin: 20px 0 10px; }
.offer-card p { font-size: 1rem; color: var(--green-olive); }

.icon-tile {
  width: 56px; height: 56px;
  border-radius: var(--r-sm);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--teal);
  transition: transform .24s ease;
}
.icon-tile svg { width: 28px; height: 28px; }
.tile--mint { background: var(--mint); }
.tile--sky { background: var(--sky); }
.tile--sun { background: var(--sun); }
.tile--blue { background: var(--blue); }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how { background: var(--off-white); padding-block: var(--rhythm); position: relative; }
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.how__connector {
  position: absolute;
  top: 0;
  left: 12%;
  width: 76%;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step__badge {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  font-size: 1.75rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}
.step__badge::after {
  content: ""; position: absolute; top: -3px; right: -3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--carrot); border: 3px solid var(--off-white);
}
.step__photo {
  height: 180px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 22px;
}
.step__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.step__title { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; color: var(--green-deep); }
.step p { font-size: 1rem; color: var(--green-olive); max-width: 320px; margin-inline: auto; }

.how__cta { text-align: center; margin-top: 48px; }

/* =========================================================
   DIFFERENT
   ========================================================= */
.different { background: var(--white); padding-block: var(--rhythm); overflow: hidden; }
.different__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.different__media { position: relative; }
.different__blob {
  width: 360px; height: 360px;
  top: -30px; left: -40px; z-index: 0;
}
.different__photo {
  position: relative; z-index: 1;
  border-radius: 47% 53% 60% 40% / 52% 45% 55% 48%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  max-width: 440px;
}
.different__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.different__inset {
  position: absolute; z-index: 2;
  bottom: -20px; right: 0;
  width: 150px; height: 150px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}
.different__inset img { width: 100%; height: 100%; object-fit: cover; }
.different__heart {
  position: absolute; z-index: 3;
  top: -16px; right: 18px;
  width: 100px; opacity: 0.95;
}

.diff-list { margin-top: 8px; }
.diff-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(23, 38, 19, 0.08);
}
.diff-item:last-child { border-bottom: none; }
.diff-item__icon {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: rgba(240, 113, 12, 0.12);
  color: var(--carrot);
  display: flex; align-items: center; justify-content: center;
}
.diff-item__icon svg { width: 22px; height: 22px; }
.diff-item__title { font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; color: var(--green-deep); }
.diff-item p { font-size: 1rem; color: var(--green-olive); }

/* =========================================================
   TECHSTARS
   ========================================================= */
.techstars {
  position: relative;
  background: var(--green-deep);
  padding-block: clamp(72px, 9vw, 120px);
  overflow: hidden;
  text-align: center;
}
.ts__bubble { position: absolute; pointer-events: none; }
.ts__bubble--1 { width: 280px; opacity: 0.14; top: -40px; left: -30px; }
.ts__bubble--2 { width: 200px; opacity: 0.10; bottom: -30px; right: 4%; }
.ts__curve { position: absolute; bottom: 10px; right: -40px; width: 240px; opacity: 0.10; pointer-events: none; }

.ts__inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; }
.ts__divider {
  display: block; width: 56px; height: 3px;
  background: var(--carrot); border-radius: var(--r-pill);
  margin: 0 auto 24px;
}
.ts__logo { height: 44px; width: auto; margin: 24px auto; }
.ts__line {
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin-inline: auto;
}

/* =========================================================
   MISSION / CTA
   ========================================================= */
.mission {
  position: relative;
  background: linear-gradient(135deg, #ceebc2 0%, #bae8ef 55%, #fae899 120%);
  padding-block: clamp(72px, 10vw, 128px);
  overflow: hidden;
  text-align: center;
}
.mission__heart { position: absolute; top: 40px; left: 6%; width: 120px; opacity: 0.95; pointer-events: none; }
.mission__curve { position: absolute; bottom: -20px; right: -30px; width: 280px; opacity: 0.8; pointer-events: none; }
.mission__glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 760px; height: 420px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.mission__inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.mission .h2 { font-size: clamp(1.875rem, 1.2rem + 2.8vw, 3rem); }
.mission__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  position: relative;
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 64px;
  padding-bottom: 32px;
  overflow: hidden;
}
.footer__bubble { position: absolute; top: -40px; right: -30px; width: 200px; opacity: 0.07; pointer-events: none; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.footer__logo-chip {
  display: inline-flex;
  background: var(--white);
  padding: 8px 14px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.footer__logo-chip img { height: 30px; width: auto; }
.footer__tag { font-size: 0.875rem; margin-top: 16px; max-width: 260px; }

.footer__head { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 14px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 0.875rem; color: rgba(255,255,255,0.7); transition: color .16s ease; width: fit-content; }
.footer__col a:hover { color: var(--carrot); }

.footer__bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
}
.footer__copy { font-size: 0.8125rem; }
.footer__social { display: flex; gap: 14px; margin-left: auto; }
.footer__social a { color: #fff; transition: color .16s ease; }
.footer__social a:hover { color: var(--carrot); }
.footer__social svg { width: 22px; height: 22px; }
.footer__legal { display: flex; gap: 16px; }
.footer__legal a { font-size: 0.8125rem; color: rgba(255,255,255,0.7); }
.footer__legal a:hover { color: var(--carrot); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1199px) {
  .hero__inner { gap: 40px; }
}

@media (max-width: 1023px) {
  .different__inner { gap: 40px; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .offer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 859px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: 2; max-width: 360px; }
  .hero__text { order: 1; }
  .hero__blob1 { width: 220px; height: 220px; opacity: 0.5; }
  .hero__blob2 { width: 150px; height: 150px; opacity: 0.45; }
  .chip--tl { left: -8px; }
  .chip--br { right: -6px; }

  .different__inner { grid-template-columns: 1fr; }
  .different__media { order: 1; max-width: 420px; margin-inline: auto; }
  .different__content { order: 2; }

  .how__connector { display: none; }
  .how__grid { grid-template-columns: 1fr; gap: 48px; max-width: 460px; margin-inline: auto; }
}

@media (max-width: 700px) {
  .stats__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

@media (max-width: 640px) {
  .offer__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .mission__cta { flex-direction: column; align-items: center; }
  .mission__cta .btn { width: min(320px, 90%); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__social { margin-left: 0; }
  .blob, .stats__bubble, .offer__bubble, .different__blob { opacity: 0.4 !important; }
}

@media (max-width: 700px) and (min-width: 641px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); max-width: none; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
