/* PowerPlaySport — advertorial stylesheet */

:root {
  --c-bg: #ffffff;
  --c-text: #134e4a;
  --c-text-soft: #285e5a;
  --c-muted: #5b7a76;
  --c-cta: #14b8a6;
  --c-cta-hover: #0d9488;
  --c-highlight: #99f6e4;
  --c-soft-yellow: #ccfbf1;
  --c-line: #d6ece9;
  --c-card: #f0fbf9;
  --radius: 8px;
  --content: 720px;
  --content-wide: 880px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
* { -webkit-tap-highlight-color: transparent; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  margin: 0 0 .6em;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--c-text);
  overflow-wrap: break-word;
  word-break: break-word;
}

h1 {
  font-size: clamp(2.2rem, 4.8vw + .5rem, 3.4rem);
  text-align: center;
  margin-bottom: .35em;
}

h2 {
  font-size: clamp(1.7rem, 2.4vw + .8rem, 2.1rem);
  margin-top: 1.4em;
  margin-bottom: .55em;
}

h3 { font-size: 1.2rem; }

p {
  margin: 0 0 1.1em;
  color: var(--c-text);
}

p strong, li strong { color: var(--c-text); font-weight: 700; }

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: break-word;
  word-break: break-word;
}

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

mark {
  background: var(--c-highlight);
  color: var(--c-text);
  padding: 0 .1em;
  border-radius: 3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

/* ----- Layout container ----- */
.wrap {
  max-width: var(--content);
  margin: 0 auto;
  padding: 24px 22px 0;
}

.wrap--wide {
  max-width: var(--content-wide);
}

@media (max-width: 520px) {
  .wrap { padding-inline: 16px; }
}

/* ----- Hero ----- */
.hero { padding-top: 48px; text-align: center; }

@media (max-width: 820px) {
  .hero { padding-top: 0; }
  .wrap { padding-top: 12px; }
}

.hero__title {
  margin-bottom: .35em;
}

.hero__sub {
  text-align: center;
  font-size: 1.05rem;
  color: var(--c-text-soft);
  margin: 0 auto 28px;
  max-width: 540px;
}

/* ----- Hero collage (3 strips) ----- */
.collage {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1.25fr;
  gap: 8px;
  margin: 28px auto 32px;
  max-width: 560px;
  border-radius: var(--radius);
  overflow: hidden;
}
.collage__cell {
  position: relative;
  overflow: hidden;
  background: var(--c-card);
  height: 300px;
}
.collage__cell img,
.collage__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .collage__video source { display: none; }
}

.collage__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--c-cta-hover);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(13, 148, 136, .35);
  pointer-events: none;
}
.collage__badge--after {
  left: auto;
  right: 10px;
  background: var(--c-cta);
}

@media (max-width: 520px) {
  .collage { gap: 5px; max-width: 100%; }
  .collage__cell { height: 280px; }
  .collage__badge { font-size: .7rem; padding: 4px 9px; top: 8px; left: 8px; }
  .collage__badge--after { right: 8px; }
}

/* ----- CTA ----- */
.cta-block { text-align: center; margin: 32px 0 14px; }

.cta {
  display: inline-block;
  width: 100%;
  max-width: 560px;
  padding: 20px 28px;
  background: var(--c-cta);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius);
  transition: background .2s var(--ease), transform .15s var(--ease);
  cursor: pointer;
  box-shadow: 0 6px 0 rgba(0, 0, 0, .05);
}
.cta:hover { background: var(--c-cta-hover); }
.cta:active { transform: translateY(1px); }

.cta-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--c-cta);
  font-size: .92rem;
  font-weight: 500;
}
.cta-note svg {
  width: 16px; height: 16px;
  color: var(--c-cta);
  flex-shrink: 0;
}

/* ----- Body sections ----- */
.section { margin-block: 36px; }
.section p { font-size: 1.05rem; }

/* ----- Inline image ----- */
.figure {
  margin: 24px auto;
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}
.figure img { width: 100%; height: auto; }

.figure--wide { max-width: 560px; }
.figure--narrow { max-width: 460px; }
.figure--frame {
  border: 1px solid var(--c-line);
  background: var(--c-card);
  padding: 10px;
}

/* ----- USP grid (2x2 inline) ----- */
.usp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 30px;
  max-width: 520px;
  margin: 26px auto 0;
}
.usp__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 1rem;
}
.usp__icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--c-soft-yellow);
  color: var(--c-cta);
  border-radius: 50%;
}
.usp__icon svg { width: 20px; height: 20px; }

@media (max-width: 520px) {
  .usp { grid-template-columns: 1fr; gap: 14px; }
}

/* ----- Testimonial collage (4-photo) ----- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 520px;
  margin: 26px auto;
  border-radius: var(--radius);
  overflow: hidden;
}
.testimonials-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  border-radius: var(--radius);
}
.testimonials-note {
  text-align: center;
  font-style: italic;
  color: var(--c-text-soft);
  margin-bottom: 10px;
}

/* ----- Stress sections ----- */
.stress {
  text-align: center;
  margin: 36px 0;
}
.stress h2 { margin-bottom: .35em; }

/* ----- Guarantee box ----- */
.guarantee {
  background: var(--c-soft-yellow);
  color: var(--c-cta-hover);
  text-align: center;
  padding: 18px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 28px auto;
  max-width: 560px;
}

/* ----- Trust row ----- */
.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin: 28px auto 14px;
  font-size: .95rem;
  color: var(--c-text-soft);
}
.trust-row__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-row__item svg {
  width: 18px; height: 18px;
  color: var(--c-cta);
  flex-shrink: 0;
}

@media (max-width: 460px) {
  .trust-row { gap: 14px 18px; font-size: .9rem; }
}

/* ----- Footer (minimal compliance) ----- */
.legal-footer {
  margin: 48px auto 24px;
  text-align: center;
  font-size: .82rem;
  color: var(--c-muted);
  padding: 0 22px;
}
.legal-footer p { margin: 0 0 6px; color: var(--c-muted); font-size: .82rem; }
.legal-footer a { color: var(--c-muted); margin: 0 6px; }
.legal-footer a:hover { color: var(--c-cta); }

/* ----- Legal pages content ----- */
.legal-page {
  padding-block: 36px 60px;
}
@media (max-width: 820px) {
  .legal-page { padding-block: 14px 48px; }
  .wrap.legal-page { padding-inline: 18px; }
}
.legal-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 14px 0 22px;
  border-radius: 10px;
  border: 1px solid var(--c-line);
}
.legal-table table {
  margin: 0;
  min-width: 460px;
  border: 0;
}
.legal-table th,
.legal-table td { border-left: 0; border-right: 0; }
.legal-table tr td:first-child,
.legal-table tr th:first-child { border-left: 0; }
.legal-table tr td:last-child,
.legal-table tr th:last-child { border-right: 0; }
.legal-page h1 {
  text-align: left;
  font-size: clamp(1.7rem, 3vw + .5rem, 2.4rem);
  margin-bottom: .8em;
}
.legal-page h2 {
  margin-top: 1.4em;
  font-size: 1.25rem;
}
.legal-page h3 {
  margin-top: 1.2em;
  font-size: 1.05rem;
}
.legal-page p, .legal-page li {
  color: var(--c-text-soft);
  font-size: 1rem;
}
.legal-page ul, .legal-page ol { padding-left: 22px; margin-bottom: 1em; }
.legal-page a { color: var(--c-cta-hover); text-decoration: underline; }
.legal-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  color: var(--c-cta-hover);
  font-weight: 500;
}
.legal-page .back-link svg {
  width: 16px; height: 16px;
  transform: rotate(180deg);
}
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 22px;
  font-size: .92rem;
}
.legal-page th, .legal-page td {
  padding: 10px 12px;
  border: 1px solid var(--c-line);
  text-align: left;
  vertical-align: top;
}
.legal-page th { background: var(--c-card); font-weight: 600; }

/* ====================================================================
   v2.2 — SALES BOOSTERS + UNIQUENESS
   ==================================================================== */

/* ----- Mark underline accent ----- */
mark {
  position: relative;
  background: transparent;
  background-image: linear-gradient(transparent 60%, var(--c-highlight) 60%);
  padding: 0 2px;
}

/* ----- Hero background subtle gradient ----- */
.hero-bg {
  background:
    radial-gradient(circle at 80% -10%, rgba(20, 184, 166, .12), transparent 50%),
    radial-gradient(circle at 0% 110%, rgba(153, 246, 228, .35), transparent 45%),
    var(--c-bg);
}

/* ----- Rating row ----- */
.rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: -4px 0 18px;
  flex-wrap: wrap;
  font-size: .95rem;
  color: var(--c-text-soft);
}
.rating__stars {
  display: inline-flex;
  gap: 2px;
  color: #f59e0b;
}
.rating__stars svg { width: 18px; height: 18px; }
.rating strong { color: var(--c-text); font-weight: 700; }

/* ----- Stats row (count-up) ----- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px auto;
  max-width: 560px;
  text-align: center;
}
.stats__cell {
  padding: 16px 8px;
  background: var(--c-card);
  border-radius: 14px;
  border: 1px solid var(--c-line);
}
.stats__num {
  font-size: clamp(1.6rem, 3.4vw, 2.1rem);
  font-weight: 800;
  color: var(--c-cta-hover);
  line-height: 1.05;
}
.stats__num .stats__unit { font-size: .7em; margin-left: 2px; }
.stats__label {
  font-size: .82rem;
  color: var(--c-text-soft);
  font-weight: 500;
  margin-top: 4px;
  line-height: 1.25;
}

@media (max-width: 640px) {
  .stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 24px auto;
    max-width: 360px;
  }
  .stats__cell {
    padding: 14px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
  }
  .stats__num { font-size: 1.55rem; flex-shrink: 0; }
  .stats__num .stats__unit { font-size: .68em; margin-left: 1px; }
  .stats__label { font-size: .85rem; margin-top: 0; text-align: right; flex: 1; }
}

/* ----- Stock progress bar ----- */
.stock-bar {
  margin: 30px auto;
  max-width: 560px;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 18px 20px;
}
.stock-bar__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  margin-bottom: 10px;
}
.stock-bar__label { color: var(--c-text-soft); font-weight: 500; }
.stock-bar__pct {
  color: #dc2626;
  font-weight: 700;
}
.stock-bar__track {
  width: 100%;
  height: 10px;
  background: var(--c-line);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.stock-bar__fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #ef4444 0%, #f59e0b 50%, var(--c-cta) 100%);
  border-radius: 999px;
  transition: width 1.2s var(--ease);
}

/* ----- Doctor quote ----- */
.doc-quote {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
  max-width: 680px;
  margin: 30px auto;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: 18px;
  padding: 22px 24px;
  position: relative;
}
.doc-quote::before {
  content: '"';
  position: absolute;
  top: -14px;
  left: 20px;
  font-family: 'Inter', Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--c-cta);
  opacity: .25;
}
.doc-quote img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-cta);
}
.doc-quote__body p {
  font-size: 1rem;
  font-style: italic;
  color: var(--c-text);
  margin: 0 0 10px;
  line-height: 1.55;
}
.doc-quote__name {
  font-weight: 700;
  color: var(--c-text);
  font-size: .95rem;
  line-height: 1.25;
}
.doc-quote__role {
  font-size: .82rem;
  color: var(--c-muted);
}

@media (max-width: 520px) {
  .doc-quote {
    grid-template-columns: 1fr;
    padding: 22px 20px;
    text-align: center;
  }
  .doc-quote img { width: 96px; height: 96px; margin: 0 auto; }
}

/* ----- Testimonial carousel ----- */
.t-carousel {
  position: relative;
  max-width: 640px;
  margin: 26px auto;
}
.t-carousel__viewport {
  overflow: hidden;
  border-radius: 18px;
}
.t-carousel__track {
  display: flex;
  gap: 28px;
  transition: transform .55s var(--ease);
  will-change: transform;
}
.t-carousel__track .t-card {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
}
.t-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.t-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-line);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease), width .25s var(--ease);
}
.t-carousel__dot:hover { background: var(--c-cta-hover); }
.t-carousel__dot.is-active {
  background: var(--c-cta);
  width: 28px;
  border-radius: 999px;
}

.t-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 18px;
  padding: 22px 22px 20px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: flex-start;
  position: relative;
}
.t-card__photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-highlight);
}
.t-card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.t-card__name { font-weight: 700; color: var(--c-text); }
.t-card__age { font-size: .85rem; color: var(--c-muted); font-weight: 500; }
.t-card__stars {
  display: inline-flex;
  gap: 1px;
  color: #f59e0b;
  margin-bottom: 8px;
}
.t-card__stars svg { width: 14px; height: 14px; }
.t-card__text { font-size: .95rem; color: var(--c-text); margin: 0 0 10px; }
.t-card__result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-soft-yellow);
  color: var(--c-cta-hover);
  font-weight: 700;
  font-size: .85rem;
  padding: 4px 10px;
  border-radius: 999px;
}
.t-card__result svg { width: 14px; height: 14px; }

@media (max-width: 520px) {
  .t-card { grid-template-columns: 52px 1fr; gap: 12px; padding: 16px 14px; }
  .t-card__photo { width: 52px; height: 52px; }
  .t-card__top { margin-bottom: 4px; }
  .t-card__name { font-size: .92rem; }
  .t-card__age { font-size: .76rem; }
  .t-card__stars svg { width: 12px; height: 12px; }
  .t-card__stars { margin-bottom: 6px; }
  .t-card__text { font-size: .85rem; line-height: 1.45; margin-bottom: 8px; }
  .t-card__result { font-size: .76rem; padding: 3px 8px; }
  .t-card__result svg { width: 12px; height: 12px; }
}
@media (max-width: 380px) {
  .t-card { grid-template-columns: 44px 1fr; padding: 14px 12px; }
  .t-card__photo { width: 44px; height: 44px; }
  .t-card__text { font-size: .8rem; }
}

/* ----- FAQ accordion ----- */
.faq { max-width: 680px; margin: 26px auto; }
.faq details {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.faq details.is-open {
  border-color: var(--c-cta);
  box-shadow: 0 8px 20px rgba(13, 148, 136, .1);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-cta);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Inter', system-ui, sans-serif;
  transition: background .25s var(--ease);
}
.faq details.is-open summary::after { content: '−'; }
.faq__body {
  overflow: hidden;
  color: var(--c-text-soft);
  font-size: .95rem;
  line-height: 1.55;
}
.faq__body > * {
  margin: 0;
  padding: 0 20px;
}
.faq__body > *:first-child { padding-top: 4px; }
.faq__body > *:last-child { padding-bottom: 18px; }

@media (max-width: 520px) {
  .faq details { margin-bottom: 4px; }
  .faq__body > * { padding-inline: 16px; }
}

/* ----- Trust badges (tier 2) ----- */
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin: 28px auto;
  max-width: 640px;
  padding: 20px;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  background: var(--c-card);
}
.trust-badges__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-text-soft);
}
.trust-badges__item svg {
  width: 22px; height: 22px;
  color: var(--c-cta);
  flex-shrink: 0;
}
.trust-badges__pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-cta-hover);
  height: 28px;
}
.trust-badges__pay svg {
  height: 22px;
  width: auto;
  max-width: 90px;
  display: block;
  fill: currentColor;
}

/* ----- Sticky bottom CTA ----- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--c-line);
  padding: 10px 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  transform: translateY(100%);
  transition: transform .35s var(--ease);
}
.sticky-cta[data-visible="true"] { transform: translateY(0); }
.sticky-cta__copy {
  font-size: .9rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.2;
}
.sticky-cta__copy small { display: block; color: var(--c-muted); font-weight: 500; font-size: .78rem; }
.sticky-cta__btn {
  padding: 12px 22px;
  background: var(--c-cta);
  color: #fff;
  font-weight: 700;
  font-size: .98rem;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(13, 148, 136, .3);
  white-space: nowrap;
}
.sticky-cta__btn:hover { background: var(--c-cta-hover); }

@media (max-width: 520px) {
  .sticky-cta { padding: 10px 12px; gap: 10px; }
  .sticky-cta__copy { font-size: .82rem; }
  .sticky-cta__copy small { display: none; }
  .sticky-cta__btn { padding: 11px 16px; font-size: .9rem; }
}

/* leave bottom space so sticky doesn't cover footer */
body { padding-bottom: 80px; }

@media (max-width: 520px) {
  body { padding-bottom: 76px; }
}

/* ----- CTA pulse ----- */
.cta {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(13, 148, 136, .25), 0 0 0 0 rgba(20, 184, 166, .55);
  animation: ctaPulse 2.4s var(--ease) infinite;
}
@keyframes ctaPulse {
  0%   { box-shadow: 0 8px 24px rgba(13, 148, 136, .25), 0 0 0 0   rgba(20, 184, 166, .45); }
  70%  { box-shadow: 0 8px 24px rgba(13, 148, 136, .25), 0 0 0 18px rgba(20, 184, 166, 0); }
  100% { box-shadow: 0 8px 24px rgba(13, 148, 136, .25), 0 0 0 0   rgba(20, 184, 166, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .cta { animation: none; }
}

/* ----- Section curve dividers ----- */
.curve {
  display: block;
  width: 100%;
  height: 60px;
  margin: 0;
}
.curve--up { transform: scaleY(-1); }
.curve path { fill: var(--c-card); }

.section--bg {
  background: var(--c-card);
  margin-inline: calc(50% - 50vw);
  padding-inline: max(22px, calc(50vw - var(--content) / 2));
}
.section--bg .wrap-inner {
  max-width: var(--content);
  margin: 0 auto;
}

/* ----- Reveal on scroll ----- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
