:root {
  --kiwi: #4CAF50;
  --kiwi-light: #81C784;
  --kiwi-dark: #2E7D32;
  --orange: #FF9800;
  --navy: #0D1B2A;
  --navy-soft: #13273C;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --grey: #4A5568;
  --blue: #2196F3;
  --red: #E53935;
  --line: rgba(13, 27, 42, 0.1);
  --line-light: rgba(255, 255, 255, 0.08);
  --font-headline: Impact, "Noto Sans SC Black", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-data: "Roboto Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --container: 1200px;
  --gutter: 24px;
  --header-h: 72px;
  --header-h-mobile: 60px;
  --radius: 3px;
  --shadow: 0 1px 3px rgba(13, 27, 42, 0.06);
  --shadow-lift: 0 12px 28px rgba(13, 27, 42, 0.12);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--grey);
  background: var(--off-white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 900;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--kiwi-dark);
}

a:hover {
  color: var(--kiwi);
}

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

ul, ol {
  margin: 0;
  padding-left: 1.2em;
}

::selection {
  background: var(--kiwi);
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: rect(0 0 0 0);
  white-space: nowrap;
}

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

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

/* 跳转链接 */
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1300;
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 0;
}

/* 页头 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 16px rgba(13, 27, 42, 0.25);
}

.header-tape {
  background: rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid var(--line-light);
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-tape__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 32px;
  color: rgba(255, 255, 255, 0.55);
}

.header-tape__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-tape__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.header-tape__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--kiwi-light);
}

.header-tape__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kiwi);
  animation: live-pulse 2s ease-out infinite;
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.55);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(76, 175, 80, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

.header-tape__contact {
  color: rgba(255, 255, 255, 0.65);
}

.header-main {
  position: relative;
  background: linear-gradient(180deg, rgba(76, 175, 80, 0.05), rgba(255, 152, 0, 0.02));
}

.header-main::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--kiwi) 0%, var(--kiwi-light) 36%, var(--orange) 100%);
}

.header-main__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

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

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

.brand__mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--kiwi), var(--kiwi-dark));
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  clip-path: polygon(0 0, 100% 0, 100% 74%, 74% 100%, 0 100%);
}

.brand__mark::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 7px;
  height: 7px;
  background: var(--orange);
  box-shadow: 0 0 0 2px rgba(13, 27, 42, 0.25);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__name {
  font-family: var(--font-headline);
  font-size: 23px;
  letter-spacing: 0.02em;
  color: var(--white);
  display: inline-flex;
  align-items: center;
}

.brand__suffix {
  margin-left: 5px;
  padding: 1px 6px 2px;
  background: var(--orange);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  border-radius: 2px;
  font-family: var(--font-body);
}

.brand__meta {
  font-family: var(--font-data);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--kiwi-light);
  text-transform: uppercase;
  margin-top: 2px;
}

.brand--footer .brand__meta {
  color: var(--orange);
  letter-spacing: 0.14em;
}

.brand--footer .brand__mark {
  width: 38px;
  height: 38px;
}

/* 主导航 */
.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 12px 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--kiwi), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav__link:hover {
  color: #fff;
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__link[aria-current="page"] {
  color: #fff;
}

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

.nav__link[aria-current="page"] .nav__idx {
  color: var(--orange);
}

.nav__idx {
  font-family: var(--font-data);
  font-size: 10px;
  color: var(--kiwi-light);
  opacity: 0.85;
}

/* 移动导航按钮 */
.nav-toggle {
  display: none;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s, background 0.2s;
}

/* 页脚 */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--kiwi) 0%, var(--kiwi-light) 30%, var(--orange) 62%, var(--navy) 62.5%);
}

.footer-rail {
  border-bottom: 1px solid var(--line-light);
  background: rgba(0, 0, 0, 0.16);
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-rail__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 36px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-rail__code {
  color: var(--kiwi-light);
  letter-spacing: 0.14em;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding: 48px 0 40px;
}

.footer-col__title {
  margin-bottom: 16px;
  padding-left: 10px;
  border-left: 2px solid var(--orange);
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kiwi-light);
}

.footer-col__text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  max-width: 40ch;
  margin-top: 14px;
}

.footer-links,
.footer-contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-links a,
.footer-contacts a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover,
.footer-contacts a:hover {
  color: var(--kiwi-light);
  padding-left: 4px;
}

.footer-contacts li {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--line-light);
  background: rgba(0, 0, 0, 0.22);
}

.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 24px;
  padding: 14px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-copy {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
}

.footer-legal a:hover {
  color: var(--kiwi-light);
}

.footer-icp {
  margin-left: auto;
  font-family: var(--font-data);
  letter-spacing: 0.05em;
}

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 0;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--kiwi);
  color: #fff;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.32);
}

.btn-primary:hover {
  background: var(--kiwi-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(13, 27, 42, 0.28);
  border-left: 3px solid var(--kiwi);
}

.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
}

/* 面包屑 */
.breadcrumb {
  padding: 18px 0;
  font-family: var(--font-data);
  font-size: 13px;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  color: var(--grey);
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  margin-right: 6px;
  color: rgba(13, 27, 42, 0.25);
}

.breadcrumb__item a {
  color: var(--kiwi-dark);
  text-decoration: none;
}

.breadcrumb__item a:hover {
  color: var(--kiwi);
}

.breadcrumb__item[aria-current="page"] {
  color: var(--navy);
  font-weight: 600;
}

/* 章节 */
.section {
  padding: 72px 0;
}

.section--alt {
  background: var(--white);
}

.section--dark {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
}

.section--dark .section-title {
  color: #fff;
}

.section--dark .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kiwi-dark);
  margin-bottom: 12px;
}

.section-kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-headline);
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.section-desc {
  max-width: 640px;
  font-size: 16px;
  color: var(--grey);
  margin-bottom: 28px;
}

/* 等宽编号标签 */
.num-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kiwi-dark);
  border: 1px solid var(--line);
  background: var(--white);
  padding: 6px 12px;
  border-left: 2px solid var(--orange);
}

.num-label::before {
  content: attr(data-num);
  color: var(--orange);
}

/* 卡片 */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.card__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--navy);
}

.card__meta {
  display: block;
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 12px;
}

.card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--grey);
}

.card__tag {
  align-self: flex-start;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(76, 175, 80, 0.12);
  color: var(--kiwi-dark);
  margin-bottom: 12px;
}

.card__tag--orange {
  background: rgba(255, 152, 0, 0.14);
  color: #B26A00;
}

.card__tag--blue {
  background: rgba(33, 150, 243, 0.13);
  color: #1565C0;
}

.card__tag--red {
  background: rgba(229, 57, 53, 0.12);
  color: var(--red);
}

.card--stat .card__value {
  font-family: var(--font-data);
  font-size: clamp(30px, 5vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.card--stat .card__meta {
  margin-top: auto;
  margin-bottom: 0;
}

.card--accent {
  border-top: 3px solid var(--kiwi);
}

/* 标签 */
.tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 2px;
  background: rgba(13, 27, 42, 0.06);
  color: var(--navy);
}

.tag--green {
  background: rgba(76, 175, 80, 0.14);
  color: var(--kiwi-dark);
}

.tag--orange {
  background: rgba(255, 152, 0, 0.16);
  color: #B26A00;
}

.tag--blue {
  background: rgba(33, 150, 243, 0.14);
  color: #1565C0;
}

.tag--outline {
  background: transparent;
  border: 1px solid currentColor;
}

/* 图片占位容器 */
.img-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 160px;
  background: var(--navy) linear-gradient(135deg, rgba(76, 175, 80, 0.14) 0%, transparent 45%, rgba(255, 152, 0, 0.12) 100%);
  border: 1px solid var(--line);
}

.img-frame::before {
  content: attr(data-label);
  position: absolute;
  z-index: 2;
  left: 12px;
  top: 12px;
  padding: 5px 10px;
  background: rgba(13, 27, 42, 0.72);
  color: #fff;
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-left: 2px solid var(--orange);
}

.img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 14px);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.img-frame--ratio-21 {
  aspect-ratio: 21 / 9;
}

.img-frame--ratio-1 {
  aspect-ratio: 1 / 1;
}

.img-frame--tall {
  aspect-ratio: 3 / 4;
}

.img-frame--grid {
  background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* 分隔线 */
.divider {
  height: 1px;
  border: 0;
  margin: 36px 0;
  background: linear-gradient(90deg, transparent, rgba(13, 27, 42, 0.18), transparent);
}

.divider--accent {
  height: 3px;
  background: linear-gradient(90deg, var(--kiwi), var(--orange));
}

/* 正文 */
.prose {
  max-width: 720px;
  font-size: 15.5px;
  line-height: 1.8;
}

.prose h2 {
  font-size: 24px;
  border-left: 3px solid var(--kiwi);
  padding-left: 14px;
}

.prose ul {
  padding-left: 1.4em;
}

.prose li {
  margin: 8px 0;
}

/* 数据表格 */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-family: var(--font-data);
  font-size: 14px;
  border: 1px solid var(--line);
}

.data-table th {
  text-align: left;
  padding: 12px 14px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}

.data-table tbody tr:nth-child(even) td {
  background: var(--off-white);
}

.data-table tbody tr:hover td {
  background: rgba(76, 175, 80, 0.06);
}

/* 可展开内容组 */
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--kiwi);
  margin-bottom: 12px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-data);
  font-size: 20px;
  line-height: 1;
  color: var(--kiwi);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 18px 18px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--grey);
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--line);
}

/* 展览标签 */
.exhibit-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 2px solid var(--kiwi);
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--grey);
  box-shadow: var(--shadow);
}

/* 框景首屏 */
.viewframe {
  position: relative;
  padding: clamp(24px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.viewframe::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(76, 175, 80, 0.35);
  pointer-events: none;
}

.viewframe::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 24px;
  width: 84px;
  height: 4px;
  background: var(--orange);
}

.viewframe--dark {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
}

.viewframe--dark::before {
  border-color: rgba(129, 199, 132, 0.4);
}

.viewframe--dark .viewframe__title {
  color: #fff;
}

.viewframe__title {
  font-family: var(--font-headline);
  font-size: clamp(28px, 5vw, 44px);
  margin-bottom: 14px;
}

.viewframe__desc {
  max-width: 56ch;
  font-size: 16px;
}

/* 键值数据行 */
.info-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(13, 27, 42, 0.14);
  font-size: 14px;
}

.info-row__label {
  color: var(--grey);
}

.info-row__value {
  font-family: var(--font-data);
  font-weight: 600;
  color: var(--navy);
  text-align: right;
}

/* 斜切色带 */
.strip {
  height: 4px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg, var(--navy) 0 18%, var(--kiwi) 18% 52%, var(--orange) 52% 78%, rgba(13, 27, 42, 0.12) 78% 100%);
}

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

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

html.js [data-reveal][data-reveal-delay="1"] {
  transition-delay: 0.12s;
}

html.js [data-reveal][data-reveal-delay="2"] {
  transition-delay: 0.24s;
}

body.nav-open {
  overflow: hidden;
}

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

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
  }

  .footer-col__text {
    max-width: 60ch;
  }
}

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

  .header-main__inner {
    min-height: var(--header-h-mobile);
  }

  .brand__mark {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .brand__name {
    font-size: 20px;
  }

  .brand__meta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    cursor: pointer;
    position: relative;
    z-index: 1001;
  }

  .nav-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .nav {
    position: fixed;
    top: var(--header-h-mobile);
    right: 0;
    bottom: 0;
    width: min(340px, 88vw);
    z-index: 990;
    background: var(--navy-soft);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    border-left: 1px solid var(--line-light);
    transform: translateX(105%);
    transition: transform 0.32s var(--ease);
    padding: 24px 20px 32px;
    overflow-y: auto;
  }

  .nav[data-open] {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .nav__link {
    padding: 15px 12px;
    font-size: 17px;
    border-bottom: 1px solid var(--line-light);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 0;
  }

  .nav__link::after {
    display: none;
  }

  .nav__link[aria-current="page"] {
    background: rgba(76, 175, 80, 0.14);
    color: #fff;
    border-left: 3px solid var(--orange);
  }

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

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

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

@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-col--brand {
    grid-column: auto;
  }

  .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-icp {
    margin-left: 0;
  }

  .breadcrumb {
    font-size: 12px;
  }

  .section {
    padding: 48px 0;
  }

  .data-table {
    font-size: 12.5px;
  }

  .data-table th,
  .data-table td {
    padding: 9px 10px;
  }
}

@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;
  }

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
    transition-delay: 0ms !important;
  }
}
