:root {
  --brand: #1f6eb1;
  --brand-dark: #15538a;
  --ink: #172033;
  --muted: #5d6878;
  --line: #dfe5ec;
  --soft: #f5f8fb;
  --white: #fff;
  --shadow: 0 18px 45px rgba(18, 40, 68, .12);
  --radius: 8px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  background: #fff;
  line-height: 1.7;
  letter-spacing: 0;
}
body.loaded .page-loader { display: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(180deg, #fff, #eef5fb);
  transition: opacity .45s ease, visibility .45s ease;
}
.page-loader:after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 42px; height: 42px;
  margin: -21px 0 0 -21px; border-radius: 50%;
  border: 3px solid rgba(31, 110, 177, .18); border-top-color: var(--brand);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.site-header { position: sticky; top: 0; z-index: 1000; background: #fff; box-shadow: 0 8px 30px rgba(18, 40, 68, .08); }
.topbar { background: #f7f9fb; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.topbar-inner, .brandbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar p { margin: 0; padding: 7px 0; }
.topbar a { color: var(--brand); white-space: nowrap; }
.brandbar { background: #fff; }
.brandbar-inner { min-height: 96px; }
.brand { display: grid; gap: 4px; border-right: 1px solid var(--line); padding-right: 28px; }
.brand strong { color: var(--brand); font-size: clamp(22px, 2.4vw, 31px); line-height: 1.2; font-weight: 700; }
.brand span { color: #7c8795; font-size: 12px; text-transform: uppercase; }
.brand-promise { margin-right: auto; color: var(--muted); display: grid; gap: 6px; }
.brand-promise b { color: #202938; font-size: 18px; }
.brand-promise span { display: inline-flex; color: var(--brand); margin-right: 14px; font-size: 14px; }
.brand-promise span:before { content: "✓"; margin-right: 5px; }
.brand-phone { display: grid; text-align: right; color: var(--brand); }
.brand-phone span { color: var(--muted); font-size: 14px; }
.brand-phone b { font-size: 25px; line-height: 1.2; }
.main-nav { background: var(--brand); }
.nav-inner { display: flex; align-items: stretch; }
.nav-link { display: flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 24px; color: #fff; transition: background .25s ease, transform .18s ease; }
.nav-link:hover, .nav-link.active { background: #26313f; color: #fff; }
.nav-link:active { transform: translateY(1px); }
.nav-item { position: relative; }
.nav-submenu {
  position: absolute; left: 50%; top: calc(100% + 10px); transform: translate(-50%, 8px);
  min-width: 150px; padding: 8px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transition: all .22s ease;
}
.nav-submenu a { display: block; padding: 9px 14px; color: var(--ink); border-radius: 6px; white-space: nowrap; }
.nav-submenu a:hover { background: var(--soft); color: var(--brand); }
.nav-item:hover .nav-submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.menu-toggle { display: none; width: 44px; height: 40px; border: 0; background: var(--brand); border-radius: 6px; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; transition: transform .22s ease, opacity .22s ease; }
.hero { position: relative; min-height: clamp(460px, 58vw, 650px); overflow: hidden; background: #0f253b; }
.hero-slider, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity .8s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 25, 43, .52), rgba(10, 25, 43, .2) 48%, rgba(10, 25, 43, .06)); }
.hero-content { position: relative; min-height: clamp(460px, 58vw, 650px); display: flex; flex-direction: column; justify-content: center; color: #fff; padding-bottom: 48px; }
.eyebrow { color: #b9d8f4; text-transform: uppercase; font-size: 13px; font-weight: 700; letter-spacing: 0; }
.hero h1 { margin: 14px 0 18px; font-size: clamp(34px, 5vw, 60px); line-height: 1.15; max-width: 860px; }
.hero p { margin: 0 0 28px; max-width: 620px; font-size: clamp(17px, 2vw, 22px); color: rgba(255,255,255,.88); }
.hero-content.reveal { opacity: 1; transform: none; }
.hero-actions, .contact-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 22px;
  border-radius: 6px; border: 1px solid transparent; cursor: pointer; transition: transform .18s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.btn.primary { background: var(--brand); color: #fff; box-shadow: 0 12px 28px rgba(31, 110, 177, .25); }
.btn.ghost { color: #fff; border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); }
.btn.ghost.dark { color: var(--brand); border-color: var(--brand); background: #fff; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(18, 40, 68, .18); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .72; cursor: not-allowed; transform: none; }
.hero-controls { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; align-items: center; gap: 14px; color: #fff; }
.hero-prev, .hero-next {
  width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%;
  color: #fff; background: rgba(0,0,0,.18); cursor: pointer; font-size: 26px; transition: background .2s ease, transform .2s ease;
}
.hero-prev:hover, .hero-next:hover { background: var(--brand); transform: translateY(-1px); }
.hero-dots { display: flex; gap: 8px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.5); cursor: pointer; }
.hero-dot.active { width: 28px; border-radius: 999px; background: #fff; }
.search-strip { background: #f0f3f7; border-bottom: 1px solid var(--line); }
.search-inner { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.search-inner a { color: var(--brand); margin-left: 8px; }
.site-search { display: flex; width: min(360px, 100%); background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.site-search input { flex: 1; min-width: 0; border: 0; padding: 0 13px; outline: 0; }
.site-search button { border: 0; background: var(--brand); color: #fff; padding: 0 18px; cursor: pointer; transition: background .2s ease; }
.site-search button:hover { background: var(--brand-dark); }
.section { padding: clamp(58px, 7vw, 92px) 0; }
.section-title { text-align: center; margin-bottom: 34px; }
.section-title span { color: var(--brand); font-size: 13px; font-weight: 700; }
.section-title h2 { margin: 6px 0 8px; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.25; }
.section-title p { margin: 0 auto; color: var(--muted); max-width: 680px; }
.products-preview, .news-preview { background: #fff; }
.product-tabs, .news-tabs, .category-pills { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.product-tabs button, .news-tabs button, .category-pills a {
  border: 1px solid var(--line); background: #fff; color: var(--ink); min-height: 38px; padding: 0 18px; border-radius: 999px;
  cursor: pointer; transition: all .2s ease;
}
.product-tabs button.active, .news-tabs button.active, .product-tabs button:hover, .news-tabs button:hover, .category-pills a:hover {
  background: var(--brand); color: #fff; border-color: var(--brand);
}
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card, .news-card, .article-card, .contact-panel, .message-form, .strength-card, .contact-method, .contact-hero-card, .location-panel, .wechat-panel, .message-side {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 28px rgba(18, 40, 68, .06);
}
.product-card { overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(31,110,177,.35); }
.card-media { aspect-ratio: 4 / 3; background: #f4f7fa; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 20px; }
.card-body h3 { margin: 0 0 8px; font-size: 21px; }
.card-body p { margin: 0 0 16px; color: var(--muted); }
.card-body span, .text-link { color: var(--brand); font-weight: 700; }
.about-preview { background: var(--soft); }
.about-grid { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.about-copy h2 { margin: 10px 0 18px; font-size: clamp(28px, 3vw, 40px); line-height: 1.3; }
.about-copy p { color: var(--muted); margin: 0 0 18px; }
.values { border-left: 3px solid var(--brand); padding-left: 18px; margin: 22px 0; }
.values p { color: var(--ink); margin-bottom: 10px; }
.about-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.news-media { aspect-ratio: 16 / 9; overflow: hidden; background: #eef3f8; }
.news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.news-card:hover .news-media img { transform: scale(1.05); }
.news-body { padding: 20px; }
.news-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--brand); font-size: 13px; margin-bottom: 9px; }
.news-body h3 { margin: 0 0 10px; font-size: 19px; line-height: 1.45; }
.news-body p { margin: 0; color: var(--muted); }
.contact-band { padding: 44px 0; background: #1b2634; color: #fff; }
.contact-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.contact-band span { color: #b9d8f4; }
.contact-band h2 { margin: 4px 0 0; font-size: clamp(28px, 4vw, 42px); }
.page-hero { padding: 58px 0 62px; background: linear-gradient(135deg, #173f68, #1f6eb1); color: #fff; }
.page-hero h1 { margin: 14px 0 10px; font-size: clamp(30px, 4vw, 48px); line-height: 1.22; }
.page-hero p { margin: 0; max-width: 760px; color: rgba(255,255,255,.86); }
.breadcrumbs { font-size: 14px; color: rgba(255,255,255,.82); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { margin: 0 8px; }
.content-layout { max-width: 980px; }
.article-card { padding: clamp(22px, 4vw, 44px); }
.article-meta { display: flex; gap: 14px; color: var(--muted); font-size: 14px; border-bottom: 1px solid var(--line); padding-bottom: 16px; margin-bottom: 22px; }
.rich-text { color: #253044; font-size: 16px; }
.rich-text h1, .rich-text h2, .rich-text h3 { line-height: 1.35; margin: 24px 0 12px; color: var(--ink); }
.rich-text h1 { font-size: 28px; }
.rich-text h2 { font-size: 24px; }
.rich-text p { margin: 0 0 14px; }
.rich-text img { margin: 18px auto; border-radius: var(--radius); box-shadow: 0 12px 30px rgba(18, 40, 68, .08); }
.rich-text table { width: 100%; border-collapse: collapse; margin: 20px 0; overflow: auto; display: block; }
.rich-text th, .rich-text td { border: 1px solid var(--line); padding: 12px; text-align: left; }
.rich-text th { background: var(--soft); color: var(--ink); }
.section-kicker { display: inline-block; color: var(--brand); font-size: 13px; font-weight: 700; letter-spacing: 0; margin-bottom: 8px; }
.about-overview { display: grid; grid-template-columns: 1fr .95fr; gap: clamp(28px, 5vw, 66px); align-items: center; margin-bottom: 34px; }
.about-overview-copy h2 { margin: 0 0 16px; font-size: clamp(28px, 3vw, 42px); line-height: 1.25; }
.about-overview-copy p { margin: 0; color: var(--muted); }
.about-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 26px; }
.about-stats div { padding: 16px 12px; background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); }
.about-stats b { display: block; color: var(--brand); font-size: clamp(22px, 2.3vw, 32px); line-height: 1.15; }
.about-stats span { color: var(--muted); font-size: 13px; }
.about-collage { position: relative; min-height: 380px; }
.about-collage img { width: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-collage-main { height: 330px; }
.about-collage-small { position: absolute; right: 0; bottom: 0; width: 58%; height: 180px; border: 8px solid #fff; }
.strength-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 34px 0; }
.strength-card { padding: 24px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.strength-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(31,110,177,.28); }
.strength-card span { color: var(--brand); font-weight: 700; font-size: 14px; }
.strength-card h3 { margin: 10px 0 8px; font-size: 20px; }
.strength-card p { margin: 0; color: var(--muted); }
.about-feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(24px, 4vw, 46px); align-items: center; background: var(--soft); border-radius: var(--radius); padding: clamp(20px, 4vw, 36px); margin-bottom: 28px; }
.about-feature > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: 0 14px 32px rgba(18,40,68,.1); }
.about-feature .rich-text img { display: none; }
.about-capability, .about-culture { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 4vw, 36px); margin-bottom: 28px; background: #fff; box-shadow: 0 10px 28px rgba(18,40,68,.06); }
.about-capability .rich-text > h1:first-child { display: none; }
.about-capability .rich-text p:has(img) { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; align-items: start; }
.about-capability .rich-text p:has(img) span { display: contents; }
.about-capability .rich-text p:has(img) img { width: 100%; margin: 0; object-fit: cover; }
.about-culture { display: grid; grid-template-columns: .28fr 1fr; gap: 28px; }
.about-culture h2, .about-feature h2, .about-capability h2 { margin-top: 0; }
.contact-hero-card { display: grid; grid-template-columns: .86fr 1.14fr; gap: 28px; align-items: stretch; overflow: hidden; margin-bottom: 24px; }
.contact-hero-copy { padding: clamp(24px, 4vw, 42px); display: flex; flex-direction: column; justify-content: center; }
.contact-hero-copy h2 { margin: 0 0 14px; font-size: clamp(26px, 3vw, 38px); line-height: 1.25; }
.contact-hero-copy p { margin: 0 0 24px; color: var(--muted); }
.contact-hero-card > img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; }
.contact-method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 24px; }
.contact-method { padding: 24px; min-height: 190px; display: flex; flex-direction: column; }
.contact-method > span { color: var(--brand); font-weight: 700; font-size: 14px; }
.contact-method h3 { margin: 10px 0 8px; font-size: 21px; }
.contact-method p { margin: 0 0 14px; color: var(--muted); }
.contact-method a { margin-top: auto; color: var(--brand); font-weight: 700; overflow-wrap: anywhere; }
.contact-location-grid { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: stretch; }
.location-panel, .wechat-panel { padding: clamp(22px, 4vw, 34px); }
.location-panel h2 { margin: 0 0 12px; font-size: 28px; }
.location-panel p, .wechat-panel p { color: var(--muted); margin: 0; }
.location-address { margin-top: 22px; padding: 18px; background: var(--soft); border-radius: var(--radius); display: grid; gap: 6px; }
.location-address strong { color: var(--brand); }
.wechat-panel { text-align: center; }
.wechat-panel h3 { margin: 0 0 16px; font-size: 22px; }
.wechat-panel img { width: 168px; margin: 0 auto 14px; border: 1px solid var(--line); border-radius: 6px; padding: 8px; background: #fff; }
.message-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 28px; align-items: start; }
.message-side, .message-form { padding: clamp(22px, 4vw, 34px); }
.message-side h2, .message-form h2 { margin: 0 0 14px; font-size: 28px; line-height: 1.25; }
.message-side p { color: var(--muted); margin: 0 0 22px; }
.message-contact-list { display: grid; gap: 12px; margin-bottom: 24px; }
.message-contact-list a { display: grid; gap: 4px; padding: 15px; border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .2s ease, background .2s ease; }
.message-contact-list a:hover { border-color: var(--brand); background: var(--soft); }
.message-contact-list strong { color: var(--ink); }
.message-contact-list span { color: var(--brand); overflow-wrap: anywhere; }
.message-steps { display: grid; gap: 10px; counter-reset: step; }
.message-steps span { position: relative; padding: 12px 14px 12px 42px; background: var(--soft); border-radius: 6px; color: var(--ink); }
.message-steps span:before { counter-increment: step; content: counter(step); position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-size: 12px; }
.message-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.message-form label { display: grid; gap: 7px; color: var(--muted); }
.message-form input, .message-form textarea, .message-form select { width: 100%; border: 1px solid var(--line); border-radius: 6px; padding: 11px 12px; outline: 0; background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.message-form input:focus, .message-form textarea:focus, .message-form select:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(31,110,177,.1); }
.message-form input[aria-invalid="true"], .message-form textarea[aria-invalid="true"] { border-color: #c53b3b; box-shadow: 0 0 0 4px rgba(197,59,59,.1); }
.form-status { margin: 0; min-height: 24px; color: var(--muted); }
.form-status.success { color: #1f7a43; }
.form-status.error { color: #b42318; }
.quick-tools { position: fixed; right: 18px; top: 58%; z-index: 900; display: grid; gap: 8px; }
.quick-tools a, .quick-tools button {
  width: 44px; height: 44px; border: 0; border-radius: 6px; background: var(--brand); color: #fff; display: grid; place-items: center;
  cursor: pointer; box-shadow: 0 10px 24px rgba(31,110,177,.22); position: relative;
}
.quick-tools span { position: absolute; right: 52px; top: 50%; transform: translateY(-50%); background: #1b2634; color: #fff; padding: 7px 10px; border-radius: 4px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; font-size: 13px; }
.quick-tools a:hover span { opacity: 1; transform: translate(-4px, -50%); }
.site-footer { background: #192332; color: rgba(255,255,255,.78); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr 1.25fr .65fr; gap: 30px; padding: 54px 0; }
.site-footer h2, .site-footer h3 { color: #fff; margin: 0 0 14px; }
.site-footer p { margin: 0 0 8px; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 14px; }
.footer-links a:hover, .site-footer a:hover { color: #fff; }
.qr-section img { width: 118px; border-radius: 6px; background: #fff; padding: 6px; }
.copyright { border-top: 1px solid rgba(255,255,255,.12); font-size: 14px; }
.copyright .container { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.reveal { opacity: 1; transform: none; animation: fadeUp .55s ease both; }
.hero-content.reveal { animation: none; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp {
  from { opacity: .85; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 980px) {
  .container { width: min(100% - 28px, 1200px); }
  .topbar, .brand-promise, .brand-phone { display: none; }
  .brandbar-inner { min-height: 68px; }
  .brand { border-right: 0; padding-right: 58px; }
  .brand strong { font-size: 20px; }
  .brand span { display: none; }
  .menu-toggle { display: block; position: absolute; right: 14px; top: 14px; }
  .main-nav { display: none; position: fixed; left: 0; right: 0; top: 68px; max-height: calc(100vh - 68px); overflow: auto; }
  .main-nav.open { display: block; }
  .nav-inner { width: 100%; display: grid; padding: 8px 14px 18px; }
  .nav-link { justify-content: flex-start; min-height: 46px; border-radius: 6px; padding: 0 14px; }
  .nav-item { display: grid; }
  .nav-submenu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; background: rgba(255,255,255,.08); min-width: 0; padding: 0 0 6px 16px; }
  .nav-submenu a { color: #fff; }
  .product-grid, .news-grid, .about-grid, .about-overview, .strength-grid, .about-feature, .about-culture, .contact-hero-card, .contact-method-grid, .contact-location-grid, .message-grid, .footer-grid { grid-template-columns: 1fr; }
  .about-collage { min-height: 0; }
  .about-collage-small { position: static; width: 100%; height: auto; margin-top: 14px; border-width: 0; }
  .contact-hero-card > img { min-height: 240px; }
  .hero, .hero-content { min-height: 520px; }
  .search-inner, .contact-band-inner { align-items: stretch; flex-direction: column; padding: 14px 0; }
  .site-search { width: 100%; min-height: 42px; }
  .quick-tools { display: none; }
}
@media (max-width: 620px) {
  .product-grid, .news-grid { gap: 16px; }
  .about-stats, .form-row { grid-template-columns: 1fr; }
  .about-capability .rich-text p:has(img) { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 17px; }
  .hero-controls { bottom: 18px; }
  .copyright .container { justify-content: center; text-align: center; padding: 12px 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
