/* ============================================================================
   SpaceX — Workspace OS  |  صفحة الهبوط
   هوية كونية داكنة: Space Ink + توهّج بنفسجي/إنديغو + لمسة Solar Amber.
   مستقلة عن app.css — لا تعتمد إلا على fonts.css.
   ============================================================================ */

.lp *, .lp *::before, .lp *::after { box-sizing: border-box; }

.lp {
  --v:      #5B34EF;   /* Orbit Violet */
  --v2:     #7C5CFF;   /* Plasma Indigo */
  --amber:  #FFB020;   /* Solar Amber */
  --amber2: #FFC661;
  --ink:    #0C0A16;   /* أعمق من Space Ink لعمق الفضاء */
  --ink2:   #14121F;
  --emerald:#00D67A;
  --star:   #F6F5FB;
  --muted:  #A49FC4;
  --soft:   #6E698C;
  --line:   rgba(255,255,255,.08);
  --line-2: rgba(255,255,255,.14);
  --glass:  rgba(255,255,255,.03);
  --glass-2:rgba(255,255,255,.05);

  --f-head: 'Cairo', 'Tajawal', sans-serif;
  --f-body: 'Tajawal', system-ui, sans-serif;
  --f-disp: 'Orbitron', sans-serif;
  --f-mono: 'Roboto Mono', ui-monospace, monospace;

  --wrap: 1180px;

  margin: 0;
  font-family: var(--f-body);
  color: var(--star);
  background: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
.lp-main { overflow-x: clip; }

/* ---- خلفية الفضاء الطبقية ---- */
.lp-space {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 82% -8%,  rgba(124,92,255,.32), transparent 60%),
    radial-gradient(50% 45% at 12% 8%,   rgba(91,52,239,.28),  transparent 62%),
    radial-gradient(45% 40% at 50% 108%, rgba(255,176,32,.10), transparent 60%),
    var(--ink);
}
/* حقل نجوم دقيق */
.lp-space::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%,  rgba(255,255,255,.7), transparent),
    radial-gradient(1px 1px at 70% 20%,  rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 40% 70%,  rgba(255,255,255,.6), transparent),
    radial-gradient(1px 1px at 88% 60%,  rgba(255,255,255,.45),transparent),
    radial-gradient(1.5px 1.5px at 55% 45%, rgba(255,255,255,.55), transparent),
    radial-gradient(1px 1px at 30% 88%,  rgba(255,255,255,.4), transparent),
    radial-gradient(1px 1px at 92% 88%,  rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 8% 55%,   rgba(255,255,255,.4), transparent);
  background-repeat: repeat; background-size: 480px 480px;
  opacity: .5; animation: lp-drift 120s linear infinite;
}
/* حبيبات ناعمة تكسر الباندينغ */
.lp-space::after {
  content: ""; position: absolute; inset: 0; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
@keyframes lp-drift { to { background-position: 480px 480px; } }

.lp-main { position: relative; z-index: 1; }
.lp-wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }

/* ============================ الروابط والأزرار ============================ */
.lp a { color: inherit; text-decoration: none; }

.lp-btn {
  --bg: var(--v);
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-head); font-weight: 800; font-size: 15px;
  padding: 13px 26px; border-radius: 14px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; line-height: 1;
  transition: transform .18s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .2s, border-color .2s;
}
.lp-btn i { width: 18px; height: 18px; }
.lp-btn:hover { transform: translateY(-2px); }

.lp-btn--amber {
  background: linear-gradient(180deg, var(--amber2), var(--amber));
  color: #3A2600; box-shadow: 0 10px 26px rgba(255,176,32,.32);
}
.lp-btn--amber:hover { box-shadow: 0 16px 38px rgba(255,176,32,.42); }

.lp-btn--violet {
  background: linear-gradient(180deg, var(--v2), var(--v));
  color: #fff; box-shadow: 0 12px 30px rgba(91,52,239,.4);
}
.lp-btn--violet:hover { box-shadow: 0 18px 44px rgba(91,52,239,.5); }

.lp-btn--ghost {
  background: var(--glass-2); color: var(--star); border-color: var(--line-2);
  backdrop-filter: blur(8px);
}
.lp-btn--ghost:hover { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.08); }

.lp-btn--sm { padding: 10px 18px; font-size: 13.5px; border-radius: 12px; }
.lp-btn--block { width: 100%; justify-content: center; }

/* ============================ شريط التنقّل ============================ */
.lp-nav {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.lp-nav.is-stuck {
  background: rgba(12,10,22,.72); backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.lp-nav .lp-wrap { display: flex; align-items: center; gap: 20px; height: 68px; }

.lp-brand { display: flex; align-items: center; gap: 11px; }
.lp-brand-mark {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--v2), var(--v));
  box-shadow: 0 6px 18px rgba(91,52,239,.45), inset 0 1px 0 rgba(255,255,255,.25);
}
.lp-brand-mark svg { width: 22px; height: 22px; }
.lp-brand-name { font-family: var(--f-disp); font-weight: 800; font-size: 18px; letter-spacing: .5px; }
.lp-brand-name b { color: var(--amber); font-weight: 800; }
.lp-brand-tag {
  font-family: var(--f-mono); font-size: 9.5px; letter-spacing: 3px;
  color: var(--soft); text-transform: uppercase; margin-top: 1px;
}

.lp-navlinks { display: flex; gap: 6px; margin-inline-start: auto; }
.lp-navlinks a {
  font-family: var(--f-head); font-weight: 700; font-size: 14.5px; color: var(--muted);
  padding: 9px 15px; border-radius: 10px; transition: color .2s, background .2s;
}
.lp-navlinks a:hover { color: var(--star); background: var(--glass-2); }
.lp-nav-cta { display: flex; align-items: center; gap: 10px; }

.lp-burger {
  display: none; margin-inline-start: auto;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--glass-2); border: 1px solid var(--line-2); color: var(--star);
  cursor: pointer; place-items: center;
}
.lp-burger svg { width: 22px; height: 22px; }

/* ============================ Hero ============================ */
.lp-hero { position: relative; padding: 68px 0 90px; overflow: hidden; }

.lp-orbit {
  position: absolute; inset-block-start: -60px; inset-inline-end: -180px;
  width: 720px; height: 720px; pointer-events: none; opacity: .5;
  -webkit-mask-image: radial-gradient(closest-side, #000 60%, transparent);
          mask-image: radial-gradient(closest-side, #000 60%, transparent);
}
.lp-orbit span {
  position: absolute; inset: 0; margin: auto;
  border: 1px solid rgba(124,92,255,.22); border-radius: 50%;
}
.lp-orbit span:nth-child(1){ width: 320px; height: 320px; }
.lp-orbit span:nth-child(2){ width: 480px; height: 480px; border-color: rgba(124,92,255,.15); }
.lp-orbit span:nth-child(3){ width: 660px; height: 660px; border-color: rgba(255,176,32,.12); }
.lp-orbit b {
  position: absolute; top: 50%; inset-inline-start: 50%;
  width: 10px; height: 10px; border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 16px var(--amber);
  transform-origin: -150px 0; animation: lp-spin 18s linear infinite;
}
.lp-orbit b.p2 { background: var(--v2); box-shadow: 0 0 16px var(--v2);
  transform-origin: -240px 0; animation-duration: 30s; animation-direction: reverse; }
@keyframes lp-spin { to { transform: rotate(360deg); } }

.lp-hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
}

.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 1px;
  color: var(--amber2); background: rgba(255,176,32,.1);
  border: 1px solid rgba(255,176,32,.24); padding: 7px 14px; border-radius: 100px;
}
.lp-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald);
  box-shadow: 0 0 10px var(--emerald); animation: lp-pulse 2s ease-in-out infinite; }
@keyframes lp-pulse { 50% { opacity: .35; } }

.lp-h1 {
  font-family: var(--f-head); font-weight: 900; letter-spacing: -.5px;
  font-size: clamp(34px, 5.4vw, 62px); line-height: 1.08; margin: 20px 0 0;
}
.lp-h1 .grad {
  background: linear-gradient(110deg, var(--v2) 10%, var(--amber) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-sub {
  font-size: clamp(16px, 2vw, 19px); color: var(--muted);
  max-width: 40ch; margin: 22px 0 0;
}
.lp-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.lp-hero-meta {
  display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px;
  font-size: 13.5px; color: var(--soft);
}
.lp-hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.lp-hero-meta i { width: 16px; height: 16px; color: var(--emerald); }

/* بطاقة لوحة مصغّرة توحي بالمنتج */
.lp-panel {
  position: relative; border-radius: 22px; padding: 20px;
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 70px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.lp-panel-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.lp-panel-top .t { font-family: var(--f-head); font-weight: 800; font-size: 15px; }
.lp-live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 1px; color: var(--emerald); }
.lp-live .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald); animation: lp-pulse 1.6s infinite; }

.lp-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lp-stat {
  border-radius: 14px; padding: 14px; border: 1px solid var(--line);
  background: var(--glass);
}
.lp-stat .k { font-size: 11.5px; color: var(--soft); display: flex; align-items: center; gap: 6px; }
.lp-stat .k i { width: 14px; height: 14px; }
.lp-stat .v { font-family: var(--f-disp); font-weight: 800; font-size: 26px; margin-top: 6px; }
.lp-stat.a .v { color: var(--amber); }
.lp-stat.v2 .v { color: var(--v2); }
.lp-bars { display: flex; align-items: flex-end; gap: 5px; height: 40px; margin-top: 4px; }
.lp-bars i { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, var(--v2), rgba(124,92,255,.25)); }

/* ============================ الأقسام العامة ============================ */
.lp-section { padding: 84px 0; position: relative; }
.lp-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.lp-kicker {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--v2);
}
.lp-h2 { font-family: var(--f-head); font-weight: 900; font-size: clamp(27px, 3.6vw, 40px);
  line-height: 1.15; margin: 12px 0 0; letter-spacing: -.4px; }
.lp-lead { color: var(--muted); font-size: 16.5px; margin: 14px 0 0; }

/* شريط أرقام */
.lp-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lp-strip .lp-metric { text-align: center; padding: 18px; }
.lp-metric .n { font-family: var(--f-disp); font-weight: 800; font-size: clamp(26px,3vw,36px);
  background: linear-gradient(120deg, var(--star), var(--v2)); -webkit-background-clip: text;
  background-clip: text; color: transparent; }
.lp-metric .l { color: var(--soft); font-size: 13.5px; margin-top: 4px; }

/* ============================ المزايا ============================ */
.lp-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lp-feat {
  position: relative; border-radius: 20px; padding: 26px;
  background: linear-gradient(165deg, var(--glass-2), var(--glass));
  border: 1px solid var(--line); overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), border-color .25s, box-shadow .25s;
}
.lp-feat::after {
  content: ""; position: absolute; inset-block-start: -40%; inset-inline-end: -30%;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,255,.18), transparent 70%);
  opacity: 0; transition: opacity .3s;
}
.lp-feat:hover { transform: translateY(-6px); border-color: var(--line-2);
  box-shadow: 0 24px 50px rgba(0,0,0,.4); }
.lp-feat:hover::after { opacity: 1; }
.lp-feat-ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(124,92,255,.28), rgba(91,52,239,.14));
  border: 1px solid rgba(124,92,255,.3); color: var(--v2); margin-bottom: 18px;
}
.lp-feat-ic svg { width: 25px; height: 25px; }
.lp-feat h3 { font-family: var(--f-head); font-weight: 800; font-size: 18.5px; margin: 0 0 8px; }
.lp-feat p { color: var(--muted); font-size: 14.5px; margin: 0; }
.lp-feat.amber .lp-feat-ic { background: linear-gradient(150deg, rgba(255,176,32,.26), rgba(255,176,32,.1));
  border-color: rgba(255,176,32,.32); color: var(--amber); }

/* ============================ التسعير ============================ */
.lp-toggle {
  display: inline-flex; align-items: center; gap: 4px; margin: 22px auto 0;
  padding: 5px; border-radius: 100px; background: var(--glass-2); border: 1px solid var(--line-2);
}
.lp-toggle button {
  font-family: var(--f-head); font-weight: 800; font-size: 14px; color: var(--muted);
  padding: 9px 20px; border-radius: 100px; border: 0; background: transparent; cursor: pointer;
  transition: color .2s; position: relative;
}
.lp-toggle button.on { color: #fff;
  background: linear-gradient(180deg, var(--v2), var(--v)); box-shadow: 0 6px 16px rgba(91,52,239,.4); }
.lp-save {
  display: inline-block; margin-inline-start: 7px; font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .5px; color: var(--emerald); background: rgba(0,214,122,.14);
  border: 1px solid rgba(0,214,122,.3); padding: 2px 8px; border-radius: 100px; vertical-align: middle;
}

.lp-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.lp-plan {
  position: relative; display: flex; flex-direction: column;
  border-radius: 22px; padding: 30px 26px; border: 1px solid var(--line-2);
  background: linear-gradient(175deg, var(--glass-2), rgba(255,255,255,.015));
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.lp-plan:hover { transform: translateY(-6px); box-shadow: 0 26px 56px rgba(0,0,0,.42); }

.lp-plan.pop {
  border-color: rgba(255,176,32,.5);
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(255,176,32,.12), transparent 60%),
    linear-gradient(175deg, rgba(124,92,255,.14), rgba(255,255,255,.02));
  box-shadow: 0 22px 60px rgba(91,52,239,.28);
}
.lp-plan-badge {
  position: absolute; inset-block-start: -13px; inset-inline-start: 50%; transform: translateX(50%);
  font-family: var(--f-head); font-weight: 800; font-size: 12px; color: #3A2600;
  background: linear-gradient(180deg, var(--amber2), var(--amber));
  padding: 6px 16px; border-radius: 100px; box-shadow: 0 8px 20px rgba(255,176,32,.4);
  white-space: nowrap;
}
.lp-plan-name { font-family: var(--f-head); font-weight: 800; font-size: 21px; }
.lp-plan-desc { color: var(--soft); font-size: 13.5px; margin-top: 4px; min-height: 20px; }

.lp-price { display: flex; align-items: baseline; gap: 8px; margin: 22px 0 4px; }
.lp-price .amt {
  font-family: var(--f-disp); font-weight: 800; font-size: 46px; line-height: 1;
  color: var(--star);
}
.lp-price .cur { font-family: var(--f-head); font-weight: 800; font-size: 20px; color: var(--amber); }
.lp-price .per { font-size: 14px; color: var(--soft); }
.lp-price-note { font-size: 12.5px; color: var(--emerald); min-height: 18px; }

.lp-plan-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; flex: 1; }
.lp-plan-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: #D6D2EC; }
.lp-plan-list i { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--emerald); }
.lp-plan-list .off { color: var(--soft); }
.lp-plan-list .off i { color: var(--soft); }
.lp-plan .lp-btn { margin-top: 26px; }

/* ============================ FAQ ============================ */
.lp-faq { max-width: 780px; margin-inline: auto; display: grid; gap: 12px; }
.lp-q {
  border: 1px solid var(--line); border-radius: 16px; background: var(--glass);
  overflow: hidden; transition: border-color .2s, background .2s;
}
.lp-q[open] { border-color: var(--line-2); background: var(--glass-2); }
.lp-q summary {
  list-style: none; cursor: pointer; padding: 20px 22px;
  font-family: var(--f-head); font-weight: 700; font-size: 16.5px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.lp-q summary::-webkit-details-marker { display: none; }
.lp-q summary .ic { width: 30px; height: 30px; border-radius: 9px; flex: none;
  display: grid; place-items: center; background: var(--glass-2); border: 1px solid var(--line-2);
  color: var(--v2); transition: transform .25s, color .2s; }
.lp-q[open] summary .ic { transform: rotate(45deg); color: var(--amber); }
.lp-q .a { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

/* ============================ CTA band ============================ */
.lp-cta {
  position: relative; overflow: hidden; border-radius: 28px; padding: 56px 40px; text-align: center;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(255,176,32,.16), transparent 55%),
    linear-gradient(120deg, rgba(91,52,239,.5), rgba(124,92,255,.32));
  border: 1px solid rgba(255,255,255,.14);
}
.lp-cta::before {
  content: ""; position: absolute; inset: 0; opacity: .4;
  background: radial-gradient(40% 60% at 85% 120%, rgba(124,92,255,.5), transparent);
}
.lp-cta > * { position: relative; }
.lp-cta h2 { font-family: var(--f-head); font-weight: 900; font-size: clamp(26px,3.4vw,38px); margin: 0; }
.lp-cta p { color: rgba(246,245,251,.82); font-size: 17px; margin: 14px auto 28px; max-width: 46ch; }

/* ============================ Footer ============================ */
.lp-footer { border-top: 1px solid var(--line); margin-top: 40px; padding: 44px 0 30px; }
.lp-foot-grid { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: flex-start; }
.lp-foot-brand { max-width: 320px; }
.lp-foot-brand p { color: var(--soft); font-size: 14px; margin: 14px 0 0; }
.lp-foot-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.lp-foot-col h4 { font-family: var(--f-head); font-weight: 800; font-size: 14px; color: var(--muted);
  margin: 0 0 14px; letter-spacing: .5px; }
.lp-foot-col a { display: block; color: var(--soft); font-size: 14px; padding: 5px 0; transition: color .2s; }
.lp-foot-col a:hover { color: var(--star); }
.lp-foot-bottom {
  margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  color: var(--soft); font-size: 13px;
}
.lp-foot-bottom .brandx { font-family: var(--f-mono); letter-spacing: 1px; }
.lp-foot-bottom .brandx b { color: var(--amber); }

/* ============================ حركة الظهور ============================ */
/* الإخفاء مشروط بوجود JS فقط — بلا JS يبقى كل المحتوى ظاهراً (لا شاشة فارغة). */
.reveal { transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.lp-js .reveal { opacity: 0; transform: translateY(26px); }
.lp-js .reveal.in { opacity: 1; transform: none; }
.hero-anim { opacity: 0; animation: lp-rise .8s cubic-bezier(.2,.7,.3,1) forwards; }
@keyframes lp-rise { to { opacity: 1; transform: none; } }
.hero-anim { transform: translateY(24px); }

/* ============================ متجاوب ============================ */
.lp-moblinks { display: none; }

@media (max-width: 940px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-panel { max-width: 460px; }
  .lp-orbit { opacity: .3; inset-inline-end: -280px; }
  .lp-feats { grid-template-columns: repeat(2, 1fr); }
  .lp-plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .lp-plan.pop { order: -1; }
  .lp-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .lp-navlinks, .lp-nav-cta { display: none; }
  .lp-burger { display: grid; }
  .lp-nav.open .lp-moblinks {
    display: flex; flex-direction: column; gap: 6px;
    position: absolute; inset-block-start: 68px; inset-inline: 12px;
    background: rgba(16,13,26,.96); backdrop-filter: blur(18px);
    border: 1px solid var(--line-2); border-radius: 18px; padding: 14px;
    box-shadow: 0 24px 50px rgba(0,0,0,.5);
  }
  .lp-moblinks a { padding: 12px 14px; border-radius: 12px; font-family: var(--f-head);
    font-weight: 700; color: var(--muted); }
  .lp-moblinks a:hover { background: var(--glass-2); color: var(--star); }
  .lp-moblinks .lp-btn { margin-top: 6px; }
  .lp-hero { padding-top: 40px; }
  .lp-section { padding: 62px 0; }
  .lp-feats { grid-template-columns: 1fr; }
  .lp-cta { padding: 44px 24px; }
  .lp-foot-cols { gap: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-space::before, .lp-orbit b { animation: none; }
  .reveal, .lp-js .reveal { transition: none; opacity: 1 !important; transform: none !important; }
  .hero-anim { animation: none; opacity: 1; transform: none; }
}
