/* ===========================================================
   斗地赛事 · 共享样式表 /assets/site.css
   =========================================================== */

/* ---------- 1. Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body,
h1, h2, h3, h4, h5,
p, figure, blockquote, dl, dd, ul, ol, hr {
  margin: 0;
}

ul, ol { padding: 0; list-style: none; }

img, svg, video { display: block; max-width: 100%; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

a { color: inherit; text-decoration: none; }

table { border-collapse: collapse; width: 100%; }

/* ---------- 2. 变量 ---------- */
:root {
  --c-ink: #0A0A0B;
  --c-felt-deep: #0D2A22;
  --c-felt: #16382E;
  --c-moss: #4B7A5A;
  --c-heart: #C42B38;
  --c-vermil: #E04E27;
  --c-orange: #DE8A2E;
  --c-amber: #D9B24C;
  --c-gold: #C9A24A;
  --c-stone: #A9B4AB;
  --c-clay: #B25E3E;
  --c-cream: #F3EEE4;

  --line-gold: rgba(201, 162, 74, 0.30);
  --line-soft: rgba(169, 180, 171, 0.18);
  --line-faint: rgba(169, 180, 171, 0.10);

  --font-display: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
  --font-body: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STSong", "SimSun", Georgia, serif;
  --font-data: "JetBrains Mono", "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, "Courier New", monospace;

  --maxw: 1320px;
  --gutter: clamp(16px, 3.6vw, 40px);
  --cut: 22px;
  --cut-sm: 12px;
}

/* ---------- 3. 基础排版 ---------- */
body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--c-cream);
  background-color: var(--c-ink);
  background-image:
    radial-gradient(900px 520px at 88% -6%, rgba(196, 43, 56, 0.13), transparent 62%),
    radial-gradient(1100px 660px at 4% 2%, rgba(75, 122, 90, 0.20), transparent 66%),
    linear-gradient(180deg, #0A0A0B 0%, #0D2A22 36%, #0A0A0B 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.16;
}

::selection {
  background: var(--c-heart);
  color: #FFF6F2;
}

:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ---------- 4. 布局工具 ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(44px, 6vw, 88px);
  position: relative;
}

.section--light {
  background: var(--c-cream);
  color: #1A1A17;
}

.section--light .lede { color: #3D3F36; }
.section--light .stat__label { color: #5C6055; }
.section--light a { color: #8A2029; }

.grid {
  display: grid;
  gap: clamp(16px, 2.2vw, 28px);
}

.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--split { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }

.divider {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, rgba(201, 162, 74, 0.55), rgba(201, 162, 74, 0));
}

.scale-rule {
  height: 12px;
  border-top: 1px solid rgba(217, 178, 76, 0.35);
  background-image: repeating-linear-gradient(90deg, rgba(217, 178, 76, 0.55) 0 1px, transparent 1px 16px);
  opacity: 0.75;
}

/* ---------- 5. 文字组件 ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-amber);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

.display-xl {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.display-lg {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 3.8vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.028em;
}

.display-md {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.title-mark {
  position: relative;
  padding-left: 28px;
}

.title-mark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.24em;
  width: 12px;
  height: 12px;
  background: var(--c-heart);
  transform: rotate(45deg);
}

.lede {
  max-width: 34em;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.8;
  color: rgba(243, 238, 228, 0.82);
}

.prose { max-width: 34em; }
.prose p + p { margin-top: 1.05em; }
.prose a {
  color: var(--c-amber);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose a:hover { color: var(--c-cream); }

/* ---------- 6. 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--c-cream);
  background: linear-gradient(135deg, rgba(201, 162, 74, 0.18), rgba(13, 42, 34, 0.72));
  box-shadow: inset 0 1px 0 rgba(201, 162, 74, 0.45);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut-sm)), calc(100% - var(--cut-sm)) 100%, 0 100%);
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  background: linear-gradient(135deg, rgba(217, 178, 76, 0.34), rgba(13, 42, 34, 0.8));
  box-shadow: inset 0 1px 0 rgba(217, 178, 76, 0.7);
}

.btn--solid {
  color: #FFF4F1;
  background: linear-gradient(135deg, var(--c-heart), #9E1F2B);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn--solid:hover {
  background: linear-gradient(135deg, var(--c-vermil), var(--c-heart));
  color: #FFF8F5;
}

.btn--ghost {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--line-gold);
}

.btn--ghost:hover {
  background: rgba(201, 162, 74, 0.12);
  box-shadow: inset 0 0 0 1px var(--c-gold);
}

/* ---------- 7. 面板与数据块 ---------- */
.panel {
  position: relative;
  padding: clamp(18px, 2.4vw, 30px);
  background: linear-gradient(180deg, #16382E 0%, #0D2A22 100%);
  box-shadow: inset 0 1px 0 rgba(201, 162, 74, 0.22);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%);
}

.panel--light {
  background: linear-gradient(180deg, #FBF7EF 0%, var(--c-cream) 100%);
  color: #1A1A17;
  box-shadow: inset 0 1px 0 rgba(201, 162, 74, 0.7);
}

.stat {
  display: grid;
  gap: 6px;
}

.stat__value {
  font-family: var(--font-data);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-amber);
}

.stat__label {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-stone);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-family: var(--font-data);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--c-amber);
  background: rgba(217, 178, 76, 0.12);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%);
}

.tag--heart {
  color: #FFF3F0;
  background: rgba(196, 43, 56, 0.85);
}

/* ---------- 8. 面包屑 ---------- */
.breadcrumb {
  padding-top: 22px;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--c-stone);
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  color: rgba(169, 180, 171, 0.45);
}

.breadcrumb__link {
  color: var(--c-stone);
  transition: color 0.18s ease;
}

.breadcrumb__link:hover { color: var(--c-amber); }

.breadcrumb__current { color: var(--c-cream); }

/* ---------- 9. 图像容器 ---------- */
.img-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--c-felt-deep);
  background-image:
    repeating-linear-gradient(45deg, rgba(201, 162, 74, 0.06) 0 1px, transparent 1px 14px),
    linear-gradient(160deg, #16382E 0%, #0D2A22 55%, #08160F 100%);
  box-shadow: inset 0 0 0 1px rgba(201, 162, 74, 0.22);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-frame--wide { aspect-ratio: 16 / 9; }
.img-frame--square { aspect-ratio: 1 / 1; }
.img-frame--tall { aspect-ratio: 3 / 4; }

.img-frame__caption {
  display: block;
  margin-top: 10px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--c-stone);
}

/* ---------- 10. 跳转链接 ---------- */
.skip-link {
  position: absolute;
  top: -120px;
  left: var(--gutter);
  z-index: 200;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: #12120F;
  background: var(--c-amber);
  transition: top 0.18s ease;
}

.skip-link:focus {
  top: 12px;
}

/* ---------- 11. 页头 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  padding: 0 var(--gutter);
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.99) 0%, rgba(13, 42, 34, 0.97) 100%);
  border-bottom: 1px solid var(--line-gold);
  box-shadow: 0 16px 34px -28px rgba(0, 0, 0, 0.95);
}

.header-rail {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 24px);
  max-width: var(--maxw);
  margin-inline: auto;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  padding: 8px 0;
}

.brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(196, 43, 56, 0.48), rgba(13, 42, 34, 0.92));
  box-shadow: inset 0 1px 0 rgba(217, 178, 76, 0.45);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}

.brand-mark__pip {
  width: 10px;
  height: 10px;
  background: var(--c-heart);
  transform: rotate(45deg);
  box-shadow: 0 0 0 1px rgba(243, 238, 228, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--c-cream);
}

.brand-tag {
  margin-top: 3px;
  font-family: var(--font-data);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--c-stone);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-left: auto;
  padding: 0 14px;
  color: var(--c-cream);
  background: linear-gradient(135deg, rgba(196, 43, 56, 0.24), rgba(13, 42, 34, 0.75));
  box-shadow: inset 0 1px 0 rgba(217, 178, 76, 0.35);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.nav-toggle__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, width 0.2s ease;
}

.nav-toggle__bar:last-child {
  width: 68%;
  align-self: flex-end;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child {
  width: 100%;
  transform: translateY(-3.5px) rotate(-45deg);
}

.nav-toggle__label { white-space: nowrap; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav__item { display: block; }

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 clamp(9px, 0.95vw, 14px);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(13.5px, 1.05vw, 15px);
  letter-spacing: 0.005em;
  white-space: nowrap;
  color: rgba(243, 238, 228, 0.7);
  transition: color 0.18s ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: clamp(9px, 0.95vw, 14px);
  right: clamp(9px, 0.95vw, 14px);
  bottom: 6px;
  height: 2px;
  background: var(--c-heart);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.site-nav__link:hover { color: var(--c-cream); }
.site-nav__link:hover::after { transform: scaleX(1); }

.site-nav__link[aria-current="page"] { color: var(--c-cream); }
.site-nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  color: var(--c-amber);
  background: linear-gradient(135deg, rgba(217, 178, 76, 0.22), rgba(217, 178, 76, 0.04) 72%);
  box-shadow: inset 0 1px 0 rgba(217, 178, 76, 0.55), inset 0 -1px 0 rgba(217, 178, 76, 0.18);
  clip-path: polygon(0 0, 100% 0, 100% 68%, calc(100% - 11px) 100%, 0 100%);
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-cta:hover {
  color: #10100F;
  background: linear-gradient(135deg, var(--c-amber), var(--c-orange));
}

.header-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 7px 0 9px;
  border-top: 1px solid var(--line-faint);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--c-stone);
  overflow: hidden;
}

.header-notice::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  background: var(--c-amber);
  transform: rotate(45deg);
}

.header-notice__text {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--c-amber) 0%, var(--c-orange) 48%, var(--c-vermil) 100%);
  pointer-events: none;
}

/* ---------- 12. 页脚 ---------- */
.site-footer {
  position: relative;
  margin-top: clamp(56px, 8vw, 110px);
  padding: 0 var(--gutter);
  background: linear-gradient(180deg, #0A0A0B 0%, #0D2A22 52%, #08140F 100%);
  border-top: 1px solid var(--line-gold);
}

.footer-scale {
  height: 10px;
  max-width: var(--maxw);
  margin-inline: auto;
  border-bottom: 1px solid rgba(201, 162, 74, 0.22);
  background-image: repeating-linear-gradient(90deg, rgba(201, 162, 74, 0.45) 0 1px, transparent 1px 22px);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 1.4fr);
  gap: clamp(28px, 4vw, 64px);
  max-width: var(--maxw);
  margin-inline: auto;
  padding-block: clamp(34px, 5vw, 62px) clamp(26px, 3vw, 40px);
}

.footer-brand__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 27px);
  letter-spacing: -0.02em;
  color: var(--c-cream);
}

.footer-brand__tag {
  margin-top: 12px;
  max-width: 32em;
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-stone);
}

.footer-contact {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-faint);
}

.footer-contact__line {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  color: var(--c-amber);
  word-break: break-all;
}

.footer-contact__line--soft {
  color: var(--c-stone);
}

.footer-contact__note {
  margin-top: 4px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--c-stone);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 40px);
}

.footer-col__title {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--c-moss);
}

.footer-col__list {
  display: grid;
  gap: 2px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: rgba(243, 238, 228, 0.78);
  transition: color 0.18s ease;
}

.footer-link::before {
  content: "";
  width: 7px;
  height: 1px;
  margin-right: 9px;
  background: var(--c-gold);
  transform: scaleX(0.6);
  transform-origin: left center;
  transition: transform 0.18s ease;
}

.footer-link:hover { color: var(--c-cream); }
.footer-link:hover::before { transform: scaleX(1.3); }

.footer-base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-block: 18px 28px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-data);
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: var(--c-stone);
}

.footer-legal { color: var(--c-stone); }
.footer-note { color: rgba(169, 180, 171, 0.72); }

/* ---------- 13. 显现与计数 ---------- */
html[data-reveal-ready] [data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

html[data-reveal-ready] [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- 14. 响应式 ---------- */
@media (max-width: 1100px) {
  .brand-tag { display: none; }
}

@media (max-width: 1023.98px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 8px var(--gutter) 18px;
    background: linear-gradient(180deg, #0B2119 0%, #0A0A0B 100%);
    border-top: 1px solid rgba(201, 162, 74, 0.25);
    border-bottom: 1px solid var(--line-gold);
    box-shadow: 0 26px 40px -30px rgba(0, 0, 0, 0.95);
  }

  .site-nav[data-open="true"] {
    display: flex;
    animation: navIn 0.18s ease-out both;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }

  .site-nav__item + .site-nav__item {
    border-top: 1px solid var(--line-faint);
  }

  .site-nav__link {
    width: 100%;
    min-height: 48px;
    padding: 0 6px;
    font-size: 16px;
  }

  .site-nav__link::after {
    left: 6px;
    right: 6px;
    bottom: 9px;
  }

  .nav-cta {
    width: 100%;
    margin-top: 12px;
    min-height: 46px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  }
}

@keyframes navIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .grid--2,
  .grid--3,
  .grid--4,
  .grid--split { grid-template-columns: minmax(0, 1fr); }

  .footer-inner { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 680px) {
  body { font-size: 16px; }

  .header-rail { min-height: 62px; }

  .brand-mark { width: 30px; height: 30px; }
  .brand-name { font-size: 17px; }

  .header-notice { padding: 6px 0 7px; font-size: 11px; }

  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 8px; }

  .footer-base { flex-direction: column; align-items: flex-start; }

  .footer-contact__line { font-size: 12.5px; }
}

/* ---------- 15. 减弱动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  html[data-reveal-ready] [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .header-progress {
    transition: none;
  }
}
