/* =========================================================
   OK体育 · 共享样式  /assets/site.css
   夜场深蓝画布 + 战术网格 + 记分牌级等宽数字
   ========================================================= */

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

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

body {
  margin: 0;
  min-height: 100%;
}

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

h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }

ul, ol { margin: 0; padding: 0; }

button, input, select, textarea { font: inherit; color: inherit; }

a { color: inherit; }

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

/* ---------- 2. 变量 ---------- */
:root {
  /* 色彩 */
  --c-ink: #0A1A2F;
  --c-panel: #122A42;
  --c-tactical: #1E4A6E;
  --c-acid: #39FF14;
  --c-orange: #FF6B35;
  --c-paper: #F1E9DA;
  --c-black: #0B0D12;
  --c-white: #F5F8FB;
  --c-mist: #93A6B8;
  --c-cyan: #22D3EE;

  /* 阴影 */
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, .40);
  --shadow-lift: 0 26px 70px rgba(0, 0, 0, .55);

  /* 字体 */
  --font-display: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
  --font-body: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "Roboto Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* 尺寸 */
  --w-wide: 1240px;
  --w-read: 44rem;
  --radius: 18px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --gutter: clamp(18px, 4vw, 44px);
  --band-y: clamp(56px, 8vw, 112px);

  --dur: 200ms;
  --dur-long: 320ms;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 3. 中文排版基线 ---------- */
body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: .005em;
  color: var(--c-white);
  background-color: var(--c-ink);
  background-image:
    radial-gradient(90% 55% at 82% -12%, rgba(57, 255, 20, .10), transparent 62%),
    radial-gradient(70% 50% at -6% 6%, rgba(34, 211, 238, .09), transparent 60%),
    linear-gradient(rgba(30, 74, 110, .26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 74, 110, .26) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
  background-position: 0 0, 0 0, -1px -1px, -1px -1px;
  background-repeat: no-repeat, no-repeat, repeat, repeat;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.02em;
  text-wrap: balance;
}

h1 { font-size: clamp(34px, 5.2vw, 68px); }
h2 { font-size: clamp(26px, 3.4vw, 44px); }
h3 { font-size: clamp(20px, 2.2vw, 28px); }
h4 { font-size: clamp(17px, 1.6vw, 20px); font-weight: 800; }

p { text-wrap: pretty; }

::selection {
  background: var(--c-acid);
  color: var(--c-black);
}

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

#main-content { display: block; scroll-margin-top: 96px; }

/* ---------- 4. 容器与网格 ---------- */
.container {
  width: min(100% - (var(--gutter) * 2), var(--w-wide));
  margin-inline: auto;
}

.grid {
  display: grid;
  gap: clamp(16px, 2.2vw, 32px);
}
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--5-7 { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.grid--7-5 { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.grid--4-5-3 { grid-template-columns: minmax(0, 4fr) minmax(0, 5fr) minmax(0, 3fr); }

.band {
  position: relative;
  padding-block: var(--band-y);
}
.band + .band {
  border-top: 1px solid rgba(30, 74, 110, .6);
}

.divider {
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg, transparent, var(--c-tactical) 18%, var(--c-tactical) 82%, transparent);
}

/* ---------- 5. 工具类 ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 50%;
  z-index: 200;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--c-acid);
  color: var(--c-black);
  font-weight: 700;
  text-decoration: none;
  transform: translate(-50%, -220%);
  transition: transform var(--dur) var(--ease);
}
.skip-link:focus {
  transform: translate(-50%, 0);
}

/* ---------- 6. 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--dur) var(--ease),
              background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn--acid {
  background: var(--c-acid);
  color: var(--c-black);
  box-shadow: 0 8px 24px rgba(57, 255, 20, .22);
}
.btn--acid:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(57, 255, 20, .34);
}
.btn--orange {
  background: var(--c-orange);
  color: var(--c-black);
  box-shadow: 0 8px 24px rgba(255, 107, 53, .24);
}
.btn--orange:hover { transform: translateY(-2px); }
.btn--ghost {
  background: rgba(30, 74, 110, .28);
  color: var(--c-white);
  border-color: var(--c-tactical);
}
.btn--ghost:hover {
  color: var(--c-acid);
  border-color: var(--c-acid);
  transform: translateY(-2px);
}
.btn--sm {
  padding: 8px 15px;
  font-size: 13px;
}

/* ---------- 7. 头部：悬浮胶囊 ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: clamp(10px, 1.5vw, 18px) 0;
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }

.capsule {
  position: relative;
  width: min(100% - (var(--gutter) * 2), var(--w-wide));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  padding: 8px 10px 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(30, 74, 110, .9);
  background: rgba(18, 42, 66, .74);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: var(--shadow-soft);
  transition: padding var(--dur) var(--ease),
              background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.site-header.is-scrolled .capsule {
  background: rgba(10, 26, 47, .90);
  box-shadow: var(--shadow-lift);
}
.site-header.is-condensed .capsule {
  padding: 5px 8px 5px 14px;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
}
.site-header.is-condensed .brand__name { font-size: 15px; }
.site-header.is-condensed .nav__link { padding: 7px 12px; font-size: 13px; }
.site-header.is-condensed .btn--sm { padding: 7px 13px; font-size: 12.5px; }

/* 品牌 */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--c-white);
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 10px;
  background: var(--c-acid);
  color: var(--c-black);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}
.brand__name {
  font-size: 16.5px;
  font-weight: 900;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.brand__dot {
  padding: 2px 8px;
  border: 1px solid rgba(57, 255, 20, .38);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
  color: var(--c-acid);
  white-space: nowrap;
  animation: dotBreath 2.4s var(--ease) infinite;
}

@keyframes dotBreath {
  0%, 100% { box-shadow: 0 0 0 0 rgba(57, 255, 20, .34); }
  50%      { box-shadow: 0 0 0 5px rgba(57, 255, 20, 0); }
}

/* 导航 */
.nav {
  display: flex;
  justify-content: center;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav__item { display: block; }
.nav__link {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-mist);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.nav__link:hover {
  color: var(--c-white);
  background: rgba(30, 74, 110, .62);
}
.nav__link[aria-current="page"] {
  color: var(--c-acid);
  background: rgba(57, 255, 20, .10);
  box-shadow: inset 0 0 0 1px rgba(57, 255, 20, .5);
  font-weight: 700;
}

/* 右侧操作区 */
.capsule__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

/* 移动导航按钮 */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex: none;
  padding: 0;
  border: 1px solid var(--c-tactical);
  border-radius: 50%;
  background: rgba(30, 74, 110, .5);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-toggle:hover { border-color: var(--c-acid); }
.nav-toggle__bars {
  position: relative;
  display: block;
  width: 16px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--c-white);
  transition: background var(--dur) var(--ease);
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: inherit;
  transition: transform var(--dur) var(--ease), top var(--dur) var(--ease);
}
.nav-toggle__bars::before { top: -5px; }
.nav-toggle__bars::after  { top: 5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { top: 0; transform: rotate(-45deg); }

/* 滚动进度 */
.progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--c-acid) 0%, var(--c-cyan) 58%, var(--c-orange) 100%);
  box-shadow: 0 0 14px rgba(57, 255, 20, .55);
  will-change: transform;
}

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

/* ---------- 8. 页脚 ---------- */
.site-footer {
  position: relative;
  margin-top: clamp(56px, 9vw, 128px);
  border-top: 1px solid rgba(30, 74, 110, .9);
  background:
    radial-gradient(120% 80% at 12% 0%, rgba(30, 74, 110, .55) 0%, rgba(10, 26, 47, 0) 62%),
    var(--c-black);
  color: var(--c-white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1.1fr;
  gap: clamp(24px, 4vw, 56px);
  padding-block: clamp(40px, 6vw, 76px);
}

.footer__col { min-width: 0; }

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.01em;
}
.footer__brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--c-acid);
  color: var(--c-black);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.footer__title {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--c-mist);
}

.footer__list {
  display: grid;
  gap: 8px;
  list-style: none;
}
.footer__list a {
  font-size: 14.5px;
  color: var(--c-white);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.footer__list a:hover { color: var(--c-acid); }
.footer__list--plain li {
  font-size: 14.5px;
  color: var(--c-mist);
  overflow-wrap: anywhere;
}

.footer__text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--c-white);
  max-width: 22em;
}

.footer__meta {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: .04em;
  color: var(--c-mist);
  max-width: 26em;
}

.footer__cta { margin-top: 14px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  padding-block: 20px 28px;
  border-top: 1px solid rgba(30, 74, 110, .7);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--c-mist);
}
.footer__bottom a {
  color: var(--c-mist);
  text-decoration: none;
}
.footer__bottom a:hover { color: var(--c-acid); }

/* ---------- 9. 通用内容组件 ---------- */
.lede {
  max-width: 30em;
  margin-bottom: 1.1em;
  font-size: clamp(17px, 1.4vw, 19.5px);
  line-height: 1.72;
  color: var(--c-white);
}

/* 数据锚点 */
.stat {
  display: grid;
  gap: 6px;
  align-content: start;
}
.stat__num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(48px, 8.4vw, 132px);
  font-weight: 700;
  line-height: .88;
  letter-spacing: -.045em;
  font-variant-numeric: tabular-nums;
  color: var(--c-acid);
  text-shadow: 0 0 42px rgba(57, 255, 20, .28);
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .08em;
  color: var(--c-mist);
}
.stat--down .stat__num { color: var(--c-orange); text-shadow: 0 0 42px rgba(255, 107, 53, .26); }
.stat--cyan .stat__num { color: var(--c-cyan); text-shadow: 0 0 42px rgba(34, 211, 238, .24); }
.stat--sm .stat__num { font-size: clamp(26px, 3.4vw, 46px); letter-spacing: -.02em; }

/* 面板 */
.panel {
  position: relative;
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid rgba(30, 74, 110, .9);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(18, 42, 66, .92), rgba(10, 26, 47, .92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.panel:hover {
  transform: translateY(-3px);
  border-color: rgba(57, 255, 20, .42);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .45);
}
.panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.panel--paper {
  background: var(--c-paper);
  color: var(--c-black);
  border-color: rgba(11, 13, 18, .14);
  box-shadow: 0 22px 56px rgba(0, 0, 0, .42);
}
.panel--paper:hover {
  border-color: rgba(11, 13, 18, .28);
}
.panel--paper h2,
.panel--paper h3,
.panel--paper h4 { color: var(--c-black); }
.panel--paper p,
.panel--paper li {
  max-width: 34em;
  line-height: 1.85;
  color: var(--c-black);
}
.panel--paper a {
  color: #A8431B;
  text-underline-offset: 3px;
}
.panel--paper .stat__label,
.panel--paper .figure__cap { color: #4A5560; }

/* 标签 */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border: 1px solid currentColor;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  line-height: 1.7;
  white-space: nowrap;
}
.tag--acid { color: var(--c-acid); }
.tag--orange { color: var(--c-orange); }
.tag--cyan { color: var(--c-cyan); }

/* 标签页 */
.tabs {
  display: grid;
  gap: 20px;
}
.tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(30, 74, 110, .9);
  border-radius: var(--radius-pill);
  background: rgba(18, 42, 66, .78);
}
.tabs__tab {
  appearance: none;
  border: 0;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: transparent;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--c-mist);
  cursor: pointer;
  transition: color var(--dur) var(--ease),
              background var(--dur) var(--ease);
}
.tabs__tab:hover { color: var(--c-white); }
.tabs__tab[aria-selected="true"] {
  background: var(--c-acid);
  color: var(--c-black);
  font-weight: 700;
}
.tabs__panel {
  animation: panelIn var(--dur-long) var(--ease);
}
.tabs__panel[hidden] { display: none; }

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

/* 图文容器 */
.figure {
  display: grid;
  gap: 10px;
  margin: 0;
}
.figure__img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(30, 74, 110, .9);
  border-radius: var(--radius);
  background:
    radial-gradient(70% 90% at 28% 18%, rgba(57, 255, 20, .16), transparent 62%),
    radial-gradient(60% 80% at 88% 88%, rgba(255, 107, 53, .16), transparent 60%),
    linear-gradient(150deg, var(--c-panel), var(--c-ink));
}
.figure__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-long) var(--ease);
}
.figure:hover .figure__img img { transform: scale(1.03); }
.figure__cap {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .05em;
  line-height: 1.7;
  color: var(--c-mist);
}
.figure--wide .figure__img { aspect-ratio: 21 / 9; }
.figure--tall .figure__img { aspect-ratio: 3 / 4; }

/* 面包屑 */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--c-mist);
}
.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.breadcrumbs__item + .breadcrumbs__item::before {
  content: "/";
  color: var(--c-tactical);
}
.breadcrumbs__link {
  color: var(--c-mist);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.breadcrumbs__link:hover { color: var(--c-acid); }
.breadcrumbs__item[aria-current="page"] { color: var(--c-white); }

/* 遮罩揭示 */
.reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path var(--dur-long) var(--ease), opacity var(--dur-long) var(--ease);
  opacity: .001;
}
.reveal.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

/* ---------- 10. 响应式 ---------- */
@media (max-width: 1080px) {
  :root { --w-wide: 1000px; }
  .footer__grid { grid-template-columns: 1.2fr 1fr 1.2fr; }
  .footer__col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .nav-toggle { display: grid; place-items: center; }
  .capsule {
    grid-template-columns: auto 1fr;
    padding: 8px 10px 8px 14px;
  }
  .site-header.is-condensed .capsule { grid-template-columns: auto 1fr; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    padding: 10px;
    border: 1px solid var(--c-tactical);
    border-radius: var(--radius);
    background: rgba(10, 26, 47, .97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-lift);
  }
  .nav[data-open] {
    display: block;
    animation: navIn var(--dur) var(--ease);
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav__link {
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 15px;
  }
  .grid--5-7,
  .grid--7-5,
  .grid--4-5-3,
  .grid--3 { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .grid--2 { grid-template-columns: minmax(0, 1fr); }
  .footer__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .footer__col:last-child { grid-column: auto; }
  .footer__text,
  .footer__meta { max-width: none; }
  .band { padding-block: clamp(40px, 9vw, 64px); }
}

@media (max-width: 560px) {
  .brand__dot { display: none; }
  .btn--sm { padding: 7px 12px; font-size: 12.5px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .tabs__list { border-radius: var(--radius); }
}

/* ---------- 11. 降低动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

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

  .reveal {
    clip-path: none;
    opacity: 1;
  }
  .figure:hover .figure__img img { transform: none; }
  .panel:hover { transform: none; }
}
