/* =========================================================
   كشاف رأس LED — Arabic RTL COD landing (Mauritania)
   Hand-written CSS. No framework, no runtime compiler.
   ========================================================= */

@import url('assets/vendor/fonts/tajawal.css');

/* ---------------------------------------------------------
   1. Tokens
   --------------------------------------------------------- */
:root {
  /* Surfaces — night, because the product sells darkness-solved */
  --bg: #07090D;
  --bg-2: #0D1118;
  --surface: #141A24;
  --surface-2: #1C2534;
  --line: #263143;

  /* Text */
  --text: #F2F5F9;
  --text-dim: #A3AFC0;
  --text-mute: #6C7A8D;

  /* Accent — the beam */
  --beam: #4CC3FF;
  --beam-soft: #9BDCFF;
  --beam-glow: rgba(76, 195, 255, 0.35);

  /* CTA — the orange buttons on the housing */
  --cta: #FF6B1A;
  --cta-2: #FF9142;
  --cta-press: #E85A0C;

  --ok: #34D399;

  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;

  --shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
  --glow: 0 0 40px var(--beam-glow);

  --maxw: 480px; /* mobile-first column; the page is a phone-width app shell */

  --font: 'Tajawal', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------------------------------------------------------
   3. App shell — centre the page as a phone-width column
   --------------------------------------------------------- */
.shell {
  max-width: var(--maxw);
  margin-inline: auto;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
}

@media (min-width: 520px) {
  body {
    /* A soft beam-lit backdrop for the letterboxed desktop view */
    background:
      radial-gradient(ellipse 60% 50% at 50% 0%, rgba(76, 195, 255, 0.10), transparent 70%),
      var(--bg);
  }
}

.wrap {
  padding-inline: 18px;
}

section {
  padding-block: 56px;
  position: relative;
}

/* ---------------------------------------------------------
   4. Typography helpers
   --------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--beam);
  background: rgba(76, 195, 255, 0.10);
  border: 1px solid rgba(76, 195, 255, 0.25);
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.eyebrow svg {
  width: 14px;
  height: 14px;
}

h1 {
  font-size: clamp(28px, 8.5vw, 36px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(23px, 6.5vw, 28px);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
}

h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.lead {
  color: var(--text-dim);
  font-size: 15.5px;
}

.section-head {
  text-align: center;
  margin-bottom: 28px;
}

.section-head .lead {
  max-width: 34ch;
  margin-inline: auto;
}

.hl {
  color: var(--beam);
}

.hl-warm {
  color: var(--cta-2);
}

/* ---------------------------------------------------------
   5. Announcement bar
   --------------------------------------------------------- */
.announce {
  background: linear-gradient(90deg, var(--cta-press), var(--cta), var(--cta-press));
  color: #fff;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 14px;
  position: relative;
  z-index: 40;
}

/* ---------------------------------------------------------
   6. Navbar
   --------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 18px;
  background: rgba(7, 9, 13, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}

.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(7, 9, 13, 0.94);
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 15.5px;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  color: var(--beam);
  box-shadow: 0 0 14px rgba(76, 195, 255, 0.28);
}

.brand-mark svg {
  width: 17px;
  height: 17px;
}

.nav-cta {
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 15px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.15s, background 0.2s;
}

.nav-cta:active {
  transform: scale(0.96);
  background: var(--cta-press);
}

/* ---------------------------------------------------------
   7. Buttons
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 16px 22px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16.5px;
  transition: transform 0.15s, box-shadow 0.25s, background 0.2s;
}

.btn svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.btn-primary {
  position: relative;
  overflow: hidden; /* clips the shine sweep to the button's rounded box */
  background: linear-gradient(135deg, var(--cta-2), var(--cta));
  color: #fff;
  box-shadow: 0 8px 26px rgba(255, 107, 26, 0.42);
}

/* Keep the label above the sweep */
.btn-primary > * {
  position: relative;
  z-index: 1;
}

/* Light sweeping across the button, like the product's own beam */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 45%;
  left: -60%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  animation: shine 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0% { left: -60%; }
  55%, 100% { left: 140%; }
}

.btn-primary:active {
  transform: scale(0.975);
  box-shadow: 0 4px 14px rgba(255, 107, 26, 0.34);
}

.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
}

/* Attention pulse — a box-shadow ring rather than a pseudo-element, so
   .btn-primary's overflow:hidden can't clip it. */
.pulse {
  animation: pulseRing 2.2s ease-out infinite;
}

@keyframes pulseRing {
  0% { box-shadow: 0 8px 26px rgba(255, 107, 26, 0.42), 0 0 0 0 rgba(255, 107, 26, 0.55); }
  70% { box-shadow: 0 8px 26px rgba(255, 107, 26, 0.42), 0 0 0 14px rgba(255, 107, 26, 0); }
  100% { box-shadow: 0 8px 26px rgba(255, 107, 26, 0.42), 0 0 0 0 rgba(255, 107, 26, 0); }
}

/* Gentle bob so the CTA visibly moves and catches the eye */
.cta-move {
  animation: ctaBob 2.6s ease-in-out infinite;
}

/* When a button both pulses and bobs, run the two together — a second
   `animation` declaration would otherwise overwrite the first. */
.pulse.cta-move {
  animation: pulseRing 2.2s ease-out infinite, ctaBob 2.6s ease-in-out infinite;
}

@keyframes ctaBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* The bob owns `transform`, so .btn-primary:active's scale can't land on these
   buttons — give the press its own feedback instead. */
.cta-move:active {
  filter: brightness(0.9);
}

/* ---------------------------------------------------------
   8. Hero
   --------------------------------------------------------- */
.hero {
  padding-top: 30px;
  padding-bottom: 42px;
  text-align: center;
  position: relative;
}

/* The light cone washing down the hero */
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  width: 460px;
  height: 380px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 0%, rgba(76, 195, 255, 0.16), transparent 65%);
  pointer-events: none;
  animation: beamBreathe 5s ease-in-out infinite;
}

@keyframes beamBreathe {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-sub {
  color: var(--text-dim);
  font-size: 15.5px;
  margin-top: 12px;
  margin-inline: auto;
  max-width: 36ch;
}

.hero-img {
  margin-top: 22px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(76, 195, 255, 0.14);
  position: relative;
}

.hero-img img {
  width: 100%;
}

/* Price block */
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.price-now {
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.price-cur {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dim);
}

.price-note {
  font-size: 13.5px;
  color: var(--text-mute);
  margin-top: 6px;
}

.hero-actions {
  margin-top: 20px;
}

/* ---------------------------------------------------------
   9. Trust strip
   --------------------------------------------------------- */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px 12px;
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.trust-item {
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-dim);
  line-height: 1.4;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  margin: 0 auto 5px;
  color: var(--beam);
  display: block;
}

/* ---------------------------------------------------------
   10. Cards / features
   --------------------------------------------------------- */
.card {
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.feature {
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 17px 14px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}

.feature:hover {
  transform: translateY(-3px);
  border-color: rgba(76, 195, 255, 0.4);
}

.feature-ico {
  width: 44px;
  height: 44px;
  margin: 0 auto 11px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(76, 195, 255, 0.10);
  border: 1px solid rgba(76, 195, 255, 0.22);
  color: var(--beam);
}

.feature-ico svg {
  width: 21px;
  height: 21px;
}

.feature h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.feature p {
  font-size: 12.5px;
  color: var(--text-mute);
  line-height: 1.55;
}

/* ---------------------------------------------------------
   11. Problem section
   --------------------------------------------------------- */
.pain-list {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.pain {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-size: 14px;
  color: var(--text-dim);
}

.pain svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: #EF5A5A;
}

.solve {
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(76, 195, 255, 0.12), rgba(76, 195, 255, 0.02));
  border: 1px solid rgba(76, 195, 255, 0.28);
  font-size: 14.5px;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.solve svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--beam);
}

/* ---------------------------------------------------------
   12. Spec table
   --------------------------------------------------------- */
.specs {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 15px;
  font-size: 13.5px;
  background: var(--bg-2);
}

.spec:nth-child(odd) {
  background: var(--surface);
}

.spec dt {
  color: var(--text-mute);
}

.spec dd {
  font-weight: 700;
  color: var(--text);
  text-align: left;
}

/* ---------------------------------------------------------
   13. Use-case gallery
   --------------------------------------------------------- */
.uses {
  display: grid;
  gap: 12px;
}

.use {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1;
}

.use img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.use:hover img {
  transform: scale(1.05);
}

.use-cap {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 26px 15px 13px;
  background: linear-gradient(to top, rgba(7, 9, 13, 0.95), transparent);
  font-weight: 700;
  font-size: 14.5px;
}

.use-cap span {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 1px;
}

@media (min-width: 380px) {
  .uses {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------------------------------------------------------
   14. Order form
   --------------------------------------------------------- */
.order {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 107, 26, 0.10), transparent 70%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}

.order-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 17px;
  box-shadow: var(--shadow-lg);
}

/* Pack picker */
.packs {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.pack {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  border: 2px solid var(--line);
  background: var(--bg-2);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.pack input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pack-dot {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 2px solid var(--text-mute);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: border-color 0.2s;
}

.pack-dot::after {
  content: '';
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cta);
  transform: scale(0);
  transition: transform 0.2s;
}

.pack-body {
  flex: 1;
  min-width: 0;
}

.pack-title {
  display: block;
  font-weight: 800;
  font-size: 15px;
}

.pack-sub {
  display: block;
  font-size: 12px;
  color: var(--text-mute);
  line-height: 1.4;
}

.pack-price {
  font-weight: 800;
  font-size: 17px;
  white-space: nowrap;
}

.pack-save {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--ok);
  text-align: left;
}

.pack.is-on {
  border-color: var(--cta);
  background: rgba(255, 107, 26, 0.07);
}

.pack.is-on .pack-dot {
  border-color: var(--cta);
}

.pack.is-on .pack-dot::after {
  transform: scale(1);
}

.pack-tag {
  position: absolute;
  top: -9px;
  inset-inline-start: 13px;
  background: var(--cta);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 999px;
}

/* Fields */
.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dim);
}

.field input,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-mute);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--beam);
  box-shadow: 0 0 0 3px rgba(76, 195, 255, 0.14);
}

.field textarea {
  resize: vertical;
  min-height: 76px;
}

.field.invalid input,
.field.invalid textarea {
  border-color: #EF5A5A;
}

.err {
  display: none;
  font-size: 12px;
  color: #EF5A5A;
  margin-top: 5px;
  font-weight: 600;
}

.field.invalid .err {
  display: block;
}

/* Total */
.total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 15px;
  margin: 16px 0;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px dashed var(--line);
}

.total-label {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 700;
  line-height: 1.35;
}

.total-label em {
  display: block;
  font-style: normal;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-mute);
}

/* "أوقية جديدة" is long — keep the amount on one line and let the label give. */
.total-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--cta-2);
  white-space: nowrap;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-note svg {
  width: 14px;
  height: 14px;
  color: var(--ok);
}

/* Submit spinner */
.spinner {
  width: 17px;
  height: 17px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success state */
.done {
  text-align: center;
  padding: 26px 16px;
}

.done-ico {
  width: 66px;
  height: 66px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(52, 211, 153, 0.12);
  border: 2px solid var(--ok);
  color: var(--ok);
  animation: popIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.done-ico svg {
  width: 32px;
  height: 32px;
}

@keyframes popIn {
  from { transform: scale(0.3); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.done h3 {
  font-size: 21px;
  margin-bottom: 8px;
}

.done p {
  color: var(--text-dim);
  font-size: 14.5px;
}

.hidden {
  display: none !important;
}

/* ---------------------------------------------------------
   15. FAQ
   --------------------------------------------------------- */
.faq {
  display: grid;
  gap: 9px;
}

.qa {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qa summary {
  padding: 14px 15px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  list-style: none;
}

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

.qa summary::after {
  content: '';
  width: 8px;
  height: 8px;
  border-inline-end: 2px solid var(--text-mute);
  border-block-end: 2px solid var(--text-mute);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.qa[open] summary::after {
  transform: rotate(-135deg);
}

.qa-body {
  padding: 0 15px 14px;
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ---------------------------------------------------------
   16. Footer
   --------------------------------------------------------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 30px 18px calc(84px + env(safe-area-inset-bottom, 0px));
  text-align: center;
}

.footer .brand {
  justify-content: center;
  margin-bottom: 10px;
}

.footer p {
  font-size: 12.5px;
  color: var(--text-mute);
}

/* ---------------------------------------------------------
   17. Sticky bottom CTA
   --------------------------------------------------------- */
.dock {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 35;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(13, 17, 24, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(120%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.dock.up {
  transform: translateY(0);
}

.dock-price {
  flex-shrink: 0;
  line-height: 1.2;
}

.dock-price b {
  font-size: 19px;
  font-weight: 800;
}

.dock-price span {
  display: block;
  font-size: 10px;
  line-height: 1.3;
  color: var(--text-mute);
}

.dock .btn {
  padding: 13px 18px;
  font-size: 15px;
}

/* ---------------------------------------------------------
   18. Scroll reveal
   --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.seen {
  opacity: 1;
  transform: none;
}

/* Stagger children of a revealed grid */
.reveal-group.seen > * {
  animation: riseIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.reveal-group.seen > *:nth-child(1) { animation-delay: 0.04s; }
.reveal-group.seen > *:nth-child(2) { animation-delay: 0.10s; }
.reveal-group.seen > *:nth-child(3) { animation-delay: 0.16s; }
.reveal-group.seen > *:nth-child(4) { animation-delay: 0.22s; }
.reveal-group.seen > *:nth-child(5) { animation-delay: 0.28s; }
.reveal-group.seen > *:nth-child(6) { animation-delay: 0.34s; }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* Respect the user's motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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