/* =============================================================
   JGMS García Flash — Design System
   Identidad propia: verde esmeralda/lima, motivo de velocidad (rayo).
   ============================================================= */

:root {
  /* Brand greens */
  --green-300: #6ee7a8;
  --green-400: #34d68a;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #128a4e;
  --teal-600: #0e9e63;
  --teal-800: #0a5b3c;
  --lime-400: #a3e635;
  --lime-500: #84cc16;

  /* Dark base (verde-carbón) */
  --ink-950: #07140d;
  --ink-900: #0b1f16;
  --ink-800: #112a1f;

  /* Neutrals */
  --slate-700: #2b3a32;
  --slate-500: #56685d;
  --slate-400: #7d8c83;
  --line: #e2ece6;
  --line-soft: #edf4f0;
  --surface: #ffffff;
  --surface-2: #f7fbf9;
  --bg: #f3f9f6;
  --bg-mint: #e8f7ef;

  /* Semantic */
  --text: #0c1b13;
  --text-soft: #475a4f;
  --text-mut: #6b7d72;
  --on-dark: #e8f3ec;
  --on-dark-soft: #9fb8a9;
  --focus: #22c55e;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #2bd46e 0%, #0e9e63 100%);
  --grad-flash: linear-gradient(120deg, #a3e635 0%, #22c55e 60%, #0e9e63 100%);
  --grad-cta: linear-gradient(180deg, #2ed06f 0%, #16a34a 100%);
  --grad-dark: linear-gradient(160deg, #0b1f16 0%, #07140d 60%, #0a3326 130%);
  --grad-mesh: radial-gradient(900px 520px at 88% -8%, rgba(34,197,94,.18), transparent 55%),
               radial-gradient(700px 480px at -5% 105%, rgba(163,230,53,.16), transparent 55%);

  /* Type */
  --font-head: 'Space Grotesk', system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --fs-display: clamp(2.4rem, 1.5rem + 3.7vw, 4.2rem);
  --fs-h2: clamp(1.8rem, 1.25rem + 2.1vw, 2.8rem);
  --fs-h3: clamp(1.2rem, 1.05rem + 0.6vw, 1.45rem);
  --fs-lead: clamp(1.05rem, 0.98rem + 0.4vw, 1.2rem);

  /* Radii — rectangulares (distinto a Ultra Fibra que usaba pills) */
  --r-sm: 8px; --r-md: 12px; --r-lg: 18px; --r-xl: 24px; --r-btn: 12px;

  /* Shadows (tinte verde) */
  --sh-xs: 0 1px 2px rgba(7,20,13,.06);
  --sh-sm: 0 2px 10px rgba(10,60,40,.07);
  --sh-md: 0 14px 34px -16px rgba(10,80,50,.28);
  --sh-lg: 0 28px 64px -24px rgba(8,60,40,.34);
  --sh-cta: 0 14px 28px -12px rgba(16,140,80,.5);
  --sh-ring: 0 0 0 4px rgba(34,197,94,.3);

  --maxw: 1160px;
  --gutter: clamp(18px, 5vw, 40px);
  --header-h: 74px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body); color: var(--text); background: var(--bg);
  line-height: 1.65; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.08; font-weight: 700; letter-spacing: -0.02em; }
p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: none; box-shadow: var(--sh-ring); border-radius: var(--r-sm); }
::selection { background: var(--lime-400); color: var(--ink-950); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 6vw, 70px); }

.sec-head { max-width: 640px; margin-bottom: var(--sp-7, 48px); }
.sec-head h2 { font-size: var(--fs-h2); margin-top: 16px; }
.sec-head p { color: var(--text-soft); font-size: var(--fs-lead); margin-top: 14px; }
.sec-head.center { margin-inline: auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 15px 24px; border-radius: var(--r-btn); min-height: 50px; white-space: nowrap;
  transition: transform .16s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: var(--grad-cta); color: #fff; box-shadow: var(--sh-cta); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(16,140,80,.6); }
.btn--dark { background: var(--ink-900); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); background: var(--ink-950); }
.btn--ghost { background: var(--surface); color: var(--green-700); border: 1.5px solid var(--line); box-shadow: var(--sh-xs); }
.btn--ghost:hover { border-color: var(--green-500); color: var(--green-700); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.btn--light { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.28); }
.btn--light:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn--wa { background: #1faf54; color: #fff; box-shadow: 0 12px 26px -12px rgba(31,175,84,.6); }
.btn--wa:hover { background: #1a9a49; transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--sm { padding: 11px 17px; min-height: 42px; font-size: .92rem; }

/* Header */
.topbar { background: var(--ink-950); color: var(--on-dark); font-size: .82rem; }
.topbar .wrap { display: flex; align-items: center; justify-content: center; gap: 16px; min-height: 38px; flex-wrap: wrap; text-align: center; }
.topbar strong { color: #fff; font-weight: 600; }
.topbar .bolt { color: var(--lime-400); }
.topbar a { color: var(--green-300); font-weight: 600; }
.topbar a:hover { text-decoration: underline; }

.header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.85);
  backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.header.stuck { border-color: var(--line); box-shadow: var(--sh-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 16px; }

/* Logo (rayo + wordmark) */
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark { width: 42px; height: 42px; border-radius: 11px; background: var(--grad-primary); display: grid; place-items: center; box-shadow: var(--sh-sm); flex-shrink: 0; }
.brand__mark svg { width: 23px; height: 23px; color: #fff; }
.brand__word { font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; letter-spacing: -0.02em; color: var(--text); line-height: 1; }
.brand__word b { color: var(--green-600); font-weight: 700; }
.brand__word small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-mut); margin-top: 3px; }
.brand--light .brand__word { color: #fff; }
.brand--light .brand__word b { color: var(--green-400); }
.brand--light .brand__word small { color: var(--on-dark-soft); }

.nav__links { display: none; align-items: center; gap: 4px; }
.nav__links a { font-size: .95rem; font-weight: 500; color: var(--text-soft); padding: 9px 13px; border-radius: var(--r-sm); transition: color .2s, background .2s; }
.nav__links a:hover { color: var(--green-700); background: var(--bg-mint); }
.nav__links a.active { color: var(--green-700); }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__cta { display: none; }
.nav__toggle { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: var(--r-md); color: var(--ink-900); background: var(--surface); border: 1px solid var(--line); }
.nav__toggle svg { width: 24px; height: 24px; }
.nav__toggle .ic-close { display: none; }
body.menu-open .nav__toggle .ic-open { display: none; }
body.menu-open .nav__toggle .ic-close { display: block; }

.mobile-menu { position: fixed; inset: 0 0 0 auto; height: 100dvh; width: min(86vw,360px); background: var(--surface); z-index: 200; padding: 26px 24px; transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; box-shadow: var(--sh-lg); }
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.mobile-menu a.m-link { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; padding: 14px 6px; border-bottom: 1px solid var(--line-soft); }
.mobile-menu a.m-link:hover { color: var(--green-600); }
.mobile-menu .btn { margin-top: 18px; }
.scrim { position: fixed; inset: 0; background: rgba(7,20,13,.5); z-index: 150; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; backdrop-filter: blur(2px); }
body.menu-open .scrim { opacity: 1; visibility: visible; }

/* Hero — claro (a diferencia de Ultra Fibra) */
.hero { position: relative; background: var(--grad-mesh), var(--bg); overflow: hidden; }
.hero .wrap { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 60px); padding-block: clamp(48px, 8vw, 96px); align-items: center; }
.hero h1 { font-size: var(--fs-display); color: var(--text); }
.hero__lead { color: var(--text-soft); font-size: var(--fs-lead); margin-top: 22px; max-width: 40ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 34px; }
.hero__trust li { display: flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 500; color: var(--text-soft); }
.hero__trust svg { width: 20px; height: 20px; color: var(--green-600); flex-shrink: 0; }
.hero .hl { color: var(--green-700); }

/* Foto del hero */
.hero__photo { position: relative; margin: 0; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid var(--line); aspect-ratio: 16 / 11; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__photo figcaption { position: absolute; left: 14px; bottom: 14px; display: flex; align-items: center; gap: 8px; background: rgba(7,20,13,.6); color: #fff; backdrop-filter: blur(6px); font-size: .8rem; font-weight: 500; padding: 8px 13px; border-radius: 999px; }
.hero__photo figcaption .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-400); }

/* Stats band — oscuro (inverso a Ultra Fibra) */
.stats { background: var(--grad-dark); color: var(--on-dark); }
.stats__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px 16px; text-align: center; }
.stat b { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 700; display: block; color: #fff; letter-spacing: -0.02em; }
.stat b small { font-size: .9rem; font-weight: 600; color: var(--on-dark-soft); }
.stat span { font-size: .88rem; color: var(--on-dark-soft); margin-top: 6px; display: block; }

/* Features */
.features__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.feat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.feat:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--green-300); }
.feat__ico { width: 50px; height: 50px; border-radius: 13px; background: var(--bg-mint); color: var(--green-600); display: grid; place-items: center; margin-bottom: 16px; }
.feat__ico svg { width: 25px; height: 25px; }
.feat h3 { font-size: var(--fs-h3); }
.feat p { color: var(--text-soft); margin-top: 9px; font-size: .95rem; }

/* Pricing */
.pricing { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-mint) 100%); }
.plans { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: stretch; }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px; display: flex; flex-direction: column; position: relative; transition: transform .25s, box-shadow .25s; }
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.plan__speed { display: flex; align-items: baseline; gap: 6px; }
.plan__speed b { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; letter-spacing: -0.03em; }
.plan__speed span { font-size: 1rem; font-weight: 600; color: var(--text-soft); }
.plan__use { font-size: .9rem; color: var(--text-mut); margin-top: 6px; min-height: 2.6em; }
.plan__price { margin-top: 18px; padding-top: 18px; border-top: 1px dashed var(--line); display: flex; align-items: baseline; gap: 4px; }
.plan__price .cur { font-size: 1rem; font-weight: 700; color: var(--text-soft); align-self: flex-start; margin-top: 6px; }
.plan__price .amt { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.plan__price .per { font-size: .88rem; color: var(--text-mut); }
.plan__list { margin: 18px 0 22px; display: grid; gap: 11px; }
.plan__list li { display: flex; gap: 10px; font-size: .92rem; color: var(--text-soft); align-items: flex-start; }
.plan__list svg { width: 18px; height: 18px; color: var(--green-600); flex-shrink: 0; margin-top: 2px; }
.plan .btn { margin-top: auto; }
/* Featured = tarjeta oscura rellena (distinto al borde-degradado de Ultra Fibra) */
.plan--featured { background: var(--grad-dark); border-color: transparent; box-shadow: var(--sh-lg); }
.plan--featured .plan__speed b, .plan--featured .plan__price .amt { color: #fff; }
.plan--featured .plan__speed span, .plan--featured .plan__price .cur { color: var(--on-dark-soft); }
.plan--featured .plan__use { color: var(--on-dark-soft); }
.plan--featured .plan__price { border-top-color: rgba(255,255,255,.16); }
.plan--featured .plan__list li { color: var(--on-dark); }
.plan--featured .plan__list svg { color: var(--lime-400); }
.plan__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-flash); color: var(--ink-950); font-family: var(--font-head); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; white-space: nowrap; box-shadow: var(--sh-sm); }
.plans-note { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 14px 26px; justify-content: center; text-align: center; color: var(--text-soft); font-size: .9rem; }
.plans-note span { display: inline-flex; align-items: center; gap: 7px; }
.plans-note svg { width: 17px; height: 17px; color: var(--green-600); }

/* Coverage */
.cov__grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 48px); align-items: center; }
.cov__list { display: grid; gap: 12px; margin: 22px 0; }
.cov__list li { display: flex; gap: 12px; align-items: flex-start; }
.cov__list .ci { width: 42px; height: 42px; border-radius: 12px; background: var(--bg-mint); color: var(--green-600); display: grid; place-items: center; flex-shrink: 0; }
.cov__list .ci svg { width: 21px; height: 21px; }
.cov__list b { font-family: var(--font-head); font-size: 1rem; }
.cov__list p { color: var(--text-soft); font-size: .92rem; }
.cov__art { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid var(--line); background: var(--ink-950); }
.cov__art img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2; }
.cov__badge { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,.95); padding: 9px 14px; border-radius: var(--r-md); font-size: .82rem; font-weight: 600; color: var(--ink-900); box-shadow: var(--sh-sm); display: flex; align-items: center; gap: 8px; }
.cov__badge svg { width: 17px; height: 17px; color: var(--green-600); }

/* Steps */
.steps { display: grid; grid-template-columns: 1fr; gap: 16px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; position: relative; }
.step__n { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; line-height: 1; background: var(--grad-flash); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h3 { font-size: 1.2rem; margin-top: 12px; }
.step p { color: var(--text-soft); margin-top: 8px; font-size: .94rem; }

/* FAQ */
.faq { max-width: 800px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 12px; background: var(--surface); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.faq__item.open { border-color: var(--green-300); box-shadow: var(--sh-sm); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; text-align: left; font-family: var(--font-head); font-weight: 600; font-size: 1.04rem; }
.faq__q .chev { width: 28px; height: 28px; border-radius: 8px; background: var(--bg-mint); display: grid; place-items: center; flex-shrink: 0; transition: transform .3s, background .3s, color .3s; color: var(--green-700); }
.faq__q .chev svg { width: 17px; height: 17px; }
.faq__item.open .chev { transform: rotate(180deg); background: var(--grad-primary); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { color: var(--text-soft); padding: 0 22px 20px; font-size: .95rem; }

/* Contact */
.contact { background: linear-gradient(180deg, var(--bg-mint), var(--bg)); }
.contact__grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.contact__info { display: grid; gap: 14px; align-content: start; }
.cc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 17px 19px; display: flex; gap: 14px; align-items: center; }
.cc .ci { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-mint); color: var(--green-600); display: grid; place-items: center; flex-shrink: 0; }
.cc .ci svg { width: 22px; height: 22px; }
.cc small { display: block; color: var(--text-mut); font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; }
.cc b { font-family: var(--font-head); font-size: 1rem; word-break: break-word; }
.cc a:hover { color: var(--green-700); }
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px,4vw,32px); box-shadow: var(--sh-md); }
.form h3 { font-size: 1.4rem; }
.form .sub { color: var(--text-soft); font-size: .94rem; margin: 6px 0 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: 7px; }
.field label .req { color: var(--green-600); }
.field input, .field select, .field textarea { width: 100%; font-family: inherit; font-size: 1rem; color: var(--text); padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-md); background: var(--surface-2); transition: border-color .2s, box-shadow .2s, background .2s; min-height: 48px; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-500); background: #fff; box-shadow: 0 0 0 4px rgba(34,197,94,.13); }
.field-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.form__note { font-size: .82rem; color: var(--text-mut); margin-top: 12px; text-align: center; }
.form__note a { color: var(--green-700); font-weight: 600; }

/* Footer */
.footer { background: var(--grad-dark); color: var(--on-dark-soft); padding-top: clamp(48px,7vw,78px); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 34px; padding-bottom: 42px; }
.footer__brand p { font-size: .92rem; max-width: 34ch; margin-top: 16px; }
.footer__brand .social { display: flex; gap: 10px; margin-top: 20px; }
.footer__brand .social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #fff; transition: background .2s, transform .2s; }
.footer__brand .social a:hover { background: var(--green-600); transform: translateY(-2px); }
.footer__brand .social svg { width: 19px; height: 19px; }
.footer__col h4 { color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-head); }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a, .footer__col li { font-size: .92rem; }
.footer__col a:hover { color: var(--green-300); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 22px; display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; font-size: .82rem; }

/* WhatsApp float */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #1faf54; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px -8px rgba(31,175,84,.7); transition: transform .2s; }
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 30px; height: 30px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .07s; }
[data-delay="2"] { transition-delay: .14s; }
[data-delay="3"] { transition-delay: .21s; }


/* Responsive */
@media (min-width: 600px) {
  .stats__grid { grid-template-columns: repeat(4,1fr); }
  .field-row { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (min-width: 768px) {
  .features__grid { grid-template-columns: repeat(2,1fr); }
  .plans { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(3,1fr); }
  .footer__grid { grid-template-columns: 1.7fr 1fr 1fr 1.2fr; }
}
@media (min-width: 960px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .features__grid { grid-template-columns: repeat(4,1fr); }
  .plans { grid-template-columns: repeat(4,1fr); gap: 14px; }
  .cov__grid { grid-template-columns: .95fr 1.05fr; }
  .contact__grid { grid-template-columns: .9fr 1.1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
