:root {
  --red: #c8202f;
  --red-dark: #8d111d;
  --ink: #191919;
  --muted: #707070;
  --line: #e8e8e8;
  --canvas: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--canvas);
  font-family: "MiSans", "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 64px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05); }
.nav-shell {
  width: min(1320px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: #fff;
  background: var(--red);
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(200, 32, 47, 0.22);
}
.brand-name { font-size: 15px; font-weight: 700; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 34px; height: 100%; }
.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: #4d4d4d;
  font-size: 14px;
  transition: color 180ms ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transition: left 180ms ease, right 180ms ease;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { left: 0; right: 0; }
.nav-cta {
  justify-self: end;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}
.nav-cta:hover { transform: translateY(-1px); background: var(--red); }
.menu-toggle { display: none; border: 0; background: none; }

.hero {
  min-height: 870px;
  padding: 92px 24px 54px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #fafafa 45%, #f1f1f1 100%);
}
.hero-copy { position: relative; z-index: 2; max-width: 980px; margin: 0 auto; }
.eyebrow, .section-kicker {
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 800;
}
.hero-copy > p {
  margin: 0 auto;
  max-width: 690px;
  color: #5f5f5f;
  font-size: 18px;
  line-height: 1.85;
}
.hero-actions { display: flex; justify-content: center; align-items: center; gap: 28px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--red); box-shadow: 0 12px 26px rgba(200, 32, 47, 0.22); }
.button-primary:hover { background: #ad1724; box-shadow: 0 16px 32px rgba(200, 32, 47, 0.28); }
.text-link { display: inline-flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 700; }
.text-link span { font-size: 24px; line-height: 1; transition: transform 180ms ease; }
.text-link:hover { color: var(--red); }
.text-link:hover span { transform: translateX(3px); }

.product-stage {
  position: relative;
  width: min(1080px, 100%);
  height: 430px;
  margin: 55px auto 0;
}
.stage-glow {
  position: absolute;
  left: 50%;
  bottom: -180px;
  width: 850px;
  height: 380px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 32, 47, 0.16), transparent 68%);
  filter: blur(20px);
}
.screen-card {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(760px, 76vw);
  height: 390px;
  overflow: hidden;
  transform: translateX(-50%);
  border: 10px solid #202020;
  border-bottom-width: 18px;
  border-radius: 22px;
  background: #f7f8fa;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.2);
}
.screen-topbar { height: 44px; display: flex; align-items: center; gap: 10px; padding: 0 18px; color: #646464; background: #fff; font-size: 12px; }
.screen-topbar strong { margin-left: auto; padding: 5px 9px; border-radius: 999px; color: #1b8a53; background: #e7f6ee; font-size: 11px; }
.screen-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.screen-body { display: flex; height: calc(100% - 44px); }
.screen-sidebar { width: 68px; display: flex; flex-direction: column; align-items: center; gap: 25px; padding-top: 26px; background: #151515; }
.screen-sidebar i { width: 23px; height: 4px; border-radius: 4px; background: #5c5c5c; }
.screen-sidebar i.active { width: 31px; background: var(--red); }
.screen-content { flex: 1; padding: 28px 34px; text-align: left; }
.screen-title { display: flex; align-items: center; justify-content: space-between; }
.screen-title div { display: flex; flex-direction: column; gap: 7px; }
.screen-title small { color: #929292; }
.screen-title b { font-size: 23px; }
.screen-title > span { padding: 7px 11px; border-radius: 6px; color: var(--red); background: #fbeaec; font-size: 11px; font-weight: 800; }
.screen-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.screen-stats div { padding: 16px; border-radius: 12px; background: #fff; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04); }
.screen-stats b { display: block; font-size: 24px; }
.screen-stats small { display: block; margin-top: 4px; color: #919191; }
.screen-files { display: grid; gap: 11px; margin-top: 22px; }
.screen-files span { position: relative; display: block; height: 31px; border-radius: 8px; background: #fff; }
.screen-files span::before { content: ""; position: absolute; left: 13px; top: 10px; width: 42%; height: 8px; border-radius: 5px; background: #ececec; }
.device-image { position: absolute; right: 25px; bottom: -58px; width: 310px; filter: drop-shadow(0 28px 25px rgba(0, 0, 0, 0.2)); }
.device-image img { mix-blend-mode: multiply; }
.security-chip {
  position: absolute;
  left: 50px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 19px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
  text-align: left;
}
.chip-icon { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 50%; color: #fff; background: var(--red); font-weight: 800; }
.security-chip div { display: flex; flex-direction: column; gap: 3px; }
.security-chip strong { font-size: 13px; }
.security-chip small { color: #888; font-size: 11px; }

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1240px, calc(100% - 48px));
  margin: 24px auto 0;
  padding: 28px 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}
.quick-facts article { padding: 4px 30px; text-align: center; border-right: 1px solid var(--line); }
.quick-facts article:last-child { border-right: 0; }
.quick-facts strong { display: block; font-size: 25px; }
.quick-facts span { display: block; margin-top: 7px; color: var(--muted); font-size: 13px; }

.section { width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding: 140px 0 0; }
.section-heading { max-width: 780px; }
.section-heading.centered { margin: 0 auto; text-align: center; }
.section-heading h2 {
  margin: 16px 0 18px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.13;
  letter-spacing: -0.045em;
}
.section-heading p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.8; }

.feature-bento { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 18px; margin-top: 44px; }
.feature-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 38px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.055);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card-large { min-height: 480px; }
.feature-card-wide { min-height: 420px; }
.feature-card-dark { color: #fff; background: #181818; }
.card-copy { position: relative; z-index: 2; max-width: 490px; }
.card-index { color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: 0.14em; }
.feature-card h3 { margin: 12px 0 10px; font-size: 30px; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.feature-card-dark p { color: #aaa; }
.transfer-visual { position: absolute; left: 42px; right: 42px; bottom: 40px; display: grid; grid-template-columns: 120px 1fr 210px; align-items: center; gap: 18px; }
.source-node { height: 112px; display: grid; place-items: center; align-content: center; gap: 7px; border-radius: 18px; color: #fff; background: var(--red); box-shadow: 0 16px 30px rgba(200, 32, 47, 0.2); }
.source-node span { font-size: 12px; }.source-node strong { font-size: 31px; }
.transfer-line { height: 2px; background: #e5e5e5; }.transfer-line i { display: block; width: 38%; height: 100%; background: var(--red); animation: transfer 2.1s ease-in-out infinite; }
@keyframes transfer { 0% { transform: translateX(0); } 50% { transform: translateX(165%); } 100% { transform: translateX(0); } }
.target-nodes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.target-nodes span { height: 92px; border: 5px solid #262626; border-radius: 9px; background: linear-gradient(145deg, #eee, #fff); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12); }
.offline-visual { position: absolute; left: 38px; right: 38px; bottom: 42px; height: 155px; display: grid; place-items: center; border: 1px solid #333; border-radius: 18px; background: radial-gradient(circle, rgba(200, 32, 47, 0.26), transparent 62%); }
.offline-visual span { font-size: 36px; font-weight: 800; letter-spacing: 0.12em; }
.offline-visual i { position: absolute; width: 80px; height: 2px; transform: rotate(-45deg); background: var(--red); box-shadow: 0 0 20px var(--red); }
.status-list { position: absolute; left: 38px; right: 38px; bottom: 42px; display: grid; gap: 10px; }
.status-list div { display: grid; grid-template-columns: 12px 1fr auto; align-items: center; gap: 12px; padding: 15px; border-radius: 11px; background: #f6f6f6; }
.status-list span { width: 9px; height: 9px; border-radius: 50%; background: #21a366; }.status-list div:last-child span { background: var(--red); }
.status-list b { font-size: 13px; }.status-list em { color: #929292; font-size: 12px; font-style: normal; }
.clean-visual { position: absolute; right: 52px; bottom: 42px; display: flex; align-items: center; gap: 34px; }
.clean-ring { display: grid; place-items: center; align-content: center; width: 170px; height: 170px; border: 13px solid #f0f0f0; border-top-color: var(--red); border-right-color: var(--red); border-radius: 50%; transform: rotate(45deg); }
.clean-ring span, .clean-ring small { transform: rotate(-45deg); }.clean-ring span { font-size: 31px; font-weight: 800; }.clean-ring small { margin-top: 4px; color: #888; }
.clean-meta { width: 190px; }.clean-meta span { color: #777; font-size: 13px; }.clean-meta i { display: block; height: 8px; margin-top: 12px; border-radius: 8px; background: var(--red); }

.security-section { margin-top: 140px; padding: 120px 24px; color: #fff; background: #171717; }
.security-inner { display: grid; grid-template-columns: 0.86fr 1.14fr; align-items: center; gap: 90px; width: min(1160px, 100%); margin: 0 auto; }
.section-kicker.light { color: #ee6a76; }
.security-copy h2 { margin: 18px 0 22px; font-size: clamp(44px, 5vw, 66px); line-height: 1.12; letter-spacing: -0.045em; }
.security-copy p { max-width: 520px; color: #aaa; font-size: 16px; line-height: 1.85; }
.button-light { margin-top: 18px; color: var(--ink); background: #fff; }
.security-panel { padding: 34px; border: 1px solid #323232; border-radius: 24px; background: #222; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25); }
.panel-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 22px; border-bottom: 1px solid #393939; }
.panel-head span { color: #aaa; }.panel-head strong { color: #67d697; font-size: 13px; }
.panel-score { display: flex; align-items: flex-end; gap: 12px; padding: 30px 0; }.panel-score b { font-size: 72px; line-height: 0.9; }.panel-score span { color: #888; }
.panel-items { display: grid; gap: 11px; }.panel-items div { display: flex; justify-content: space-between; padding: 15px 17px; border-radius: 10px; background: #2b2b2b; }.panel-items span { color: #999; font-size: 13px; }.panel-items strong { font-size: 13px; }

.workflow { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 54px; }
.workflow::before { content: ""; position: absolute; left: 8%; right: 8%; top: 28px; height: 1px; background: #dcdcdc; }
.workflow-step { position: relative; text-align: center; }
.workflow-step span { position: relative; z-index: 2; display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 22px; border: 7px solid var(--canvas); border-radius: 50%; color: #fff; background: var(--ink); font-size: 12px; font-weight: 800; transition: background 180ms ease, transform 180ms ease; }
.workflow-step:hover span { transform: scale(1.08); background: var(--red); }
.workflow-step h3 { margin: 0; font-size: 20px; }.workflow-step p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }

.hardware-hero { display: grid; grid-template-columns: 0.72fr 1.28fr; align-items: center; gap: 34px; margin-top: 44px; padding: 46px; border-radius: 22px; background: #fff; box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05); }
.hardware-hero img { border-radius: 14px; }
.hardware-copy > span, .product-card > span { color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: 0.12em; }
.hardware-copy h3 { margin: 12px 0; font-size: 34px; }.hardware-copy p { color: var(--muted); line-height: 1.8; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.product-card { padding: 24px 24px 30px; border-radius: 22px; background: #fff; transition: transform 240ms ease, box-shadow 240ms ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-image, .hub-visual { height: 270px; display: grid; place-items: center; margin-bottom: 25px; overflow: hidden; border-radius: 16px; background: #f4f4f4; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }.product-image.laptop img { object-fit: contain; mix-blend-mode: multiply; }
.hub-visual { align-content: center; color: #fff; background: linear-gradient(145deg, #282828, #111); }.hub-visual strong { font-size: 88px; line-height: 1; }.hub-visual span { margin-top: 8px; color: #777; letter-spacing: 0.32em; }
.product-card h3 { margin: 10px 0 8px; font-size: 24px; }.product-card p { margin: 0; color: var(--muted); line-height: 1.7; }

.scenario-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 46px; }
.scenario-card { min-height: 245px; padding: 30px; border-radius: 20px; background: #fff; transition: transform 220ms ease, background 220ms ease, color 220ms ease; }
.scenario-card:hover { transform: translateY(-4px); color: #fff; background: var(--red); }
.scenario-card > span { color: var(--red); font-size: 13px; font-weight: 800; }.scenario-card:hover > span { color: #fff; opacity: 0.75; }
.scenario-card h3 { margin: 54px 0 10px; font-size: 22px; }.scenario-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }.scenario-card:hover p { color: rgba(255, 255, 255, 0.75); }

.closing-section { padding: 140px 24px 24px; }
.closing-card { width: min(1240px, 100%); margin: 0 auto; padding: 95px 30px; border-radius: 24px; text-align: center; color: #fff; background: linear-gradient(135deg, #ad1422, #d52d3d); box-shadow: 0 30px 80px rgba(200, 32, 47, 0.2); }
.closing-card > span { color: rgba(255, 255, 255, 0.7); font-size: 14px; letter-spacing: 0.16em; }.closing-card h2 { margin: 16px 0 12px; font-size: clamp(42px, 5vw, 66px); letter-spacing: -0.045em; }.closing-card p { margin: 0; color: rgba(255, 255, 255, 0.76); }
.closing-card .button-primary { color: var(--red); background: #fff; box-shadow: none; }.closing-card .text-link:hover { color: #fff; }.centered-actions { margin-top: 28px; }

.site-footer { margin-top: 96px; padding: 46px 24px; border-top: 1px solid #e3e3e3; background: #eee; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 14px 30px; width: min(1240px, 100%); margin: 0 auto; }
.footer-inner p { grid-column: 1; margin: 0; color: #888; font-size: 13px; }.footer-inner nav { grid-column: 2; grid-row: 1 / span 2; display: flex; gap: 25px; color: #666; font-size: 13px; }.footer-inner nav a:hover { color: var(--red); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease var(--delay, 0ms), transform 650ms ease var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .nav-links { position: absolute; top: 64px; left: 0; right: 0; display: none; height: auto; padding: 15px 24px 24px; flex-direction: column; align-items: flex-start; gap: 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(0, 0, 0, 0.06); }
  .nav-links.open { display: flex; }.nav-links a { width: 100%; height: 48px; }.nav-links a::after { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: grid; gap: 4px; justify-self: end; padding: 8px; cursor: pointer; }
  .menu-toggle span { display: block; width: 21px; height: 2px; background: var(--ink); }
  .feature-bento, .security-inner, .hardware-hero { grid-template-columns: 1fr; }
  .security-inner { gap: 55px; }.product-grid { grid-template-columns: repeat(2, 1fr); }.product-grid .product-card:last-child { grid-column: span 2; }
  .scenario-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-shell { width: calc(100% - 28px); }.brand-name { max-width: 220px; overflow: hidden; text-overflow: ellipsis; }
  .hero { min-height: 760px; padding: 66px 18px 36px; }.hero h1 { font-size: 43px; letter-spacing: -0.045em; }.hero-copy > p { font-size: 15px; }.hero-actions { gap: 20px; }
  .product-stage { height: 325px; margin-top: 45px; }.screen-card { width: 92vw; height: 295px; border-width: 7px; border-bottom-width: 12px; }.screen-topbar { height: 35px; padding: 0 12px; }.screen-content { padding: 18px; }.screen-sidebar { width: 42px; gap: 18px; padding-top: 20px; }.screen-sidebar i { width: 16px; }.screen-sidebar i.active { width: 21px; }.screen-title b { font-size: 16px; }.screen-title > span { display: none; }.screen-stats { gap: 6px; margin-top: 15px; }.screen-stats div { padding: 10px 7px; }.screen-stats b { font-size: 17px; }.screen-stats small { font-size: 9px; }.screen-files { margin-top: 12px; gap: 7px; }.screen-files span { height: 22px; }.screen-files span::before { top: 7px; height: 6px; }
  .device-image { right: -35px; bottom: -25px; width: 190px; }.security-chip { left: 2px; bottom: 4px; padding: 11px 13px; }.chip-icon { width: 29px; height: 29px; }
  .quick-facts { grid-template-columns: repeat(2, 1fr); width: calc(100% - 24px); }.quick-facts article { padding: 18px 10px; }.quick-facts article:nth-child(2) { border-right: 0; }.quick-facts article:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }.quick-facts strong { font-size: 21px; }
  .section { width: calc(100% - 28px); padding-top: 96px; }.section-heading h2 { font-size: 39px; }.section-heading p { font-size: 15px; }
  .feature-bento { grid-template-columns: 1fr; }.feature-card, .feature-card-large, .feature-card-wide { min-height: 390px; padding: 28px; }.feature-card h3 { font-size: 26px; }.transfer-visual { left: 25px; right: 25px; grid-template-columns: 84px 1fr 110px; gap: 10px; }.source-node { height: 90px; }.target-nodes { gap: 4px; }.target-nodes span { height: 66px; border-width: 3px; }.clean-visual { left: 28px; right: auto; bottom: 35px; transform: scale(0.82); transform-origin: left bottom; }
  .security-section { margin-top: 96px; padding: 88px 20px; }.security-copy h2 { font-size: 42px; }.security-panel { padding: 24px; }.panel-score b { font-size: 58px; }.panel-items div { gap: 18px; }.panel-items strong { text-align: right; }
  .workflow { grid-template-columns: 1fr; gap: 26px; }.workflow::before { left: 27px; right: auto; top: 25px; bottom: 25px; width: 1px; height: auto; }.workflow-step { display: grid; grid-template-columns: 56px 1fr; column-gap: 18px; text-align: left; }.workflow-step span { grid-row: span 2; margin: 0; }.workflow-step h3 { align-self: end; }.workflow-step p { align-self: start; }
  .hardware-hero { padding: 24px; }.hardware-copy h3 { font-size: 28px; }.product-grid, .scenario-grid { grid-template-columns: 1fr; }.product-grid .product-card:last-child { grid-column: auto; }.product-image, .hub-visual { height: 235px; }.scenario-card { min-height: 210px; }.scenario-card h3 { margin-top: 34px; }
  .closing-section { padding: 96px 14px 0; }.closing-card { padding: 70px 22px; }.closing-card h2 { font-size: 39px; }.closing-card .hero-actions { flex-direction: column; }
  .site-footer { margin-top: 72px; }.footer-inner { grid-template-columns: 1fr; }.footer-inner p, .footer-inner nav { grid-column: 1; grid-row: auto; }.footer-inner nav { margin-top: 12px; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
