/* ============================================================
   云开赛事 / 共享样式表  /assets/site.css
   坐标网格 · 矿物色 · 编辑部节奏
   ============================================================ */

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }
[hidden] { display: none !important; }

/* ---------- variables ---------- */
:root {
  --sand: #C98A2E;
  --sand-mist: #F2E4CE;
  --paper: #FAF6EF;
  --snow: #7FA8A6;
  --deep: #33565A;
  --arena: #9FE870;
  --night: #0E1B2A;
  --clay: #A8492F;
  --stone: #6B6B63;
  --moss: #4E6B3C;
  --white: #FFFFFF;
  --ink: #2A3A3C;

  --line: rgba(107, 107, 99, .26);
  --line-strong: rgba(51, 86, 90, .32);
  --line-dark: rgba(127, 168, 166, .24);

  --shell: min(1320px, 100% - 2.4rem);
  --font-sans: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  --font-serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", Georgia, serif;
  --font-mono: "JetBrains Mono", "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* ---------- base type ---------- */
:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 2px;
}
.section--night :focus-visible,
.site-footer :focus-visible { outline-color: var(--arena); }

.shell { width: var(--shell); margin-inline: auto; }

.display {
  font-family: var(--font-display, var(--font-sans));
  font-weight: 900;
  font-size: clamp(2.6rem, 9vw, 6rem);
  line-height: 1.02;
  letter-spacing: -.01em;
  color: var(--night);
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.22;
  letter-spacing: .01em;
  color: var(--night);
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sand);
}
.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}
.rule { height: 1px; border: 0; margin: 0; background: var(--line); }
.section { padding: clamp(2.6rem, 6vw, 5rem) 0; }
.section--mist { background: var(--sand-mist); }
.section--night { background: var(--night); color: #DCE5E4; }
.section--night .section-title { color: var(--white); }
.section--night .eyebrow { color: var(--arena); }
.section--night .prose { color: #C9D6D5; }
.section--night .prose strong { color: var(--white); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .62rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: .85rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
  text-align: center;
  cursor: pointer;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease;
}
.btn--primary { background: var(--sand); color: #1A1206; border-color: var(--sand); }
.btn--primary:hover { background: var(--night); border-color: var(--night); color: var(--white); }
.btn--ghost { background: transparent; border-color: var(--deep); color: var(--deep); }
.btn--ghost:hover { background: var(--deep); color: var(--white); }
.btn--arena { background: var(--arena); color: var(--night); border-color: var(--arena); }
.btn--arena:hover { background: var(--snow); border-color: var(--snow); color: var(--night); }
.btn--block { width: 100%; }

/* ---------- tags ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .2rem .55rem;
  border: 1px solid var(--line-strong);
  background: rgba(127, 168, 166, .12);
  color: var(--deep);
  font-size: .72rem;
  letter-spacing: .08em;
  line-height: 1.6;
}
.tag--sand { border-color: rgba(201, 138, 46, .5); background: rgba(201, 138, 46, .14); color: #8A5A16; }
.tag--arena { border-color: rgba(159, 232, 112, .8); background: rgba(159, 232, 112, .22); color: #2F4A16; }
.tag--moss { border-color: rgba(78, 107, 60, .5); background: rgba(78, 107, 60, .14); color: var(--moss); }
.tag--clay { border-color: rgba(168, 73, 47, .5); background: rgba(168, 73, 47, .12); color: var(--clay); }

/* ---------- breadcrumbs ---------- */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--stone);
}
.crumbs li { display: inline-flex; align-items: center; }
.crumbs li + li::before { content: "/"; margin: 0 .5rem; color: var(--line-strong); }
.crumbs a { color: var(--deep); border-bottom: 1px solid transparent; }
.crumbs a:hover { border-bottom-color: var(--sand); }
.crumbs [aria-current="page"] { color: var(--stone); }

/* ---------- prose ---------- */
.prose {
  max-width: 42em;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink);
}
.prose > * + * { margin-top: 1em; }
.prose h2 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--night); line-height: 1.35; }
.prose h3 { font-size: 1.08rem; font-weight: 700; color: var(--deep); }
.prose strong { color: var(--night); font-weight: 700; }
.prose a { color: var(--clay); border-bottom: 1px solid var(--line-strong); }
.prose a:hover { border-bottom-color: var(--clay); }
.prose ul { display: grid; gap: .4rem; }
.prose ul li { position: relative; padding-left: 1.1rem; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  background: var(--sand);
}
.prose blockquote {
  padding: .4rem 0 .4rem 1.1rem;
  border-left: 2px solid var(--sand);
  color: var(--deep);
  font-family: var(--font-serif);
}

/* ---------- grid ---------- */
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-9 { grid-column: span 9; }
.col-12 { grid-column: span 12; }
.col-offset-1 { grid-column-start: 2; }

@media (max-width: 900px) {
  .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9 { grid-column: 1 / -1; }
  .col-offset-1 { grid-column-start: 1; }
}

/* ---------- figures / image containers ---------- */
.figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--sand-mist);
  border: 1px solid var(--line);
  border-radius: 0;
}
.figure--wide { aspect-ratio: 16 / 9; }
.figure--band { aspect-ratio: 21 / 9; }
.figure--tall { aspect-ratio: 3 / 4; }
.figure--square { aspect-ratio: 1 / 1; }
.figure > img,
.figure > video { width: 100%; height: 100%; object-fit: cover; }
.figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image:
    linear-gradient(to right, rgba(250, 246, 239, .22) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(250, 246, 239, .22) 1px, transparent 1px);
  background-size: 56px 56px;
}
.figure[data-coord]::before {
  content: attr(data-coord);
  position: absolute;
  left: .6rem;
  bottom: .6rem;
  z-index: 2;
  padding: .15rem .45rem;
  background: rgba(14, 27, 42, .72);
  color: var(--arena);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  line-height: 1.6;
}
.figure-cap {
  display: block;
  margin-top: .55rem;
  padding-left: .7rem;
  border-left: 2px solid var(--snow);
  font-size: .78rem;
  line-height: 1.65;
  color: var(--stone);
}

/* ---------- accordion ---------- */
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem .25rem;
  text-align: left;
  font-weight: 600;
  color: var(--night);
  transition: color .2s ease;
}
.accordion-trigger:hover { color: var(--clay); }
.accordion-trigger::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  line-height: 1;
  color: var(--sand);
}
.accordion-trigger[aria-expanded="true"]::after { content: "–"; color: var(--clay); }
.accordion-panel { padding: 0 .25rem 1.15rem; }
.accordion-panel[hidden] { display: none; }

/* ---------- filter ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .4rem; }
.filter-btn {
  padding: .35rem .85rem;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--deep);
  font-size: .78rem;
  letter-spacing: .06em;
  border-radius: 2px;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.filter-btn:hover { border-color: var(--deep); }
.filter-btn[aria-pressed="true"] {
  background: var(--night);
  border-color: var(--night);
  color: var(--white);
}
[data-filter-item][hidden] { display: none !important; }

/* ---------- table of contents ---------- */
.toc {
  position: sticky;
  top: 5.5rem;
  font-size: .82rem;
  line-height: 1.5;
}
.toc .eyebrow { display: block; margin-bottom: .7rem; }
.toc-list { display: grid; gap: 0; border-left: 1px solid var(--line); }
.toc-link {
  display: block;
  margin-left: -1px;
  padding: .42rem .6rem .42rem .9rem;
  border-left: 2px solid transparent;
  color: var(--stone);
  transition: color .2s ease, border-color .2s ease;
}
.toc-link:hover { color: var(--deep); }
.toc-link.is-active {
  border-left-color: var(--sand);
  color: var(--night);
  font-weight: 700;
}

/* ---------- reveal ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(10px); }
.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: opacity .34s ease, transform .34s cubic-bezier(.2, .7, .3, 1);
}

/* ---------- scroll rail & back to top ---------- */
.scroll-rail {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 90;
  pointer-events: none;
}
.scroll-rail span {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--sand), var(--arena));
}
.to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: none;
  align-items: center;
  gap: .45rem;
  padding: .6rem .85rem;
  border: 1px solid rgba(159, 232, 112, .55);
  border-radius: 2px;
  background: var(--night);
  color: var(--arena);
  font-size: .76rem;
  letter-spacing: .08em;
}
.to-top[data-visible] { display: inline-flex; }
.to-top:hover { background: var(--arena); color: var(--night); }

/* ---------- skip link ---------- */
.skip-link {
  position: fixed;
  top: -4rem;
  left: 1rem;
  z-index: 200;
  padding: .6rem 1rem;
  background: var(--night);
  color: var(--white);
  font-size: .85rem;
  letter-spacing: .06em;
  transition: top .2s ease;
}
.skip-link:focus { top: .7rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  background: rgba(250, 246, 239, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px) saturate(1.15);
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
  transition: background-color .3s ease, box-shadow .3s ease;
}
.site-header[data-stuck] {
  background: rgba(250, 246, 239, .7);
  box-shadow: 0 10px 26px rgba(14, 27, 42, .07);
}
.site-header[data-stuck] .nav-capsule { opacity: .94; }

.header-shell {
  display: flex;
  align-items: center;
  gap: clamp(.6rem, 1.6vw, 1.4rem);
  width: var(--shell);
  margin-inline: auto;
  padding: .62rem 0;
}

/* brand */
.brand { display: inline-flex; align-items: center; gap: .6rem; flex: 0 0 auto; }
.brand-glyph {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--night);
  flex: 0 0 auto;
}
.brand-glyph i { position: absolute; background: var(--sand); }
.brand-glyph i:first-child { left: 50%; top: 4px; bottom: 4px; width: 1.5px; transform: translateX(-50%); }
.brand-glyph i:last-child { top: 50%; left: 4px; right: 4px; height: 1.5px; transform: translateY(-50%); }
.brand-text { display: block; }
.brand-name {
  display: block;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1.06rem;
  line-height: 1.2;
  letter-spacing: .05em;
  color: var(--night);
}
.brand-note {
  display: block;
  font-family: var(--font-mono);
  font-size: .62rem;
  line-height: 1.35;
  letter-spacing: .02em;
  color: var(--stone);
}

.header-tagline {
  margin: 0 0 0 .4rem;
  font-family: var(--font-serif);
  font-size: .84rem;
  letter-spacing: .08em;
  color: var(--deep);
  white-space: nowrap;
}

/* capsule nav */
.nav-capsule {
  display: flex;
  align-items: center;
  gap: .1rem;
  margin-left: auto;
  padding: .28rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  transition: opacity .3s ease;
}
.nav-list { display: flex; align-items: center; gap: .1rem; }
.nav-item { display: block; }
.nav-link {
  display: block;
  padding: .42rem .8rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  color: var(--deep);
  transition: background-color .2s ease, color .2s ease;
}
.nav-link:hover { background: var(--sand-mist); color: var(--night); }
.nav-link[aria-current="page"] { background: var(--night); color: var(--white); }
.nav-link[aria-current="page"]::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: .42rem;
  vertical-align: .12em;
  background: var(--arena);
}

.header-cta { flex: 0 0 auto; }

/* mobile toggle */
.nav-toggle {
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .5rem .7rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: var(--deep);
  font-size: .78rem;
  letter-spacing: .08em;
}
.nav-toggle-bars { display: grid; gap: 3px; width: 16px; }
.nav-toggle-bars i {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform .24s ease, opacity .24s ease;
}
.site-header[data-open] .nav-toggle { color: var(--night); border-color: var(--sand); }
.site-header[data-open] .nav-toggle-bars i:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.site-header[data-open] .nav-toggle-bars i:nth-child(2) { opacity: 0; }
.site-header[data-open] .nav-toggle-bars i:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }

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

@media (max-width: 1200px) {
  .header-tagline { display: none; }
}

@media (max-width: 980px) {
  body.nav-locked { overflow: hidden; }
  .header-cta { margin-left: auto; padding: .55rem .7rem; font-size: .78rem; }
  .nav-toggle { display: inline-flex; order: 3; }
  .header-cta { order: 2; }
  .nav-capsule {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 1rem clamp(1.2rem, 5vw, 2rem) 1.5rem;
    border: 0;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    border-radius: 0;
    background: var(--paper);
    opacity: 1;
    max-height: calc(100vh - 3.6rem);
    max-height: calc(100dvh - 3.6rem);
    overflow-y: auto;
  }
  .nav-capsule[data-open] { display: flex; animation: navDrop .28s ease both; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-item + .nav-item { border-top: 1px solid var(--line); }
  .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .95rem .2rem;
    border-radius: 0;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--night);
  }
  .nav-link:hover { background: transparent; color: var(--clay); }
  .nav-link[aria-current="page"] {
    background: transparent;
    color: var(--clay);
    border-left: 3px solid var(--sand);
    padding-left: .8rem;
  }
}

@media (max-width: 640px) {
  :root { --shell: min(1320px, 100% - 1.6rem); }
  .brand-note { display: none; }
  .brand-glyph { width: 22px; height: 22px; }
  .brand-name { font-size: 1rem; }
  .header-cta { font-size: .74rem; padding: .5rem .6rem; letter-spacing: .02em; }
  .nav-toggle-text { display: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background: var(--night);
  color: #DCE5E4;
  font-size: .9rem;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background-image:
    linear-gradient(to right, rgba(127, 168, 166, .14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(127, 168, 166, .14) 1px, transparent 1px);
  background-size: 78px 78px;
}
.footer-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 2.1fr 1.4fr;
  gap: clamp(1.6rem, 4vw, 3.4rem);
  width: var(--shell);
  margin-inline: auto;
  padding: clamp(2.4rem, 5vw, 4rem) 0 2.2rem;
}

.footer-lead { min-width: 0; }
.footer-logo {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: .06em;
  color: var(--white);
}
.footer-logo::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-top: .6rem;
  background: var(--sand);
}
.footer-domain {
  margin-top: .7rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .02em;
  color: var(--snow);
  overflow-wrap: anywhere;
}
.footer-tagline {
  margin-top: .55rem;
  font-family: var(--font-serif);
  font-size: .92rem;
  letter-spacing: .06em;
  color: #A9BFBE;
}
.footer-coords {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .9rem;
  margin-top: 1.1rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--sand);
}
.footer-coords li { border-top: 1px solid rgba(201, 138, 46, .55); padding-top: .35rem; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.footer-col { min-width: 0; }
.footer-col-title {
  margin-bottom: .9rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sand);
}
.footer-list { display: grid; gap: .55rem; }
.footer-link {
  display: inline-block;
  font-size: .88rem;
  color: #C9D6D5;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.footer-link:hover { color: var(--arena); border-bottom-color: var(--arena); }

.footer-contact { min-width: 0; }
.footer-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .5rem;
  padding: .5rem 0;
  border-bottom: 1px dashed rgba(127, 168, 166, .26);
}
.footer-label {
  flex: 0 0 auto;
  min-width: 2.6em;
  font-size: .7rem;
  letter-spacing: .14em;
  color: var(--snow);
}
.footer-value {
  flex: 1 1 9rem;
  min-width: 0;
  font-size: .85rem;
  line-height: 1.6;
  color: #DCE5E4;
  overflow-wrap: anywhere;
}
.copy-btn {
  flex: 0 0 auto;
  padding: .16rem .5rem;
  border: 1px solid rgba(159, 232, 112, .45);
  border-radius: 2px;
  color: var(--arena);
  font-size: .68rem;
  letter-spacing: .1em;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.copy-btn:hover { border-color: var(--arena); }
.copy-btn[data-copied] { background: var(--arena); border-color: var(--arena); color: var(--night); }

.footer-base {
  position: relative;
  border-top: 1px solid var(--line-dark);
  background: rgba(0, 0, 0, .2);
}
.footer-base-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .5rem 1.6rem;
  width: var(--shell);
  margin-inline: auto;
  padding: 1.05rem 0 1.5rem;
  font-size: .76rem;
  line-height: 1.7;
  color: #8FA5A4;
}
.footer-area { flex: 1 1 24rem; max-width: 62ch; }
.footer-legal { font-family: var(--font-mono); letter-spacing: .02em; white-space: nowrap; }
.footer-icp {
  font-family: var(--font-mono);
  letter-spacing: .04em;
  color: var(--sand);
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .footer-shell { grid-template-columns: 1fr 1fr; }
  .footer-lead { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-shell { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-nav { grid-template-columns: 1fr; gap: 1.3rem; }
  .footer-legal, .footer-icp { white-space: normal; }
}

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