:root {
  --green: #39ff14;
  --green-deep: #0e7a33;
  --ink: #050705;
  --panel: #0b0f0c;
  --panel-2: #111713;
  --white: #f5f8f5;
  --muted: #a4ada6;
  --line: rgba(255, 255, 255, .1);
  --green-line: rgba(57, 255, 20, .22);
  --container: 1180px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.page-noise {
  position: fixed; inset: 0; pointer-events: none; opacity: .025; z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 30;
  border-bottom: 1px solid transparent; transition: .3s ease;
}
.site-header.scrolled { background: rgba(5, 7, 5, .84); backdrop-filter: blur(18px); border-color: var(--line); }
.nav-shell { height: 82px; display: flex; align-items: center; gap: 40px; }
.brand { width: 175px; margin-right: auto; }
.brand img, .footer-brand img { width: 100%; filter: drop-shadow(0 0 10px rgba(57,255,20,.12)); }
.desktop-nav { display: flex; gap: 30px; }
.desktop-nav a { color: #c5ccc6; font-size: 14px; font-weight: 600; transition: .2s; }
.desktop-nav a:hover { color: var(--green); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: transparent; color: white; }
.menu-toggle span { display: block; width: 18px; height: 1px; background: currentColor; margin: 5px auto; transition: .2s; }
.mobile-nav { display: none; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 54px; padding: 0 24px; border: 1px solid transparent; border-radius: 14px;
  font-size: 14px; font-weight: 750; letter-spacing: -.01em; transition: .25s ease;
}
.button svg { width: 20px; }
.button-small { min-height: 44px; padding: 0 18px; font-size: 13px; border-radius: 12px; }
.button-primary { color: #051006; background: var(--green); box-shadow: 0 12px 38px rgba(57,255,20,.16); }
.button-primary:hover { transform: translateY(-2px); background: #68ff4c; box-shadow: 0 16px 45px rgba(57,255,20,.25); }
.button-outline { border-color: rgba(57,255,20,.45); color: var(--white); background: rgba(57,255,20,.04); }
.button-outline:hover, .button-ghost:hover { border-color: var(--green); color: var(--green); }
.button-ghost { border-color: var(--line); color: var(--white); background: rgba(255,255,255,.025); }
.button-light { background: white; color: #071008; min-width: 210px; }
.button-light:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,.25); }

.hero { min-height: 900px; position: relative; padding: 158px 0 0; overflow: hidden; background: radial-gradient(circle at 76% 36%, rgba(14,122,51,.14), transparent 36%); }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 0%, transparent 45%), linear-gradient(0deg, var(--ink) 0%, transparent 35%); pointer-events: none; z-index: 1; }
.hero-grid { position: relative; z-index: 2; min-height: 570px; display: grid; grid-template-columns: .9fr 1.2fr; align-items: center; }
.hero-copy { position: relative; z-index: 3; max-width: 600px; padding-bottom: 45px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #bdc8bf; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow i { width: 22px; height: 1px; background: var(--green); box-shadow: 0 0 10px var(--green); }
h1, h2 { margin: 0; font-family: Manrope, Inter, sans-serif; line-height: .98; letter-spacing: -.055em; text-transform: uppercase; }
h1 { margin-top: 25px; font-size: clamp(48px, 5.2vw, 76px); font-weight: 800; }
h1 strong, h2 em { display: block; color: var(--green); font-style: normal; font-weight: inherit; }
.hero-copy > p { max-width: 565px; margin: 28px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.hero-proof { display: flex; align-items: center; gap: 16px; margin-top: 35px; }
.proof-icons { display: flex; padding-left: 10px; }
.proof-icons span { display: grid; place-items: center; width: 40px; height: 40px; margin-left: -10px; border: 2px solid var(--ink); border-radius: 50%; color: #071008; background: var(--green); font-size: 9px; font-weight: 800; }
.proof-icons span:nth-child(2) { background: #c7d1c9; }
.proof-icons span:nth-child(3) { background: #1e2a20; color: white; }
.hero-proof p { margin: 0; color: #7f8a81; font-size: 12px; line-height: 1.45; }
.hero-proof b { color: white; font-size: 13px; }
.hero-visual { position: absolute; z-index: 0; top: 0; right: -150px; width: 850px; height: 590px; }
.visual-frame { position: relative; width: 100%; height: 100%; }
.visual-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 0%, transparent 25%), linear-gradient(0deg, var(--ink), transparent 28%); pointer-events: none; }
.visual-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; border-radius: 50px 0 0 50px; filter: saturate(.95) contrast(1.05); }
.live-chip, .security-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: 9px; background: rgba(9,14,10,.78); border: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(12px); box-shadow: 0 18px 50px rgba(0,0,0,.28); }
.live-chip { top: 50px; left: 220px; padding: 10px 15px; border-radius: 50px; color: #d9e0da; font-size: 11px; font-weight: 600; }
.live-chip span, .pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.security-chip { right: 110px; bottom: 75px; padding: 14px 18px; border-radius: 16px; font-size: 13px; font-weight: 700; }
.security-chip svg { width: 27px; color: var(--green); }
.security-chip small { display: block; color: #849087; font-size: 9px; font-weight: 500; text-transform: uppercase; }
.trust-strip { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(12,17,13,.92); border: 1px solid var(--line); border-radius: 22px; backdrop-filter: blur(18px); overflow: hidden; }
.trust-strip > div { min-height: 112px; padding: 25px; display: flex; align-items: center; gap: 15px; border-right: 1px solid var(--line); }
.trust-strip > div:last-child { border: 0; }
.trust-strip > div > span { color: var(--green); font-family: Manrope; font-size: 12px; font-weight: 800; }
.trust-strip p { margin: 0; line-height: 1.4; }
.trust-strip b { display: block; font-size: 13px; }
.trust-strip small { color: #7c867e; font-size: 11px; }

.section { padding: 120px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 70px; margin-bottom: 55px; }
.section-heading h2, .lock-copy h2, .app-copy h2, .cta-shell h2 { margin-top: 18px; font-size: clamp(38px, 4.2vw, 60px); max-width: 760px; }
.section-heading > p { max-width: 390px; margin: 0 0 5px; color: var(--muted); }
.services { background: linear-gradient(180deg, #050705, #080b08); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 290px; padding: 30px; background: rgba(255,255,255,.025); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; transition: .3s; }
.service-card::after { content: ""; position: absolute; inset: auto -30% -50% 30%; height: 160px; background: radial-gradient(circle, rgba(57,255,20,.08), transparent 65%); opacity: 0; transition: .3s; }
.service-card:hover { transform: translateY(-5px); border-color: var(--green-line); background: rgba(57,255,20,.025); }
.service-card:hover::after { opacity: 1; }
.service-card.featured { border-color: var(--green-line); background: linear-gradient(145deg, rgba(57,255,20,.07), rgba(255,255,255,.02)); }
.service-card > span { position: absolute; top: 32px; right: 30px; color: #58615a; font-size: 11px; }
.icon-box { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid var(--green-line); border-radius: 14px; color: var(--green); background: rgba(57,255,20,.04); }
.icon-box svg { width: 25px; }
.service-card h3 { margin: 48px 0 10px; font: 700 19px Manrope; letter-spacing: -.02em; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.lock-section { position: relative; overflow: hidden; border-block: 1px solid var(--line); background: radial-gradient(circle at 23% 50%, rgba(14,122,51,.14), transparent 31%), #070a08; }
.lock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.lock-visual { position: relative; display: grid; place-items: center; min-height: 520px; }
.radar { position: relative; display: grid; place-items: center; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(57,255,20,.08), transparent 60%); overflow: hidden; }
.ring { position: absolute; border: 1px solid rgba(57,255,20,.22); border-radius: 50%; }
.ring-1 { width: 140px; height: 140px; }
.ring-2 { width: 270px; height: 270px; }
.ring-3 { width: 410px; height: 410px; }
.radar::before, .radar::after { content: ""; position: absolute; background: rgba(57,255,20,.14); }
.radar::before { width: 100%; height: 1px; }.radar::after { height: 100%; width: 1px; }
.scan { position: absolute; width: 50%; height: 50%; top: 0; right: 0; transform-origin: bottom left; background: conic-gradient(from 2deg at 0 100%, rgba(57,255,20,.15), transparent 28deg); animation: scan 5s linear infinite; }
@keyframes scan { to { transform: rotate(360deg); } }
.lock-core { position: relative; z-index: 3; display: grid; place-items: center; width: 110px; height: 110px; color: #061007; background: var(--green); border-radius: 32px; box-shadow: 0 0 70px rgba(57,255,20,.28); transform: rotate(-4deg); }
.lock-core svg { width: 47px; stroke-width: 1.5; }
.vehicle-status { position: absolute; right: 10px; bottom: 28px; width: 225px; padding: 18px; background: rgba(13,19,14,.85); border: 1px solid var(--line); border-radius: 16px; backdrop-filter: blur(12px); }
.vehicle-status small { color: #7f8a81; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.vehicle-status div { display: flex; align-items: center; gap: 9px; margin-top: 5px; }
.vehicle-status p { margin: 8px 0 0; color: #7f8a81; font-size: 10px; }
.lock-copy > p, .app-copy > p { max-width: 555px; margin: 25px 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 0; margin: 30px 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; }
.check-list span { display: grid; place-items: center; width: 24px; height: 24px; color: #071008; background: var(--green); border-radius: 50%; font-size: 11px; }
.text-link { display: inline-flex; gap: 12px; color: var(--green); font-size: 13px; font-weight: 700; }

.app-section { background: #050705; }
.app-shell { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; padding: 70px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(130deg, #101611, #080b09); overflow: hidden; }
.app-shell::before { content: ""; position: absolute; width: 500px; height: 500px; right: -100px; top: -180px; background: radial-gradient(circle, rgba(57,255,20,.12), transparent 65%); }
.platform-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.platform-links a { display: flex; align-items: center; gap: 10px; min-width: 150px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 12px; background: #050705; transition: .2s; }
.platform-links a:hover { border-color: var(--green-line); transform: translateY(-2px); }
.platform-links svg { width: 23px; color: var(--green); }
.platform-links span { font-size: 12px; font-weight: 700; line-height: 1.2; }
.platform-links small { display: block; color: #7f8a81; font-size: 8px; font-weight: 500; }
.platform-links .web-link { min-width: 170px; }
.app-dashboard { position: relative; z-index: 2; padding: 20px; background: rgba(5,7,5,.84); border: 1px solid rgba(57,255,20,.18); border-radius: 22px; box-shadow: 0 25px 80px rgba(0,0,0,.35); transform: perspective(1000px) rotateY(-3deg) rotateX(2deg); }
.dashboard-top { display: flex; justify-content: space-between; padding: 3px 3px 18px; font-size: 12px; font-weight: 700; }
.dashboard-top i { color: var(--green); font-size: 9px; font-style: normal; text-transform: uppercase; }
.mini-map { position: relative; height: 250px; border-radius: 15px; overflow: hidden; background-color: #101612; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 32px 32px; }
.mini-map > svg { width: 100%; height: 100%; }
.map-line { stroke: #27302a; stroke-width: 26; fill: none; }
.map-route { stroke: var(--green); stroke-width: 4; fill: none; filter: drop-shadow(0 0 6px var(--green)); stroke-dasharray: 8 7; }
.mini-map circle { fill: var(--green); stroke: #071008; stroke-width: 4; }
.map-pin { position: absolute; top: 37%; left: 62%; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50% 50% 50% 4px; background: var(--green); transform: rotate(-45deg); box-shadow: 0 0 20px rgba(57,255,20,.5); }
.map-pin span { width: 9px; height: 9px; border-radius: 50%; background: #071008; }
.speed { position: absolute; left: 15px; bottom: 15px; display: flex; align-items: baseline; gap: 4px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 10px; background: rgba(5,7,5,.8); }
.speed b { font-size: 20px; }.speed small { color: #7f8a81; font-size: 8px; }
.dashboard-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.dashboard-stats div { padding: 12px; background: #101511; border-radius: 10px; }
.dashboard-stats small, .dashboard-stats b { display: block; font-size: 8px; }.dashboard-stats small { color: #727d74; }.dashboard-stats b { margin-top: 3px; color: #dce3dd; }

.support-section { padding-top: 40px; }
.support-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.section-heading.compact { align-items: start; margin: 0; }
.section-heading.compact h2 { font-size: clamp(38px, 4vw, 56px); }
.support-list { border-top: 1px solid var(--line); }
.support-list > div { display: flex; gap: 24px; padding: 25px 5px; border-bottom: 1px solid var(--line); }
.support-list > div > span { padding-top: 3px; color: var(--green); font-size: 10px; font-weight: 800; }
.support-list p { margin: 0; }.support-list b { display: block; font-size: 14px; }.support-list small { color: #7e8980; font-size: 12px; }

.pricing-section { background: #080b08; border-top: 1px solid var(--line); }
.section-heading.centered { display: block; max-width: 800px; margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered h2 { margin-inline: auto; }
.section-heading.centered > p { max-width: 580px; margin: 22px auto 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 490px; padding: 34px; background: #0c100d; border: 1px solid var(--line); border-radius: 22px; }
.price-card.popular { border-color: rgba(57,255,20,.45); background: linear-gradient(160deg, rgba(57,255,20,.07), #0c100d 48%); box-shadow: 0 20px 80px rgba(0,0,0,.25); transform: translateY(-12px); }
.popular-tag { position: absolute; top: 0; right: 25px; padding: 7px 12px; color: #061007; background: var(--green); border-radius: 0 0 9px 9px; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.price-label { color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.price-card h3 { margin: 12px 0 32px; font: 700 20px Manrope; }
.price { display: flex; align-items: start; gap: 5px; }
.price small { padding-top: 8px; color: #9aa49c; font-size: 13px; }
.price b { font: 800 46px Manrope; letter-spacing: -.05em; line-height: 1; }
.price-card > p { margin: 7px 0 26px; color: #7e8980; font-size: 11px; }
.price-card ul { flex: 1; padding: 22px 0 0; margin: 0 0 28px; border-top: 1px solid var(--line); list-style: none; }
.price-card li { position: relative; padding: 8px 0 8px 20px; color: #aeb6b0; font-size: 12px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); }
.price-card.activation { opacity: .88; }
.pricing-note { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 35px; color: #929c94; font-size: 12px; }
.pricing-note span { color: var(--green); }.pricing-note i { width: 1px; height: 15px; background: var(--line); }

.final-cta { padding: 50px 0; background: var(--green); color: #061007; }
.cta-shell { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.cta-shell .eyebrow { color: #0d551d; }.cta-shell .eyebrow i { background: #0d551d; box-shadow: none; }
.cta-shell h2 { max-width: 780px; font-size: clamp(35px, 4.3vw, 58px); }
.cta-shell h2 em { color: #0d551d; }

footer { padding: 75px 0 25px; background: #030503; }
.footer-main { display: grid; grid-template-columns: 1.6fr .7fr 1fr; gap: 80px; padding-bottom: 60px; }
.footer-brand img { width: 180px; }.footer-brand p { max-width: 330px; margin: 22px 0 0; color: #7e8980; font-size: 13px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col b { margin-bottom: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.footer-col a { color: #818b83; font-size: 12px; transition: .2s; }.footer-col a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid var(--line); color: #525b54; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.floating-whatsapp { position: fixed; z-index: 25; right: 23px; bottom: 23px; display: grid; place-items: center; width: 54px; height: 54px; color: #061007; background: var(--green); border-radius: 50%; box-shadow: 0 10px 35px rgba(57,255,20,.28); transition: .2s; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); }.floating-whatsapp svg { width: 25px; fill: currentColor; stroke: none; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .hero { padding-top: 130px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; min-height: 980px; align-items: start; }
  .hero-copy { padding-top: 50px; }
  .hero-visual { top: 410px; right: -100px; width: 820px; }
  .trust-strip { margin-top: 0; grid-template-columns: 1fr 1fr; }
  .trust-strip > div:nth-child(2) { border-right: 0; }.trust-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .app-shell { padding: 50px; gap: 40px; }
  .platform-links a { min-width: 140px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-shell { height: 70px; }.brand { width: 145px; }.header-cta { display: none; }.menu-toggle { display: block; }
  .mobile-nav { position: fixed; inset: 70px 0 auto; display: flex; flex-direction: column; gap: 0; padding: 15px 20px 28px; background: rgba(5,7,5,.98); border-bottom: 1px solid var(--line); transform: translateY(-120%); transition: .25s; }
  .mobile-nav.open { transform: none; }.mobile-nav a { padding: 14px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 600; }
  .hero { padding-top: 85px; }.hero-grid { display: block; min-height: 0; }.hero-copy { padding: 35px 0 10px; }
  h1 { font-size: 46px; }.hero-copy > p { font-size: 15px; }.hero-actions { flex-direction: column; }.hero-actions .button { width: 100%; }
  .hero-visual { position: relative; top: auto; right: auto; left: auto; width: 100%; height: auto; aspect-ratio: 1.12 / 1; margin-top: 12px; transform: none; overflow: hidden; border-radius: 24px; }
  .visual-frame img { object-position: 47% center; border-radius: 24px; }
  .visual-frame::after { background: linear-gradient(0deg, var(--ink) 0%, transparent 25%); }
  .live-chip { top: 14px; left: 14px; }.security-chip { right: 14px; bottom: 18px; }
  .trust-strip { grid-template-columns: 1fr; }.trust-strip > div { min-height: 85px; border-right: 0; border-bottom: 1px solid var(--line); }.trust-strip > div:last-child { border: 0; }
  .section { padding: 85px 0; }.section-heading { display: block; margin-bottom: 35px; }.section-heading > p { margin-top: 22px; }
  .section-heading h2, .lock-copy h2, .app-copy h2 { font-size: 40px; }
  .services-grid, .lock-grid, .app-shell, .support-grid, .pricing-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .lock-grid { gap: 35px; }.lock-visual { min-height: 400px; }.radar { width: 360px; height: 360px; }.ring-3 { width: 350px; height: 350px; }.vehicle-status { right: 0; }
  .check-list { grid-template-columns: 1fr; }
  .app-shell { padding: 35px 20px; border-radius: 22px; }.app-dashboard { transform: none; }.dashboard-stats { grid-template-columns: 1fr; }
  .support-grid { gap: 40px; }.pricing-grid { gap: 25px; }.price-card.popular { transform: none; }.price-card { min-height: 450px; }
  .pricing-note { flex-wrap: wrap; }.pricing-note i { display: none; }
  .cta-shell { display: block; }.cta-shell .button { width: 100%; margin-top: 30px; }.cta-shell h2 { font-size: 38px; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }.footer-bottom { display: block; }.footer-bottom p { margin: 8px 0; }
}

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