/* ===============================
   亿博体育平台 Site CSS
   保存路径 /assets/site.css
   =============================== */

/* ---------- 变量 ---------- */
:root {
  --deep-blue: #0A1F3C;
  --bright-orange: #FF6B00;
  --gold: #D4AF37;
  --light-blue: #1A3A5C;
  --off-white: #F3EFE7;
  --slate: #3D4D61;
  --dark-orange: #D94F00;
  --pale-gold: #E8C76B;
  --ink-blue: #051024;
  --mist-blue: #A8C3E0;

  --font-heading: "Noto Sans SC", "Source Han Sans SC", sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-data: "Roboto Mono", "SFMono-Regular", Consolas, monospace;

  --text-primary: rgba(243, 239, 231, 0.92);
  --text-secondary: rgba(168, 195, 224, 0.72);
  --container-max: 1280px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: var(--deep-blue);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

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

a {
  color: var(--bright-orange);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--pale-gold);
}

button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

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

:focus-visible {
  outline: 3px solid var(--bright-orange);
  outline-offset: 2px;
}

::selection {
  background: var(--bright-orange);
  color: var(--deep-blue);
}

/* ---------- 中文排版 ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.05rem;
}

p {
  margin-bottom: 1em;
}

.prose {
  max-width: 72ch;
  color: var(--text-secondary);
}

.prose h2,
.prose h3 {
  margin-top: 1.6em;
  color: var(--text-primary);
}

.prose ul,
.prose ol {
  list-style: disc;
  padding-left: 1.4em;
  margin-bottom: 1em;
}

.prose li {
  margin-top: 0.3em;
}

.section--light .prose {
  color: var(--slate);
}

.section--light .prose h2,
.section--light .prose h3 {
  color: var(--deep-blue);
}

/* ---------- 布局容器 ---------- */
#main-content {
  flex: 1 0 auto;
  outline: none;
  scroll-margin-top: 88px;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding: 72px 0;
}

.section--light {
  background: var(--off-white);
  color: var(--slate);
}

.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4,
.section--light h5,
.section--light h6 {
  color: var(--deep-blue);
}

/* ---------- 面包屑 ---------- */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 24px;
  list-style: none;
  font-family: var(--font-data);
  font-size: 0.8rem;
  color: var(--mist-blue);
}

.breadcrumbs a {
  color: var(--mist-blue);
}

.breadcrumbs a:hover {
  color: var(--bright-orange);
}

.breadcrumbs li + li::before {
  content: "／";
  margin-right: 6px;
  color: rgba(168, 195, 224, 0.4);
}

/* ---------- 跳跃链接与进度条 ---------- */
.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  padding: 14px 26px;
  background: var(--bright-orange);
  color: var(--deep-blue);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0 0 10px 0;
  transform: translateY(-120%);
  transition: transform 0.25s ease-in-out;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--bright-orange), var(--pale-gold), var(--gold));
  z-index: 2000;
  border-radius: 0 3px 3px 0;
  pointer-events: none;
}

/* ---------- 头部 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-shrink: 0;
  background: var(--deep-blue);
  border-bottom: 1px solid rgba(168, 195, 224, 0.08);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18%;
  min-width: 80px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 107, 0, 0.12), transparent);
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--bright-orange) 0%, var(--gold) 24%, transparent 60%);
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 1;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ---------- 品牌 ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--off-white);
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover {
  color: var(--off-white);
}

.brand-mark {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  width: 30px;
  height: 30px;
}

.brand-mark-bar {
  display: block;
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, var(--bright-orange) 0%, var(--gold) 100%);
}

.brand-mark-bar:nth-child(1) {
  height: 30px;
}

.brand-mark-bar:nth-child(2) {
  height: 22px;
}

.brand-mark-bar:nth-child(3) {
  height: 14px;
}

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

.brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--off-white);
  letter-spacing: 0.02em;
}

.brand-sub {
  display: block;
  font-family: var(--font-data);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* ---------- 导航 ---------- */
.site-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-list li {
  position: relative;
}

.nav-list li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 1px;
  height: 12px;
  background: linear-gradient(to bottom, var(--bright-orange), var(--gold));
  opacity: 0.35;
  transform: translateY(-50%);
}

.nav-list a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-list a:hover {
  color: var(--bright-orange);
  background: rgba(255, 107, 0, 0.06);
}

.nav-list a[aria-current="page"] {
  color: var(--bright-orange);
  box-shadow: inset 0 -2px 0 0 var(--bright-orange);
}

/* ---------- 头部右侧操作区 ---------- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.search-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(168, 195, 224, 0.22);
  border-radius: 999px;
  background: rgba(168, 195, 224, 0.06);
  color: var(--mist-blue);
  font-family: var(--font-data);
  font-size: 0.82rem;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.search-trigger:hover {
  border-color: var(--bright-orange);
  background: rgba(255, 107, 0, 0.08);
  color: var(--off-white);
}

.search-trigger-icon {
  position: relative;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
  flex-shrink: 0;
}

.search-trigger-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 6px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  border-radius: 1px;
}

.search-trigger-text {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.btn-primary {
  background: var(--bright-orange);
  color: var(--deep-blue);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

.btn-primary:hover {
  background: var(--dark-orange);
  color: var(--deep-blue);
  box-shadow: 0 6px 16px rgba(217, 79, 0, 0.35);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: rgba(168, 195, 224, 0.4);
  color: var(--off-white);
}

.btn-ghost:hover {
  border-color: var(--bright-orange);
  color: var(--bright-orange);
  background: rgba(255, 107, 0, 0.06);
}

.section--light .btn-ghost {
  border-color: var(--slate);
  color: var(--deep-blue);
}

.section--light .btn-ghost:hover {
  border-color: var(--bright-orange);
  color: var(--bright-orange);
}

.btn-member {
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--pale-gold));
  color: var(--deep-blue);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3), 0 2px 4px rgba(5, 16, 36, 0.4);
}

.btn-member:hover {
  background: linear-gradient(135deg, var(--pale-gold), var(--gold));
  color: var(--deep-blue);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.45), 0 4px 8px rgba(5, 16, 36, 0.4);
  transform: translateY(-1px);
}

.member-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--deep-blue);
}

.member-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.8);
  animation: member-pulse 2s ease-out infinite;
}

@keyframes member-pulse {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  80%,
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ---------- 汉堡按钮 ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(168, 195, 224, 0.25);
  border-radius: 8px;
  background: rgba(168, 195, 224, 0.05);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--bright-orange);
  background: rgba(255, 107, 0, 0.08);
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- 页脚 ---------- */
.site-footer {
  position: relative;
  flex-shrink: 0;
  background: var(--ink-blue);
  border-top: 3px solid var(--bright-orange);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 120px;
  height: 3px;
  background: var(--gold);
}

.footer-mountains {
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  height: 30px;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

.footer-mountains::before,
.footer-mountains::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 30px;
}

.footer-mountains::before {
  left: -2%;
  width: 42%;
  background: rgba(26, 58, 92, 0.7);
  clip-path: polygon(10% 100%, 42% 10%, 74% 100%, 100% 100%, 0 100%);
}

.footer-mountains::after {
  right: 6%;
  width: 34%;
  height: 22px;
  background: rgba(26, 58, 92, 0.55);
  clip-path: polygon(18% 100%, 52% 6%, 86% 100%, 100% 100%, 0 100%);
}

.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding: 64px 0 48px;
}

.footer-brand {
  max-width: 34em;
}

.brand-footer .brand-name {
  color: var(--off-white);
}

.brand-footer .brand-sub {
  color: var(--pale-gold);
}

.footer-tagline {
  margin: 18px 0 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--off-white);
}

.footer-trust {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(168, 195, 224, 0.55);
}

.footer-heading {
  margin-bottom: 16px;
  padding-bottom: 8px;
  font-family: var(--font-data);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pale-gold);
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--bright-orange);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list a {
  color: rgba(243, 239, 231, 0.72);
  font-size: 0.9rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-list a:hover {
  color: var(--bright-orange);
  padding-left: 6px;
}

.footer-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.9rem;
}

.contact-label {
  font-family: var(--font-data);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist-blue);
}

.contact-value {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(168, 195, 224, 0.12);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.footer-copy,
.footer-icp {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(168, 195, 224, 0.55);
}

/* ---------- 栅格与卡片 ---------- */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2,
.grid-3 {
  grid-template-columns: 1fr;
}

.card {
  position: relative;
  background: var(--light-blue);
  border: 1px solid rgba(168, 195, 224, 0.14);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 6px 20px rgba(5, 16, 36, 0.35);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.45);
  box-shadow: 0 12px 28px rgba(5, 16, 36, 0.5);
}

.card--light {
  background: var(--off-white);
  border-color: rgba(61, 77, 97, 0.12);
}

.card--light h1,
.card--light h2,
.card--light h3,
.card--light h4,
.card--light h5,
.card--light h6 {
  color: var(--deep-blue);
}

/* ---------- 章节元件 ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: var(--font-data);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bright-orange);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--bright-orange);
  border-radius: 1px;
}

.section--light .eyebrow {
  color: var(--dark-orange);
}

.section--light .eyebrow::before {
  background: var(--dark-orange);
}

.section-heading {
  position: relative;
  margin: 0 0 16px;
  padding-left: 18px;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--text-primary);
}

.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  bottom: 0.18em;
  width: 5px;
  border-radius: 3px;
  background: linear-gradient(to bottom, var(--bright-orange), var(--gold));
}

.section--light .section-heading {
  color: var(--deep-blue);
}

.divider-slash {
  display: inline-block;
  width: 72px;
  height: 5px;
  margin: 20px 0;
  background: var(--bright-orange);
  clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}

.section--light .divider-slash {
  background: var(--dark-orange);
}

/* ---------- 数据与标签 ---------- */
.stat-number {
  display: block;
  font-family: var(--font-data);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--off-white);
}

.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--mist-blue);
}

.section--light .stat-number {
  color: var(--deep-blue);
}

.section--light .stat-label {
  color: var(--slate);
}

.tag {
  display: inline-block;
  padding: 5px 12px;
  font-family: var(--font-data);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid rgba(168, 195, 224, 0.35);
  border-radius: 999px;
  color: var(--mist-blue);
  background: transparent;
}

.tag--gold {
  border-color: rgba(212, 175, 55, 0.6);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.tag--orange {
  border-color: rgba(255, 107, 0, 0.6);
  color: var(--bright-orange);
  background: rgba(255, 107, 0, 0.08);
}

/* ---------- 图片容器 ---------- */
.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: var(--light-blue);
  border: 1px solid rgba(168, 195, 224, 0.14);
  box-shadow: 0 6px 20px rgba(5, 16, 36, 0.3);
  aspect-ratio: 16 / 9;
}

.image-frame::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.16) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.image-frame[data-caption]::after {
  content: attr(data-caption);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 16px 10px;
  font-family: var(--font-data);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--off-white);
  background: linear-gradient(to top, rgba(5, 16, 36, 0.9), transparent);
  z-index: 1;
}

.image-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- 滚动显现 ---------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html.js [data-reveal][data-revealed] {
  opacity: 1;
  transform: none;
}

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    min-height: 64px;
    padding-top: 6px;
    padding-bottom: 6px;
    row-gap: 0;
  }

  .brand {
    order: 1;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
  }

  .site-nav {
    order: 3;
    flex: 1 0 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .site-nav[data-open] {
    max-height: 520px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 4px 4px 16px;
  }

  .nav-list li + li::before {
    display: none;
  }

  .nav-list a {
    display: block;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.95rem;
  }

  .nav-list a:hover {
    background: rgba(255, 107, 0, 0.08);
    color: var(--bright-orange);
  }

  .search-trigger-text {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding-inline: 16px;
  }

  .section {
    padding: 48px 0;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    padding: 40px 0 24px;
  }

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

@media (max-width: 420px) {
  .brand-sub {
    display: none;
  }

  .brand-mark {
    width: 24px;
    height: 24px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .btn-member {
    padding: 0 12px;
  }

  .search-trigger {
    width: 36px;
    padding: 0;
    justify-content: center;
  }
}

/* ---------- 减少动态偏好 ---------- */
@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;
  }

  .member-dot::after {
    animation: none;
  }

  .nav-toggle-line {
    transition: none;
  }

  .nav-list a,
  .card,
  .btn,
  .brand {
    transition: none;
  }

  html.js [data-reveal],
  html.js [data-reveal][data-revealed] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
