:root {
  --bg: #0a0a0a;
  --bg-soft: #141414;
  --surface: #ffffff;
  --surface-alt: #f4f4f4;
  --ink: #0a0a0a;
  --ink-soft: #6b6b6b;
  --line: #e5e5e5;
  --brand: #0a0a0a;
  --brand-2: #0a0a0a;
  --brand-3: #ffffff;
  --cta: #d9480f;  --cta-dark: #b83c0c;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, .25);
  --shadow-sm: 0 8px 24px -12px rgba(0, 0, 0, .18);
  --container: 1120px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.btn {
  --pad: .7rem 1.25rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: var(--pad);
  border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--cta); color: #fff; box-shadow: 0 10px 30px -10px rgba(255, 91, 36, .55); }
.btn--primary:hover { background: var(--cta-dark); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--light { background: #fff; color: var(--ink); }
.btn--lg { --pad: .95rem 1.7rem; font-size: 1rem; }
.btn--block { width: 100%; margin-top: 1rem; }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.nav.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; gap: 1.5rem; height: 72px; }
.logo { display: inline-flex; align-items: center; line-height: 1; user-select: none; }
.logo__img { height: 26px; width: auto; display: block; }
.footer .logo__img { height: 30px; }
.logo--invert .logo__img { filter: brightness(0) invert(1); }
.nav__links { display: flex; gap: 1.7rem; margin-left: auto; }
.nav__links a { font-weight: 500; color: var(--ink-soft); position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0; background: var(--brand); transition: width .25s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; gap: .6rem; margin-left: auto; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; overflow: hidden; padding: clamp(1.5rem, 3.5vw, 3rem) 0 clamp(2rem, 4vw, 3.5rem); background: linear-gradient(180deg, #fbfcff, #f3f6fc); }
.hero__glow { position: absolute; inset: auto; top: -200px; right: -150px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(0, 0, 0, .07), transparent 60%); filter: blur(20px); pointer-events: none; }
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative; }
.pill { display: inline-block; padding: .4rem .9rem; border-radius: 999px; background: #f0f0f0; border: 1px solid var(--line); color: var(--ink); font-weight: 600; font-size: .8rem; margin-bottom: 1.2rem; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.08; letter-spacing: -.03em; font-weight: 800; }
.grad { color: var(--ink); }
.lead { font-size: 1.15rem; color: var(--ink-soft); margin: 1.2rem 0 1.8rem; max-width: 30rem; }
.hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 2rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong { font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; }
.hero__stats span { font-size: .85rem; color: var(--ink-soft); }

.hero__visual { display: grid; place-items: center; width: 100%; }

.hero__photo { margin: 0; border-radius: 20px; overflow: hidden; box-shadow: 0 40px 80px -34px rgba(0,0,0,.5); background: #ececec; aspect-ratio: 4 / 5; max-width: 460px; width: 100%; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel { position: relative; width: 100%; max-width: 540px; }
.carousel__viewport { overflow: hidden; border-radius: 22px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.45); background: #f0f0f0; }
.carousel__track { display: flex; transition: transform .6s var(--ease); }
.carousel__slide { flex: 0 0 100%; margin: 0; aspect-ratio: 3 / 2; }
.carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--ink); display: grid; place-items: center;
  box-shadow: 0 8px 24px -10px rgba(0,0,0,.4); transition: transform .2s var(--ease), background .2s;
}
.carousel__arrow:hover { transform: translateY(-50%) scale(1.08); background: #fff; }
.carousel__arrow svg { width: 22px; height: 22px; }
.carousel__arrow--prev { left: 12px; }
.carousel__arrow--next { right: 12px; }
.carousel__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1rem; }
.carousel__dots button { width: 9px; height: 9px; padding: 0; border-radius: 50%; border: 0; cursor: pointer; background: #cfcfcf; transition: width .25s var(--ease), background .25s; }
.carousel__dots button.is-active { width: 26px; border-radius: 6px; background: var(--ink); }

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--alt { background: var(--surface-alt); }
.section__head { text-align: center; max-width: 40rem; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.eyebrow { display: inline-block; font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin-bottom: .6rem; }
.section__head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -.02em; font-weight: 800; }
.section__sub { color: var(--ink-soft); margin-top: .7rem; font-size: 1.05rem; }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.5rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--ink); color: #fff; margin-bottom: 1.1rem; }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.15rem; margin-bottom: .4rem; letter-spacing: -.01em; }
.card p { color: var(--ink-soft); font-size: .95rem; }

.video { max-width: 880px; margin: 0 auto; }
.video__frame { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 16 / 9; background: linear-gradient(135deg, #111827, #1f2937); box-shadow: var(--shadow); display: grid; place-items: center; }
.video__frame video { width: 100%; height: 100%; object-fit: cover; }
.video__play { position: absolute; z-index: 2; width: 78px; height: 78px; border-radius: 50%; border: 0; cursor: pointer; background: rgba(255,255,255,.95); color: var(--brand); display: grid; place-items: center; transition: transform .25s var(--ease), opacity .3s; box-shadow: 0 10px 30px -8px rgba(0,0,0,.4); }
.video__play svg { width: 30px; height: 30px; margin-left: 3px; }
.video__play:hover { transform: scale(1.08); }
.video__play.is-hidden { opacity: 0; pointer-events: none; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem 1.6rem 1.8rem; text-align: center; }
.step__num { position: absolute; top: -22px; left: 50%; transform: translateX(-50%); width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; background: var(--ink); box-shadow: 0 10px 24px -10px rgba(0,0,0,.5); }
.step h3 { margin: 1rem 0 .4rem; }
.step p { color: var(--ink-soft); font-size: .95rem; }

.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 820px; margin: 0 auto; }
.price { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 2.2rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease); }
.price:hover { transform: translateY(-6px); }
.price--accent { background: linear-gradient(160deg, #111827, #1f2937); color: #fff; border-color: transparent; }
.price__tag { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); margin-bottom: .8rem; }
.price--accent .price__tag { color: var(--brand-3); }
.price__amount { font-size: 2.6rem; font-weight: 800; letter-spacing: -.03em; }
.price__amount span { font-size: 1rem; font-weight: 500; color: var(--ink-soft); }
.price--accent .price__amount span { color: #a3a3a3; }
.price > p { color: var(--ink-soft); margin: .3rem 0 1.3rem; }
.price--accent > p { color: #d4d4d4; }
.price__list { display: grid; gap: .6rem; margin-bottom: .5rem; }
.price__list li { position: relative; padding-left: 1.7rem; font-size: .95rem; }
.price__list li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 800; }
.price--accent .price__list li::before { color: var(--brand-3); }

.cta { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.cta__inner { text-align: center; max-width: 720px; margin: 0 auto; background: var(--ink); color: #fff; border-radius: 28px; padding: clamp(2.5rem, 5vw, 3.5rem); box-shadow: 0 40px 80px -30px rgba(0,0,0,.55); }
.cta h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); letter-spacing: -.02em; }
.cta p { opacity: .92; margin: .8rem 0 1.6rem; font-size: 1.08rem; }
.cta__actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.cta .btn--primary { background: #fff; color: var(--brand-2); box-shadow: none; }
.cta .btn--ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.cta .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

.uses { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.4rem; }
.use { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.use:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.use__media { aspect-ratio: 16 / 10; background: #ececec; overflow: hidden; }
.use__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.use:hover .use__media img { transform: scale(1.04); }
.use--noimg .use__media { background: repeating-linear-gradient(45deg, #f0f0f0, #f0f0f0 10px, #e9e9e9 10px, #e9e9e9 20px); }
.use__body { padding: 1.4rem 1.6rem 1.7rem; }
.use__body h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.use__body p { color: var(--ink-soft); font-size: .97rem; }
.use__media { position: relative; }
.use__badge { position: absolute; right: .7rem; bottom: .7rem; background: rgba(0,0,0,.72); color: #fff; font-size: .78rem; font-weight: 600; padding: .25rem .6rem; border-radius: 999px; backdrop-filter: blur(4px); }
.use--clickable { cursor: pointer; }
.use--clickable:focus-visible { outline: 3px solid var(--cta); outline-offset: 3px; }
.use--noimg .use__badge { display: none; }

.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 4vmin; background: rgba(10,10,10,.9); }
.lightbox.is-open { display: flex; }
.lightbox__stage { margin: 0; display: flex; flex-direction: column; align-items: center; gap: .9rem; max-width: 100%; max-height: 100%; }
.lightbox__stage img { max-width: 90vw; max-height: 80vh; border-radius: 12px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.8); }
.lightbox__caption { color: #e5e5e5; font-size: .95rem; font-weight: 500; }
.lightbox__count { color: #9a9a9a; margin-left: .4rem; }
.lightbox__close { position: absolute; top: 18px; right: 22px; width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer; background: rgba(255,255,255,.14); color: #fff; font-size: 1.7rem; line-height: 1; display: grid; place-items: center; transition: background .2s; }
.lightbox__close:hover { background: rgba(255,255,255,.3); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; border: 0; cursor: pointer; background: rgba(255,255,255,.14); color: #fff; display: grid; place-items: center; transition: background .2s; }
.lightbox__nav:hover { background: rgba(255,255,255,.3); }
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__prev { left: 18px; }
.lightbox__next { right: 18px; }
@media (max-width: 620px) {
  .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
}

.modes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; max-width: 880px; margin: 0 auto; }
.mode { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.mode:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.mode__media { position: relative; aspect-ratio: 16 / 9; background: #ececec; overflow: hidden; }
.mode__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.mode:hover .mode__media img { transform: scale(1.04); }
.mode--noimg .mode__media { background: repeating-linear-gradient(45deg, #f0f0f0, #f0f0f0 10px, #e9e9e9 10px, #e9e9e9 20px); }
.mode__tag { position: absolute; left: 1rem; bottom: 1rem; background: var(--ink); color: #fff; font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: .35rem .8rem; border-radius: 999px; }
.mode__body { padding: 1.6rem 1.9rem 1.9rem; }
.mode h3 { font-size: 1.4rem; margin-bottom: .5rem; letter-spacing: -.01em; }
.mode__body > p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.mode__list { display: grid; gap: .6rem; }
.mode__list li { position: relative; padding-left: 1.7rem; font-size: .95rem; }
.mode__list li::before { content: "✓"; position: absolute; left: 0; color: var(--ink); font-weight: 800; }

.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: j; }
.journey__step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.4rem 1.6rem; }
.journey__step::after { content: ""; position: absolute; top: 50%; right: -.85rem; width: 1.1rem; height: 2px; background: var(--line); }
.journey__step:last-child::after { display: none; }
.journey__num { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; font-weight: 800; color: #fff; background: var(--ink); margin-bottom: 1rem; }
.journey__step h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.journey__step p { color: var(--ink-soft); font-size: .93rem; }
.journey__cta { text-align: center; margin-top: 2.5rem; }

.faq { max-width: 780px; }
.faq__list { display: grid; gap: .8rem; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.1rem 1.3rem; font-weight: 600; font-size: 1.02rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; flex: 0 0 18px; height: 18px; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--ink); transition: transform .25s var(--ease); }
.faq__plus::before { width: 14px; height: 2px; }
.faq__plus::after { width: 2px; height: 14px; }
.faq__item[open] .faq__plus::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__answer { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }
.faq__answer p { font-size: .97rem; }
.faq__specs { display: grid; gap: 0; margin: 1rem 0; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq__specs li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .7rem 1rem; }
.faq__specs li + li { border-top: 1px solid var(--line); }
.faq__specs span { font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.faq__specs strong { font-size: 1.05rem; color: var(--ink); }

.contact { background: var(--ink); color: #fff; padding: clamp(3.5rem, 7vw, 6rem) 0; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.eyebrow--light { color: #fff; opacity: .7; }
.contact__intro h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -.02em; }
.contact__intro > p { color: #cfcfcf; margin: .9rem 0 1.5rem; font-size: 1.05rem; max-width: 30rem; }
.contact__points { display: grid; gap: .6rem; margin-bottom: 1.8rem; }
.contact__points li { position: relative; padding-left: 1.7rem; color: #e5e5e5; }
.contact__points li::before { content: "✓"; position: absolute; left: 0; font-weight: 800; color: #fff; }
.contact__direct { display: flex; flex-direction: column; gap: .3rem; }
.contact__direct a { font-size: 1.15rem; font-weight: 700; transition: opacity .2s; }
.contact__direct a:hover { opacity: .7; }

.contact__form { background: #fff; color: var(--ink); border-radius: 22px; padding: clamp(1.6rem, 3vw, 2.2rem); display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; box-shadow: 0 40px 80px -30px rgba(0,0,0,.55); }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; }
.field input, .field textarea { font: inherit; padding: .7rem .85rem; border: 1px solid var(--line); border-radius: 10px; background: #fafafa; transition: border-color .2s, box-shadow .2s; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(0,0,0,.08); background: #fff; }
.field input.invalid, .field textarea.invalid { border-color: #d11; box-shadow: 0 0 0 3px rgba(221,17,17,.12); }
.contact__form .btn--block { grid-column: 1 / -1; margin-top: .3rem; }
.contact__note { grid-column: 1 / -1; margin: 0; font-size: .9rem; min-height: 1.2em; }
.contact__note.ok { color: #0a7d33; }
.contact__note.err { color: #d11; }

.footer { background: var(--bg); color: #d4d4d4; padding: 3.5rem 0 2rem; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.brand--light { color: #fff; }
.footer__brand p { margin-top: .9rem; max-width: 22rem; color: #9a9a9a; font-size: .95rem; }
.footer__col h4 { color: #fff; margin-bottom: .9rem; font-size: 1rem; }
.footer__col a { display: block; color: #9a9a9a; padding: .25rem 0; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 1.5rem; font-size: .85rem; color: #6b6b6b; flex-wrap: wrap; gap: .5rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .uses { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .journey__step::after { display: none; }
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; }
  .hero__visual { order: 1; }
  .lead { margin-left: auto; margin-right: auto; }
  .hero__cta, .hero__stats { justify-content: center; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 620px) {
  .cards { grid-template-columns: 1fr; }
  .uses { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .modes { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.8rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}