:root {
  --bg: #0b0908;
  --bg-soft: #110d0a;
  --panel: #14100d;
  --panel-2: #1a130e;
  --panel-3: #20160f;
  --text: #f8f5f2;
  --muted: #aaa19b;
  --muted-2: #726a65;
  --line: rgba(255, 255, 255, .08);
  --orange: #ff6a00;
  --orange-2: #ff8a1f;
  --yellow: #ffc35b;
  --glow: rgba(255, 106, 0, .34);
  --radius: 24px;
  --shell: 1450px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -30%, rgba(255, 106, 0, .12), transparent 34%),
    linear-gradient(180deg, #100b08 0%, #0b0908 35%, #090807 100%);
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  z-index: 10;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin: 0 auto; }
.section-pad { padding: 108px 0; }

.background-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: .18;
}
.background-glow--one { width: 520px; height: 520px; background: #ff5a00; top: 430px; right: -280px; }
.background-glow--two { width: 380px; height: 380px; background: #ffb137; top: 1150px; left: -250px; opacity: .08; }

.site-header {
  position: relative;
  z-index: 20;
  padding-top: 28px;
}
.navbar {
  min-height: 88px;
  padding: 14px 22px 14px 26px;
  background: rgba(13, 11, 10, .84);
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  gap: 36px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 28px; font-weight: 800; letter-spacing: -.05em; flex: 0 0 auto; }
.brand img { filter: drop-shadow(0 0 14px rgba(255, 115, 16, .28)); }
.brand-dot { color: var(--orange-2); }
.nav-menu { display: flex; align-items: center; justify-content: space-between; gap: 28px; width: 100%; }
.nav-links { display: flex; align-items: center; gap: 38px; margin-left: auto; }
.nav-links a, .nav-login { color: #ddd7d2; font-size: 15px; font-weight: 500; transition: .2s ease; }
.nav-links a:hover, .nav-login:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 25px; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; margin-left: auto; }
.menu-toggle span { display: block; width: 23px; height: 2px; background: #fff; margin: 5px 0; border-radius: 3px; }

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 650;
  letter-spacing: -.02em;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 48px; padding: 0 22px; border-radius: 999px; }
.button--primary {
  color: #1d0d02;
  background: linear-gradient(135deg, #ffd071 0%, #ff9a2f 32%, #ff6a00 100%);
  box-shadow: 0 0 0 1px rgba(255, 191, 95, .25) inset, 0 12px 30px rgba(255, 104, 0, .16);
}
.button--primary:hover { box-shadow: 0 0 0 1px rgba(255, 220, 157, .4) inset, 0 16px 42px rgba(255, 104, 0, .26); }
.button--ghost { background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.1); color: #f3eeeb; }
.button--ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,145,57,.35); }
.button--full { width: 100%; }

.hero { min-height: 820px; padding: 118px 0 60px; text-align: center; position: relative; }
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  background: url('assets/fires-logo.png') center/contain no-repeat;
  opacity: .022;
  filter: grayscale(1);
  pointer-events: none;
}
.hero::before { left: 2%; top: 10%; transform: rotate(-18deg); }
.hero::after { right: 1%; top: 18%; transform: rotate(18deg); }
.hero-copy { max-width: 880px; margin: 0 auto; position: relative; z-index: 2; }
.eyebrow { width: max-content; max-width: 100%; margin: 0 auto 24px; padding: 8px 13px; border-radius: 999px; background: rgba(255, 128, 24, .06); border: 1px solid rgba(255, 140, 40, .14); color: #d9cfc8; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow-dot { width: 7px; height: 7px; display: inline-block; margin-right: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 16px var(--orange); }
.hero h1 { font-size: clamp(52px, 6.1vw, 88px); line-height: .98; letter-spacing: -.065em; margin: 0; font-weight: 800; }
.hero h1 span, .section-heading h2 span, .reserve-copy h2 span, .final-cta h2 span {
  background: linear-gradient(92deg, #fff4de 0%, #ffb34c 28%, #ff6a00 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-copy > p { max-width: 790px; margin: 26px auto 0; color: #bbb2ac; font-size: clamp(17px, 1.4vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero-visual { height: 430px; margin-top: 82px; position: relative; perspective: 1200px; }
.dashboard-window {
  width: min(800px, 66vw);
  height: 385px;
  position: absolute;
  left: 0;
  bottom: -40px;
  text-align: left;
  border-radius: 28px;
  background: #090908;
  border: 1px solid rgba(255, 126, 28, .52);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(255, 130, 35, .04) inset;
  overflow: hidden;
  transform: rotateZ(2.5deg) rotateY(4deg) rotateX(2deg);
}
.window-topbar { height: 40px; display: flex; align-items: center; gap: 7px; padding: 0 16px; background: #110e0c; border-bottom: 1px solid var(--line); }
.window-topbar > span { width: 8px; height: 8px; border-radius: 50%; background: #4a403a; }
.window-title { margin-left: auto; margin-right: auto; font-size: 9px; color: #776f6b; transform: translateX(-22px); }
.dashboard-layout { display: grid; grid-template-columns: 150px 1fr; height: calc(100% - 40px); }
.mock-sidebar { padding: 18px 12px; background: #0d0b0a; border-right: 1px solid rgba(255,255,255,.05); }
.mini-brand { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; margin-bottom: 24px; color: #eee7e2; }
.mini-brand img { width: 22px; height: 22px; }
.mock-nav { padding: 9px 10px; border-radius: 8px; margin: 4px 0; font-size: 9px; color: #8c817a; }
.mock-nav.active { background: rgba(255,106,0,.12); color: #ffb06b; }
.mock-nav i { display: inline-block; width: 7px; height: 7px; border-radius: 2px; background: currentColor; margin-right: 8px; opacity: .7; }
.mock-main { padding: 22px; }
.mock-heading { font-size: 11px; font-weight: 700; color: #d7cec8; margin-bottom: 14px; }
.stat-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.stat-cards > div { padding: 13px 12px; border-radius: 12px; background: linear-gradient(145deg, #21140d, #15100d); border: 1px solid rgba(255,128,30,.1); }
.stat-cards span { display: block; font-size: 7px; color: #7c716b; margin-bottom: 5px; }
.stat-cards strong { display: block; font-size: 11px; color: #e8ded8; }
.mock-chart-card { margin-top: 16px; padding: 14px 14px 3px; background: #0f0d0b; border: 1px solid rgba(255,255,255,.055); border-radius: 16px; overflow: hidden; }
.chart-head { display: flex; justify-content: space-between; font-size: 9px; color: #91867f; }
.chart-head b { color: #ff9d50; font-weight: 600; }
.mock-chart-card svg { width: 100%; height: 190px; overflow: visible; }
.mock-chart-card .grid { stroke: rgba(255,255,255,.05); stroke-width: 1; fill: none; }
.mock-chart-card .area { fill: url(#area); }
.mock-chart-card .line { stroke: #ff8530; stroke-width: 3; fill: none; filter: drop-shadow(0 0 8px rgba(255,106,0,.4)); }

.profile-card {
  width: 365px;
  height: 285px;
  position: absolute;
  right: 9%;
  bottom: -15px;
  border-radius: 29px;
  overflow: hidden;
  background: rgba(14, 12, 10, .95);
  border: 1px solid rgba(255, 137, 45, .48);
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
  text-align: left;
}
.profile-card--back { right: 23%; bottom: 80px; transform: rotate(-3deg) scale(.92); opacity: .7; filter: saturate(.65); }
.profile-card--front { transform: rotate(2.5deg); }
.profile-cover { height: 108px; position: relative; }
.cover-one { background: radial-gradient(circle at 30% 40%, #69351a, transparent 18%), linear-gradient(120deg, #26170d, #0a0908 60%, #3d1d08); }
.cover-two { background: radial-gradient(circle at 70% 25%, rgba(255,154,47,.3), transparent 18%), linear-gradient(130deg, #10100e 0%, #351406 55%, #100d09 100%); }
.profile-cover::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,200,130,.12) 0 1px, transparent 1.5px); background-size: 18px 18px; opacity: .25; }
.profile-avatar { width: 74px; height: 74px; margin: -37px 0 0 24px; position: relative; z-index: 2; border-radius: 22px; background: linear-gradient(135deg,#ffb14b,#ff6500); display: grid; place-items: center; border: 4px solid #0e0c0a; color: #2d1000; font-size: 28px; font-weight: 800; box-shadow: 0 10px 28px rgba(0,0,0,.3); }
.profile-avatar img { width: 45px; height: 45px; }
.profile-info { padding: 14px 24px 0; }
.profile-info h3 { margin: 0 0 5px; font-size: 23px; letter-spacing: -.04em; }
.profile-info p { margin: 0; color: #8d827b; font-size: 12px; }
.social-row { display: flex; gap: 8px; padding: 18px 24px; }
.social-row span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: #17130f; border: 1px solid rgba(255,255,255,.06); color: #b5aaa2; }

.section-heading { text-align: center; max-width: 820px; margin: 0 auto 58px; }
.section-kicker { margin: 0 0 16px; color: #ff9850 !important; font-size: 12px !important; line-height: 1.2 !important; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.section-heading h2, .reserve-copy h2, .final-cta h2 { margin: 0; font-size: clamp(38px, 4vw, 62px); line-height: 1.04; letter-spacing: -.055em; }
.section-heading > p:last-child { margin: 22px auto 0; color: var(--muted); font-size: 17px; line-height: 1.65; max-width: 700px; }

.social-proof { padding-top: 150px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: rgba(255,255,255,.018); border-radius: var(--radius); overflow: hidden; }
.stat-item { padding: 38px 26px; text-align: center; position: relative; }
.stat-item:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 24%; width: 1px; height: 52%; background: var(--line); }
.stat-item strong { display: block; font-size: clamp(31px, 3vw, 44px); letter-spacing: -.05em; background: linear-gradient(180deg,#fff,#c7bcb4); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-item span { display: block; margin-top: 8px; color: #7e756f; font-size: 13px; }

.reserve-card {
  position: relative;
  padding: 64px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,121,22,.105), rgba(255,255,255,.018) 42%, rgba(255,177,64,.055));
  border: 1px solid rgba(255,131,31,.18);
}
.reserve-card::before { content: ""; position: absolute; width: 440px; height: 440px; right: -200px; top: -220px; background: radial-gradient(circle, rgba(255,114,0,.22), transparent 68%); }
.reserve-copy { max-width: 800px; }
.reserve-copy > p:last-child { color: var(--muted); font-size: 16px; line-height: 1.65; max-width: 650px; }
.username-form { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin-top: 34px; max-width: 840px; }
.username-box { height: 62px; display: flex; align-items: center; padding: 0 20px; border-radius: 17px; background: #0d0b09; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 0 0 1px rgba(255,126,28,.03) inset; }
.username-box:focus-within { border-color: rgba(255,131,31,.45); box-shadow: 0 0 0 4px rgba(255,107,0,.08); }
.username-box span { color: #f2e9e4; font-weight: 700; }
.username-box input { flex: 1; min-width: 0; height: 100%; background: none; border: 0; outline: 0; color: #fff; padding: 0 3px; }
.username-box input::placeholder { color: #655f5b; }
.form-note { min-height: 20px; margin: 11px 0 0; color: #ffb16d; font-size: 13px; }

.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.feature-card { min-height: 250px; padding: 28px; border-radius: 24px; background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018)); border: 1px solid var(--line); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.feature-card:hover { transform: translateY(-6px); border-color: rgba(255,129,28,.22); background: linear-gradient(180deg, rgba(255,109,0,.055), rgba(255,255,255,.018)); }
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(135deg, rgba(255,180,86,.18), rgba(255,99,0,.1)); border: 1px solid rgba(255,133,31,.18); color: #ffac60; font-size: 20px; }
.feature-card h3 { margin: 24px 0 10px; font-size: 20px; letter-spacing: -.035em; }
.feature-card p { margin: 0; color: #938a84; font-size: 14px; line-height: 1.65; }

.pricing { position: relative; }
.pricing-grid { max-width: 940px; margin: 0 auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.price-card { position: relative; padding: 36px; border-radius: 28px; background: rgba(255,255,255,.022); border: 1px solid var(--line); overflow: hidden; }
.price-card--featured { background: radial-gradient(circle at 80% 0%, rgba(255,132,25,.13), transparent 30%), linear-gradient(180deg, rgba(255,116,0,.06), rgba(255,255,255,.02)); border-color: rgba(255,132,32,.26); box-shadow: 0 24px 70px rgba(0,0,0,.32); }
.price-name { margin: 0; font-size: 15px; font-weight: 700; color: #e8ddd6; }
.price { display: flex; align-items: baseline; gap: 8px; margin-top: 18px; }
.price strong { font-size: 47px; letter-spacing: -.055em; }
.price span { color: #7d746e; font-size: 13px; }
.price-desc { color: #9b918b; font-size: 14px; line-height: 1.6; min-height: 68px; }
.price-card ul { list-style: none; padding: 0; margin: 28px 0 30px; }
.price-card li { position: relative; padding: 11px 0 11px 28px; color: #c6bcb5; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.045); }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: #ff983e; font-weight: 800; }
.popular-badge { position: absolute; top: 22px; right: 22px; padding: 7px 10px; border-radius: 999px; background: rgba(255,112,0,.12); border: 1px solid rgba(255,135,35,.2); color: #ffad68; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

.faq { max-width: 1020px; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 26px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 17px; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: #ff9a49; font-size: 23px; font-weight: 400; transition: transform .2s ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { margin: -6px 0 26px; max-width: 780px; color: #968d87; line-height: 1.7; font-size: 14px; }

.final-cta { position: relative; text-align: center; padding: 78px 30px; border-radius: 34px; background: linear-gradient(135deg, rgba(255,117,11,.075), rgba(255,255,255,.016)); border: 1px solid rgba(255,131,31,.14); overflow: hidden; }
.final-cta::before { content: ""; position: absolute; width: 650px; height: 330px; left: 50%; top: -210px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(255,126,16,.19), transparent 66%); }
.final-cta > img { width: 68px; height: 68px; margin-bottom: 22px; filter: drop-shadow(0 0 20px rgba(255,108,0,.28)); }
.final-cta > p:not(.section-kicker) { color: #938a83; font-size: 16px; margin: 20px 0 28px; }

.footer { margin-top: 70px; padding: 70px 0 26px; border-top: 1px solid var(--line); background: rgba(0,0,0,.16); }
.footer-grid { display: grid; grid-template-columns: 2.2fr repeat(3,1fr); gap: 60px; }
.footer-brand > p { max-width: 340px; color: #766e69; font-size: 13px; line-height: 1.6; }
.status-pill { width: max-content; margin-top: 14px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 999px; background: rgba(255,255,255,.025); border: 1px solid var(--line); color: #8a817b; font-size: 10px; }
.status-pill i { width: 7px; height: 7px; border-radius: 50%; background: #7ed957; box-shadow: 0 0 10px rgba(126,217,87,.45); }
.footer h4 { margin: 4px 0 18px; font-size: 13px; }
.footer-grid > div:not(.footer-brand) a { display: block; color: #766e68; font-size: 12px; padding: 7px 0; transition: color .2s ease; }
.footer-grid > div:not(.footer-brand) a:hover { color: #d9d0cb; }
.footer-bottom { margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.05); display: flex; align-items: center; justify-content: space-between; color: #5f5955; font-size: 10px; }

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

@media (max-width: 1180px) {
  .nav-links { gap: 20px; }
  .dashboard-window { width: 72vw; }
  .profile-card { right: 2%; }
  .profile-card--back { right: 18%; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 920px) {
  .site-header { padding-top: 18px; }
  .navbar { min-height: 68px; border-radius: 24px; padding: 10px 16px; }
  .brand { font-size: 24px; }
  .brand img { width: 30px; height: 30px; }
  .menu-toggle { display: block; }
  .nav-menu { position: absolute; left: 24px; right: 24px; top: 88px; padding: 18px; border-radius: 22px; background: rgba(13,11,9,.97); border: 1px solid var(--line); box-shadow: 0 25px 60px rgba(0,0,0,.5); display: none; }
  .nav-menu.open { display: block; }
  .nav-links { display: block; margin: 0; }
  .nav-links a, .nav-login { display: block; padding: 12px 8px; }
  .nav-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
  .nav-login { text-align: center; border: 1px solid var(--line); border-radius: 14px; }
  .hero { min-height: auto; padding-top: 90px; }
  .hero-visual { height: 390px; margin-top: 68px; }
  .dashboard-window { width: 85%; left: -6%; height: 330px; }
  .dashboard-layout { grid-template-columns: 120px 1fr; }
  .stat-cards { grid-template-columns: repeat(2,1fr); }
  .mock-chart-card svg { height: 145px; }
  .profile-card { width: 310px; height: 250px; right: -4%; }
  .profile-card--back { right: 10%; bottom: 58px; }
  .profile-cover { height: 88px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .reserve-card { padding: 44px 30px; }
}

@media (max-width: 700px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section-pad { padding: 82px 0; }
  .nav-menu { left: 14px; right: 14px; }
  .hero { padding-top: 74px; }
  .hero h1 { font-size: clamp(47px, 14vw, 68px); }
  .hero-copy > p { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-visual { height: 340px; margin-top: 58px; }
  .dashboard-window { width: 118%; left: -35%; height: 285px; transform: rotateZ(3deg) scale(.9); transform-origin: bottom center; }
  .dashboard-layout { grid-template-columns: 100px 1fr; }
  .mock-sidebar { padding: 13px 8px; }
  .mock-nav { font-size: 7px; }
  .mock-main { padding: 15px; }
  .stat-cards { gap: 5px; }
  .stat-cards > div { padding: 9px; }
  .mock-chart-card { margin-top: 9px; }
  .profile-card { width: 245px; height: 205px; right: -10%; bottom: 0; border-radius: 22px; }
  .profile-card--back { right: 2%; bottom: 52px; }
  .profile-cover { height: 68px; }
  .profile-avatar { width: 58px; height: 58px; border-radius: 17px; margin: -29px 0 0 16px; }
  .profile-avatar img { width: 35px; }
  .profile-info { padding: 8px 16px 0; }
  .profile-info h3 { font-size: 18px; }
  .social-row { padding: 11px 16px; }
  .social-row span { width: 24px; height: 24px; font-size: 11px; }
  .social-proof { padding-top: 100px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2, .reserve-copy h2, .final-cta h2 { font-size: 39px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 27px 12px; }
  .stat-item strong { font-size: 29px; }
  .username-form { grid-template-columns: 1fr; }
  .feature-grid, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .price-desc { min-height: auto; }
  .footer-grid { gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

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